Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 8,679 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 44660969 | 2 hrs ago | IN | 0 ETH | 0.00000046 | ||||
| Approve | 44188390 | 11 days ago | IN | 0 ETH | 0.00000034 | ||||
| Approve | 44138131 | 12 days ago | IN | 0 ETH | 0.00000488 | ||||
| Approve | 43859776 | 18 days ago | IN | 0 ETH | 0.00000027 | ||||
| Approve | 43696621 | 22 days ago | IN | 0 ETH | 0.00000045 | ||||
| Approve | 43595173 | 24 days ago | IN | 0 ETH | 0.00000051 | ||||
| Approve | 43535401 | 26 days ago | IN | 0 ETH | 0.00000027 | ||||
| Approve | 42584690 | 48 days ago | IN | 0 ETH | 0.0000006 | ||||
| Approve | 42284639 | 55 days ago | IN | 0 ETH | 0.00000101 | ||||
| Approve | 42110483 | 59 days ago | IN | 0 ETH | 0.00000031 | ||||
| Approve | 42032786 | 60 days ago | IN | 0 ETH | 0.00000022 | ||||
| Approve | 41981632 | 62 days ago | IN | 0 ETH | 0.00000033 | ||||
| Approve | 41839585 | 65 days ago | IN | 0 ETH | 0.00000056 | ||||
| Approve | 41800768 | 66 days ago | IN | 0 ETH | 0.00000429 | ||||
| Approve | 41795982 | 66 days ago | IN | 0 ETH | 0.00000025 | ||||
| Approve | 41795964 | 66 days ago | IN | 0 ETH | 0.00000026 | ||||
| Approve | 41795905 | 66 days ago | IN | 0 ETH | 0.00000024 | ||||
| Approve | 41754179 | 67 days ago | IN | 0 ETH | 0.00000105 | ||||
| Approve | 41754173 | 67 days ago | IN | 0 ETH | 0.00000184 | ||||
| Approve | 41729642 | 67 days ago | IN | 0 ETH | 0.00000078 | ||||
| Approve | 41728285 | 68 days ago | IN | 0 ETH | 0.00000141 | ||||
| Approve | 41596052 | 71 days ago | IN | 0 ETH | 0.00000177 | ||||
| Approve | 41581421 | 71 days ago | IN | 0 ETH | 0.00000087 | ||||
| Approve | 41507021 | 73 days ago | IN | 0 ETH | 0.00000301 | ||||
| Approve | 40761882 | 90 days ago | IN | 0 ETH | 0.00000021 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
GigaCat
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { Context } from "@openzeppelin/contracts/utils/Context.sol";
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
/**
* x: https://twitter.com/GigaCatBase
*/
contract GigaCat is Context, ERC20, Ownable {
uint8 internal immutable _decimals;
bool public initialized;
bool public limitsEnabled = true;
uint256 public maxTx = 20_000_000 * (10 ** 9);
constructor() ERC20(
"Giga Cat",
"gcat"
) {
_mint(msg.sender, 1_000_000_000 * (10 ** 9));
_decimals = 9;
_transferOwnership(msg.sender);
initialized = true;
}
function decimals() public view override returns(uint8) {
return _decimals;
}
function onlyBasicTransfer(address from, address to) internal virtual view returns (bool) {
return
!initialized ||
from == address(this) ||
to == address(this) ||
to == owner() ||
from == owner();
}
function _beforeTokenTransfer(address from, address to, uint256 amount) internal override {
if(onlyBasicTransfer(from, to)) return;
//Check limits
if(limitsEnabled && maxTx > 0) {
require(amount <= maxTx, "You can not exceed max transaction");
}
}
function disableLimits() external onlyOwner {
limitsEnabled = false;
}
receive() external payable {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/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. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/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].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract 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}.
*
* 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 default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
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
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
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
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
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);
}{
"optimizer": {
"enabled": true,
"runs": 999
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"remappings": [],
"evmVersion": "istanbul"
}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":"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":[],"name":"disableLimits","outputs":[],"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":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60a06040526005805460ff60a81b1916600160a81b17905566470de4df8200006006553480156200002f57600080fd5b506040518060400160405280600881526020016711da59d84810d85d60c21b8152506040518060400160405280600481526020016319d8d85d60e21b81525081600390816200007f9190620003c8565b5060046200008e8282620003c8565b505050620000ab620000a5620000e860201b60201c565b620000ec565b620000bf33670de0b6b3a76400006200013e565b6009608052620000cf33620000ec565b6005805460ff60a01b1916600160a01b179055620004b6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200019a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001a86000838362000213565b8060026000828254620001bc919062000494565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6200021f8383620002b0565b156200022a57505050565b600554600160a81b900460ff1680156200024657506000600654115b15620002ab57600654811115620002ab5760405162461bcd60e51b815260206004820152602260248201527f596f752063616e206e6f7420657863656564206d6178207472616e736163746960448201526137b760f11b606482015260840162000191565b505050565b600554600090600160a01b900460ff161580620002d557506001600160a01b03831630145b80620002e957506001600160a01b03821630145b806200030257506005546001600160a01b038381169116145b806200031b57506005546001600160a01b038481169116145b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200034f57607f821691505b6020821081036200037057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002ab57600081815260208120601f850160051c810160208610156200039f5750805b601f850160051c820191505b81811015620003c057828155600101620003ab565b505050505050565b81516001600160401b03811115620003e457620003e462000324565b620003fc81620003f584546200033a565b8462000376565b602080601f8311600181146200043457600084156200041b5750858301515b600019600386901b1c1916600185901b178555620003c0565b600085815260208120601f198616915b82811015620004655788860151825594840194600190910190840162000444565b5085821015620004845787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200031e57634e487b7160e01b600052601160045260246000fd5b608051610df3620004d260003960006102080152610df36000f3fe60806040526004361061012d5760003560e01c8063715018a6116100a5578063a457c2d711610074578063dd62ed3e11610059578063dd62ed3e14610353578063f2fde38b14610399578063f928364c146103b957600080fd5b8063a457c2d714610313578063a9059cbb1461033357600080fd5b8063715018a6146102a95780637437681e146102c05780638da5cb5b146102d657806395d89b41146102fe57600080fd5b806323b872dd116100fc5780633582ad23116100e15780633582ad2314610232578063395093511461025357806370a082311461027357600080fd5b806323b872dd146101d4578063313ce567146101f457600080fd5b806306fdde0314610139578063095ea7b314610164578063158ef93e1461019457806318160ddd146101b557600080fd5b3661013457005b600080fd5b34801561014557600080fd5b5061014e6103ce565b60405161015b9190610c44565b60405180910390f35b34801561017057600080fd5b5061018461017f366004610cae565b610460565b604051901515815260200161015b565b3480156101a057600080fd5b5060055461018490600160a01b900460ff1681565b3480156101c157600080fd5b506002545b60405190815260200161015b565b3480156101e057600080fd5b506101846101ef366004610cd8565b61047a565b34801561020057600080fd5b5060405160ff7f000000000000000000000000000000000000000000000000000000000000000016815260200161015b565b34801561023e57600080fd5b5060055461018490600160a81b900460ff1681565b34801561025f57600080fd5b5061018461026e366004610cae565b61049e565b34801561027f57600080fd5b506101c661028e366004610d14565b6001600160a01b031660009081526020819052604090205490565b3480156102b557600080fd5b506102be6104dd565b005b3480156102cc57600080fd5b506101c660065481565b3480156102e257600080fd5b506005546040516001600160a01b03909116815260200161015b565b34801561030a57600080fd5b5061014e6104f1565b34801561031f57600080fd5b5061018461032e366004610cae565b610500565b34801561033f57600080fd5b5061018461034e366004610cae565b6105af565b34801561035f57600080fd5b506101c661036e366004610d2f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156103a557600080fd5b506102be6103b4366004610d14565b6105bd565b3480156103c557600080fd5b506102be61064d565b6060600380546103dd90610d62565b80601f016020809104026020016040519081016040528092919081815260200182805461040990610d62565b80156104565780601f1061042b57610100808354040283529160200191610456565b820191906000526020600020905b81548152906001019060200180831161043957829003601f168201915b5050505050905090565b60003361046e81858561067f565b60019150505b92915050565b6000336104888582856107d7565b610493858585610869565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061046e90829086906104d8908790610d9c565b61067f565b6104e5610a61565b6104ef6000610abb565b565b6060600480546103dd90610d62565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105a25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610493828686840361067f565b60003361046e818585610869565b6105c5610a61565b6001600160a01b0381166106415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610599565b61064a81610abb565b50565b610655610a61565b600580547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff169055565b6001600160a01b0383166106fa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610599565b6001600160a01b0382166107765760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610599565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461086357818110156108565760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610599565b610863848484840361067f565b50505050565b6001600160a01b0383166108e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610599565b6001600160a01b0382166109615760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610599565b61096c838383610b25565b6001600160a01b038316600090815260208190526040902054818110156109fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610599565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610863565b6005546001600160a01b031633146104ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610599565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b2f8383610bd6565b15610b3957505050565b600554600160a81b900460ff168015610b5457506000600654115b15610bd157600654811115610bd15760405162461bcd60e51b815260206004820152602260248201527f596f752063616e206e6f7420657863656564206d6178207472616e736163746960448201527f6f6e0000000000000000000000000000000000000000000000000000000000006064820152608401610599565b505050565b600554600090600160a01b900460ff161580610bfa57506001600160a01b03831630145b80610c0d57506001600160a01b03821630145b80610c2557506005546001600160a01b038381169116145b80610c3d57506005546001600160a01b038481169116145b9392505050565b600060208083528351808285015260005b81811015610c7157858101830151858201604001528201610c55565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ca957600080fd5b919050565b60008060408385031215610cc157600080fd5b610cca83610c92565b946020939093013593505050565b600080600060608486031215610ced57600080fd5b610cf684610c92565b9250610d0460208501610c92565b9150604084013590509250925092565b600060208284031215610d2657600080fd5b610c3d82610c92565b60008060408385031215610d4257600080fd5b610d4b83610c92565b9150610d5960208401610c92565b90509250929050565b600181811c90821680610d7657607f821691505b602082108103610d9657634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561047457634e487b7160e01b600052601160045260246000fdfea2646970667358221220b8fc45b3e7897525dd2dd27406509e013a7e7e688cb5743b6847be492474b80064736f6c63430008140033
Deployed Bytecode
0x60806040526004361061012d5760003560e01c8063715018a6116100a5578063a457c2d711610074578063dd62ed3e11610059578063dd62ed3e14610353578063f2fde38b14610399578063f928364c146103b957600080fd5b8063a457c2d714610313578063a9059cbb1461033357600080fd5b8063715018a6146102a95780637437681e146102c05780638da5cb5b146102d657806395d89b41146102fe57600080fd5b806323b872dd116100fc5780633582ad23116100e15780633582ad2314610232578063395093511461025357806370a082311461027357600080fd5b806323b872dd146101d4578063313ce567146101f457600080fd5b806306fdde0314610139578063095ea7b314610164578063158ef93e1461019457806318160ddd146101b557600080fd5b3661013457005b600080fd5b34801561014557600080fd5b5061014e6103ce565b60405161015b9190610c44565b60405180910390f35b34801561017057600080fd5b5061018461017f366004610cae565b610460565b604051901515815260200161015b565b3480156101a057600080fd5b5060055461018490600160a01b900460ff1681565b3480156101c157600080fd5b506002545b60405190815260200161015b565b3480156101e057600080fd5b506101846101ef366004610cd8565b61047a565b34801561020057600080fd5b5060405160ff7f000000000000000000000000000000000000000000000000000000000000000916815260200161015b565b34801561023e57600080fd5b5060055461018490600160a81b900460ff1681565b34801561025f57600080fd5b5061018461026e366004610cae565b61049e565b34801561027f57600080fd5b506101c661028e366004610d14565b6001600160a01b031660009081526020819052604090205490565b3480156102b557600080fd5b506102be6104dd565b005b3480156102cc57600080fd5b506101c660065481565b3480156102e257600080fd5b506005546040516001600160a01b03909116815260200161015b565b34801561030a57600080fd5b5061014e6104f1565b34801561031f57600080fd5b5061018461032e366004610cae565b610500565b34801561033f57600080fd5b5061018461034e366004610cae565b6105af565b34801561035f57600080fd5b506101c661036e366004610d2f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156103a557600080fd5b506102be6103b4366004610d14565b6105bd565b3480156103c557600080fd5b506102be61064d565b6060600380546103dd90610d62565b80601f016020809104026020016040519081016040528092919081815260200182805461040990610d62565b80156104565780601f1061042b57610100808354040283529160200191610456565b820191906000526020600020905b81548152906001019060200180831161043957829003601f168201915b5050505050905090565b60003361046e81858561067f565b60019150505b92915050565b6000336104888582856107d7565b610493858585610869565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061046e90829086906104d8908790610d9c565b61067f565b6104e5610a61565b6104ef6000610abb565b565b6060600480546103dd90610d62565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105a25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610493828686840361067f565b60003361046e818585610869565b6105c5610a61565b6001600160a01b0381166106415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610599565b61064a81610abb565b50565b610655610a61565b600580547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff169055565b6001600160a01b0383166106fa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610599565b6001600160a01b0382166107765760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610599565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461086357818110156108565760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610599565b610863848484840361067f565b50505050565b6001600160a01b0383166108e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610599565b6001600160a01b0382166109615760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610599565b61096c838383610b25565b6001600160a01b038316600090815260208190526040902054818110156109fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610599565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610863565b6005546001600160a01b031633146104ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610599565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b2f8383610bd6565b15610b3957505050565b600554600160a81b900460ff168015610b5457506000600654115b15610bd157600654811115610bd15760405162461bcd60e51b815260206004820152602260248201527f596f752063616e206e6f7420657863656564206d6178207472616e736163746960448201527f6f6e0000000000000000000000000000000000000000000000000000000000006064820152608401610599565b505050565b600554600090600160a01b900460ff161580610bfa57506001600160a01b03831630145b80610c0d57506001600160a01b03821630145b80610c2557506005546001600160a01b038381169116145b80610c3d57506005546001600160a01b038481169116145b9392505050565b600060208083528351808285015260005b81811015610c7157858101830151858201604001528201610c55565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ca957600080fd5b919050565b60008060408385031215610cc157600080fd5b610cca83610c92565b946020939093013593505050565b600080600060608486031215610ced57600080fd5b610cf684610c92565b9250610d0460208501610c92565b9150604084013590509250925092565b600060208284031215610d2657600080fd5b610c3d82610c92565b60008060408385031215610d4257600080fd5b610d4b83610c92565b9150610d5960208401610c92565b90509250929050565b600181811c90821680610d7657607f821691505b602082108103610d9657634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561047457634e487b7160e01b600052601160045260246000fdfea2646970667358221220b8fc45b3e7897525dd2dd27406509e013a7e7e688cb5743b6847be492474b80064736f6c63430008140033
Deployed Bytecode Sourcemap
327:1304:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;;;;;-1:-1:-1;4444:197:1;;;;;:::i;:::-;;:::i;:::-;;;1192:14:6;;1185:22;1167:41;;1155:2;1140:18;4444:197:1;1027:187:6;421:23:5;;;;;;;;;;-1:-1:-1;421:23:5;;;;-1:-1:-1;;;421:23:5;;;;;;3255:106:1;;;;;;;;;;-1:-1:-1;3342:12:1;;3255:106;;;1365:25:6;;;1353:2;1338:18;3255:106:1;1219:177:6;5203:256:1;;;;;;;;;;-1:-1:-1;5203:256:1;;;;;:::i;:::-;;:::i;798:91:5:-;;;;;;;;;;-1:-1:-1;798:91:5;;1906:4:6;872:9:5;1894:17:6;1876:36;;1864:2;1849:18;798:91:5;1734:184:6;453:32:5;;;;;;;;;;-1:-1:-1;453:32:5;;;;-1:-1:-1;;;453:32:5;;;;;;5854:234:1;;;;;;;;;;-1:-1:-1;5854:234:1;;;;;:::i;:::-;;:::i;3419:125::-;;;;;;;;;;-1:-1:-1;3419:125:1;;;;;:::i;:::-;-1:-1:-1;;;;;3519:18:1;3493:7;3519:18;;;;;;;;;;;;3419:125;1824:101:0;;;;;;;;;;;;;:::i;:::-;;493:45:5;;;;;;;;;;;;;;;;1201:85:0;;;;;;;;;;-1:-1:-1;1273:6:0;;1201:85;;-1:-1:-1;;;;;1273:6:0;;;2260:74:6;;2248:2;2233:18;1201:85:0;2114:226:6;2369:102:1;;;;;;;;;;;;;:::i;6575:427::-;;;;;;;;;;-1:-1:-1;6575:427:1;;;;;:::i;:::-;;:::i;3740:189::-;;;;;;;;;;-1:-1:-1;3740:189:1;;;;;:::i;:::-;;:::i;3987:149::-;;;;;;;;;;-1:-1:-1;3987:149:1;;;;;:::i;:::-;-1:-1:-1;;;;;4102:18:1;;;4076:7;4102:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3987:149;2074:198:0;;;;;;;;;;-1:-1:-1;2074:198:0;;;;;:::i;:::-;;:::i;1503:84:5:-;;;;;;;;;;;;;:::i;2158:98:1:-;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;719:10:4;4581:32:1;719:10:4;4597:7:1;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;;:::o;5203:256::-;5300:4;719:10:4;5356:38:1;5372:4;719:10:4;5387:6:1;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;-1:-1:-1;5448:4:1;;5203:256;-1:-1:-1;;;;5203:256:1:o;5854:234::-;719:10:4;5942:4:1;4102:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;4102:27:1;;;;;;;;;;5942:4;;719:10:4;5996:64:1;;719:10:4;;4102:27:1;;6021:38;;6049:10;;6021:38;:::i;:::-;5996:8;:64::i;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;2369:102:1:-;2425:13;2457:7;2450:14;;;;;:::i;6575:427::-;719:10:4;6668:4:1;4102:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;4102:27:1;;;;;;;;;;6668:4;;719:10:4;6812:15:1;6792:16;:35;;6784:85;;;;-1:-1:-1;;;6784:85:1;;3538:2:6;6784:85:1;;;3520:21:6;3577:2;3557:18;;;3550:30;3616:34;3596:18;;;3589:62;3687:7;3667:18;;;3660:35;3712:19;;6784:85:1;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;3740:189::-;3819:4;719:10:4;3873:28:1;719:10:4;3890:2:1;3894:6;3873:9;:28::i;2074:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:0;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:0;;3944:2:6;2154:73:0::1;::::0;::::1;3926:21:6::0;3983:2;3963:18;;;3956:30;4022:34;4002:18;;;3995:62;4093:8;4073:18;;;4066:36;4119:19;;2154:73:0::1;3742:402:6::0;2154:73:0::1;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;1503:84:5:-;1094:13:0;:11;:13::i;:::-;1558::5::1;:21:::0;;;::::1;::::0;;1503:84::o;10457:340:1:-;-1:-1:-1;;;;;10558:19:1;;10550:68;;;;-1:-1:-1;;;10550:68:1;;4351:2:6;10550:68:1;;;4333:21:6;4390:2;4370:18;;;4363:30;4429:34;4409:18;;;4402:62;4500:6;4480:18;;;4473:34;4524:19;;10550:68:1;4149:400:6;10550:68:1;-1:-1:-1;;;;;10636:21:1;;10628:68;;;;-1:-1:-1;;;10628:68:1;;4756:2:6;10628:68:1;;;4738:21:6;4795:2;4775:18;;;4768:30;4834:34;4814:18;;;4807:62;4905:4;4885:18;;;4878:32;4927:19;;10628:68:1;4554:398:6;10628:68:1;-1:-1:-1;;;;;10707:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10758:32;;1365:25:6;;;10758:32:1;;1338:18:6;10758:32:1;;;;;;;10457:340;;;:::o;11078:411::-;-1:-1:-1;;;;;4102:18:1;;;11178:24;4102:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;11244:37:1;;11240:243;;11325:6;11305:16;:26;;11297:68;;;;-1:-1:-1;;;11297:68:1;;5159:2:6;11297:68:1;;;5141:21:6;5198:2;5178:18;;;5171:30;5237:31;5217:18;;;5210:59;5286:18;;11297:68:1;4957:353:6;11297:68:1;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11168:321;11078:411;;;:::o;7456:788::-;-1:-1:-1;;;;;7552:18:1;;7544:68;;;;-1:-1:-1;;;7544:68:1;;5517:2:6;7544:68:1;;;5499:21:6;5556:2;5536:18;;;5529:30;5595:34;5575:18;;;5568:62;5666:7;5646:18;;;5639:35;5691:19;;7544:68:1;5315:401:6;7544:68:1;-1:-1:-1;;;;;7630:16:1;;7622:64;;;;-1:-1:-1;;;7622:64:1;;5923:2:6;7622:64:1;;;5905:21:6;5962:2;5942:18;;;5935:30;6001:34;5981:18;;;5974:62;6072:5;6052:18;;;6045:33;6095:19;;7622:64:1;5721:399:6;7622:64:1;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;-1:-1:-1;;;;;7768:15:1;;7746:19;7768:15;;;;;;;;;;;7801:21;;;;7793:72;;;;-1:-1:-1;;;7793:72:1;;6327:2:6;7793:72:1;;;6309:21:6;6366:2;6346:18;;;6339:30;6405:34;6385:18;;;6378:62;6476:8;6456:18;;;6449:36;6502:19;;7793:72:1;6125:402:6;7793:72:1;-1:-1:-1;;;;;7899:15:1;;;:9;:15;;;;;;;;;;;7917:20;;;7899:38;;8114:13;;;;;;;;;;:23;;;;;;8163:26;;1365:25:6;;;8114:13:1;;8163:26;;1338:18:6;8163:26:1;;;;;;;8200:37;1190:305:5;1359:130:0;1273:6;;-1:-1:-1;;;;;1273:6:0;719:10:4;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;6734:2:6;1414:68:0;;;6716:21:6;;;6753:18;;;6746:30;6812:34;6792:18;;;6785:62;6864:18;;1414:68:0;6532:356:6;2426:187:0;2518:6;;;-1:-1:-1;;;;;2534:17:0;;;;;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;1190:305:5:-;1294:27;1312:4;1318:2;1294:17;:27::i;:::-;1291:39;;;1190:305;;;:::o;1291:39::-;1369:13;;-1:-1:-1;;;1369:13:5;;;;:26;;;;;1394:1;1386:5;;:9;1369:26;1366:120;;;1430:5;;1420:6;:15;;1412:62;;;;-1:-1:-1;;;1412:62:5;;7095:2:6;1412:62:5;;;7077:21:6;7134:2;7114:18;;;7107:30;7173:34;7153:18;;;7146:62;7244:4;7224:18;;;7217:32;7266:19;;1412:62:5;6893:398:6;1412:62:5;1190:305;;;:::o;901:281::-;1024:11;;985:4;;-1:-1:-1;;;1024:11:5;;;;1023:12;;:51;;-1:-1:-1;;;;;;1053:21:5;;1069:4;1053:21;1023:51;:88;;;-1:-1:-1;;;;;;1092:19:5;;1106:4;1092:19;1023:88;:118;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1128:13:5;;;1273:6:0;;1128:13:5;1023:118;:150;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1158:15:5;;;1273:6:0;;1158:15:5;1023:150;1002:171;901:281;-1:-1:-1;;;901:281:5: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:196::-;635:20;;-1:-1:-1;;;;;684:54:6;;674:65;;664:93;;753:1;750;743:12;664:93;567:196;;;:::o;768:254::-;836:6;844;897:2;885:9;876:7;872:23;868:32;865:52;;;913:1;910;903:12;865:52;936:29;955:9;936:29;:::i;:::-;926:39;1012:2;997:18;;;;984:32;;-1:-1:-1;;;768:254:6:o;1401:328::-;1478:6;1486;1494;1547:2;1535:9;1526:7;1522:23;1518:32;1515:52;;;1563:1;1560;1553:12;1515:52;1586:29;1605:9;1586:29;:::i;:::-;1576:39;;1634:38;1668:2;1657:9;1653:18;1634:38;:::i;:::-;1624:48;;1719:2;1708:9;1704:18;1691:32;1681:42;;1401:328;;;;;:::o;1923:186::-;1982:6;2035:2;2023:9;2014:7;2010:23;2006:32;2003:52;;;2051:1;2048;2041:12;2003:52;2074:29;2093:9;2074:29;:::i;2345:260::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:52;;;2490:1;2487;2480:12;2442:52;2513:29;2532:9;2513:29;:::i;:::-;2503:39;;2561:38;2595:2;2584:9;2580:18;2561:38;:::i;:::-;2551:48;;2345:260;;;;;:::o;2610:437::-;2689:1;2685:12;;;;2732;;;2753:61;;2807:4;2799:6;2795:17;2785:27;;2753:61;2860:2;2852:6;2849:14;2829:18;2826:38;2823:218;;-1:-1:-1;;;2894:1:6;2887:88;2998:4;2995:1;2988:15;3026:4;3023:1;3016:15;2823:218;;2610:437;;;:::o;3052:279::-;3117:9;;;3138:10;;;3135:190;;;-1:-1:-1;;;3178:1:6;3171:88;3282:4;3279:1;3272:15;3310:4;3307:1;3300:15
Swarm Source
ipfs://b8fc45b3e7897525dd2dd27406509e013a7e7e688cb5743b6847be492474b800
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$2,127.02
Net Worth in ETH
0.903591
Token Allocations
ETH
99.92%
POL
0.08%
Multichain Portfolio | 32 Chains
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.