ERC-20
MEME
Overview
Max Total Supply
148,869,420 CHUD
Holders
130 (0.00%)
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:
chudCoin
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-09 */ pragma solidity ^0.8.18; // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // SPDX-License-Identifier: MIT // .75PP5?: :557 ^557 !55^ 755: J5555Y7: ^J55557. :?5PP57. :555~ !557 ~55^ 7555^ :555? :555~ !55^ ~Y5Y~ J555555? ^557.5555555P? // ^#@#?7P#5.^@@G::?@@5 Y@@! 5@@~ #@@??B@&^.#@#?YGP~ !@@G7?G#J G@#@&: J@@@P.7@@! 5@@@G 5@@@G .B@#@#: Y@@?5@@5~ #@@J?JJ! ~@@5 ?J5@@#JJ! // J@@7 : ^@@&###@@Y Y@@~ Y@@~ B@& ~@@Y !5G###G! G@@: . 5@#^G@B. J@@P@#P@@! 5@PP@J@G5@P 5@#^B@G J@@@@@@7 #@@PPPP~ ~@@5 :@@P // ^#@B!!5@B:^@@P 7@@5 !@@P!!#@&: #@@77G@@~^GBY^7@@G 7@@5!!G&5 J@@#GB@@P J@@^~#@@@! 5@P^@@@~5@G J@@#GB@@5 Y@@5:Y@@5. #@@?777! ~@@5 ^@@G // :?PGGGY^ :PP? ^PP7 ~YGGGPJ: YPPPP5J^ !5GPPP?. ^JPGGPJ::PPJ...?PP^!PP: .YPP^ 7GJ ?PJ ?G?:PPJ...?PP^!PP^ ?PP?.YPPPPPPY ^PP7 :PPJ // // // // ^~~~~~~~^ .^!!~: :~!!^. // 5#B@@@##P.5&&BG&&P^ ^G@&GB@&Y. // .B@&: Y@@7 ^@@G #@#: ?@@? // B@&. J@@? ~@@P B@&^ J@@7 // B@#. J#&BB: :P&&B#&B? // ::: :^^:. .:^^: // // // // // .... // .:7Y5GGPPPPPPGGGGGBBB####BP5YJ?!^:. // :!5#&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&#BPBBPPY?!^. // :^?P&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#GY! // :!YB&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GY?^. // .~YB&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#PJ??^ // :!5#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@G // !G@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@5. // 7#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@####&@@@@&#@@@@@@@@@@@@&&@@@@@B~ // B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#P?^....:^~!~:.~!~YGGGGGBBP^^G@@@@@&: // ^G@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&#BGGPPPP5555555Y7^. 7#@@@Y // .B@@@@@@@@@@@@@@@@@@@@@@@@@&BY7^:. .7G@P // :&@@@@@@@@@@@@@@@@@@@@@@@P!. ^BY // .B@@@@@@@@@@@@@@@@@@@@@@? ~&~ // ?@@@@@@@@@@@@@@@@@@@@#! YB: // ?@@@@@@@@@@@@@@@@@@@J. ~ Y#^ // B@@@@@@@@@@@@@@@@@@@Y ?7 . 5B. // ^&@@@@@@@@@@@@@@@@@@B^ 7J. .Y. :@? // 7@@@@@@@@@@@@@@@@@@&: ~J~ ~J 7@^ // 7@@@@@@@@@@@@@@@@@@J ^P J7 .&J // !@@@@@@@@@@@@@@@@@G Y! P^ PG // ~@@@@@@@@@@@@@@@@@! ~5 .~ ?&. // ~@JG@@@@@@@@@@@@@5 5: Y! J#. // J&: P@@@@@@@@@@@@~ J55J?!^.. 5&^ Y#. // GP .B@@@@@@@@@@Y J@@@@@@&#GY!^. . :&5 .^75GBJB5 // .#Y ~&@@@@@@@&? ?5G#&@@@@@@@#GPJ!: .J7 BP .~7J5G&@@@@B?@7 // .#J !#@@@@@G: .^7YPGBGB&@@@@&BGPP5J77~ G#Y ~!P#@@@@@@&B5! 7@^ // ^@? !G&@BY^ . !GGPGB#&BGGB#&&@@@@@@@@@@#^ BBJ?!P@@@@&#PJ!:. P@^ // 7@~ .JB&BGBGGBBBBG5??????JJ#@G~^^::....:^~7JY555PB##@@B?. ^@G.7P@@@@@B5YJJYYYYYY@@5~ // Y@^ ^@@!. .:^7YPPPPPPP5P@@~ ..!P@@P.:~!7??!. :&GG@GJJJJJJYYYYYYYY5YG@@B. // 5&: !@# ^&@~ .^^!~~^^^^^. Y@@#&#GPPG#BGY7&&&@~ ~@@G // 5&: 7@@Y^ B@^ .P@PJJJG@@@#P7^. ^&@#~. .:!5#@@@G .:::^: ?@@P // J&. ~JP? .B#. ^&Y !@@@@@@@@B5?~. .&@! .5@@P?JJYPB&&&&P? J@@J // 7&: ~@B .YG5^ ?@@@@@@@@?^5&7 :&@^ ~@@5!~^J@@@@@@P 5@@J // ~@! ~@#. .?G55B###B14885GY ~@&. ~@@J^^^7@@&&#&5 P@@J // ~@! ^&@BPY7^..:...!~~~~~!. 5@P ^@&JYYJ69420Y&J Y@@J // .BY .~?Y5#&#BBPP5PPPP55YJ7?YPGG&@7 ~@@5?5Y?7!^~7?~~!!!77P@@! // 7#. :^^!777?JJJJJJYYJB&?!~: .Y@@BGB#&&BBB&@@&@@@@@&5. // :&7 GY B#. :^!??!~~^:^^^^BP // PP ~&^ Y@^ .&? // ?B ?# !@! :&7 // ~&^ BY :#G. :&7 // :#~ ~&: ~@7 !@^ // :&~ 5B~~7?: :&P Y#. // B? :&@YJ?!. .. 7@7 ^@? // P5 5##J. .!5B##?. :^~~J@Y :BP // GP 7@~:P#GY~ ?#B#&&5. 7&@@@@@~ ?B? // GP ~@Y :?5J. .:: JY?!~~&? .GG: // GP B&: :@Y :GG. // B5 ^^ 7&~ ..... .B5 !#J // B5 ^G. ~@7 .^7JJ5P5555P5J^^~7??!: 5B ~@7 // B5 Y! ^&J.^J##57!^ .:YGYJ?!!?GY ?&: GG // .#Y Y! :#57B@P7?Y555Y777777!~^^^^~^7@G^&J ~GP: // !@! P~ GB..~P5?^ :~7777777JJJJJ?J5B@YY#. J#! // ~#5 .G: 7^ ^75P5!. ~J55?!:^@! PB: // .#5 .Y? .!Y55P5?^ :~JP57: ^!B5. // ?&^ :~ .^?PYJ55J7: !&? // Y# .~~~!7JJ!: Y#! // ~&J :~^... :Y .GG: // Y@J . .^JBG: // .5&7 :~7! .^?PBBPJ! // P&^ ^5P5Y?~ .7JYG##GY!: // !GB^ Y#?. .?##B@J~. // ^!PG! .P#^ .?&G^ ^&? // ...~GB57 ..?B5: :~~~7YYBB?. !&Y~~~:. // .^~7J5P5YPG5YJ. !55P~ ^JJ?J5!: ^?JJY5P5YYYYYYYYYYYYJJ??!^. // 7PGPYJ7^. .::::::::^^^^^~!!7YPGPYY!~^ contract chudCoin is ERC20 { address payable public owner; uint256 private _totalSupply = 148869420 * (10 ** 18); uint256 private _tokenPrice = 200000 * (10 ** 18); constructor() ERC20("chudCoin", "CHUD") { owner = payable(msg.sender); _mint(owner, _totalSupply); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "No balance to withdraw"); payable(msg.sender).transfer(balance); } function setTokenPrice(uint256 newTokenPrice) external onlyOwner { require(newTokenPrice > 0, "Token price should be greater than 0"); _tokenPrice = newTokenPrice; } function getTokenPrice() external view returns (uint256) { return _tokenPrice; } function burn(uint256 amount) external { require(amount > 0, "Amount to burn should be greater than 0"); require(balanceOf(msg.sender) >= amount, "Not enough tokens to burn"); _burn(msg.sender, amount); } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), allowance(sender, _msgSender()) - amount); return true; } modifier onlyOwner() { require(msg.sender == owner, "Only the contract owner can call this function."); _; } function transferOwnership(address newOwner) external onlyOwner { require(newOwner != address(0), "Invalid new owner address."); owner = payable(newOwner); } function renounceOwnership() external onlyOwner { owner = payable(address(0)); } }
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":"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":[],"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":"getTokenPrice","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","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":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526a7b24536dd518cc69300000600655692a5a058fc295ed0000006007553480156200002e57600080fd5b506040518060400160405280600881526020016731b43ab221b7b4b760c11b8152506040518060400160405280600481526020016310d2155160e21b81525081600390816200007e919062000228565b5060046200008d828262000228565b5050600580546001600160a01b03191633908117909155600654620000b39250620000b9565b6200031c565b6001600160a01b038216620001145760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001289190620002f4565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001af57607f821691505b602082108103620001d057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200017f57600081815260208120601f850160051c81016020861015620001ff5750805b601f850160051c820191505b8181101562000220578281556001016200020b565b505050505050565b81516001600160401b0381111562000244576200024462000184565b6200025c816200025584546200019a565b84620001d6565b602080601f8311600181146200029457600084156200027b5750858301515b600019600386901b1c1916600185901b17855562000220565b600085815260208120601f198616915b82811015620002c557888601518255948401946001909101908401620002a4565b5085821015620002e45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200031657634e487b7160e01b600052601160045260246000fd5b92915050565b610d62806200032c6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80636a61e5fc116100a257806395d89b411161007157806395d89b4114610237578063a457c2d71461023f578063a9059cbb14610252578063dd62ed3e14610265578063f2fde38b1461027857600080fd5b80636a61e5fc146101c857806370a08231146101db578063715018a6146102045780638da5cb5b1461020c57600080fd5b8063313ce567116100e9578063313ce5671461018157806339509351146101905780633ccfd60b146101a357806342966c68146101ad5780634b94f50e146101c057600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b61012361028b565b6040516101309190610b29565b60405180910390f35b61014c610147366004610b93565b61031d565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610bbd565b610334565b60405160128152602001610130565b61014c61019e366004610b93565b61036a565b6101ab610387565b005b6101ab6101bb366004610bf9565b610432565b600754610160565b6101ab6101d6366004610bf9565b6104fe565b6101606101e9366004610c12565b6001600160a01b031660009081526020819052604090205490565b6101ab610589565b60055461021f906001600160a01b031681565b6040516001600160a01b039091168152602001610130565b6101236105c5565b61014c61024d366004610b93565b6105d4565b61014c610260366004610b93565b61065a565b610160610273366004610c34565b610668565b6101ab610286366004610c12565b610693565b60606003805461029a90610c67565b80601f01602080910402602001604051908101604052809291908181526020018280546102c690610c67565b80156103135780601f106102e857610100808354040283529160200191610313565b820191906000526020600020905b8154815290600101906020018083116102f657829003601f168201915b5050505050905090565b600061032a338484610735565b5060015b92915050565b600061034184848461085a565b6103608433846103518833610668565b61035b9190610cb7565b610735565b5060019392505050565b60003361036081858561037d8383610668565b61035b9190610cca565b6005546001600160a01b031633146103ba5760405162461bcd60e51b81526004016103b190610cdd565b60405180910390fd5b47806104015760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b60448201526064016103b1565b604051339082156108fc029083906000818181858888f1935050505015801561042e573d6000803e3d6000fd5b5050565b600081116104925760405162461bcd60e51b815260206004820152602760248201527f416d6f756e7420746f206275726e2073686f756c6420626520677265617465726044820152660207468616e20360cc1b60648201526084016103b1565b336000908152602081905260409020548111156104f15760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f75676820746f6b656e7320746f206275726e0000000000000060448201526064016103b1565b6104fb33826109ff565b50565b6005546001600160a01b031633146105285760405162461bcd60e51b81526004016103b190610cdd565b600081116105845760405162461bcd60e51b8152602060048201526024808201527f546f6b656e2070726963652073686f756c6420626520677265617465722074686044820152630616e20360e41b60648201526084016103b1565b600755565b6005546001600160a01b031633146105b35760405162461bcd60e51b81526004016103b190610cdd565b600580546001600160a01b0319169055565b60606004805461029a90610c67565b600033816105e28286610668565b9050838110156106425760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b1565b61064f8286868403610735565b506001949350505050565b60003361036081858561085a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146106bd5760405162461bcd60e51b81526004016103b190610cdd565b6001600160a01b0381166107135760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206e6577206f776e657220616464726573732e00000000000060448201526064016103b1565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166107975760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b1565b6001600160a01b0382166107f85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b1565b6001600160a01b0382166109205760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b1565b6001600160a01b038316600090815260208190526040902054818110156109985760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6001600160a01b038216610a5f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103b1565b6001600160a01b03821660009081526020819052604090205481811015610ad35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103b1565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161084d565b600060208083528351808285015260005b81811015610b5657858101830151858201604001528201610b3a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b8e57600080fd5b919050565b60008060408385031215610ba657600080fd5b610baf83610b77565b946020939093013593505050565b600080600060608486031215610bd257600080fd5b610bdb84610b77565b9250610be960208501610b77565b9150604084013590509250925092565b600060208284031215610c0b57600080fd5b5035919050565b600060208284031215610c2457600080fd5b610c2d82610b77565b9392505050565b60008060408385031215610c4757600080fd5b610c5083610b77565b9150610c5e60208401610b77565b90509250929050565b600181811c90821680610c7b57607f821691505b602082108103610c9b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561032e5761032e610ca1565b8082018082111561032e5761032e610ca1565b6020808252602f908201527f4f6e6c792074686520636f6e7472616374206f776e65722063616e2063616c6c60408201526e103a3434b990333ab731ba34b7b71760891b60608201526080019056fea2646970667358221220db7fd901f9e124659c1d92b8a753af42dc3b96db60056bb5e572691112eb32b064736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c80636a61e5fc116100a257806395d89b411161007157806395d89b4114610237578063a457c2d71461023f578063a9059cbb14610252578063dd62ed3e14610265578063f2fde38b1461027857600080fd5b80636a61e5fc146101c857806370a08231146101db578063715018a6146102045780638da5cb5b1461020c57600080fd5b8063313ce567116100e9578063313ce5671461018157806339509351146101905780633ccfd60b146101a357806342966c68146101ad5780634b94f50e146101c057600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b61012361028b565b6040516101309190610b29565b60405180910390f35b61014c610147366004610b93565b61031d565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610bbd565b610334565b60405160128152602001610130565b61014c61019e366004610b93565b61036a565b6101ab610387565b005b6101ab6101bb366004610bf9565b610432565b600754610160565b6101ab6101d6366004610bf9565b6104fe565b6101606101e9366004610c12565b6001600160a01b031660009081526020819052604090205490565b6101ab610589565b60055461021f906001600160a01b031681565b6040516001600160a01b039091168152602001610130565b6101236105c5565b61014c61024d366004610b93565b6105d4565b61014c610260366004610b93565b61065a565b610160610273366004610c34565b610668565b6101ab610286366004610c12565b610693565b60606003805461029a90610c67565b80601f01602080910402602001604051908101604052809291908181526020018280546102c690610c67565b80156103135780601f106102e857610100808354040283529160200191610313565b820191906000526020600020905b8154815290600101906020018083116102f657829003601f168201915b5050505050905090565b600061032a338484610735565b5060015b92915050565b600061034184848461085a565b6103608433846103518833610668565b61035b9190610cb7565b610735565b5060019392505050565b60003361036081858561037d8383610668565b61035b9190610cca565b6005546001600160a01b031633146103ba5760405162461bcd60e51b81526004016103b190610cdd565b60405180910390fd5b47806104015760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b60448201526064016103b1565b604051339082156108fc029083906000818181858888f1935050505015801561042e573d6000803e3d6000fd5b5050565b600081116104925760405162461bcd60e51b815260206004820152602760248201527f416d6f756e7420746f206275726e2073686f756c6420626520677265617465726044820152660207468616e20360cc1b60648201526084016103b1565b336000908152602081905260409020548111156104f15760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f75676820746f6b656e7320746f206275726e0000000000000060448201526064016103b1565b6104fb33826109ff565b50565b6005546001600160a01b031633146105285760405162461bcd60e51b81526004016103b190610cdd565b600081116105845760405162461bcd60e51b8152602060048201526024808201527f546f6b656e2070726963652073686f756c6420626520677265617465722074686044820152630616e20360e41b60648201526084016103b1565b600755565b6005546001600160a01b031633146105b35760405162461bcd60e51b81526004016103b190610cdd565b600580546001600160a01b0319169055565b60606004805461029a90610c67565b600033816105e28286610668565b9050838110156106425760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b1565b61064f8286868403610735565b506001949350505050565b60003361036081858561085a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146106bd5760405162461bcd60e51b81526004016103b190610cdd565b6001600160a01b0381166107135760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206e6577206f776e657220616464726573732e00000000000060448201526064016103b1565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166107975760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b1565b6001600160a01b0382166107f85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b1565b6001600160a01b0382166109205760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b1565b6001600160a01b038316600090815260208190526040902054818110156109985760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6001600160a01b038216610a5f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103b1565b6001600160a01b03821660009081526020819052604090205481811015610ad35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103b1565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161084d565b600060208083528351808285015260005b81811015610b5657858101830151858201604001528201610b3a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b8e57600080fd5b919050565b60008060408385031215610ba657600080fd5b610baf83610b77565b946020939093013593505050565b600080600060608486031215610bd257600080fd5b610bdb84610b77565b9250610be960208501610b77565b9150604084013590509250925092565b600060208284031215610c0b57600080fd5b5035919050565b600060208284031215610c2457600080fd5b610c2d82610b77565b9392505050565b60008060408385031215610c4757600080fd5b610c5083610b77565b9150610c5e60208401610b77565b90509250929050565b600181811c90821680610c7b57607f821691505b602082108103610c9b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561032e5761032e610ca1565b8082018082111561032e5761032e610ca1565b6020808252602f908201527f4f6e6c792074686520636f6e7472616374206f776e65722063616e2063616c6c60408201526e103a3434b990333ab731ba34b7b71760891b60608201526080019056fea2646970667358221220db7fd901f9e124659c1d92b8a753af42dc3b96db60056bb5e572691112eb32b064736f6c63430008120033
Deployed Bytecode Sourcemap
27178:1960:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6276:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28253:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;28253:169:0;1004:187:1;7405:108:0;7493:12;;7405:108;;;1342:25:1;;;1330:2;1315:18;7405:108:0;1196:177:1;28430:272:0;;;;;;:::i;:::-;;:::i;7247:93::-;;;7330:2;1853:36:1;;1841:2;1826:18;7247:93:0;1711:184:1;10087:238:0;;;;;;:::i;:::-;;:::i;27501:202::-;;;:::i;:::-;;28009:236;;;;;;:::i;:::-;;:::i;27907:94::-;27982:11;;27907:94;;27711:188;;;;;;:::i;:::-;;:::i;7576:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7677:18:0;7650:7;7677:18;;;;;;;;;;;;7576:127;29041:94;;;:::i;27212:28::-;;;;;-1:-1:-1;;;;;27212:28:0;;;;;;-1:-1:-1;;;;;2456:32:1;;;2438:51;;2426:2;2411:18;27212:28:0;2276:219:1;6495:104:0;;;:::i;10828:436::-;;;;;;:::i;:::-;;:::i;7909:193::-;;;;;;:::i;:::-;;:::i;8165:151::-;;;;;;:::i;:::-;;:::i;28853:180::-;;;;;;:::i;:::-;;:::i;6276:100::-;6330:13;6363:5;6356:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6276:100;:::o;28253:169::-;28336:4;28353:39;4087:10;28376:7;28385:6;28353:8;:39::i;:::-;-1:-1:-1;28410:4:0;28253:169;;;;;:::o;28430:272::-;28536:4;28553:36;28563:6;28571:9;28582:6;28553:9;:36::i;:::-;28600:72;28609:6;4087:10;28665:6;28631:31;28641:6;4087:10;8165:151;:::i;28631:31::-;:40;;;;:::i;:::-;28600:8;:72::i;:::-;-1:-1:-1;28690:4:0;28430:272;;;;;:::o;10087:238::-;10175:4;4087:10;10231:64;4087:10;10247:7;10284:10;10256:25;4087:10;10247:7;10256:9;:25::i;:::-;:38;;;;:::i;27501:202::-;28768:5;;-1:-1:-1;;;;;28768:5:0;28754:10;:19;28746:79;;;;-1:-1:-1;;;28746:79:0;;;;;;;:::i;:::-;;;;;;;;;27569:21:::1;27609:11:::0;27601:46:::1;;;::::0;-1:-1:-1;;;27601:46:0;;4163:2:1;27601:46:0::1;::::0;::::1;4145:21:1::0;4202:2;4182:18;;;4175:30;-1:-1:-1;;;4221:18:1;;;4214:52;4283:18;;27601:46:0::1;3961:346:1::0;27601:46:0::1;27658:37;::::0;27666:10:::1;::::0;27658:37;::::1;;;::::0;27687:7;;27658:37:::1;::::0;;;27687:7;27666:10;27658:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;27540:163;27501:202::o:0;28009:236::-;28076:1;28067:6;:10;28059:62;;;;-1:-1:-1;;;28059:62:0;;4514:2:1;28059:62:0;;;4496:21:1;4553:2;4533:18;;;4526:30;4592:34;4572:18;;;4565:62;-1:-1:-1;;;4643:18:1;;;4636:37;4690:19;;28059:62:0;4312:403:1;28059:62:0;28150:10;7650:7;7677:18;;;;;;;;;;;28165:6;-1:-1:-1;28140:31:0;28132:69;;;;-1:-1:-1;;;28132:69:0;;4922:2:1;28132:69:0;;;4904:21:1;4961:2;4941:18;;;4934:30;5000:27;4980:18;;;4973:55;5045:18;;28132:69:0;4720:349:1;28132:69:0;28212:25;28218:10;28230:6;28212:5;:25::i;:::-;28009:236;:::o;27711:188::-;28768:5;;-1:-1:-1;;;;;28768:5:0;28754:10;:19;28746:79;;;;-1:-1:-1;;;28746:79:0;;;;;;;:::i;:::-;27811:1:::1;27795:13;:17;27787:66;;;::::0;-1:-1:-1;;;27787:66:0;;5276:2:1;27787:66:0::1;::::0;::::1;5258:21:1::0;5315:2;5295:18;;;5288:30;5354:34;5334:18;;;5327:62;-1:-1:-1;;;5405:18:1;;;5398:34;5449:19;;27787:66:0::1;5074:400:1::0;27787:66:0::1;27864:11;:27:::0;27711:188::o;29041:94::-;28768:5;;-1:-1:-1;;;;;28768:5:0;28754:10;:19;28746:79;;;;-1:-1:-1;;;28746:79:0;;;;;;;:::i;:::-;29100:5:::1;:27:::0;;-1:-1:-1;;;;;;29100:27:0::1;::::0;;29041:94::o;6495:104::-;6551:13;6584:7;6577:14;;;;;:::i;10828:436::-;10921:4;4087:10;10921:4;11004:25;4087:10;11021:7;11004:9;:25::i;:::-;10977:52;;11068:15;11048:16;:35;;11040:85;;;;-1:-1:-1;;;11040:85:0;;5681:2:1;11040:85:0;;;5663:21:1;5720:2;5700:18;;;5693:30;5759:34;5739:18;;;5732:62;-1:-1:-1;;;5810:18:1;;;5803:35;5855:19;;11040:85:0;5479:401:1;11040:85:0;11161:60;11170:5;11177:7;11205:15;11186:16;:34;11161:8;:60::i;:::-;-1:-1:-1;11252:4:0;;10828:436;-1:-1:-1;;;;10828:436:0:o;7909:193::-;7988:4;4087:10;8044:28;4087:10;8061:2;8065:6;8044:9;:28::i;8165:151::-;-1:-1:-1;;;;;8281:18:0;;;8254:7;8281:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8165:151::o;28853:180::-;28768:5;;-1:-1:-1;;;;;28768:5:0;28754:10;:19;28746:79;;;;-1:-1:-1;;;28746:79:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28936:22:0;::::1;28928:61;;;::::0;-1:-1:-1;;;28928:61:0;;6087:2:1;28928:61:0::1;::::0;::::1;6069:21:1::0;6126:2;6106:18;;;6099:30;6165:28;6145:18;;;6138:56;6211:18;;28928:61:0::1;5885:350:1::0;28928:61:0::1;29000:5;:25:::0;;-1:-1:-1;;;;;;29000:25:0::1;-1:-1:-1::0;;;;;29000:25:0;;;::::1;::::0;;;::::1;::::0;;28853:180::o;14821:346::-;-1:-1:-1;;;;;14923:19:0;;14915:68;;;;-1:-1:-1;;;14915:68:0;;6442:2:1;14915:68:0;;;6424:21:1;6481:2;6461:18;;;6454:30;6520:34;6500:18;;;6493:62;-1:-1:-1;;;6571:18:1;;;6564:34;6615:19;;14915:68:0;6240:400:1;14915:68:0;-1:-1:-1;;;;;15002:21:0;;14994:68;;;;-1:-1:-1;;;14994:68:0;;6847:2:1;14994:68:0;;;6829:21:1;6886:2;6866:18;;;6859:30;6925:34;6905:18;;;6898:62;-1:-1:-1;;;6976:18:1;;;6969:32;7018:19;;14994:68:0;6645:398:1;14994:68:0;-1:-1:-1;;;;;15075:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15127:32;;1342:25:1;;;15127:32:0;;1315:18:1;15127:32:0;;;;;;;;14821:346;;;:::o;11734:806::-;-1:-1:-1;;;;;11831:18:0;;11823:68;;;;-1:-1:-1;;;11823:68:0;;7250:2:1;11823:68:0;;;7232:21:1;7289:2;7269:18;;;7262:30;7328:34;7308:18;;;7301:62;-1:-1:-1;;;7379:18:1;;;7372:35;7424:19;;11823:68:0;7048:401:1;11823:68:0;-1:-1:-1;;;;;11910:16:0;;11902:64;;;;-1:-1:-1;;;11902:64:0;;7656:2:1;11902:64:0;;;7638:21:1;7695:2;7675:18;;;7668:30;7734:34;7714:18;;;7707:62;-1:-1:-1;;;7785:18:1;;;7778:33;7828:19;;11902:64:0;7454:399:1;11902:64:0;-1:-1:-1;;;;;12052:15:0;;12030:19;12052:15;;;;;;;;;;;12086:21;;;;12078:72;;;;-1:-1:-1;;;12078:72:0;;8060:2:1;12078:72:0;;;8042:21:1;8099:2;8079:18;;;8072:30;8138:34;8118:18;;;8111:62;-1:-1:-1;;;8189:18:1;;;8182:36;8235:19;;12078:72:0;7858:402:1;12078:72:0;-1:-1:-1;;;;;12186:15:0;;;:9;:15;;;;;;;;;;;12204:20;;;12186:38;;12404:13;;;;;;;;;;:23;;;;;;12456:26;;1342:25:1;;;12404:13:0;;12456:26;;1315:18:1;12456:26:0;;;;;;;11812:728;11734:806;;;:::o;13708:675::-;-1:-1:-1;;;;;13792:21:0;;13784:67;;;;-1:-1:-1;;;13784:67:0;;8467:2:1;13784:67:0;;;8449:21:1;8506:2;8486:18;;;8479:30;8545:34;8525:18;;;8518:62;-1:-1:-1;;;8596:18:1;;;8589:31;8637:19;;13784:67:0;8265:397:1;13784:67:0;-1:-1:-1;;;;;13951:18:0;;13926:22;13951:18;;;;;;;;;;;13988:24;;;;13980:71;;;;-1:-1:-1;;;13980:71:0;;8869:2:1;13980:71:0;;;8851:21:1;8908:2;8888:18;;;8881:30;8947:34;8927:18;;;8920:62;-1:-1:-1;;;8998:18:1;;;8991:32;9040:19;;13980:71:0;8667:398:1;13980:71:0;-1:-1:-1;;;;;14087:18:0;;:9;:18;;;;;;;;;;;14108:23;;;14087:44;;14226:12;:22;;;;;;;14277:37;1342:25:1;;;14087:9:0;;:18;14277:37;;1315:18:1;14277:37:0;1196:177:1;14:548;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;1900:180::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;-1:-1:-1;2051:23:1;;1900:180;-1:-1:-1;1900:180:1:o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;:::-;2226:39;2085:186;-1:-1:-1;;;2085:186:1:o;2500:260::-;2568:6;2576;2629:2;2617:9;2608:7;2604:23;2600:32;2597:52;;;2645:1;2642;2635:12;2597:52;2668:29;2687:9;2668:29;:::i;:::-;2658:39;;2716:38;2750:2;2739:9;2735:18;2716:38;:::i;:::-;2706:48;;2500:260;;;;;:::o;2765:380::-;2844:1;2840:12;;;;2887;;;2908:61;;2962:4;2954:6;2950:17;2940:27;;2908:61;3015:2;3007:6;3004:14;2984:18;2981:38;2978:161;;3061:10;3056:3;3052:20;3049:1;3042:31;3096:4;3093:1;3086:15;3124:4;3121:1;3114:15;2978:161;;2765:380;;;:::o;3150:127::-;3211:10;3206:3;3202:20;3199:1;3192:31;3242:4;3239:1;3232:15;3266:4;3263:1;3256:15;3282:128;3349:9;;;3370:11;;;3367:37;;;3384:18;;:::i;3415:125::-;3480:9;;;3501:10;;;3498:36;;;3514:18;;:::i;3545:411::-;3747:2;3729:21;;;3786:2;3766:18;;;3759:30;3825:34;3820:2;3805:18;;3798:62;-1:-1:-1;;;3891:2:1;3876:18;;3869:45;3946:3;3931:19;;3545:411::o
Swarm Source
ipfs://db7fd901f9e124659c1d92b8a753af42dc3b96db60056bb5e572691112eb32b0
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.