Feature Tip: Add private address tag to any address under My Name Tag !
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
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MockToken
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2024-03-07
*/
/**
* This is a mock smart contract for testing
* mintswap
*/
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.24;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
/**
* @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.zeppelin.solutions/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}.
*/
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
/**
* @dev 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);
}
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);
}
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, _allowances[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 = _allowances[owner][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* 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;
}
_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;
_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;
}
_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 Spend `amount` form the allowance of `owner` toward `spender`.
*
* 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 {}
}
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 Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
pragma solidity ^0.8.24;
contract MockToken is ERC20('MockToken', 'MOCK'), Ownable {
using SafeMath for uint256;
uint256 private _totalSupply = 1000000000 * 1e18;
uint256 private _currentSupply = 0;
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
mapping(address => bool) public blacklisted;
/// @notice Mints token to specifies address, only admin can call
function mint(address _to, uint256 _amount) public onlyOwner {
require((_amount + _currentSupply) <= _totalSupply,"Cant mint more than totalsupply");
_mint(_to, _amount);
_currentSupply += _amount;
}
function transfer(address to, uint256 amount) public override returns (bool) {
address owner = _msgSender();
require(!blacklisted[owner],'Blacklisted');
_transfer(owner, to, amount);
return true;
}
function transferFrom(
address from,
address to,
uint256 amount
) public override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
require(!blacklisted[spender],'Blacklisted');
_transfer(from, to, amount);
return true;
}
function setAsBlackListed(address _user, bool _enabled) external onlyOwner{
blacklisted[_user] = _enabled;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"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":"_user","type":"address"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setAsBlackListed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526b033b2e3c9fd0803ce80000006006555f60075534801562000024575f80fd5b506040518060400160405280600981526020016826b7b1b5aa37b5b2b760b91b815250604051806040016040528060048152602001634d4f434b60e01b81525081600390816200007591906200019a565b5060046200008482826200019a565b505050620000a16200009b620000a760201b60201c565b620000ab565b62000266565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200012557607f821691505b6020821081036200014457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200019557805f5260205f20601f840160051c81016020851015620001715750805b601f840160051c820191505b8181101562000192575f81556001016200017d565b50505b505050565b81516001600160401b03811115620001b657620001b6620000fc565b620001ce81620001c7845462000110565b846200014a565b602080601f83116001811462000204575f8415620001ec5750858301515b5f19600386901b1c1916600185901b1785556200025e565b5f85815260208120601f198616915b82811015620002345788860151825594840194600190910190840162000213565b50858210156200025257878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b610d9080620002745f395ff3fe608060405234801561000f575f80fd5b5060043610610106575f3560e01c806370a082311161009e578063a457c2d71161006e578063a457c2d71461020d578063a9059cbb14610220578063dbac26e914610233578063dd62ed3e14610255578063f2fde38b1461028d575f80fd5b806370a08231146101ba578063715018a6146101e25780638da5cb5b146101ea57806395d89b4114610205575f80fd5b8063313ce567116100d9578063313ce56714610170578063395093511461017f57806340c10f19146101925780635c102669146101a7575f80fd5b806306fdde031461010a578063095ea7b31461012857806318160ddd1461014b57806323b872dd1461015d575b5f80fd5b6101126102a0565b60405161011f9190610b7c565b60405180910390f35b61013b610136366004610be3565b610330565b604051901515815260200161011f565b6006545b60405190815260200161011f565b61013b61016b366004610c0b565b610349565b6040516012815260200161011f565b61013b61018d366004610be3565b6103c7565b6101a56101a0366004610be3565b610405565b005b6101a56101b5366004610c44565b6104b1565b61014f6101c8366004610c7d565b6001600160a01b03165f9081526020819052604090205490565b6101a5610505565b6005546040516001600160a01b03909116815260200161011f565b61011261053a565b61013b61021b366004610be3565b610549565b61013b61022e366004610be3565b6105da565b61013b610241366004610c7d565b60086020525f908152604090205460ff1681565b61014f610263366004610c9d565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101a561029b366004610c7d565b610635565b6060600380546102af90610cce565b80601f01602080910402602001604051908101604052809291908181526020018280546102db90610cce565b80156103265780601f106102fd57610100808354040283529160200191610326565b820191905f5260205f20905b81548152906001019060200180831161030957829003601f168201915b5050505050905090565b5f3361033d8185856106d0565b60019150505b92915050565b5f336103568582856107f3565b6001600160a01b0381165f9081526008602052604090205460ff16156103b15760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064015b60405180910390fd5b6103bc858585610883565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919061033d9082908690610400908790610d06565b6106d0565b6005546001600160a01b0316331461042f5760405162461bcd60e51b81526004016103a890610d25565b60065460075461043f9083610d06565b111561048d5760405162461bcd60e51b815260206004820152601f60248201527f43616e74206d696e74206d6f7265207468616e20746f74616c737570706c790060448201526064016103a8565b6104978282610a4f565b8060075f8282546104a89190610d06565b90915550505050565b6005546001600160a01b031633146104db5760405162461bcd60e51b81526004016103a890610d25565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461052f5760405162461bcd60e51b81526004016103a890610d25565b6105385f610b2b565b565b6060600480546102af90610cce565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105cd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a8565b6103bc82868684036106d0565b335f8181526008602052604081205490919060ff161561062a5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016103a8565b61033d818585610883565b6005546001600160a01b0316331461065f5760405162461bcd60e51b81526004016103a890610d25565b6001600160a01b0381166106c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a8565b6106cd81610b2b565b50565b6001600160a01b0383166107325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a8565b6001600160a01b0382166107935760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a8565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461087d57818110156108705760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103a8565b61087d84848484036106d0565b50505050565b6001600160a01b0383166108e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a8565b6001600160a01b0382166109495760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a8565b6001600160a01b0383165f90815260208190526040902054818110156109c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a8565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906109f6908490610d06565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a4291815260200190565b60405180910390a361087d565b6001600160a01b038216610aa55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103a8565b8060025f828254610ab69190610d06565b90915550506001600160a01b0382165f9081526020819052604081208054839290610ae2908490610d06565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f602080835283518060208501525f5b81811015610ba857858101830151858201604001528201610b8c565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610bde575f80fd5b919050565b5f8060408385031215610bf4575f80fd5b610bfd83610bc8565b946020939093013593505050565b5f805f60608486031215610c1d575f80fd5b610c2684610bc8565b9250610c3460208501610bc8565b9150604084013590509250925092565b5f8060408385031215610c55575f80fd5b610c5e83610bc8565b915060208301358015158114610c72575f80fd5b809150509250929050565b5f60208284031215610c8d575f80fd5b610c9682610bc8565b9392505050565b5f8060408385031215610cae575f80fd5b610cb783610bc8565b9150610cc560208401610bc8565b90509250929050565b600181811c90821680610ce257607f821691505b602082108103610d0057634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561034357634e487b7160e01b5f52601160045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea264697066735822122050a74a8527f07e9b8dc780601a40946757957499286e8a2572e2fa939c556b9564736f6c63430008180033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610106575f3560e01c806370a082311161009e578063a457c2d71161006e578063a457c2d71461020d578063a9059cbb14610220578063dbac26e914610233578063dd62ed3e14610255578063f2fde38b1461028d575f80fd5b806370a08231146101ba578063715018a6146101e25780638da5cb5b146101ea57806395d89b4114610205575f80fd5b8063313ce567116100d9578063313ce56714610170578063395093511461017f57806340c10f19146101925780635c102669146101a7575f80fd5b806306fdde031461010a578063095ea7b31461012857806318160ddd1461014b57806323b872dd1461015d575b5f80fd5b6101126102a0565b60405161011f9190610b7c565b60405180910390f35b61013b610136366004610be3565b610330565b604051901515815260200161011f565b6006545b60405190815260200161011f565b61013b61016b366004610c0b565b610349565b6040516012815260200161011f565b61013b61018d366004610be3565b6103c7565b6101a56101a0366004610be3565b610405565b005b6101a56101b5366004610c44565b6104b1565b61014f6101c8366004610c7d565b6001600160a01b03165f9081526020819052604090205490565b6101a5610505565b6005546040516001600160a01b03909116815260200161011f565b61011261053a565b61013b61021b366004610be3565b610549565b61013b61022e366004610be3565b6105da565b61013b610241366004610c7d565b60086020525f908152604090205460ff1681565b61014f610263366004610c9d565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101a561029b366004610c7d565b610635565b6060600380546102af90610cce565b80601f01602080910402602001604051908101604052809291908181526020018280546102db90610cce565b80156103265780601f106102fd57610100808354040283529160200191610326565b820191905f5260205f20905b81548152906001019060200180831161030957829003601f168201915b5050505050905090565b5f3361033d8185856106d0565b60019150505b92915050565b5f336103568582856107f3565b6001600160a01b0381165f9081526008602052604090205460ff16156103b15760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064015b60405180910390fd5b6103bc858585610883565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919061033d9082908690610400908790610d06565b6106d0565b6005546001600160a01b0316331461042f5760405162461bcd60e51b81526004016103a890610d25565b60065460075461043f9083610d06565b111561048d5760405162461bcd60e51b815260206004820152601f60248201527f43616e74206d696e74206d6f7265207468616e20746f74616c737570706c790060448201526064016103a8565b6104978282610a4f565b8060075f8282546104a89190610d06565b90915550505050565b6005546001600160a01b031633146104db5760405162461bcd60e51b81526004016103a890610d25565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461052f5760405162461bcd60e51b81526004016103a890610d25565b6105385f610b2b565b565b6060600480546102af90610cce565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105cd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a8565b6103bc82868684036106d0565b335f8181526008602052604081205490919060ff161561062a5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016103a8565b61033d818585610883565b6005546001600160a01b0316331461065f5760405162461bcd60e51b81526004016103a890610d25565b6001600160a01b0381166106c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a8565b6106cd81610b2b565b50565b6001600160a01b0383166107325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a8565b6001600160a01b0382166107935760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a8565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461087d57818110156108705760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103a8565b61087d84848484036106d0565b50505050565b6001600160a01b0383166108e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a8565b6001600160a01b0382166109495760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a8565b6001600160a01b0383165f90815260208190526040902054818110156109c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a8565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906109f6908490610d06565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a4291815260200190565b60405180910390a361087d565b6001600160a01b038216610aa55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103a8565b8060025f828254610ab69190610d06565b90915550506001600160a01b0382165f9081526020819052604081208054839290610ae2908490610d06565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f602080835283518060208501525f5b81811015610ba857858101830151858201604001528201610b8c565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610bde575f80fd5b919050565b5f8060408385031215610bf4575f80fd5b610bfd83610bc8565b946020939093013593505050565b5f805f60608486031215610c1d575f80fd5b610c2684610bc8565b9250610c3460208501610bc8565b9150604084013590509250925092565b5f8060408385031215610c55575f80fd5b610c5e83610bc8565b915060208301358015158114610c72575f80fd5b809150509250929050565b5f60208284031215610c8d575f80fd5b610c9682610bc8565b9392505050565b5f8060408385031215610cae575f80fd5b610cb783610bc8565b9150610cc560208401610bc8565b90509250929050565b600181811c90821680610ce257607f821691505b602082108103610d0057634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561034357634e487b7160e01b5f52601160045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea264697066735822122050a74a8527f07e9b8dc780601a40946757957499286e8a2572e2fa939c556b9564736f6c63430008180033
Deployed Bytecode Sourcemap
25145:1393:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12444:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14795:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;14795:201:0;1004:187:1;25347:100:0;25427:12;;25347:100;;;1342:25:1;;;1330:2;1315:18;25347:100:0;1196:177:1;26060:342:0;;;;;;:::i;:::-;;:::i;13406:93::-;;;13489:2;1853:36:1;;1841:2;1826:18;13406:93:0;1711:184:1;16280:240:0;;;;;;:::i;:::-;;:::i;25576:228::-;;;;;;:::i;:::-;;:::i;:::-;;26410:122;;;;;;:::i;:::-;;:::i;13735:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13836:18:0;13809:7;13836:18;;;;;;;;;;;;13735:127;24302:103;;;:::i;23651:87::-;23724:6;;23651:87;;-1:-1:-1;;;;;23724:6:0;;;2589:51:1;;2577:2;2562:18;23651:87:0;2443:203:1;12663:104:0;;;:::i;17023:438::-;;;;;;:::i;:::-;;:::i;25814:238::-;;;;;;:::i;:::-;;:::i;25455:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;14324:151;;;;;;:::i;:::-;-1:-1:-1;;;;;14440:18:0;;;14413:7;14440:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14324:151;24560:201;;;;;;:::i;:::-;;:::i;12444:100::-;12498:13;12531:5;12524:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12444:100;:::o;14795:201::-;14878:4;7193:10;14934:32;7193:10;14950:7;14959:6;14934:8;:32::i;:::-;14984:4;14977:11;;;14795:201;;;;;:::o;26060:342::-;26183:4;7193:10;26241:38;26257:4;7193:10;26272:6;26241:15;:38::i;:::-;-1:-1:-1;;;;;26299:20:0;;;;;;:11;:20;;;;;;;;26298:21;26290:44;;;;-1:-1:-1;;;26290:44:0;;3503:2:1;26290:44:0;;;3485:21:1;3542:2;3522:18;;;3515:30;-1:-1:-1;;;3561:18:1;;;3554:41;3612:18;;26290:44:0;;;;;;;;;26345:27;26355:4;26361:2;26365:6;26345:9;:27::i;:::-;-1:-1:-1;26390:4:0;;26060:342;-1:-1:-1;;;;26060:342:0:o;16280:240::-;7193:10;16368:4;16449:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;16449:27:0;;;;;;;;;;16368:4;;7193:10;16424:66;;7193:10;;16449:27;;:40;;16479:10;;16449:40;:::i;:::-;16424:8;:66::i;25576:228::-;23724:6;;-1:-1:-1;;;;;23724:6:0;7193:10;23871:23;23863:68;;;;-1:-1:-1;;;23863:68:0;;;;;;;:::i;:::-;25683:12:::1;::::0;25664:14:::1;::::0;25654:24:::1;::::0;:7;:24:::1;:::i;:::-;25653:42;;25645:85;;;::::0;-1:-1:-1;;;25645:85:0;;4431:2:1;25645:85:0::1;::::0;::::1;4413:21:1::0;4470:2;4450:18;;;4443:30;4509:33;4489:18;;;4482:61;4560:18;;25645:85:0::1;4229:355:1::0;25645:85:0::1;25741:19;25747:3;25752:7;25741:5;:19::i;:::-;25789:7;25771:14;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;25576:228:0:o;26410:122::-;23724:6;;-1:-1:-1;;;;;23724:6:0;7193:10;23871:23;23863:68;;;;-1:-1:-1;;;23863:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26495:18:0;;;::::1;;::::0;;;:11:::1;:18;::::0;;;;:29;;-1:-1:-1;;26495:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26410:122::o;24302:103::-;23724:6;;-1:-1:-1;;;;;23724:6:0;7193:10;23871:23;23863:68;;;;-1:-1:-1;;;23863:68:0;;;;;;;:::i;:::-;24367:30:::1;24394:1;24367:18;:30::i;:::-;24302:103::o:0;12663:104::-;12719:13;12752:7;12745:14;;;;;:::i;17023:438::-;7193:10;17116:4;17199:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;17199:27:0;;;;;;;;;;17116:4;;7193:10;17245:35;;;;17237:85;;;;-1:-1:-1;;;17237:85:0;;4791:2:1;17237:85:0;;;4773:21:1;4830:2;4810:18;;;4803:30;4869:34;4849:18;;;4842:62;-1:-1:-1;;;4920:18:1;;;4913:35;4965:19;;17237:85:0;4589:401:1;17237:85:0;17358:60;17367:5;17374:7;17402:15;17383:16;:34;17358:8;:60::i;25814:238::-;7193:10;25885:4;25950:18;;;:11;:18;;;;;;25885:4;;7193:10;25950:18;;25949:19;25941:42;;;;-1:-1:-1;;;25941:42:0;;3503:2:1;25941:42:0;;;3485:21:1;3542:2;3522:18;;;3515:30;-1:-1:-1;;;3561:18:1;;;3554:41;3612:18;;25941:42:0;3301:335:1;25941:42:0;25994:28;26004:5;26011:2;26015:6;25994:9;:28::i;24560:201::-;23724:6;;-1:-1:-1;;;;;23724:6:0;7193:10;23871:23;23863:68;;;;-1:-1:-1;;;23863:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24649:22:0;::::1;24641:73;;;::::0;-1:-1:-1;;;24641:73:0;;5197:2:1;24641:73:0::1;::::0;::::1;5179:21:1::0;5236:2;5216:18;;;5209:30;5275:34;5255:18;;;5248:62;-1:-1:-1;;;5326:18:1;;;5319:36;5372:19;;24641:73:0::1;4995:402:1::0;24641:73:0::1;24725:28;24744:8;24725:18;:28::i;:::-;24560:201:::0;:::o;20659:380::-;-1:-1:-1;;;;;20795:19:0;;20787:68;;;;-1:-1:-1;;;20787:68:0;;5604:2:1;20787:68:0;;;5586:21:1;5643:2;5623:18;;;5616:30;5682:34;5662:18;;;5655:62;-1:-1:-1;;;5733:18:1;;;5726:34;5777:19;;20787:68:0;5402:400:1;20787:68:0;-1:-1:-1;;;;;20874:21:0;;20866:68;;;;-1:-1:-1;;;20866:68:0;;6009:2:1;20866:68:0;;;5991:21:1;6048:2;6028:18;;;6021:30;6087:34;6067:18;;;6060:62;-1:-1:-1;;;6138:18:1;;;6131:32;6180:19;;20866:68:0;5807:398:1;20866:68:0;-1:-1:-1;;;;;20947:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20999:32;;1342:25:1;;;20999:32:0;;1315:18:1;20999:32:0;;;;;;;20659:380;;;:::o;21326:453::-;-1:-1:-1;;;;;14440:18:0;;;21461:24;14440:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;21528:37:0;;21524:248;;21610:6;21590:16;:26;;21582:68;;;;-1:-1:-1;;;21582:68:0;;6412:2:1;21582:68:0;;;6394:21:1;6451:2;6431:18;;;6424:30;6490:31;6470:18;;;6463:59;6539:18;;21582:68:0;6210:353:1;21582:68:0;21694:51;21703:5;21710:7;21738:6;21719:16;:25;21694:8;:51::i;:::-;21450:329;21326:453;;;:::o;17940:671::-;-1:-1:-1;;;;;18071:18:0;;18063:68;;;;-1:-1:-1;;;18063:68:0;;6770:2:1;18063:68:0;;;6752:21:1;6809:2;6789:18;;;6782:30;6848:34;6828:18;;;6821:62;-1:-1:-1;;;6899:18:1;;;6892:35;6944:19;;18063:68:0;6568:401:1;18063:68:0;-1:-1:-1;;;;;18150:16:0;;18142:64;;;;-1:-1:-1;;;18142:64:0;;7176:2:1;18142:64:0;;;7158:21:1;7215:2;7195:18;;;7188:30;7254:34;7234:18;;;7227:62;-1:-1:-1;;;7305:18:1;;;7298:33;7348:19;;18142:64:0;6974:399:1;18142:64:0;-1:-1:-1;;;;;18292:15:0;;18270:19;18292:15;;;;;;;;;;;18326:21;;;;18318:72;;;;-1:-1:-1;;;18318:72:0;;7580:2:1;18318:72:0;;;7562:21:1;7619:2;7599:18;;;7592:30;7658:34;7638:18;;;7631:62;-1:-1:-1;;;7709:18:1;;;7702:36;7755:19;;18318:72:0;7378:402:1;18318:72:0;-1:-1:-1;;;;;18426:15:0;;;:9;:15;;;;;;;;;;;18444:20;;;18426:38;;18486:13;;;;;;;;:23;;18458:6;;18426:9;18486:23;;18458:6;;18486:23;:::i;:::-;;;;;;;;18542:2;-1:-1:-1;;;;;18527:26:0;18536:4;-1:-1:-1;;;;;18527:26:0;;18546:6;18527:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;18527:26:0;;;;;;;;18566:37;22379:125;18898:399;-1:-1:-1;;;;;18982:21:0;;18974:65;;;;-1:-1:-1;;;18974:65:0;;7987:2:1;18974:65:0;;;7969:21:1;8026:2;8006:18;;;7999:30;8065:33;8045:18;;;8038:61;8116:18;;18974:65:0;7785:355:1;18974:65:0;19130:6;19114:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;19147:18:0;;:9;:18;;;;;;;;;;:28;;19169:6;;19147:9;:28;;19169:6;;19147:28;:::i;:::-;;;;-1:-1:-1;;19191:37:0;;1342:25:1;;;-1:-1:-1;;;;;19191:37:0;;;19208:1;;19191:37;;1330:2:1;1315:18;19191:37:0;;;;;;;18898:399;;:::o;24921:191::-;25014:6;;;-1:-1:-1;;;;;25031:17:0;;;-1:-1:-1;;;;;;25031:17:0;;;;;;;25064:40;;25014:6;;;25031:17;25014:6;;25064:40;;24995:16;;25064:40;24984:128;24921:191;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:347::-;1965:6;1973;2026:2;2014:9;2005:7;2001:23;1997:32;1994:52;;;2042:1;2039;2032:12;1994:52;2065:29;2084:9;2065:29;:::i;:::-;2055:39;;2144:2;2133:9;2129:18;2116:32;2191:5;2184:13;2177:21;2170:5;2167:32;2157:60;;2213:1;2210;2203:12;2157:60;2236:5;2226:15;;;1900:347;;;;;:::o;2252:186::-;2311:6;2364:2;2352:9;2343:7;2339:23;2335:32;2332:52;;;2380:1;2377;2370:12;2332:52;2403:29;2422:9;2403:29;:::i;:::-;2393:39;2252:186;-1:-1:-1;;;2252:186:1:o;2651:260::-;2719:6;2727;2780:2;2768:9;2759:7;2755:23;2751:32;2748:52;;;2796:1;2793;2786:12;2748:52;2819:29;2838:9;2819:29;:::i;:::-;2809:39;;2867:38;2901:2;2890:9;2886:18;2867:38;:::i;:::-;2857:48;;2651:260;;;;;:::o;2916:380::-;2995:1;2991:12;;;;3038;;;3059:61;;3113:4;3105:6;3101:17;3091:27;;3059:61;3166:2;3158:6;3155:14;3135:18;3132:38;3129:161;;3212:10;3207:3;3203:20;3200:1;3193:31;3247:4;3244:1;3237:15;3275:4;3272:1;3265:15;3129:161;;2916:380;;;:::o;3641:222::-;3706:9;;;3727:10;;;3724:133;;;3779:10;3774:3;3770:20;3767:1;3760:31;3814:4;3811:1;3804:15;3842:4;3839:1;3832:15;3868:356;4070:2;4052:21;;;4089:18;;;4082:30;4148:34;4143:2;4128:18;;4121:62;4215:2;4200:18;;3868:356::o
Swarm Source
ipfs://50a74a8527f07e9b8dc780601a40946757957499286e8a2572e2fa939c556b95
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 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.