CRC-20
Overview
Max Total Supply
131,230,697.0382 STARDUST
Holders
2,084
Market
Price
$0.00 @ 0.000000 CRO
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
16,016.578202986460579249 STARDUSTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Stardust
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2023-06-14 */ // SPDX-License-Identifier: MIT 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) { return msg.data; } } pragma solidity ^0.8.0; /** * @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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing 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); } } 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); } 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); } 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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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(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: * * - `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 {} } pragma solidity ^0.8.11; contract AddressRegistry { mapping(bytes32 => address) public addresses; function getAddress(bytes32 _identifier) public view returns (address) { return addresses[_identifier]; } function _setAddress(bytes32 _identifier, address contractAddress) internal { addresses[_identifier] = contractAddress; } } pragma solidity ^0.8.11; contract AtlantisAddressRegistry is Ownable, AddressRegistry { bytes32 private constant ARGONAUTS = "ARGONAUTS"; bytes32 private constant ARGO = "ARGO"; bytes32 private constant XARGO = "XARGO"; bytes32 private constant GOLD = "GOLD"; bytes32 private constant STARDUST = "STARDUST"; bytes32 private constant ATLANTIS = "ATLANTIS"; bytes32 private constant ATLANTIS_PLANETS = "ATLANTIS_PLANETS"; bytes32 private constant STAKING_WITH_LOCK = "STAKING_WITH_LOCK"; bytes32 private constant ATLANTIS_GEMSTONES = "GEMSTONES"; bytes32 private constant ATLANTIS_EQUIPMENTS = "EQUIPMENTS"; bytes32 private constant ATLANTIS_SPACESHIPS = "SPACESHIPS"; bytes32 private constant ATLANTIS_RACING = "RACING"; bytes32 private constant ATLANTIS_MARKETPLACE = "MARKETPLACE"; bytes32 private constant ATLANTIS_AUCTION = "AUCTION"; bytes32 private constant STARDUST_PLEDGING = "PLEDGING"; bytes32 private constant GOLD_STAKING = "GOLD_STAKING"; mapping(address => bool) private _addresses; function setArgonauts(address contractAddress) external onlyOwner { _setAddress(ARGONAUTS, contractAddress); } function setArgo(address contractAddress) external onlyOwner { _setAddress(ARGO, contractAddress); } function setXargo(address contractAddress) external onlyOwner { _setAddress(XARGO, contractAddress); } function setGold(address contractAddress) external onlyOwner { _setAddress(GOLD, contractAddress); } function setStardust(address contractAddress) external onlyOwner { _setAddress(STARDUST, contractAddress); } function setAtlantis(address contractAddress) external onlyOwner { _setAddress(ATLANTIS, contractAddress); } function setAtlantisPlanets(address contractAddress) external onlyOwner { _setAddress(ATLANTIS_PLANETS, contractAddress); } function setStakingWithLock(address contractAddress) external onlyOwner { _setAddress(STAKING_WITH_LOCK, contractAddress); } function setGemstones(address contractAddress) external onlyOwner { _setAddress(ATLANTIS_GEMSTONES, contractAddress); } function setEquipments(address contractAddress) external onlyOwner { _setAddress(ATLANTIS_EQUIPMENTS, contractAddress); } function setSpaceships(address contractAddress) external onlyOwner { _setAddress(ATLANTIS_SPACESHIPS, contractAddress); } function setRacing(address contractAddress) external onlyOwner { _setAddress(ATLANTIS_RACING, contractAddress); } function setMarketplace(address contractAddress) external onlyOwner { _setAddress(ATLANTIS_MARKETPLACE, contractAddress); } function setAuction(address contractAddress) external onlyOwner { _setAddress(ATLANTIS_AUCTION, contractAddress); } function setPledging(address contractAddress) external onlyOwner { _setAddress(STARDUST_PLEDGING, contractAddress); } function setGoldStaking(address contractAddress) external onlyOwner { _setAddress(GOLD_STAKING, contractAddress); } function getArgonauts() external view returns (address) { return getAddress(ARGONAUTS); } function getArgo() external view returns (address) { return getAddress(ARGO); } function getXargo() external view returns (address) { return getAddress(XARGO); } function getGold() external view returns (address) { return getAddress(GOLD); } function getStardust() external view returns (address) { return getAddress(STARDUST); } function getAtlantis() public view returns (address) { return getAddress(ATLANTIS); } function getAtlantisPlanets() public view returns (address) { return getAddress(ATLANTIS_PLANETS); } function getStakingWithLock() external view returns (address) { return getAddress(STAKING_WITH_LOCK); } function getGemstones() public view returns (address) { return getAddress(ATLANTIS_GEMSTONES); } function getEquipments() public view returns (address) { return getAddress(ATLANTIS_EQUIPMENTS); } function getSpaceships() external view returns (address) { return getAddress(ATLANTIS_SPACESHIPS); } function getRacing() external view returns (address) { return getAddress(ATLANTIS_RACING); } function getMarketplace() external view returns (address) { return getAddress(ATLANTIS_MARKETPLACE); } function getAuction() external view returns (address) { return getAddress(ATLANTIS_AUCTION); } function getPledging() external view returns (address) { return getAddress(STARDUST_PLEDGING); } function getGoldStaking() external view returns (address) { return getAddress(GOLD_STAKING); } function isControllerContract(address _contractAddress) external view returns (bool) { if ( _contractAddress == getAtlantis() || _contractAddress == getGemstones() || _contractAddress == getAtlantisPlanets() || _contractAddress == getEquipments() ) { return true; } return false; } } pragma solidity ^0.8.11; interface IMintBurnToken is IERC20 { function mint(address to, uint256 amount) external returns (bool); function burn(uint256 amount) external returns (bool); } pragma solidity 0.8.11; /// @title Atlantis Stardust Contract /// @author Kratos contract Stardust is ERC20, IMintBurnToken { AtlantisAddressRegistry public atlantisRegistry; event Minted(address to, uint256 amount); constructor(AtlantisAddressRegistry _atlantisRegistry) ERC20("Stardust", "STARDUST") { atlantisRegistry = _atlantisRegistry; } /** * @notice Mints Stardust Tokens to the specified address. * @dev Can only be called by StakingWithLock * @param _to Address to mint to * @param _amount Amount of Stardust to mint */ function mint(address _to, uint256 _amount) external override returns (bool) { require( msg.sender == atlantisRegistry.getStakingWithLock(), "Stardust: Only StakingWithLock can mint Stardust" ); _mint(_to, _amount); emit Minted(_to, _amount); return true; } /** * @notice Burn `amount` tokens and decreasing the total supply. * @dev Can only be called by StakingWithLock * @param amount Amount of tokens to burn */ function burn(uint256 amount) external override returns (bool) { require( msg.sender == atlantisRegistry.getStakingWithLock(), "Stardust: Only StakingWithLock can burn Stardust" ); _burn(_msgSender(), amount); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract AtlantisAddressRegistry","name":"_atlantisRegistry","type":"address"}],"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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":[],"name":"atlantisRegistry","outputs":[{"internalType":"contract AtlantisAddressRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","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
60806040523480156200001157600080fd5b5060405162000f4238038062000f42833981016040819052620000349162000174565b6040518060400160405280600881526020016714dd185c991d5cdd60c21b8152506040518060400160405280600881526020016714d51054911554d560c21b81525081600390805190602001906200008e929190620000ce565b508051620000a4906004906020840190620000ce565b5050600580546001600160a01b0319166001600160a01b03939093169290921790915550620001e3565b828054620000dc90620001a6565b90600052602060002090601f0160209004810192826200010057600085556200014b565b82601f106200011b57805160ff19168380011785556200014b565b828001600101855582156200014b579182015b828111156200014b5782518255916020019190600101906200012e565b50620001599291506200015d565b5090565b5b808211156200015957600081556001016200015e565b6000602082840312156200018757600080fd5b81516001600160a01b03811681146200019f57600080fd5b9392505050565b600181811c90821680620001bb57607f821691505b60208210811415620001dd57634e487b7160e01b600052602260045260246000fd5b50919050565b610d4f80620001f36000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806340c10f191161008c57806395d89b411161006657806395d89b41146101f1578063a457c2d7146101f9578063a9059cbb1461020c578063dd62ed3e1461021f57600080fd5b806340c10f19146101a257806342966c68146101b557806370a08231146101c857600080fd5b806318160ddd116100c857806318160ddd1461015b57806323b872dd1461016d578063313ce56714610180578063395093511461018f57600080fd5b806306fdde03146100ef578063095ea7b31461010d5780630d703e9c14610130575b600080fd5b6100f7610232565b6040516101049190610b4b565b60405180910390f35b61012061011b366004610bb8565b6102c4565b6040519015158152602001610104565b600554610143906001600160a01b031681565b6040516001600160a01b039091168152602001610104565b6002545b604051908152602001610104565b61012061017b366004610be4565b6102dc565b60405160128152602001610104565b61012061019d366004610bb8565b610300565b6101206101b0366004610bb8565b610322565b6101206101c3366004610c25565b610463565b61015f6101d6366004610c3e565b6001600160a01b031660009081526020819052604090205490565b6100f761055c565b610120610207366004610bb8565b61056b565b61012061021a366004610bb8565b6105e6565b61015f61022d366004610c62565b6105f4565b60606003805461024190610c9b565b80601f016020809104026020016040519081016040528092919081815260200182805461026d90610c9b565b80156102ba5780601f1061028f576101008083540402835291602001916102ba565b820191906000526020600020905b81548152906001019060200180831161029d57829003601f168201915b5050505050905090565b6000336102d281858561061f565b5060019392505050565b6000336102ea858285610744565b6102f58585856107be565b506001949350505050565b6000336102d281858561031383836105f4565b61031d9190610cd6565b61061f565b60055460408051638cc84db760e01b815290516000926001600160a01b031691638cc84db79160048083019260209291908290030181865afa15801561036c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103909190610cfc565b6001600160a01b0316336001600160a01b03161461040e5760405162461bcd60e51b815260206004820152603060248201527f53746172647573743a204f6e6c79205374616b696e67576974684c6f636b206360448201526f185b881b5a5b9d0814dd185c991d5cdd60821b60648201526084015b60405180910390fd5b6104188383610962565b604080516001600160a01b0385168152602081018490527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a150600192915050565b60055460408051638cc84db760e01b815290516000926001600160a01b031691638cc84db79160048083019260209291908290030181865afa1580156104ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d19190610cfc565b6001600160a01b0316336001600160a01b03161461054a5760405162461bcd60e51b815260206004820152603060248201527f53746172647573743a204f6e6c79205374616b696e67576974684c6f636b206360448201526f185b88189d5c9b8814dd185c991d5cdd60821b6064820152608401610405565b6105543383610a21565b506001919050565b60606004805461024190610c9b565b6000338161057982866105f4565b9050838110156105d95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610405565b6102f5828686840361061f565b6000336102d28185856107be565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166106815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610405565b6001600160a01b0382166106e25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610405565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061075084846105f4565b905060001981146107b857818110156107ab5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610405565b6107b8848484840361061f565b50505050565b6001600160a01b0383166108225760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610405565b6001600160a01b0382166108845760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610405565b6001600160a01b038316600090815260208190526040902054818110156108fc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610405565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36107b8565b6001600160a01b0382166109b85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610405565b80600260008282546109ca9190610cd6565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610a815760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610405565b6001600160a01b03821660009081526020819052604090205481811015610af55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610405565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610737565b600060208083528351808285015260005b81811015610b7857858101830151858201604001528201610b5c565b81811115610b8a576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610bb557600080fd5b50565b60008060408385031215610bcb57600080fd5b8235610bd681610ba0565b946020939093013593505050565b600080600060608486031215610bf957600080fd5b8335610c0481610ba0565b92506020840135610c1481610ba0565b929592945050506040919091013590565b600060208284031215610c3757600080fd5b5035919050565b600060208284031215610c5057600080fd5b8135610c5b81610ba0565b9392505050565b60008060408385031215610c7557600080fd5b8235610c8081610ba0565b91506020830135610c9081610ba0565b809150509250929050565b600181811c90821680610caf57607f821691505b60208210811415610cd057634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610cf757634e487b7160e01b600052601160045260246000fd5b500190565b600060208284031215610d0e57600080fd5b8151610c5b81610ba056fea26469706673582212200198c4ae54981d0cb91e9fad810c2f4e7b18554784462f96232cfecd2efda48864736f6c634300080b003300000000000000000000000016e96b2c52c816d26fef4991733249e81965d88d
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806340c10f191161008c57806395d89b411161006657806395d89b41146101f1578063a457c2d7146101f9578063a9059cbb1461020c578063dd62ed3e1461021f57600080fd5b806340c10f19146101a257806342966c68146101b557806370a08231146101c857600080fd5b806318160ddd116100c857806318160ddd1461015b57806323b872dd1461016d578063313ce56714610180578063395093511461018f57600080fd5b806306fdde03146100ef578063095ea7b31461010d5780630d703e9c14610130575b600080fd5b6100f7610232565b6040516101049190610b4b565b60405180910390f35b61012061011b366004610bb8565b6102c4565b6040519015158152602001610104565b600554610143906001600160a01b031681565b6040516001600160a01b039091168152602001610104565b6002545b604051908152602001610104565b61012061017b366004610be4565b6102dc565b60405160128152602001610104565b61012061019d366004610bb8565b610300565b6101206101b0366004610bb8565b610322565b6101206101c3366004610c25565b610463565b61015f6101d6366004610c3e565b6001600160a01b031660009081526020819052604090205490565b6100f761055c565b610120610207366004610bb8565b61056b565b61012061021a366004610bb8565b6105e6565b61015f61022d366004610c62565b6105f4565b60606003805461024190610c9b565b80601f016020809104026020016040519081016040528092919081815260200182805461026d90610c9b565b80156102ba5780601f1061028f576101008083540402835291602001916102ba565b820191906000526020600020905b81548152906001019060200180831161029d57829003601f168201915b5050505050905090565b6000336102d281858561061f565b5060019392505050565b6000336102ea858285610744565b6102f58585856107be565b506001949350505050565b6000336102d281858561031383836105f4565b61031d9190610cd6565b61061f565b60055460408051638cc84db760e01b815290516000926001600160a01b031691638cc84db79160048083019260209291908290030181865afa15801561036c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103909190610cfc565b6001600160a01b0316336001600160a01b03161461040e5760405162461bcd60e51b815260206004820152603060248201527f53746172647573743a204f6e6c79205374616b696e67576974684c6f636b206360448201526f185b881b5a5b9d0814dd185c991d5cdd60821b60648201526084015b60405180910390fd5b6104188383610962565b604080516001600160a01b0385168152602081018490527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a150600192915050565b60055460408051638cc84db760e01b815290516000926001600160a01b031691638cc84db79160048083019260209291908290030181865afa1580156104ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d19190610cfc565b6001600160a01b0316336001600160a01b03161461054a5760405162461bcd60e51b815260206004820152603060248201527f53746172647573743a204f6e6c79205374616b696e67576974684c6f636b206360448201526f185b88189d5c9b8814dd185c991d5cdd60821b6064820152608401610405565b6105543383610a21565b506001919050565b60606004805461024190610c9b565b6000338161057982866105f4565b9050838110156105d95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610405565b6102f5828686840361061f565b6000336102d28185856107be565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166106815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610405565b6001600160a01b0382166106e25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610405565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061075084846105f4565b905060001981146107b857818110156107ab5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610405565b6107b8848484840361061f565b50505050565b6001600160a01b0383166108225760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610405565b6001600160a01b0382166108845760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610405565b6001600160a01b038316600090815260208190526040902054818110156108fc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610405565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36107b8565b6001600160a01b0382166109b85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610405565b80600260008282546109ca9190610cd6565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610a815760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610405565b6001600160a01b03821660009081526020819052604090205481811015610af55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610405565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610737565b600060208083528351808285015260005b81811015610b7857858101830151858201604001528201610b5c565b81811115610b8a576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610bb557600080fd5b50565b60008060408385031215610bcb57600080fd5b8235610bd681610ba0565b946020939093013593505050565b600080600060608486031215610bf957600080fd5b8335610c0481610ba0565b92506020840135610c1481610ba0565b929592945050506040919091013590565b600060208284031215610c3757600080fd5b5035919050565b600060208284031215610c5057600080fd5b8135610c5b81610ba0565b9392505050565b60008060408385031215610c7557600080fd5b8235610c8081610ba0565b91506020830135610c9081610ba0565b809150509250929050565b600181811c90821680610caf57607f821691505b60208210811415610cd057634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610cf757634e487b7160e01b600052601160045260246000fd5b500190565b600060208284031215610d0e57600080fd5b8151610c5b81610ba056fea26469706673582212200198c4ae54981d0cb91e9fad810c2f4e7b18554784462f96232cfecd2efda48864736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000016e96b2c52c816d26fef4991733249e81965d88d
-----Decoded View---------------
Arg [0] : _atlantisRegistry (address): 0x16E96b2c52C816D26FEF4991733249e81965D88D
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000016e96b2c52c816d26fef4991733249e81965d88d
Deployed Bytecode Sourcemap
26137:1350:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8746:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11105:201;;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11105:201:0;1072:187:1;26187:47:0;;;;;-1:-1:-1;;;;;26187:47:0;;;;;;-1:-1:-1;;;;;1460:32:1;;;1442:51;;1430:2;1415:18;26187:47:0;1264:235:1;9866:108:0;9954:12;;9866:108;;;1650:25:1;;;1638:2;1623:18;9866:108:0;1504:177:1;11886:295:0;;;;;;:::i;:::-;;:::i;9708:93::-;;;9791:2;2289:36:1;;2277:2;2262:18;9708:93:0;2147:184:1;12597:238:0;;;;;;:::i;:::-;;:::i;26659:340::-;;;;;;:::i;:::-;;:::i;27193:291::-;;;;;;:::i;:::-;;:::i;10037:128::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10139:18:0;10111:7;10139:18;;;;;;;;;;;;10037:128;8965:104;;;:::i;13345:436::-;;;;;;:::i;:::-;;:::i;10371:193::-;;;;;;:::i;:::-;;:::i;10627:151::-;;;;;;:::i;:::-;;:::i;8746:100::-;8800:13;8833:5;8826:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8746:100;:::o;11105:201::-;11188:4;682:10;11244:32;682:10;11260:7;11269:6;11244:8;:32::i;:::-;-1:-1:-1;11294:4:0;;11105:201;-1:-1:-1;;;11105:201:0:o;11886:295::-;12017:4;682:10;12075:38;12091:4;682:10;12106:6;12075:15;:38::i;:::-;12124:27;12134:4;12140:2;12144:6;12124:9;:27::i;:::-;-1:-1:-1;12169:4:0;;11886:295;-1:-1:-1;;;;11886:295:0:o;12597:238::-;12685:4;682:10;12741:64;682:10;12757:7;12794:10;12766:25;682:10;12757:7;12766:9;:25::i;:::-;:38;;;;:::i;:::-;12741:8;:64::i;26659:340::-;26790:16;;:37;;;-1:-1:-1;;;26790:37:0;;;;26730:4;;-1:-1:-1;;;;;26790:16:0;;:35;;:37;;;;;;;;;;;;;;:16;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;26776:51:0;:10;-1:-1:-1;;;;;26776:51:0;;26754:149;;;;-1:-1:-1;;;26754:149:0;;4239:2:1;26754:149:0;;;4221:21:1;4278:2;4258:18;;;4251:30;4317:34;4297:18;;;4290:62;-1:-1:-1;;;4368:18:1;;;4361:46;4424:19;;26754:149:0;;;;;;;;;26914:19;26920:3;26925:7;26914:5;:19::i;:::-;26949:20;;;-1:-1:-1;;;;;4646:32:1;;4628:51;;4710:2;4695:18;;4688:34;;;26949:20:0;;4601:18:1;26949:20:0;;;;;;;-1:-1:-1;26987:4:0;26659:340;;;;:::o;27193:291::-;27303:16;;:37;;;-1:-1:-1;;;27303:37:0;;;;27250:4;;-1:-1:-1;;;;;27303:16:0;;:35;;:37;;;;;;;;;;;;;;:16;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;27289:51:0;:10;-1:-1:-1;;;;;27289:51:0;;27267:149;;;;-1:-1:-1;;;27267:149:0;;4935:2:1;27267:149:0;;;4917:21:1;4974:2;4954:18;;;4947:30;5013:34;4993:18;;;4986:62;-1:-1:-1;;;5064:18:1;;;5057:46;5120:19;;27267:149:0;4733:412:1;27267:149:0;27427:27;682:10;27447:6;27427:5;:27::i;:::-;-1:-1:-1;27472:4:0;;27193:291;-1:-1:-1;27193:291:0:o;8965:104::-;9021:13;9054:7;9047:14;;;;;:::i;13345:436::-;13438:4;682:10;13438:4;13521:25;682:10;13538:7;13521:9;:25::i;:::-;13494:52;;13585:15;13565:16;:35;;13557:85;;;;-1:-1:-1;;;13557:85:0;;5352:2:1;13557:85:0;;;5334:21:1;5391:2;5371:18;;;5364:30;5430:34;5410:18;;;5403:62;-1:-1:-1;;;5481:18:1;;;5474:35;5526:19;;13557:85:0;5150:401:1;13557:85:0;13678:60;13687:5;13694:7;13722:15;13703:16;:34;13678:8;:60::i;10371:193::-;10450:4;682:10;10506:28;682:10;10523:2;10527:6;10506:9;:28::i;10627:151::-;-1:-1:-1;;;;;10743:18:0;;;10716:7;10743:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10627:151::o;17387:380::-;-1:-1:-1;;;;;17523:19:0;;17515:68;;;;-1:-1:-1;;;17515:68:0;;5758:2:1;17515:68:0;;;5740:21:1;5797:2;5777:18;;;5770:30;5836:34;5816:18;;;5809:62;-1:-1:-1;;;5887:18:1;;;5880:34;5931:19;;17515:68:0;5556:400:1;17515:68:0;-1:-1:-1;;;;;17602:21:0;;17594:68;;;;-1:-1:-1;;;17594:68:0;;6163:2:1;17594:68:0;;;6145:21:1;6202:2;6182:18;;;6175:30;6241:34;6221:18;;;6214:62;-1:-1:-1;;;6292:18:1;;;6285:32;6334:19;;17594:68:0;5961:398:1;17594:68:0;-1:-1:-1;;;;;17675:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17727:32;;1650:25:1;;;17727:32:0;;1623:18:1;17727:32:0;;;;;;;;17387:380;;;:::o;18058:461::-;18193:24;18220:25;18230:5;18237:7;18220:9;:25::i;:::-;18193:52;;-1:-1:-1;;18260:16:0;:37;18256:256;;18342:6;18322:16;:26;;18314:68;;;;-1:-1:-1;;;18314:68:0;;6566:2:1;18314:68:0;;;6548:21:1;6605:2;6585:18;;;6578:30;6644:31;6624:18;;;6617:59;6693:18;;18314:68:0;6364:353:1;18314:68:0;18434:51;18443:5;18450:7;18478:6;18459:16;:25;18434:8;:51::i;:::-;18182:337;18058:461;;;:::o;14251:848::-;-1:-1:-1;;;;;14382:18:0;;14374:68;;;;-1:-1:-1;;;14374:68:0;;6924:2:1;14374:68:0;;;6906:21:1;6963:2;6943:18;;;6936:30;7002:34;6982:18;;;6975:62;-1:-1:-1;;;7053:18:1;;;7046:35;7098:19;;14374:68:0;6722:401:1;14374:68:0;-1:-1:-1;;;;;14461:16:0;;14453:64;;;;-1:-1:-1;;;14453:64:0;;7330:2:1;14453:64:0;;;7312:21:1;7369:2;7349:18;;;7342:30;7408:34;7388:18;;;7381:62;-1:-1:-1;;;7459:18:1;;;7452:33;7502:19;;14453:64:0;7128:399:1;14453:64:0;-1:-1:-1;;;;;14603:15:0;;14581:19;14603:15;;;;;;;;;;;14637:21;;;;14629:72;;;;-1:-1:-1;;;14629:72:0;;7734:2:1;14629:72:0;;;7716:21:1;7773:2;7753:18;;;7746:30;7812:34;7792:18;;;7785:62;-1:-1:-1;;;7863:18:1;;;7856:36;7909:19;;14629:72:0;7532:402:1;14629:72:0;-1:-1:-1;;;;;14745:15:0;;;:9;:15;;;;;;;;;;;14763:20;;;14745:38;;14963:13;;;;;;;;;;:23;;;;;;15015:26;;1650:25:1;;;14963:13:0;;15015:26;;1623:18:1;15015:26:0;;;;;;;15054:37;16267:675;15386:548;-1:-1:-1;;;;;15470:21:0;;15462:65;;;;-1:-1:-1;;;15462:65:0;;8141:2:1;15462:65:0;;;8123:21:1;8180:2;8160:18;;;8153:30;8219:33;8199:18;;;8192:61;8270:18;;15462:65:0;7939:355:1;15462:65:0;15618:6;15602:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15773:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;15828:37;1650:25:1;;;15828:37:0;;1623:18:1;15828:37:0;;;;;;;15386:548;;:::o;16267:675::-;-1:-1:-1;;;;;16351:21:0;;16343:67;;;;-1:-1:-1;;;16343:67:0;;8501:2:1;16343:67:0;;;8483:21:1;8540:2;8520:18;;;8513:30;8579:34;8559:18;;;8552:62;-1:-1:-1;;;8630:18:1;;;8623:31;8671:19;;16343:67:0;8299:397:1;16343:67:0;-1:-1:-1;;;;;16510:18:0;;16485:22;16510:18;;;;;;;;;;;16547:24;;;;16539:71;;;;-1:-1:-1;;;16539:71:0;;8903:2:1;16539:71:0;;;8885:21:1;8942:2;8922:18;;;8915:30;8981:34;8961:18;;;8954:62;-1:-1:-1;;;9032:18:1;;;9025:32;9074:19;;16539:71:0;8701:398:1;16539:71:0;-1:-1:-1;;;;;16646:18:0;;:9;:18;;;;;;;;;;;16667:23;;;16646:44;;16785:12;:22;;;;;;;16836:37;1650:25:1;;;16646:9:0;;:18;16836:37;;1623:18:1;16836:37:0;1504:177:1;14:597;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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1686:456::-;1763:6;1771;1779;1832:2;1820:9;1811:7;1807:23;1803:32;1800:52;;;1848:1;1845;1838:12;1800:52;1887:9;1874:23;1906:31;1931:5;1906:31;:::i;:::-;1956:5;-1:-1:-1;2013:2:1;1998:18;;1985:32;2026:33;1985:32;2026:33;:::i;:::-;1686:456;;2078:7;;-1:-1:-1;;;2132:2:1;2117:18;;;;2104:32;;1686:456::o;2336:180::-;2395:6;2448:2;2436:9;2427:7;2423:23;2419:32;2416:52;;;2464:1;2461;2454:12;2416:52;-1:-1:-1;2487:23:1;;2336:180;-1:-1:-1;2336:180:1:o;2521:247::-;2580:6;2633:2;2621:9;2612:7;2608:23;2604:32;2601:52;;;2649:1;2646;2639:12;2601:52;2688:9;2675:23;2707:31;2732:5;2707:31;:::i;:::-;2757:5;2521:247;-1:-1:-1;;;2521:247:1:o;2773:388::-;2841:6;2849;2902:2;2890:9;2881:7;2877:23;2873:32;2870:52;;;2918:1;2915;2908:12;2870:52;2957:9;2944:23;2976:31;3001:5;2976:31;:::i;:::-;3026:5;-1:-1:-1;3083:2:1;3068:18;;3055:32;3096:33;3055:32;3096:33;:::i;:::-;3148:7;3138:17;;;2773:388;;;;;:::o;3166:380::-;3245:1;3241:12;;;;3288;;;3309:61;;3363:4;3355:6;3351:17;3341:27;;3309:61;3416:2;3408:6;3405:14;3385:18;3382:38;3379:161;;;3462:10;3457:3;3453:20;3450:1;3443:31;3497:4;3494:1;3487:15;3525:4;3522:1;3515:15;3379:161;;3166:380;;;:::o;3551:225::-;3591:3;3622:1;3618:6;3615:1;3612:13;3609:136;;;3667:10;3662:3;3658:20;3655:1;3648:31;3702:4;3699:1;3692:15;3730:4;3727:1;3720:15;3609:136;-1:-1:-1;3761:9:1;;3551:225::o;3781:251::-;3851:6;3904:2;3892:9;3883:7;3879:23;3875:32;3872:52;;;3920:1;3917;3910:12;3872:52;3952:9;3946:16;3971:31;3996:5;3971:31;:::i
Swarm Source
ipfs://0198c4ae54981d0cb91e9fad810c2f4e7b18554784462f96232cfecd2efda488
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.