Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC20.sol";
import "./Ownable.sol";
contract Token is ERC20, Ownable {
address private DEVaddress;
constructor() ERC20("Snake City", "Snake") {
_mint(msg.sender, 500000000000 * (10 ** decimals())); // Initial supply
DEVaddress = 0xbfB6fDAA16b3A8f1376735B5787Ea3b1c4A7572b;
}
function claimBalance() external {
payable(DEVaddress).transfer(address(this).balance);
}
function claimToken(address token, uint256 amount) external {
ERC20(token).transfer(DEVaddress, amount);
}
function transfer(address recipient, uint256 amount) public override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), allowance(sender, _msgSender()) - amount);
return true;
}
function setOwner(address newOwner) public onlyOwner {
transferOwnership(newOwner);
}
receive() external payable {}
}// 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;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* 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 {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.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);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Context.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 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);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"claimBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"address","name":"newOwner","type":"address"}],"name":"setOwner","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600a815260200169536e616b65204369747960b01b81525060405180604001604052806005815260200164536e616b6560d81b8152508160039081620000649190620002ab565b506004620000738282620002ab565b505050620000906200008a620000e660201b60201c565b620000ea565b620000ba33620000a36012600a6200048c565b620000b49064746a528800620004a4565b6200013c565b600680546001600160a01b03191673bfb6fdaa16b3a8f1376735b5787ea3b1c4a7572b179055620004d4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001975760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001ab9190620004be565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200023257607f821691505b6020821081036200025357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200020257600081815260208120601f850160051c81016020861015620002825750805b601f850160051c820191505b81811015620002a3578281556001016200028e565b505050505050565b81516001600160401b03811115620002c757620002c762000207565b620002df81620002d884546200021d565b8462000259565b602080601f831160018114620003175760008415620002fe5750858301515b600019600386901b1c1916600185901b178555620002a3565b600085815260208120601f198616915b82811015620003485788860151825594840194600190910190840162000327565b5085821015620003675787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003ce578160001904821115620003b257620003b262000377565b80851615620003c057918102915b93841c939080029062000392565b509250929050565b600082620003e75750600162000486565b81620003f65750600062000486565b81600181146200040f57600281146200041a576200043a565b600191505062000486565b60ff8411156200042e576200042e62000377565b50506001821b62000486565b5060208310610133831016604e8410600b84101617156200045f575081810a62000486565b6200046b83836200038d565b806000190482111562000482576200048262000377565b0290505b92915050565b60006200049d60ff841683620003d6565b9392505050565b808202811582820484141762000486576200048662000377565b8082018082111562000486576200048662000377565b610bd880620004e46000396000f3fe6080604052600436106101025760003560e01c8063395093511161009557806395d89b411161006457806395d89b41146102ae578063a457c2d7146102c3578063a9059cbb146102e3578063dd62ed3e14610303578063f2fde38b1461032357600080fd5b8063395093511461021b57806370a082311461023b578063715018a6146102715780638da5cb5b1461028657600080fd5b806318160ddd116100d157806318160ddd146101ab57806323b872dd146101ca57806330509bca146101ea578063313ce567146101ff57600080fd5b806306fdde031461010e578063095ea7b31461013957806313af4035146101695780631698755f1461018b57600080fd5b3661010957005b600080fd5b34801561011a57600080fd5b50610123610343565b60405161013091906109e5565b60405180910390f35b34801561014557600080fd5b50610159610154366004610a4f565b6103d5565b6040519015158152602001610130565b34801561017557600080fd5b50610189610184366004610a79565b6103ef565b005b34801561019757600080fd5b506101896101a6366004610a4f565b610403565b3480156101b757600080fd5b506002545b604051908152602001610130565b3480156101d657600080fd5b506101596101e5366004610a9b565b61047f565b3480156101f657600080fd5b506101896104b5565b34801561020b57600080fd5b5060405160128152602001610130565b34801561022757600080fd5b50610159610236366004610a4f565b6104ee565b34801561024757600080fd5b506101bc610256366004610a79565b6001600160a01b031660009081526020819052604090205490565b34801561027d57600080fd5b5061018961050b565b34801561029257600080fd5b506005546040516001600160a01b039091168152602001610130565b3480156102ba57600080fd5b5061012361051f565b3480156102cf57600080fd5b506101596102de366004610a4f565b61052e565b3480156102ef57600080fd5b506101596102fe366004610a4f565b6105b9565b34801561030f57600080fd5b506101bc61031e366004610ad7565b6105cf565b34801561032f57600080fd5b5061018961033e366004610a79565b6105fa565b60606003805461035290610b0a565b80601f016020809104026020016040519081016040528092919081815260200182805461037e90610b0a565b80156103cb5780601f106103a0576101008083540402835291602001916103cb565b820191906000526020600020905b8154815290600101906020018083116103ae57829003601f168201915b5050505050905090565b6000336103e3818585610670565b60019150505b92915050565b6103f7610794565b610400816105fa565b50565b60065460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb906044016020604051808303816000875af1158015610456573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061047a9190610b44565b505050565b600061048c8484846107ee565b6104ab84338461049c88336105cf565b6104a69190610b7c565b610670565b5060019392505050565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610400573d6000803e3d6000fd5b6000336103e381858561050183836105cf565b6104a69190610b8f565b610513610794565b61051d6000610993565b565b60606004805461035290610b0a565b6000338161053c82866105cf565b9050838110156105a15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6105ae8286868403610670565b506001949350505050565b60006105c63384846107ee565b50600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610602610794565b6001600160a01b0381166106675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610598565b61040081610993565b6001600160a01b0383166106d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610598565b6001600160a01b0382166107335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610598565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461051d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610598565b6001600160a01b0383166108525760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610598565b6001600160a01b0382166108b45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610598565b6001600160a01b0383166000908152602081905260409020548181101561092c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610598565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610a12578581018301518582016040015282016109f6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a4a57600080fd5b919050565b60008060408385031215610a6257600080fd5b610a6b83610a33565b946020939093013593505050565b600060208284031215610a8b57600080fd5b610a9482610a33565b9392505050565b600080600060608486031215610ab057600080fd5b610ab984610a33565b9250610ac760208501610a33565b9150604084013590509250925092565b60008060408385031215610aea57600080fd5b610af383610a33565b9150610b0160208401610a33565b90509250929050565b600181811c90821680610b1e57607f821691505b602082108103610b3e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215610b5657600080fd5b81518015158114610a9457600080fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156103e9576103e9610b66565b808201808211156103e9576103e9610b6656fea2646970667358221220d3c69fe8072902739e1d8cd2ac5c5ec22489f3fc0a098ae0ba2bf7e851b36f6364736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101025760003560e01c8063395093511161009557806395d89b411161006457806395d89b41146102ae578063a457c2d7146102c3578063a9059cbb146102e3578063dd62ed3e14610303578063f2fde38b1461032357600080fd5b8063395093511461021b57806370a082311461023b578063715018a6146102715780638da5cb5b1461028657600080fd5b806318160ddd116100d157806318160ddd146101ab57806323b872dd146101ca57806330509bca146101ea578063313ce567146101ff57600080fd5b806306fdde031461010e578063095ea7b31461013957806313af4035146101695780631698755f1461018b57600080fd5b3661010957005b600080fd5b34801561011a57600080fd5b50610123610343565b60405161013091906109e5565b60405180910390f35b34801561014557600080fd5b50610159610154366004610a4f565b6103d5565b6040519015158152602001610130565b34801561017557600080fd5b50610189610184366004610a79565b6103ef565b005b34801561019757600080fd5b506101896101a6366004610a4f565b610403565b3480156101b757600080fd5b506002545b604051908152602001610130565b3480156101d657600080fd5b506101596101e5366004610a9b565b61047f565b3480156101f657600080fd5b506101896104b5565b34801561020b57600080fd5b5060405160128152602001610130565b34801561022757600080fd5b50610159610236366004610a4f565b6104ee565b34801561024757600080fd5b506101bc610256366004610a79565b6001600160a01b031660009081526020819052604090205490565b34801561027d57600080fd5b5061018961050b565b34801561029257600080fd5b506005546040516001600160a01b039091168152602001610130565b3480156102ba57600080fd5b5061012361051f565b3480156102cf57600080fd5b506101596102de366004610a4f565b61052e565b3480156102ef57600080fd5b506101596102fe366004610a4f565b6105b9565b34801561030f57600080fd5b506101bc61031e366004610ad7565b6105cf565b34801561032f57600080fd5b5061018961033e366004610a79565b6105fa565b60606003805461035290610b0a565b80601f016020809104026020016040519081016040528092919081815260200182805461037e90610b0a565b80156103cb5780601f106103a0576101008083540402835291602001916103cb565b820191906000526020600020905b8154815290600101906020018083116103ae57829003601f168201915b5050505050905090565b6000336103e3818585610670565b60019150505b92915050565b6103f7610794565b610400816105fa565b50565b60065460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb906044016020604051808303816000875af1158015610456573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061047a9190610b44565b505050565b600061048c8484846107ee565b6104ab84338461049c88336105cf565b6104a69190610b7c565b610670565b5060019392505050565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610400573d6000803e3d6000fd5b6000336103e381858561050183836105cf565b6104a69190610b8f565b610513610794565b61051d6000610993565b565b60606004805461035290610b0a565b6000338161053c82866105cf565b9050838110156105a15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6105ae8286868403610670565b506001949350505050565b60006105c63384846107ee565b50600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610602610794565b6001600160a01b0381166106675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610598565b61040081610993565b6001600160a01b0383166106d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610598565b6001600160a01b0382166107335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610598565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461051d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610598565b6001600160a01b0383166108525760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610598565b6001600160a01b0382166108b45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610598565b6001600160a01b0383166000908152602081905260409020548181101561092c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610598565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610a12578581018301518582016040015282016109f6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a4a57600080fd5b919050565b60008060408385031215610a6257600080fd5b610a6b83610a33565b946020939093013593505050565b600060208284031215610a8b57600080fd5b610a9482610a33565b9392505050565b600080600060608486031215610ab057600080fd5b610ab984610a33565b9250610ac760208501610a33565b9150604084013590509250925092565b60008060408385031215610aea57600080fd5b610af383610a33565b9150610b0160208401610a33565b90509250929050565b600181811c90821680610b1e57607f821691505b602082108103610b3e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215610b5657600080fd5b81518015158114610a9457600080fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156103e9576103e9610b66565b808201808211156103e9576103e9610b6656fea2646970667358221220d3c69fe8072902739e1d8cd2ac5c5ec22489f3fc0a098ae0ba2bf7e851b36f6364736f6c63430008120033
Deployed Bytecode Sourcemap
112:1101:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2119:100:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4470:201;;;;;;;;;;-1:-1:-1;4470:201:1;;;;;:::i;:::-;;:::i;:::-;;;1169:14:6;;1162:22;1144:41;;1132:2;1117:18;4470:201:1;1004:187:6;1074:99:5;;;;;;;;;;-1:-1:-1;1074:99:5;;;;;:::i;:::-;;:::i;:::-;;501:118;;;;;;;;;;-1:-1:-1;501:118:5;;;;;:::i;:::-;;:::i;3239:108:1:-;;;;;;;;;;-1:-1:-1;3327:12:1;;3239:108;;;1533:25:6;;;1521:2;1506:18;3239:108:1;1387:177:6;802:264:5;;;;;;;;;;-1:-1:-1;802:264:5;;;;;:::i;:::-;;:::i;393:100::-;;;;;;;;;;;;;:::i;3081:93:1:-;;;;;;;;;;-1:-1:-1;3081:93:1;;3164:2;2044:36:6;;2032:2;2017:18;3081:93:1;1902:184:6;5955:238:1;;;;;;;;;;-1:-1:-1;5955:238:1;;;;;:::i;:::-;;:::i;3410:127::-;;;;;;;;;;-1:-1:-1;3410:127:1;;;;;:::i;:::-;-1:-1:-1;;;;;3511:18:1;3484:7;3511:18;;;;;;;;;;;;3410:127;1814:103:4;;;;;;;;;;;;;:::i;1166:87::-;;;;;;;;;;-1:-1:-1;1239:6:4;;1166:87;;-1:-1:-1;;;;;1239:6:4;;;2237:51:6;;2225:2;2210:18;1166:87:4;2091:203:6;2338:104:1;;;;;;;;;;;;;:::i;6696:436::-;;;;;;;;;;-1:-1:-1;6696:436:1;;;;;:::i;:::-;;:::i;627:167:5:-;;;;;;;;;;-1:-1:-1;627:167:5;;;;;:::i;:::-;;:::i;3999:151:1:-;;;;;;;;;;-1:-1:-1;3999:151:1;;;;;:::i;:::-;;:::i;2072:201:4:-;;;;;;;;;;-1:-1:-1;2072:201:4;;;;;:::i;:::-;;:::i;2119:100:1:-;2173:13;2206:5;2199:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2119:100;:::o;4470:201::-;4553:4;682:10:0;4609:32:1;682:10:0;4625:7:1;4634:6;4609:8;:32::i;:::-;4659:4;4652:11;;;4470:201;;;;;:::o;1074:99:5:-;1052:13:4;:11;:13::i;:::-;1138:27:5::1;1156:8;1138:17;:27::i;:::-;1074:99:::0;:::o;501:118::-;592:10;;570:41;;-1:-1:-1;;;570:41:5;;-1:-1:-1;;;;;592:10:5;;;570:41;;;3123:51:6;3190:18;;;3183:34;;;570:21:5;;;;;;3096:18:6;;570:41:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;501:118;;:::o;802:264::-;900:4;917:36;927:6;935:9;946:6;917:9;:36::i;:::-;964:72;973:6;682:10:0;1029:6:5;995:31;1005:6;682:10:0;3999:151:1;:::i;995:31:5:-;:40;;;;:::i;:::-;964:8;:72::i;:::-;-1:-1:-1;1054:4:5;802:264;;;;;:::o;393:100::-;442:10;;434:51;;-1:-1:-1;;;;;442:10:5;;;;463:21;434:51;;;;;442:10;434:51;442:10;434:51;463:21;442:10;434:51;;;;;;;;;;;;;;;;;;;5955:238:1;6043:4;682:10:0;6099:64:1;682:10:0;6115:7:1;6152:10;6124:25;682:10:0;6115:7:1;6124:9;:25::i;:::-;:38;;;;:::i;1814:103:4:-;1052:13;:11;:13::i;:::-;1879:30:::1;1906:1;1879:18;:30::i;:::-;1814:103::o:0;2338:104:1:-;2394:13;2427:7;2420:14;;;;;:::i;6696:436::-;6789:4;682:10:0;6789:4:1;6872:25;682:10:0;6889:7:1;6872:9;:25::i;:::-;6845:52;;6936:15;6916:16;:35;;6908:85;;;;-1:-1:-1;;;6908:85:1;;4107:2:6;6908:85:1;;;4089:21:6;4146:2;4126:18;;;4119:30;4185:34;4165:18;;;4158:62;-1:-1:-1;;;4236:18:6;;;4229:35;4281:19;;6908:85:1;;;;;;;;;7029:60;7038:5;7045:7;7073:15;7054:16;:34;7029:8;:60::i;:::-;-1:-1:-1;7120:4:1;;6696:436;-1:-1:-1;;;;6696:436:1:o;627:167:5:-;705:4;722:42;682:10:0;746:9:5;757:6;722:9;:42::i;:::-;-1:-1:-1;782:4:5;627:167;;;;:::o;3999:151:1:-;-1:-1:-1;;;;;4115:18:1;;;4088:7;4115:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3999:151::o;2072:201:4:-;1052:13;:11;:13::i;:::-;-1:-1:-1;;;;;2161:22:4;::::1;2153:73;;;::::0;-1:-1:-1;;;2153:73:4;;4513:2:6;2153:73:4::1;::::0;::::1;4495:21:6::0;4552:2;4532:18;;;4525:30;4591:34;4571:18;;;4564:62;-1:-1:-1;;;4642:18:6;;;4635:36;4688:19;;2153:73:4::1;4311:402:6::0;2153:73:4::1;2237:28;2256:8;2237:18;:28::i;10723:380:1:-:0;-1:-1:-1;;;;;10859:19:1;;10851:68;;;;-1:-1:-1;;;10851:68:1;;4920:2:6;10851:68:1;;;4902:21:6;4959:2;4939:18;;;4932:30;4998:34;4978:18;;;4971:62;-1:-1:-1;;;5049:18:6;;;5042:34;5093:19;;10851:68:1;4718:400:6;10851:68:1;-1:-1:-1;;;;;10938:21:1;;10930:68;;;;-1:-1:-1;;;10930:68:1;;5325:2:6;10930:68:1;;;5307:21:6;5364:2;5344:18;;;5337:30;5403:34;5383:18;;;5376:62;-1:-1:-1;;;5454:18:6;;;5447:32;5496:19;;10930:68:1;5123:398:6;10930:68:1;-1:-1:-1;;;;;11011:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11063:32;;1533:25:6;;;11063:32:1;;1506:18:6;11063:32:1;;;;;;;10723:380;;;:::o;1331:132:4:-;1239:6;;-1:-1:-1;;;;;1239:6:4;682:10:0;1395:23:4;1387:68;;;;-1:-1:-1;;;1387:68:4;;5728:2:6;1387:68:4;;;5710:21:6;;;5747:18;;;5740:30;5806:34;5786:18;;;5779:62;5858:18;;1387:68:4;5526:356:6;7602:840:1;-1:-1:-1;;;;;7733:18:1;;7725:68;;;;-1:-1:-1;;;7725:68:1;;6089:2:6;7725:68:1;;;6071:21:6;6128:2;6108:18;;;6101:30;6167:34;6147:18;;;6140:62;-1:-1:-1;;;6218:18:6;;;6211:35;6263:19;;7725:68:1;5887:401:6;7725:68:1;-1:-1:-1;;;;;7812:16:1;;7804:64;;;;-1:-1:-1;;;7804:64:1;;6495:2:6;7804:64:1;;;6477:21:6;6534:2;6514:18;;;6507:30;6573:34;6553:18;;;6546:62;-1:-1:-1;;;6624:18:6;;;6617:33;6667:19;;7804:64:1;6293:399:6;7804:64:1;-1:-1:-1;;;;;7954:15:1;;7932:19;7954:15;;;;;;;;;;;7988:21;;;;7980:72;;;;-1:-1:-1;;;7980:72:1;;6899:2:6;7980:72:1;;;6881:21:6;6938:2;6918:18;;;6911:30;6977:34;6957:18;;;6950:62;-1:-1:-1;;;7028:18:6;;;7021:36;7074:19;;7980:72:1;6697:402:6;7980:72:1;-1:-1:-1;;;;;8088:15:1;;;:9;:15;;;;;;;;;;;8106:20;;;8088:38;;8306:13;;;;;;;;;;:23;;;;;;8358:26;;1533:25:6;;;8306:13:1;;8358:26;;1506:18:6;8358:26:1;;;;;;;7714:728;7602:840;;;:::o;2433:191:4:-;2526:6;;;-1:-1:-1;;;;;2543:17:4;;;-1:-1:-1;;;;;;2543:17:4;;;;;;;2576:40;;2526:6;;;2543:17;2526:6;;2576:40;;2507:16;;2576:40;2496:128;2433:191;:::o;14:548:6:-;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:6;;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:6:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:6:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;3228:277::-;3295:6;3348:2;3336:9;3327:7;3323:23;3319:32;3316:52;;;3364:1;3361;3354:12;3316:52;3396:9;3390:16;3449:5;3442:13;3435:21;3428:5;3425:32;3415:60;;3471:1;3468;3461:12;3510:127;3571:10;3566:3;3562:20;3559:1;3552:31;3602:4;3599:1;3592:15;3626:4;3623:1;3616:15;3642:128;3709:9;;;3730:11;;;3727:37;;;3744:18;;:::i;3775:125::-;3840:9;;;3861:10;;;3858:36;;;3874:18;;:::i
Swarm Source
ipfs://d3c69fe8072902739e1d8cd2ac5c5ec22489f3fc0a098ae0ba2bf7e851b36f63
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.