Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
420,000,000,000 TIR
Holders
60
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
100,000,000 TIRValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TIR
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-29 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } /** * @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); } /** * @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; } } contract TIR is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; string private _name = "Tears In Rain"; string private _symbol = "TIR"; uint8 private _decimals = 18; uint256 private _totalSupply; uint256 private initSupply = 420_000_000_000 * 10**_decimals; address receiveAddress = address(0xF3A4f20013A0BcD97EeD7440C069e79EEdd77560); /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor() { _mint(receiveAddress, initSupply); } /** * @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 _decimals; } /** * @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 {} }
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":"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"}]
Contract Creation Code
60c0604052600d60808190526c2a32b0b9399024b7102930b4b760991b60a0908152620000309160029190620001ab565b50604080518082019091526003808252622a24a960e91b60209092019182526200005b9181620001ab565b506004805460ff1916601217908190556200007b9060ff16600a620002f9565b6200008c906461c9f36800620003f1565b600655600780546001600160a01b03191673f3a4f20013a0bcd97eed7440c069e79eedd77560179055348015620000c257600080fd5b50600754600654620000de916001600160a01b031690620000e4565b62000466565b6001600160a01b038216620001165760405162461bcd60e51b81526004016200010d9062000251565b60405180910390fd5b6200012460008383620001a6565b806005600082825462000138919062000291565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200018c90859062000288565b60405180910390a3620001a260008383620001a6565b5050565b505050565b828054620001b99062000413565b90600052602060002090601f016020900481019282620001dd576000855562000228565b82601f10620001f857805160ff191683800117855562000228565b8280016001018555821562000228579182015b82811115620002285782518255916020019190600101906200020b565b50620002369291506200023a565b5090565b5b808211156200023657600081556001016200023b565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620002a757620002a762000450565b500190565b80825b6001808611620002c05750620002f0565b818704821115620002d557620002d562000450565b80861615620002e357918102915b9490941c938002620002af565b94509492505050565b60006200030d60001960ff85168462000314565b9392505050565b60008262000325575060016200030d565b8162000334575060006200030d565b81600181146200034d576002811462000358576200038c565b60019150506200030d565b60ff8411156200036c576200036c62000450565b6001841b91508482111562000385576200038562000450565b506200030d565b5060208310610133831016604e8410600b8410161715620003c4575081810a83811115620003be57620003be62000450565b6200030d565b620003d38484846001620002ac565b808604821115620003e857620003e862000450565b02949350505050565b60008160001904831182151516156200040e576200040e62000450565b500290565b6002810460018216806200042857607f821691505b602082108114156200044a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61091b80620004766000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012957806370a082311461013c57806395d89b411461014f578063a457c2d714610157578063a9059cbb1461016a578063dd62ed3e1461017d576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ec57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b6610190565b6040516100c3919061064c565b60405180910390f35b6100df6100da366004610618565b610222565b6040516100c39190610641565b6100f4610244565b6040516100c3919061086f565b6100df61010f3660046105dd565b61024a565b61011c610278565b6040516100c39190610878565b6100df610137366004610618565b610281565b6100f461014a36600461058a565b6102ad565b6100b66102cc565b6100df610165366004610618565b6102db565b6100df610178366004610618565b61032c565b6100f461018b3660046105ab565b610344565b60606002805461019f906108aa565b80601f01602080910402602001604051908101604052809291908181526020018280546101cb906108aa565b80156102185780601f106101ed57610100808354040283529160200191610218565b820191906000526020600020905b8154815290600101906020018083116101fb57829003601f168201915b5050505050905090565b60008061022d61036f565b905061023a818585610373565b5060019392505050565b60055490565b60008061025561036f565b9050610262858285610427565b61026d858585610471565b506001949350505050565b60045460ff1690565b60008061028c61036f565b905061023a81858561029e8589610344565b6102a89190610886565b610373565b6001600160a01b0381166000908152602081905260409020545b919050565b60606003805461019f906108aa565b6000806102e661036f565b905060006102f48286610344565b90508381101561031f5760405162461bcd60e51b81526004016103169061082a565b60405180910390fd5b61026d8286868403610373565b60008061033761036f565b905061023a818585610471565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166103995760405162461bcd60e51b8152600401610316906107e6565b6001600160a01b0382166103bf5760405162461bcd60e51b8152600401610316906106e2565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061041a90859061086f565b60405180910390a3505050565b60006104338484610344565b9050600019811461046b578181101561045e5760405162461bcd60e51b815260040161031690610724565b61046b8484848403610373565b50505050565b6001600160a01b0383166104975760405162461bcd60e51b8152600401610316906107a1565b6001600160a01b0382166104bd5760405162461bcd60e51b81526004016103169061069f565b6104c883838361056e565b6001600160a01b038316600090815260208190526040902054818110156105015760405162461bcd60e51b81526004016103169061075b565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061055f90869061086f565b60405180910390a361046b8484845b505050565b80356001600160a01b03811681146102c757600080fd5b60006020828403121561059b578081fd5b6105a482610573565b9392505050565b600080604083850312156105bd578081fd5b6105c683610573565b91506105d460208401610573565b90509250929050565b6000806000606084860312156105f1578081fd5b6105fa84610573565b925061060860208501610573565b9150604084013590509250925092565b6000806040838503121561062a578182fd5b61063383610573565b946020939093013593505050565b901515815260200190565b6000602080835283518082850152825b818110156106785785810183015185820160400152820161065c565b818111156106895783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156108a557634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806108be57607f821691505b602082108114156108df57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212209c9267766ee57e9a63980de765f9da29c7ab42f77e4ddd50a5e4c4681340b81764736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012957806370a082311461013c57806395d89b411461014f578063a457c2d714610157578063a9059cbb1461016a578063dd62ed3e1461017d576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ec57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b6610190565b6040516100c3919061064c565b60405180910390f35b6100df6100da366004610618565b610222565b6040516100c39190610641565b6100f4610244565b6040516100c3919061086f565b6100df61010f3660046105dd565b61024a565b61011c610278565b6040516100c39190610878565b6100df610137366004610618565b610281565b6100f461014a36600461058a565b6102ad565b6100b66102cc565b6100df610165366004610618565b6102db565b6100df610178366004610618565b61032c565b6100f461018b3660046105ab565b610344565b60606002805461019f906108aa565b80601f01602080910402602001604051908101604052809291908181526020018280546101cb906108aa565b80156102185780601f106101ed57610100808354040283529160200191610218565b820191906000526020600020905b8154815290600101906020018083116101fb57829003601f168201915b5050505050905090565b60008061022d61036f565b905061023a818585610373565b5060019392505050565b60055490565b60008061025561036f565b9050610262858285610427565b61026d858585610471565b506001949350505050565b60045460ff1690565b60008061028c61036f565b905061023a81858561029e8589610344565b6102a89190610886565b610373565b6001600160a01b0381166000908152602081905260409020545b919050565b60606003805461019f906108aa565b6000806102e661036f565b905060006102f48286610344565b90508381101561031f5760405162461bcd60e51b81526004016103169061082a565b60405180910390fd5b61026d8286868403610373565b60008061033761036f565b905061023a818585610471565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166103995760405162461bcd60e51b8152600401610316906107e6565b6001600160a01b0382166103bf5760405162461bcd60e51b8152600401610316906106e2565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061041a90859061086f565b60405180910390a3505050565b60006104338484610344565b9050600019811461046b578181101561045e5760405162461bcd60e51b815260040161031690610724565b61046b8484848403610373565b50505050565b6001600160a01b0383166104975760405162461bcd60e51b8152600401610316906107a1565b6001600160a01b0382166104bd5760405162461bcd60e51b81526004016103169061069f565b6104c883838361056e565b6001600160a01b038316600090815260208190526040902054818110156105015760405162461bcd60e51b81526004016103169061075b565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061055f90869061086f565b60405180910390a361046b8484845b505050565b80356001600160a01b03811681146102c757600080fd5b60006020828403121561059b578081fd5b6105a482610573565b9392505050565b600080604083850312156105bd578081fd5b6105c683610573565b91506105d460208401610573565b90509250929050565b6000806000606084860312156105f1578081fd5b6105fa84610573565b925061060860208501610573565b9150604084013590509250925092565b6000806040838503121561062a578182fd5b61063383610573565b946020939093013593505050565b901515815260200190565b6000602080835283518082850152825b818110156106785785810183015185820160400152820161065c565b818111156106895783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156108a557634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806108be57607f821691505b602082108114156108df57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212209c9267766ee57e9a63980de765f9da29c7ab42f77e4ddd50a5e4c4681340b81764736f6c63430008000033
Deployed Bytecode Sourcemap
4140:12503:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5083:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7582:242;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6210:108::-;;;:::i;:::-;;;;;;;:::i;8404:295::-;;;;;;:::i;:::-;;:::i;6045:100::-;;;:::i;:::-;;;;;;;:::i;9108:270::-;;;;;;:::i;:::-;;:::i;6381:177::-;;;;;;:::i;:::-;;:::i;5302:104::-;;;:::i;9881:505::-;;;;;;:::i;:::-;;:::i;6764:234::-;;;;;;:::i;:::-;;:::i;7061:201::-;;;;;;:::i;:::-;;:::i;5083:100::-;5137:13;5170:5;5163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5083:100;:::o;7582:242::-;7701:4;7723:13;7739:12;:10;:12::i;:::-;7723:28;;7762:32;7771:5;7778:7;7787:6;7762:8;:32::i;:::-;-1:-1:-1;7812:4:0;;7582:242;-1:-1:-1;;;7582:242:0:o;6210:108::-;6298:12;;6210:108;:::o;8404:295::-;8535:4;8552:15;8570:12;:10;:12::i;:::-;8552:30;;8593:38;8609:4;8615:7;8624:6;8593:15;:38::i;:::-;8642:27;8652:4;8658:2;8662:6;8642:9;:27::i;:::-;-1:-1:-1;8687:4:0;;8404:295;-1:-1:-1;;;;8404:295:0:o;6045:100::-;6128:9;;;;6045:100;:::o;9108:270::-;9223:4;9245:13;9261:12;:10;:12::i;:::-;9245:28;;9284:64;9293:5;9300:7;9337:10;9309:25;9319:5;9326:7;9309:9;:25::i;:::-;:38;;;;:::i;:::-;9284:8;:64::i;6381:177::-;-1:-1:-1;;;;;6532:18:0;;6500:7;6532:18;;;;;;;;;;;6381:177;;;;:::o;5302:104::-;5358:13;5391:7;5384:14;;;;;:::i;9881:505::-;10001:4;10023:13;10039:12;:10;:12::i;:::-;10023:28;;10062:24;10089:25;10099:5;10106:7;10089:9;:25::i;:::-;10062:52;;10167:15;10147:16;:35;;10125:122;;;;-1:-1:-1;;;10125:122:0;;;;;;;:::i;:::-;;;;;;;;;10283:60;10292:5;10299:7;10327:15;10308:16;:34;10283:8;:60::i;6764:234::-;6879:4;6901:13;6917:12;:10;:12::i;:::-;6901:28;;6940;6950:5;6957:2;6961:6;6940:9;:28::i;7061:201::-;-1:-1:-1;;;;;7227:18:0;;;7195:7;7227:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7061:201::o;3924:98::-;4004:10;3924:98;:::o;14014:380::-;-1:-1:-1;;;;;14150:19:0;;14142:68;;;;-1:-1:-1;;;14142:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14229:21:0;;14221:68;;;;-1:-1:-1;;;14221:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14302:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14354:32;;;;;14332:6;;14354:32;:::i;:::-;;;;;;;;14014:380;;;:::o;14685:502::-;14820:24;14847:25;14857:5;14864:7;14847:9;:25::i;:::-;14820:52;;-1:-1:-1;;14887:16:0;:37;14883:297;;14987:6;14967:16;:26;;14941:117;;;;-1:-1:-1;;;14941:117:0;;;;;;;:::i;:::-;15102:51;15111:5;15118:7;15146:6;15127:16;:25;15102:8;:51::i;:::-;14685:502;;;;:::o;10856:877::-;-1:-1:-1;;;;;10987:18:0;;10979:68;;;;-1:-1:-1;;;10979:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11066:16:0;;11058:64;;;;-1:-1:-1;;;11058:64:0;;;;;;;:::i;:::-;11135:38;11156:4;11162:2;11166:6;11135:20;:38::i;:::-;-1:-1:-1;;;;;11208:15:0;;11186:19;11208:15;;;;;;;;;;;11256:21;;;;11234:109;;;;-1:-1:-1;;;11234:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11379:15:0;;;:9;:15;;;;;;;;;;;11397:20;;;11379:38;;11597:13;;;;;;;;;;:23;;;;;;11649:26;;;;;;11411:6;;11649:26;:::i;:::-;;;;;;;;11688:37;11708:4;11714:2;11718:6;15787:125;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:187::-;1459:14;;1452:22;1434:41;;1422:2;1407:18;;1389:92::o;1486:603::-;;1627:2;1656;1645:9;1638:21;1688:6;1682:13;1731:6;1726:2;1715:9;1711:18;1704:34;1756:4;1769:140;1783:6;1780:1;1777:13;1769:140;;;1878:14;;;1874:23;;1868:30;1844:17;;;1863:2;1840:26;1833:66;1798:10;;1769:140;;;1927:6;1924:1;1921:13;1918:2;;;1997:4;1992:2;1983:6;1972:9;1968:22;1964:31;1957:45;1918:2;-1:-1:-1;2073:2:1;2052:15;-1:-1:-1;;2048:29:1;2033:45;;;;2080:2;2029:54;;1607:482;-1:-1:-1;;;1607:482:1:o;2094:399::-;2296:2;2278:21;;;2335:2;2315:18;;;2308:30;2374:34;2369:2;2354:18;;2347:62;-1:-1:-1;;;2440:2:1;2425:18;;2418:33;2483:3;2468:19;;2268:225::o;2498:398::-;2700:2;2682:21;;;2739:2;2719:18;;;2712:30;2778:34;2773:2;2758:18;;2751:62;-1:-1:-1;;;2844:2:1;2829:18;;2822:32;2886:3;2871:19;;2672:224::o;2901:353::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:31;3176:2;3161:18;;3154:59;3245:2;3230:18;;3075:179::o;3259:402::-;3461:2;3443:21;;;3500:2;3480:18;;;3473:30;3539:34;3534:2;3519:18;;3512:62;-1:-1:-1;;;3605:2:1;3590:18;;3583:36;3651:3;3636:19;;3433:228::o;3666:401::-;3868:2;3850:21;;;3907:2;3887:18;;;3880:30;3946:34;3941:2;3926:18;;3919:62;-1:-1:-1;;;4012:2:1;3997:18;;3990:35;4057:3;4042:19;;3840:227::o;4072:400::-;4274:2;4256:21;;;4313:2;4293:18;;;4286:30;4352:34;4347:2;4332:18;;4325:62;-1:-1:-1;;;4418:2:1;4403:18;;4396:34;4462:3;4447:19;;4246:226::o;4477:401::-;4679:2;4661:21;;;4718:2;4698:18;;;4691:30;4757:34;4752:2;4737:18;;4730:62;-1:-1:-1;;;4823:2:1;4808:18;;4801:35;4868:3;4853:19;;4651:227::o;4883:177::-;5029:25;;;5017:2;5002:18;;4984:76::o;5065:184::-;5237:4;5225:17;;;;5207:36;;5195:2;5180:18;;5162:87::o;5254:229::-;;5325:1;5321:6;5318:1;5315:13;5312:2;;;-1:-1:-1;;;5351:33:1;;5407:4;5404:1;5397:15;5437:4;5358:3;5425:17;5312:2;-1:-1:-1;5468:9:1;;5302:181::o;5488:380::-;5573:1;5563:12;;5620:1;5610:12;;;5631:2;;5685:4;5677:6;5673:17;5663:27;;5631:2;5738;5730:6;5727:14;5707:18;5704:38;5701:2;;;5784:10;5779:3;5775:20;5772:1;5765:31;5819:4;5816:1;5809:15;5847:4;5844:1;5837:15;5701:2;;5543:325;;;:::o
Swarm Source
ipfs://9c9267766ee57e9a63980de765f9da29c7ab42f77e4ddd50a5e4c4681340b817
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.