ERC-20
Overview
Max Total Supply
10,000,000,000,000 BABYSQUAWK
Holders
6
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
820,431,458.540381178448924091 BABYSQUAWKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BABYSQUAWK
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-14 */ /** BABYSQUAWK Capturing the SQUACK Hype. 0% Buy/Sell Tax. Pure Community Token. Telegram : https://t.me/BabySquawk */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, 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: * * - `to` 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; _balances[account] += amount; emit Transfer(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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 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 to 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 { } } // File: contracts/token/ERC20/behaviours/ERC20Decimals.sol pragma solidity ^0.8.0; /** * @title ERC20Decimals * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot. */ contract BABYSQUAWK is ERC20 { uint8 immutable private _decimals = 18; uint256 private _totalSupply = 10000000000000 * 10 ** 18; /** * @dev Sets the value of the `decimals`. This value is immutable, it can only be * set once during construction. */ constructor () ERC20('BABYSQUAWK', 'BABYSQUAWK') { _mint(_msgSender(), _totalSupply); } function decimals() public view virtual override returns (uint8) { return _decimals; } }
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":[],"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":"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":"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":"recipient","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"}]
Contract Creation Code
60a0604052600960f91b6080526c7e37be2022c0914b26800000006005553480156200002a57600080fd5b50604080518082018252600a808252694241425953515541574b60b01b602080840182815285518087019096529285528401528151919291620000709160039162000189565b5080516200008690600490602084019062000189565b505050620000a66200009d620000ac60201b60201c565b600554620000b0565b620002d1565b3390565b6001600160a01b038216620000e25760405162461bcd60e51b8152600401620000d9906200022f565b60405180910390fd5b620000f06000838362000184565b80600260008282546200010491906200026f565b90915550506001600160a01b03821660009081526020819052604081208054839290620001339084906200026f565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200017890859062000266565b60405180910390a35050565b505050565b828054620001979062000294565b90600052602060002090601f016020900481019282620001bb576000855562000206565b82601f10620001d657805160ff191683800117855562000206565b8280016001018555821562000206579182015b8281111562000206578251825591602001919060010190620001e9565b506200021492915062000218565b5090565b5b8082111562000214576000815560010162000219565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200028f57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620002a957607f821691505b60208210811415620002cb57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160f81c610cac620002f060003960006103480152610cac6000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d714610177578063a9059cbb1461018a578063dd62ed3e1461019d576100c9565b8063395093511461014957806370a082311461015c57806395d89b411461016f576100c9565b806318160ddd116100b257806318160ddd1461010c57806323b872dd14610121578063313ce56714610134576100c9565b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101b0565b6040516100e391906108b1565b60405180910390f35b6100ff6100fa36600461087d565b610242565b6040516100e391906108a6565b61011461025f565b6040516100e39190610bad565b6100ff61012f366004610842565b610265565b61013c610346565b6040516100e39190610bb6565b6100ff61015736600461087d565b61036a565b61011461016a3660046107ef565b6103c6565b6100d66103f2565b6100ff61018536600461087d565b610401565b6100ff61019836600461087d565b6104a3565b6101146101ab366004610810565b6104b7565b6060600380546101bf90610bf3565b80601f01602080910402602001604051908101604052809291908181526020018280546101eb90610bf3565b80156102385780601f1061020d57610100808354040283529160200191610238565b820191906000526020600020905b81548152906001019060200180831161021b57829003601f168201915b5050505050905090565b600061025661024f6104ef565b84846104f3565b50600192915050565b60025490565b6000610272848484610602565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160205260408120816102a06104ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031790610a39565b60405180910390fd5b61033b8561032c6104ef565b6103368685610bdc565b6104f3565b506001949350505050565b7f000000000000000000000000000000000000000000000000000000000000000090565b60006102566103776104ef565b8484600160006103856104ef565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b16815292529020546103369190610bc4565b73ffffffffffffffffffffffffffffffffffffffff81166000908152602081905260409020545b919050565b6060600480546101bf90610bf3565b600080600160006104106104ef565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091881681529252902054905082811015610483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031790610b50565b61049961048e6104ef565b856103368685610bdc565b5060019392505050565b60006102566104b06104ef565b8484610602565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316610540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031790610af3565b73ffffffffffffffffffffffffffffffffffffffff821661058d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103179061097f565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105f5908590610bad565b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661064f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031790610a96565b73ffffffffffffffffffffffffffffffffffffffff821661069c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031790610922565b6106a78383836107c6565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610707576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610317906109dc565b6107118282610bdc565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152602081905260408082209390935590851681529081208054849290610754908490610bc4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107b89190610bad565b60405180910390a350505050565b505050565b803573ffffffffffffffffffffffffffffffffffffffff811681146103ed57600080fd5b600060208284031215610800578081fd5b610809826107cb565b9392505050565b60008060408385031215610822578081fd5b61082b836107cb565b9150610839602084016107cb565b90509250929050565b600080600060608486031215610856578081fd5b61085f846107cb565b925061086d602085016107cb565b9150604084013590509250925092565b6000806040838503121561088f578182fd5b610898836107cb565b946020939093013593505050565b901515815260200190565b6000602080835283518082850152825b818110156108dd578581018301518582016040015282016108c1565b818111156108ee5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610bd757610bd7610c47565b500190565b600082821015610bee57610bee610c47565b500390565b600281046001821680610c0757607f821691505b60208210811415610c41577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea264697066735822122056d17a6412674aa89cce39efedc7df228a2db9f103f4b1821de089dd7574213e64736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d714610177578063a9059cbb1461018a578063dd62ed3e1461019d576100c9565b8063395093511461014957806370a082311461015c57806395d89b411461016f576100c9565b806318160ddd116100b257806318160ddd1461010c57806323b872dd14610121578063313ce56714610134576100c9565b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101b0565b6040516100e391906108b1565b60405180910390f35b6100ff6100fa36600461087d565b610242565b6040516100e391906108a6565b61011461025f565b6040516100e39190610bad565b6100ff61012f366004610842565b610265565b61013c610346565b6040516100e39190610bb6565b6100ff61015736600461087d565b61036a565b61011461016a3660046107ef565b6103c6565b6100d66103f2565b6100ff61018536600461087d565b610401565b6100ff61019836600461087d565b6104a3565b6101146101ab366004610810565b6104b7565b6060600380546101bf90610bf3565b80601f01602080910402602001604051908101604052809291908181526020018280546101eb90610bf3565b80156102385780601f1061020d57610100808354040283529160200191610238565b820191906000526020600020905b81548152906001019060200180831161021b57829003601f168201915b5050505050905090565b600061025661024f6104ef565b84846104f3565b50600192915050565b60025490565b6000610272848484610602565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160205260408120816102a06104ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031790610a39565b60405180910390fd5b61033b8561032c6104ef565b6103368685610bdc565b6104f3565b506001949350505050565b7f000000000000000000000000000000000000000000000000000000000000001290565b60006102566103776104ef565b8484600160006103856104ef565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b16815292529020546103369190610bc4565b73ffffffffffffffffffffffffffffffffffffffff81166000908152602081905260409020545b919050565b6060600480546101bf90610bf3565b600080600160006104106104ef565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091881681529252902054905082811015610483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031790610b50565b61049961048e6104ef565b856103368685610bdc565b5060019392505050565b60006102566104b06104ef565b8484610602565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316610540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031790610af3565b73ffffffffffffffffffffffffffffffffffffffff821661058d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103179061097f565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105f5908590610bad565b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661064f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031790610a96565b73ffffffffffffffffffffffffffffffffffffffff821661069c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031790610922565b6106a78383836107c6565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610707576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610317906109dc565b6107118282610bdc565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152602081905260408082209390935590851681529081208054849290610754908490610bc4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107b89190610bad565b60405180910390a350505050565b505050565b803573ffffffffffffffffffffffffffffffffffffffff811681146103ed57600080fd5b600060208284031215610800578081fd5b610809826107cb565b9392505050565b60008060408385031215610822578081fd5b61082b836107cb565b9150610839602084016107cb565b90509250929050565b600080600060608486031215610856578081fd5b61085f846107cb565b925061086d602085016107cb565b9150604084013590509250925092565b6000806040838503121561088f578182fd5b610898836107cb565b946020939093013593505050565b901515815260200190565b6000602080835283518082850152825b818110156108dd578581018301518582016040015282016108c1565b818111156108ee5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610bd757610bd7610c47565b500190565b600082821015610bee57610bee610c47565b500390565b600281046001821680610c0757607f821691505b60208210811415610c41577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea264697066735822122056d17a6412674aa89cce39efedc7df228a2db9f103f4b1821de089dd7574213e64736f6c63430008000033
Deployed Bytecode Sourcemap
15667:501:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6665:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8832:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7785:108::-;;;:::i;:::-;;;;;;;:::i;9483:422::-;;;;;;:::i;:::-;;:::i;16065:100::-;;;:::i;:::-;;;;;;;:::i;10314:215::-;;;;;;:::i;:::-;;:::i;7956:127::-;;;;;;:::i;:::-;;:::i;6884:104::-;;;:::i;11032:377::-;;;;;;:::i;:::-;;:::i;8296:175::-;;;;;;:::i;:::-;;:::i;8534:151::-;;;;;;:::i;:::-;;:::i;6665:100::-;6719:13;6752:5;6745:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6665:100;:::o;8832:169::-;8915:4;8932:39;8941:12;:10;:12::i;:::-;8955:7;8964:6;8932:8;:39::i;:::-;-1:-1:-1;8989:4:0;8832:169;;;;:::o;7785:108::-;7873:12;;7785:108;:::o;9483:422::-;9589:4;9606:36;9616:6;9624:9;9635:6;9606:9;:36::i;:::-;9682:19;;;9655:24;9682:19;;;:11;:19;;;;;9655:24;9702:12;:10;:12::i;:::-;9682:33;;;;;;;;;;;;;;;;9655:60;;9754:6;9734:16;:26;;9726:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9816:57;9825:6;9833:12;:10;:12::i;:::-;9847:25;9866:6;9847:16;:25;:::i;:::-;9816:8;:57::i;:::-;-1:-1:-1;9893:4:0;;9483:422;-1:-1:-1;;;;9483:422:0:o;16065:100::-;16148:9;16065:100;:::o;10314:215::-;10402:4;10419:80;10428:12;:10;:12::i;:::-;10442:7;10488:10;10451:11;:25;10463:12;:10;:12::i;:::-;10451:25;;;;;;;;;;;;;;;;;;-1:-1:-1;10451:25:0;;;:34;;;;;;;;;;:47;;;;:::i;7956:127::-;8057:18;;;8030:7;8057:18;;;;;;;;;;;7956:127;;;;:::o;6884:104::-;6940:13;6973:7;6966:14;;;;;:::i;11032:377::-;11125:4;11142:24;11169:11;:25;11181:12;:10;:12::i;:::-;11169:25;;;;;;;;;;;;;;;;;;-1:-1:-1;11169:25:0;;;:34;;;;;;;;;;;-1:-1:-1;11222:35:0;;;;11214:85;;;;;;;;;;;;:::i;:::-;11310:67;11319:12;:10;:12::i;:::-;11333:7;11342:34;11361:15;11342:16;:34;:::i;11310:67::-;-1:-1:-1;11397:4:0;;11032:377;-1:-1:-1;;;11032:377:0:o;8296:175::-;8382:4;8399:42;8409:12;:10;:12::i;:::-;8423:9;8434:6;8399:9;:42::i;8534:151::-;8650:18;;;;8623:7;8650:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8534:151::o;4252:98::-;4332:10;4252:98;:::o;14388:346::-;14490:19;;;14482:68;;;;;;;;;;;;:::i;:::-;14569:21;;;14561:68;;;;;;;;;;;;:::i;:::-;14642:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14694:32;;;;;14672:6;;14694:32;:::i;:::-;;;;;;;;14388:346;;;:::o;11899:604::-;12005:20;;;11997:70;;;;;;;;;;;;:::i;:::-;12086:23;;;12078:71;;;;;;;;;;;;:::i;:::-;12162:47;12183:6;12191:9;12202:6;12162:20;:47::i;:::-;12246:17;;;12222:21;12246:17;;;;;;;;;;;12282:23;;;;12274:74;;;;;;;;;;;;:::i;:::-;12379:22;12395:6;12379:13;:22;:::i;:::-;12359:17;;;;:9;:17;;;;;;;;;;;:42;;;;12412:20;;;;;;;;:30;;12436:6;;12359:9;12412:30;;12436:6;;12412:30;:::i;:::-;;;;;;;;12477:9;12460:35;;12469:6;12460:35;;;12488:6;12460:35;;;;;;:::i;:::-;;;;;;;;11899:604;;;;:::o;15337:92::-;;;;:::o;14:198:1:-;84:20;;144:42;133:54;;123:65;;113:2;;202:1;199;192:12;217:198;;329:2;317:9;308:7;304:23;300:32;297:2;;;350:6;342;335:22;297:2;378:31;399:9;378:31;:::i;:::-;368:41;287:128;-1:-1:-1;;;287:128:1:o;420:274::-;;;549:2;537:9;528:7;524:23;520:32;517:2;;;570:6;562;555:22;517:2;598:31;619:9;598:31;:::i;:::-;588:41;;648:40;684:2;673:9;669:18;648:40;:::i;:::-;638:50;;507:187;;;;;:::o;699:342::-;;;;845:2;833:9;824:7;820:23;816:32;813:2;;;866:6;858;851:22;813:2;894:31;915:9;894:31;:::i;:::-;884:41;;944:40;980:2;969:9;965:18;944:40;:::i;:::-;934:50;;1031:2;1020:9;1016:18;1003:32;993:42;;803:238;;;;;:::o;1046:266::-;;;1175:2;1163:9;1154:7;1150:23;1146:32;1143:2;;;1196:6;1188;1181:22;1143:2;1224:31;1245:9;1224:31;:::i;:::-;1214:41;1302:2;1287:18;;;;1274:32;;-1:-1:-1;;;1133:179:1:o;1317:187::-;1482:14;;1475:22;1457:41;;1445:2;1430:18;;1412:92::o;1509:662::-;;1650:2;1679;1668:9;1661:21;1711:6;1705:13;1754:6;1749:2;1738:9;1734:18;1727:34;1779:4;1792:140;1806:6;1803:1;1800:13;1792:140;;;1901:14;;;1897:23;;1891:30;1867:17;;;1886:2;1863:26;1856:66;1821:10;;1792:140;;;1950:6;1947:1;1944:13;1941:2;;;2020:4;2015:2;2006:6;1995:9;1991:22;1987:31;1980:45;1941:2;-1:-1:-1;2087:2:1;2075:15;2092:66;2071:88;2056:104;;;;2162:2;2052:113;;1630:541;-1:-1:-1;;;1630:541:1:o;2176:399::-;2378:2;2360:21;;;2417:2;2397:18;;;2390:30;2456:34;2451:2;2436:18;;2429:62;2527:5;2522:2;2507:18;;2500:33;2565:3;2550:19;;2350:225::o;2580:398::-;2782:2;2764:21;;;2821:2;2801:18;;;2794:30;2860:34;2855:2;2840:18;;2833:62;2931:4;2926:2;2911:18;;2904:32;2968:3;2953:19;;2754:224::o;2983:402::-;3185:2;3167:21;;;3224:2;3204:18;;;3197:30;3263:34;3258:2;3243:18;;3236:62;3334:8;3329:2;3314:18;;3307:36;3375:3;3360:19;;3157:228::o;3390:404::-;3592:2;3574:21;;;3631:2;3611:18;;;3604:30;3670:34;3665:2;3650:18;;3643:62;3741:10;3736:2;3721:18;;3714:38;3784:3;3769:19;;3564:230::o;3799:401::-;4001:2;3983:21;;;4040:2;4020:18;;;4013:30;4079:34;4074:2;4059:18;;4052:62;4150:7;4145:2;4130:18;;4123:35;4190:3;4175:19;;3973:227::o;4205:400::-;4407:2;4389:21;;;4446:2;4426:18;;;4419:30;4485:34;4480:2;4465:18;;4458:62;4556:6;4551:2;4536:18;;4529:34;4595:3;4580:19;;4379:226::o;4610:401::-;4812:2;4794:21;;;4851:2;4831:18;;;4824:30;4890:34;4885:2;4870:18;;4863:62;4961:7;4956:2;4941:18;;4934:35;5001:3;4986:19;;4784:227::o;5016:177::-;5162:25;;;5150:2;5135:18;;5117:76::o;5198:184::-;5370:4;5358:17;;;;5340:36;;5328:2;5313:18;;5295:87::o;5387:128::-;;5458:1;5454:6;5451:1;5448:13;5445:2;;;5464:18;;:::i;:::-;-1:-1:-1;5500:9:1;;5435:80::o;5520:125::-;;5588:1;5585;5582:8;5579:2;;;5593:18;;:::i;:::-;-1:-1:-1;5630:9:1;;5569:76::o;5650:437::-;5735:1;5725:12;;5782:1;5772:12;;;5793:2;;5847:4;5839:6;5835:17;5825:27;;5793:2;5900;5892:6;5889:14;5869:18;5866:38;5863:2;;;5937:77;5934:1;5927:88;6038:4;6035:1;6028:15;6066:4;6063:1;6056:15;5863:2;;5705:382;;;:::o;6092:184::-;6144:77;6141:1;6134:88;6241:4;6238:1;6231:15;6265:4;6262:1;6255:15
Swarm Source
ipfs://56d17a6412674aa89cce39efedc7df228a2db9f103f4b1821de089dd7574213e
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.