ERC-20
Overview
Max Total Supply
420,000,000,000,000 TISM
Holders
94
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.506462276872260273 TISMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AutismCoin
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-20 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; // 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.7.0) (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.6.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); } /** * @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 AutismCoin is Context, Ownable, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => uint256) private _blockNumberByAddress; mapping(address => bool) private _isContractExempt; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private _blockCooldownAmount = 10; string private _name; string private _symbol; bool private _antiMEVActive = false; /** * @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_; _isContractExempt[address(this)] = true; _mint(_msgSender(), (((420_000_000_000_000 ether) * 90) / 100)); _mint( 0xB3DE00b4ef3A54dF75ba7d1231fE2617fB533310, (((420_000_000_000_000 ether) * 10) / 100) ); // treasury } /** * @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); _checkMEV(from, to); 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 {} /** * @dev Hook that is called before any transfer of tokens. Excluding * 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 _checkMEV(address from, address to) internal virtual { if (_antiMEVActive) { if (!_isContractExempt[from] && !_isContractExempt[to]) { address human = _getHuman(from, to); _checkBlockNumber(human); _blockNumberByAddress[human] = block.number; } } } /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function _isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } function _getHuman(address _from, address _to) internal view returns (address) { require(!_isContract(_from) || !_isContract(_to), "Bot"); if (_isContract(_to)) return _from; else return _to; } function _checkBlockNumber(address account) internal virtual { require( _blockNumberByAddress[account] == 0 || ((_blockNumberByAddress[account] + _blockCooldownAmount) < (block.number + 1)), "Incorrect block" ); } function setAntiMEVActive(bool value) external onlyOwner { _antiMEVActive = value; } function setContractExempt(address account, bool value) external onlyOwner { _isContractExempt[account] = value; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setAntiMEVActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setContractExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600a6006556009805460ff191690553480156200002057600080fd5b5060405162001137380380620011378339810160408190526200004391620002bf565b6200004e33620000dd565b60076200005c8382620003b7565b5060086200006b8282620003b7565b50306000908152600360205260409020805460ff19166001179055620000a7620000923390565b6d12a307df8b8808a74be2800000006200012d565b620000d573b3de00b4ef3a54df75ba7d1231fe2617fb5333106d02121d51ba2b8f2f086e800000006200012d565b5050620004ab565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001885760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600560008282546200019c919062000483565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200022257600080fd5b81516001600160401b03808211156200023f576200023f620001fa565b604051601f8301601f19908116603f011681019082821181831017156200026a576200026a620001fa565b816040528381526020925086838588010111156200028757600080fd5b600091505b83821015620002ab57858201830151818301840152908201906200028c565b600093810190920192909252949350505050565b60008060408385031215620002d357600080fd5b82516001600160401b0380821115620002eb57600080fd5b620002f98683870162000210565b935060208501519150808211156200031057600080fd5b506200031f8582860162000210565b9150509250929050565b600181811c908216806200033e57607f821691505b6020821081036200035f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001f557600081815260208120601f850160051c810160208610156200038e5750805b601f850160051c820191505b81811015620003af578281556001016200039a565b505050505050565b81516001600160401b03811115620003d357620003d3620001fa565b620003eb81620003e4845462000329565b8462000365565b602080601f8311600181146200042357600084156200040a5750858301515b600019600386901b1c1916600185901b178555620003af565b600085815260208120601f198616915b82811015620004545788860151825594840194600190910190840162000433565b5085821015620004735787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620004a557634e487b7160e01b600052601160045260246000fd5b92915050565b610c7c80620004bb6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610209578063a9059cbb1461021c578063dd62ed3e1461022f578063f2fde38b1461024257600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee5780639686d322146101f657600080fd5b80632833bbab116100d35780632833bbab1461016b578063313ce56714610180578063395093511461018f57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610255565b60405161011a9190610a71565b60405180910390f35b610136610131366004610adb565b6102e7565b604051901515815260200161011a565b6005545b60405190815260200161011a565b610136610166366004610b05565b610301565b61017e610179366004610b51565b610325565b005b6040516012815260200161011a565b61013661019d366004610adb565b610340565b61014a6101b0366004610b73565b6001600160a01b031660009081526001602052604090205490565b61017e610362565b6000546040516001600160a01b03909116815260200161011a565b61010d610376565b61017e610204366004610b8e565b610385565b610136610217366004610adb565b6103b8565b61013661022a366004610adb565b610438565b61014a61023d366004610bc1565b610446565b61017e610250366004610b73565b610471565b60606007805461026490610beb565b80601f016020809104026020016040519081016040528092919081815260200182805461029090610beb565b80156102dd5780601f106102b2576101008083540402835291602001916102dd565b820191906000526020600020905b8154815290600101906020018083116102c057829003601f168201915b5050505050905090565b6000336102f58185856104ea565b60019150505b92915050565b60003361030f85828561060e565b61031a858585610688565b506001949350505050565b61032d61083d565b6009805460ff1916911515919091179055565b6000336102f58185856103538383610446565b61035d9190610c25565b6104ea565b61036a61083d565b6103746000610897565b565b60606008805461026490610beb565b61038d61083d565b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b600033816103c68286610446565b90508381101561042b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61031a82868684036104ea565b6000336102f5818585610688565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b61047961083d565b6001600160a01b0381166104de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610422565b6104e781610897565b50565b6001600160a01b03831661054c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610422565b6001600160a01b0382166105ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610422565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061061a8484610446565b9050600019811461068257818110156106755760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610422565b61068284848484036104ea565b50505050565b6001600160a01b0383166106ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610422565b6001600160a01b03821661074e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610422565b61075883836108e7565b6001600160a01b038316600090815260016020526040902054818110156107d05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610422565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108309086815260200190565b60405180910390a3610682565b6000546001600160a01b031633146103745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610422565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60095460ff161561096b576001600160a01b03821660009081526003602052604090205460ff1615801561093457506001600160a01b03811660009081526003602052604090205460ff16155b1561096b576000610945838361096f565b9050610950816109e0565b6001600160a01b031660009081526002602052604090204390555b5050565b60006001600160a01b0383163b158061099057506001600160a01b0382163b155b6109c25760405162461bcd60e51b8152602060048201526003602482015262109bdd60ea1b6044820152606401610422565b6001600160a01b0382163b156109d95750816102fb565b50806102fb565b6001600160a01b0381166000908152600260205260409020541580610a335750610a0b436001610c25565b6006546001600160a01b038316600090815260026020526040902054610a319190610c25565b105b6104e75760405162461bcd60e51b815260206004820152600f60248201526e496e636f727265637420626c6f636b60881b6044820152606401610422565b600060208083528351808285015260005b81811015610a9e57858101830151858201604001528201610a82565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ad657600080fd5b919050565b60008060408385031215610aee57600080fd5b610af783610abf565b946020939093013593505050565b600080600060608486031215610b1a57600080fd5b610b2384610abf565b9250610b3160208501610abf565b9150604084013590509250925092565b80358015158114610ad657600080fd5b600060208284031215610b6357600080fd5b610b6c82610b41565b9392505050565b600060208284031215610b8557600080fd5b610b6c82610abf565b60008060408385031215610ba157600080fd5b610baa83610abf565b9150610bb860208401610b41565b90509250929050565b60008060408385031215610bd457600080fd5b610bdd83610abf565b9150610bb860208401610abf565b600181811c90821680610bff57607f821691505b602082108103610c1f57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102fb57634e487b7160e01b600052601160045260246000fdfea2646970667358221220ee0d7be960b9776b6db885adc6f761ab3812d6949db9da0beafe72bad03f0ddd64736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b41757469736d20436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045449534d00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610209578063a9059cbb1461021c578063dd62ed3e1461022f578063f2fde38b1461024257600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee5780639686d322146101f657600080fd5b80632833bbab116100d35780632833bbab1461016b578063313ce56714610180578063395093511461018f57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610255565b60405161011a9190610a71565b60405180910390f35b610136610131366004610adb565b6102e7565b604051901515815260200161011a565b6005545b60405190815260200161011a565b610136610166366004610b05565b610301565b61017e610179366004610b51565b610325565b005b6040516012815260200161011a565b61013661019d366004610adb565b610340565b61014a6101b0366004610b73565b6001600160a01b031660009081526001602052604090205490565b61017e610362565b6000546040516001600160a01b03909116815260200161011a565b61010d610376565b61017e610204366004610b8e565b610385565b610136610217366004610adb565b6103b8565b61013661022a366004610adb565b610438565b61014a61023d366004610bc1565b610446565b61017e610250366004610b73565b610471565b60606007805461026490610beb565b80601f016020809104026020016040519081016040528092919081815260200182805461029090610beb565b80156102dd5780601f106102b2576101008083540402835291602001916102dd565b820191906000526020600020905b8154815290600101906020018083116102c057829003601f168201915b5050505050905090565b6000336102f58185856104ea565b60019150505b92915050565b60003361030f85828561060e565b61031a858585610688565b506001949350505050565b61032d61083d565b6009805460ff1916911515919091179055565b6000336102f58185856103538383610446565b61035d9190610c25565b6104ea565b61036a61083d565b6103746000610897565b565b60606008805461026490610beb565b61038d61083d565b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b600033816103c68286610446565b90508381101561042b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61031a82868684036104ea565b6000336102f5818585610688565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b61047961083d565b6001600160a01b0381166104de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610422565b6104e781610897565b50565b6001600160a01b03831661054c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610422565b6001600160a01b0382166105ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610422565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061061a8484610446565b9050600019811461068257818110156106755760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610422565b61068284848484036104ea565b50505050565b6001600160a01b0383166106ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610422565b6001600160a01b03821661074e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610422565b61075883836108e7565b6001600160a01b038316600090815260016020526040902054818110156107d05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610422565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108309086815260200190565b60405180910390a3610682565b6000546001600160a01b031633146103745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610422565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60095460ff161561096b576001600160a01b03821660009081526003602052604090205460ff1615801561093457506001600160a01b03811660009081526003602052604090205460ff16155b1561096b576000610945838361096f565b9050610950816109e0565b6001600160a01b031660009081526002602052604090204390555b5050565b60006001600160a01b0383163b158061099057506001600160a01b0382163b155b6109c25760405162461bcd60e51b8152602060048201526003602482015262109bdd60ea1b6044820152606401610422565b6001600160a01b0382163b156109d95750816102fb565b50806102fb565b6001600160a01b0381166000908152600260205260409020541580610a335750610a0b436001610c25565b6006546001600160a01b038316600090815260026020526040902054610a319190610c25565b105b6104e75760405162461bcd60e51b815260206004820152600f60248201526e496e636f727265637420626c6f636b60881b6044820152606401610422565b600060208083528351808285015260005b81811015610a9e57858101830151858201604001528201610a82565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ad657600080fd5b919050565b60008060408385031215610aee57600080fd5b610af783610abf565b946020939093013593505050565b600080600060608486031215610b1a57600080fd5b610b2384610abf565b9250610b3160208501610abf565b9150604084013590509250925092565b80358015158114610ad657600080fd5b600060208284031215610b6357600080fd5b610b6c82610b41565b9392505050565b600060208284031215610b8557600080fd5b610b6c82610abf565b60008060408385031215610ba157600080fd5b610baa83610abf565b9150610bb860208401610b41565b90509250929050565b60008060408385031215610bd457600080fd5b610bdd83610abf565b9150610bb860208401610abf565b600181811c90821680610bff57607f821691505b602082108103610c1f57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102fb57634e487b7160e01b600052601160045260246000fdfea2646970667358221220ee0d7be960b9776b6db885adc6f761ab3812d6949db9da0beafe72bad03f0ddd64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b41757469736d20436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045449534d00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Autism Coin
Arg [1] : symbol_ (string): TISM
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 41757469736d20436f696e000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 5449534d00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
8422:16079:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9578:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12079:242;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;12079:242:0;1004:187:1;10707:108:0;10795:12;;10707:108;;;1342:25:1;;;1330:2;1315:18;10707:108:0;1196:177:1;12901:295:0;;;;;;:::i;:::-;;:::i;24264:98::-;;;;;;:::i;:::-;;:::i;:::-;;10549:93;;;10632:2;2203:36:1;;2191:2;2176:18;10549:93:0;2061:184:1;13605:270:0;;;;;;:::i;:::-;;:::i;10878:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11029:18:0;10997:7;11029:18;;;:9;:18;;;;;;;10878:177;2760:103;;;:::i;2119:87::-;2165:7;2192:6;2119:87;;-1:-1:-1;;;;;2192:6:0;;;2587:51:1;;2575:2;2560:18;2119:87:0;2441:203:1;9797:104:0;;;:::i;24370:128::-;;;;;;:::i;:::-;;:::i;14378:505::-;;;;;;:::i;:::-;;:::i;11261:234::-;;;;;;:::i;:::-;;:::i;11558:201::-;;;;;;:::i;:::-;;:::i;3018:238::-;;;;;;:::i;:::-;;:::i;9578:100::-;9632:13;9665:5;9658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9578:100;:::o;12079:242::-;12198:4;811:10;12259:32;811:10;12275:7;12284:6;12259:8;:32::i;:::-;12309:4;12302:11;;;12079:242;;;;;:::o;12901:295::-;13032:4;811:10;13090:38;13106:4;811:10;13121:6;13090:15;:38::i;:::-;13139:27;13149:4;13155:2;13159:6;13139:9;:27::i;:::-;-1:-1:-1;13184:4:0;;12901:295;-1:-1:-1;;;;12901:295:0:o;24264:98::-;2005:13;:11;:13::i;:::-;24332:14:::1;:22:::0;;-1:-1:-1;;24332:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24264:98::o;13605:270::-;13720:4;811:10;13781:64;811:10;13797:7;13834:10;13806:25;811:10;13797:7;13806:9;:25::i;:::-;:38;;;;:::i;:::-;13781:8;:64::i;2760:103::-;2005:13;:11;:13::i;:::-;2825:30:::1;2852:1;2825:18;:30::i;:::-;2760:103::o:0;9797:104::-;9853:13;9886:7;9879:14;;;;;:::i;24370:128::-;2005:13;:11;:13::i;:::-;-1:-1:-1;;;;;24456:26:0;;;::::1;;::::0;;;:17:::1;:26;::::0;;;;:34;;-1:-1:-1;;24456:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24370:128::o;14378:505::-;14498:4;811:10;14498:4;14586:25;811:10;14603:7;14586:9;:25::i;:::-;14559:52;;14664:15;14644:16;:35;;14622:122;;;;-1:-1:-1;;;14622:122:0;;3987:2:1;14622:122:0;;;3969:21:1;4026:2;4006:18;;;3999:30;4065:34;4045:18;;;4038:62;-1:-1:-1;;;4116:18:1;;;4109:35;4161:19;;14622:122:0;;;;;;;;;14780:60;14789:5;14796:7;14824:15;14805:16;:34;14780:8;:60::i;11261:234::-;11376:4;811:10;11437:28;811:10;11454:2;11458:6;11437:9;:28::i;11558:201::-;-1:-1:-1;;;;;11724:18:0;;;11692:7;11724:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11558:201::o;3018:238::-;2005:13;:11;:13::i;:::-;-1:-1:-1;;;;;3121:22:0;::::1;3099:110;;;::::0;-1:-1:-1;;;3099:110:0;;4393:2:1;3099:110:0::1;::::0;::::1;4375:21:1::0;4432:2;4412:18;;;4405:30;4471:34;4451:18;;;4444:62;-1:-1:-1;;;4522:18:1;;;4515:36;4568:19;;3099:110:0::1;4191:402:1::0;3099:110:0::1;3220:28;3239:8;3220:18;:28::i;:::-;3018:238:::0;:::o;18543:380::-;-1:-1:-1;;;;;18679:19:0;;18671:68;;;;-1:-1:-1;;;18671:68:0;;4800:2:1;18671:68:0;;;4782:21:1;4839:2;4819:18;;;4812:30;4878:34;4858:18;;;4851:62;-1:-1:-1;;;4929:18:1;;;4922:34;4973:19;;18671:68:0;4598:400:1;18671:68:0;-1:-1:-1;;;;;18758:21:0;;18750:68;;;;-1:-1:-1;;;18750:68:0;;5205:2:1;18750:68:0;;;5187:21:1;5244:2;5224:18;;;5217:30;5283:34;5263:18;;;5256:62;-1:-1:-1;;;5334:18:1;;;5327:32;5376:19;;18750:68:0;5003:398:1;18750:68:0;-1:-1:-1;;;;;18831:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18883:32;;1342:25:1;;;18883:32:0;;1315:18:1;18883:32:0;;;;;;;18543:380;;;:::o;19214:502::-;19349:24;19376:25;19386:5;19393:7;19376:9;:25::i;:::-;19349:52;;-1:-1:-1;;19416:16:0;:37;19412:297;;19516:6;19496:16;:26;;19470:117;;;;-1:-1:-1;;;19470:117:0;;5608:2:1;19470:117:0;;;5590:21:1;5647:2;5627:18;;;5620:30;5686:31;5666:18;;;5659:59;5735:18;;19470:117:0;5406:353:1;19470:117:0;19631:51;19640:5;19647:7;19675:6;19656:16;:25;19631:8;:51::i;:::-;19338:378;19214:502;;;:::o;15353:909::-;-1:-1:-1;;;;;15484:18:0;;15476:68;;;;-1:-1:-1;;;15476:68:0;;5966:2:1;15476:68:0;;;5948:21:1;6005:2;5985:18;;;5978:30;6044:34;6024:18;;;6017:62;-1:-1:-1;;;6095:18:1;;;6088:35;6140:19;;15476:68:0;5764:401:1;15476:68:0;-1:-1:-1;;;;;15563:16:0;;15555:64;;;;-1:-1:-1;;;15555:64:0;;6372:2:1;15555:64:0;;;6354:21:1;6411:2;6391:18;;;6384:30;6450:34;6430:18;;;6423:62;-1:-1:-1;;;6501:18:1;;;6494:33;6544:19;;15555:64:0;6170:399:1;15555:64:0;15683:19;15693:4;15699:2;15683:9;:19::i;:::-;-1:-1:-1;;;;;15737:15:0;;15715:19;15737:15;;;:9;:15;;;;;;15785:21;;;;15763:109;;;;-1:-1:-1;;;15763:109:0;;6776:2:1;15763:109:0;;;6758:21:1;6815:2;6795:18;;;6788:30;6854:34;6834:18;;;6827:62;-1:-1:-1;;;6905:18:1;;;6898:36;6951:19;;15763:109:0;6574:402:1;15763:109:0;-1:-1:-1;;;;;15908:15:0;;;;;;;:9;:15;;;;;;15926:20;;;15908:38;;16126:13;;;;;;;;;;:23;;;;;;16178:26;;;;;;15940:6;1342:25:1;;1330:2;1315:18;;1196:177;16178:26:0;;;;;;;;16217:37;20316:125;2284:132;2165:7;2192:6;-1:-1:-1;;;;;2192:6:0;811:10;2348:23;2340:68;;;;-1:-1:-1;;;2340:68:0;;7183:2:1;2340:68:0;;;7165:21:1;;;7202:18;;;7195:30;7261:34;7241:18;;;7234:62;7313:18;;2340:68:0;6981:356:1;3416:191:0;3490:16;3509:6;;-1:-1:-1;;;;;3526:17:0;;;-1:-1:-1;;;;;;3526:17:0;;;;;;3559:40;;3509:6;;;;;;;3559:40;;3490:16;3559:40;3479:128;3416:191;:::o;21765:357::-;21842:14;;;;21838:277;;;-1:-1:-1;;;;;21878:23:0;;;;;;:17;:23;;;;;;;;21877:24;:50;;;;-1:-1:-1;;;;;;21906:21:0;;;;;;:17;:21;;;;;;;;21905:22;21877:50;21873:231;;;21948:13;21964:19;21974:4;21980:2;21964:9;:19::i;:::-;21948:35;;22002:24;22020:5;22002:17;:24::i;:::-;-1:-1:-1;;;;;22045:28:0;;;;;:21;:28;;;;;22076:12;22045:43;;21873:231;21765:357;;:::o;23691:257::-;23788:7;-1:-1:-1;;;;;23652:19:0;;;:23;;23821:40;;-1:-1:-1;;;;;;23652:19:0;;;:23;23821:40;23813:56;;;;-1:-1:-1;;;23813:56:0;;7544:2:1;23813:56:0;;;7526:21:1;7583:1;7563:18;;;7556:29;-1:-1:-1;;;7601:18:1;;;7594:33;7644:18;;23813:56:0;7342:326:1;23813:56:0;-1:-1:-1;;;;;23652:19:0;;;:23;23880:60;;-1:-1:-1;23909:5:0;23902:12;;23880:60;-1:-1:-1;23937:3:0;23930:10;;23956:300;-1:-1:-1;;;;;24050:30:0;;;;;;:21;:30;;;;;;:35;;:155;;-1:-1:-1;24187:16:0;:12;24202:1;24187:16;:::i;:::-;24141:20;;-1:-1:-1;;;;;24108:30:0;;;;;;:21;:30;;;;;;:53;;24141:20;24108:53;:::i;:::-;24107:97;24050:155;24028:220;;;;-1:-1:-1;;;24028:220:0;;7875:2:1;24028:220:0;;;7857:21:1;7914:2;7894:18;;;7887:30;-1:-1:-1;;;7933:18:1;;;7926:45;7988:18;;24028:220:0;7673:339: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;1711:160::-;1776:20;;1832:13;;1825:21;1815:32;;1805:60;;1861:1;1858;1851:12;1876:180;1932:6;1985:2;1973:9;1964:7;1960:23;1956:32;1953:52;;;2001:1;1998;1991:12;1953:52;2024:26;2040:9;2024:26;:::i;:::-;2014:36;1876:180;-1:-1:-1;;;1876:180:1:o;2250:186::-;2309:6;2362:2;2350:9;2341:7;2337:23;2333:32;2330:52;;;2378:1;2375;2368:12;2330:52;2401:29;2420:9;2401:29;:::i;2649:254::-;2714:6;2722;2775:2;2763:9;2754:7;2750:23;2746:32;2743:52;;;2791:1;2788;2781:12;2743:52;2814:29;2833:9;2814:29;:::i;:::-;2804:39;;2862:35;2893:2;2882:9;2878:18;2862:35;:::i;:::-;2852:45;;2649:254;;;;;:::o;2908:260::-;2976:6;2984;3037:2;3025:9;3016:7;3012:23;3008:32;3005:52;;;3053:1;3050;3043:12;3005:52;3076:29;3095:9;3076:29;:::i;:::-;3066:39;;3124:38;3158:2;3147:9;3143:18;3124:38;:::i;3173:380::-;3252:1;3248:12;;;;3295;;;3316:61;;3370:4;3362:6;3358:17;3348:27;;3316:61;3423:2;3415:6;3412:14;3392:18;3389:38;3386:161;;3469:10;3464:3;3460:20;3457:1;3450:31;3504:4;3501:1;3494:15;3532:4;3529:1;3522:15;3386:161;;3173:380;;;:::o;3558:222::-;3623:9;;;3644:10;;;3641:133;;;3696:10;3691:3;3687:20;3684:1;3677:31;3731:4;3728:1;3721:15;3759:4;3756:1;3749:15
Swarm Source
ipfs://ee0d7be960b9776b6db885adc6f761ab3812d6949db9da0beafe72bad03f0ddd
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.