ERC-20
Overview
Max Total Supply
100,000,000 BLSX
Holders
52
Total Transfers
-
Market
Fully Diluted Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
StandardToken
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-21 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // 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; } } } // File: contracts/BaseToken.sol pragma solidity ^0.8.4; enum TokenType { standard, antiBotStandard, liquidityGenerator, antiBotLiquidityGenerator, baby, antiBotBaby, buybackBaby, antiBotBuybackBaby } abstract contract BaseToken { event TokenCreated( address indexed owner, address indexed token, TokenType tokenType, uint256 version ); } // File: contracts/StandardToken.sol pragma solidity =0.8.7; contract StandardToken is IERC20, Ownable, BaseToken { using SafeMath for uint256; uint256 public constant VERSION = 1; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; constructor( string memory name_, string memory symbol_, uint8 decimals_, uint256 totalSupply_, address payable serviceFeeReceiver_, uint256 serviceFee_ ) payable { _name = name_; _symbol = symbol_; _decimals = decimals_; _mint(owner(), totalSupply_); emit TokenCreated(owner(), address(this), TokenType.standard, VERSION); (bool sent, ) = serviceFeeReceiver_.call{value: serviceFee_}(''); require(sent, 'Failed to pay service fee'); } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 {_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 view virtual returns (uint8) { return _decimals; } /** * @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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, 'ERC20: transfer amount exceeds allowance' ) ); 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) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, 'ERC20: decreased allowance below zero' ) ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), 'ERC20: transfer from the zero address'); require(recipient != address(0), 'ERC20: transfer to the zero address'); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, 'ERC20: transfer amount exceeds balance' ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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: * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub( amount, 'ERC20: burn amount exceeds balance' ); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @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 to 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 {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address payable","name":"serviceFeeReceiver_","type":"address"},{"internalType":"uint256","name":"serviceFee_","type":"uint256"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":[],"name":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051620022dc380380620022dc833981810160405281019062000029919062000627565b620000496200003d620001f160201b60201c565b620001f960201b60201c565b856003908051906020019062000061929190620004b4565b5084600490805190602001906200007a929190620004b4565b5083600560006101000a81548160ff021916908360ff160217905550620000b7620000aa620002bd60201b60201c565b84620002e660201b60201c565b3073ffffffffffffffffffffffffffffffffffffffff16620000de620002bd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe35626000600160405162000129929190620007af565b60405180910390a360008273ffffffffffffffffffffffffffffffffffffffff1682604051620001599062000798565b60006040518083038185875af1925050503d806000811462000198576040519150601f19603f3d011682016040523d82523d6000602084013e6200019d565b606091505b5050905080620001e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001db90620007dc565b60405180910390fd5b5050505050505062000bc6565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000359576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035090620007fe565b60405180910390fd5b6200036d600083836200049760201b60201c565b62000389816006546200049c60201b6200097c1790919060201c565b600681905550620003e881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200049c60201b6200097c1790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200048b919062000820565b60405180910390a35050565b505050565b60008183620004ac9190620008b8565b905092915050565b828054620004c290620009bf565b90600052602060002090601f016020900481019282620004e6576000855562000532565b82601f106200050157805160ff191683800117855562000532565b8280016001018555821562000532579182015b828111156200053157825182559160200191906001019062000514565b5b50905062000541919062000545565b5090565b5b808211156200056057600081600090555060010162000546565b5090565b60006200057b620005758462000866565b6200083d565b9050828152602081018484840111156200059a576200059962000aec565b5b620005a784828562000989565b509392505050565b600081519050620005c08162000b78565b92915050565b600082601f830112620005de57620005dd62000ae7565b5b8151620005f084826020860162000564565b91505092915050565b6000815190506200060a8162000b92565b92915050565b600081519050620006218162000bac565b92915050565b60008060008060008060c0878903121562000647576200064662000af6565b5b600087015167ffffffffffffffff81111562000668576200066762000af1565b5b6200067689828a01620005c6565b965050602087015167ffffffffffffffff8111156200069a576200069962000af1565b5b620006a889828a01620005c6565b9550506040620006bb89828a0162000610565b9450506060620006ce89828a01620005f9565b9350506080620006e189828a01620005af565b92505060a0620006f489828a01620005f9565b9150509295509295509295565b6200070c8162000975565b82525050565b600062000721601983620008a7565b91506200072e8262000b0c565b602082019050919050565b6000620007486000836200089c565b9150620007558262000b35565b600082019050919050565b60006200076f601f83620008a7565b91506200077c8262000b38565b602082019050919050565b62000792816200095e565b82525050565b6000620007a58262000739565b9150819050919050565b6000604082019050620007c6600083018562000701565b620007d5602083018462000787565b9392505050565b60006020820190508181036000830152620007f78162000712565b9050919050565b60006020820190508181036000830152620008198162000760565b9050919050565b600060208201905062000837600083018462000787565b92915050565b6000620008496200085c565b9050620008578282620009f5565b919050565b6000604051905090565b600067ffffffffffffffff82111562000884576200088362000ab8565b5b6200088f8262000afb565b9050602081019050919050565b600081905092915050565b600082825260208201905092915050565b6000620008c5826200095e565b9150620008d2836200095e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200090a576200090962000a2b565b5b828201905092915050565b600062000922826200093e565b9050919050565b6000819050620009398262000b61565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000620009828262000929565b9050919050565b60005b83811015620009a95780820151818401526020810190506200098c565b83811115620009b9576000848401525b50505050565b60006002820490506001821680620009d857607f821691505b60208210811415620009ef57620009ee62000a89565b5b50919050565b62000a008262000afb565b810181811067ffffffffffffffff8211171562000a225762000a2162000ab8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4661696c656420746f2070617920736572766963652066656500000000000000600082015250565b50565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6008811062000b755762000b7462000a5a565b5b50565b62000b838162000915565b811462000b8f57600080fd5b50565b62000b9d816200095e565b811462000ba957600080fd5b50565b62000bb78162000968565b811462000bc357600080fd5b50565b6117068062000bd66000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063dd62ed3e146102ba578063f2fde38b146102ea578063ffa1ad7414610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610324565b60405161010f91906111c3565b60405180910390f35b610132600480360381019061012d9190611006565b6103b6565b60405161013f91906111a8565b60405180910390f35b6101506103d4565b60405161015d91906112a5565b60405180910390f35b610180600480360381019061017b9190610fb3565b6103de565b60405161018d91906111a8565b60405180910390f35b61019e6104b7565b6040516101ab91906112c0565b60405180910390f35b6101ce60048036038101906101c99190611006565b6104ce565b6040516101db91906111a8565b60405180910390f35b6101fe60048036038101906101f99190610f46565b610581565b60405161020b91906112a5565b60405180910390f35b61021c6105ca565b005b610226610652565b604051610233919061118d565b60405180910390f35b61024461067b565b60405161025191906111c3565b60405180910390f35b610274600480360381019061026f9190611006565b61070d565b60405161028191906111a8565b60405180910390f35b6102a4600480360381019061029f9190611006565b6107da565b6040516102b191906111a8565b60405180910390f35b6102d460048036038101906102cf9190610f73565b6107f8565b6040516102e191906112a5565b60405180910390f35b61030460048036038101906102ff9190610f46565b61087f565b005b61030e610977565b60405161031b91906112a5565b60405180910390f35b606060038054610333906113d5565b80601f016020809104026020016040519081016040528092919081815260200182805461035f906113d5565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b60006103ca6103c3610992565b848461099a565b6001905092915050565b6000600654905090565b60006103eb848484610b65565b6104ac846103f7610992565b6104a78560405180606001604052806028815260200161168460289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045d610992565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dfe9092919063ffffffff16565b61099a565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105776104db610992565b8461057285600260006104ec610992565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461097c90919063ffffffff16565b61099a565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d2610992565b73ffffffffffffffffffffffffffffffffffffffff166105f0610652565b73ffffffffffffffffffffffffffffffffffffffff1614610646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063d90611245565b60405180910390fd5b6106506000610e53565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068a906113d5565b80601f01602080910402602001604051908101604052809291908181526020018280546106b6906113d5565b80156107035780601f106106d857610100808354040283529160200191610703565b820191906000526020600020905b8154815290600101906020018083116106e657829003601f168201915b5050505050905090565b60006107d061071a610992565b846107cb856040518060600160405280602581526020016116ac6025913960026000610744610992565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dfe9092919063ffffffff16565b61099a565b6001905092915050565b60006107ee6107e7610992565b8484610b65565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610887610992565b73ffffffffffffffffffffffffffffffffffffffff166108a5610652565b73ffffffffffffffffffffffffffffffffffffffff16146108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f290611245565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096290611205565b60405180910390fd5b61097481610e53565b50565b600181565b6000818361098a91906112f7565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190611285565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190611225565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b5891906112a5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90611265565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c906111e5565b60405180910390fd5b610c50838383610f17565b610cbc8160405180606001604052806026815260200161165e60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dfe9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d5181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461097c90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610df191906112a5565b60405180910390a3505050565b6000838311158290610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d91906111c3565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081359050610f2b8161162f565b92915050565b600081359050610f4081611646565b92915050565b600060208284031215610f5c57610f5b611465565b5b6000610f6a84828501610f1c565b91505092915050565b60008060408385031215610f8a57610f89611465565b5b6000610f9885828601610f1c565b9250506020610fa985828601610f1c565b9150509250929050565b600080600060608486031215610fcc57610fcb611465565b5b6000610fda86828701610f1c565b9350506020610feb86828701610f1c565b9250506040610ffc86828701610f31565b9150509250925092565b6000806040838503121561101d5761101c611465565b5b600061102b85828601610f1c565b925050602061103c85828601610f31565b9150509250929050565b61104f8161134d565b82525050565b61105e8161135f565b82525050565b600061106f826112db565b61107981856112e6565b93506110898185602086016113a2565b6110928161146a565b840191505092915050565b60006110aa6023836112e6565b91506110b58261147b565b604082019050919050565b60006110cd6026836112e6565b91506110d8826114ca565b604082019050919050565b60006110f06022836112e6565b91506110fb82611519565b604082019050919050565b60006111136020836112e6565b915061111e82611568565b602082019050919050565b60006111366025836112e6565b915061114182611591565b604082019050919050565b60006111596024836112e6565b9150611164826115e0565b604082019050919050565b6111788161138b565b82525050565b61118781611395565b82525050565b60006020820190506111a26000830184611046565b92915050565b60006020820190506111bd6000830184611055565b92915050565b600060208201905081810360008301526111dd8184611064565b905092915050565b600060208201905081810360008301526111fe8161109d565b9050919050565b6000602082019050818103600083015261121e816110c0565b9050919050565b6000602082019050818103600083015261123e816110e3565b9050919050565b6000602082019050818103600083015261125e81611106565b9050919050565b6000602082019050818103600083015261127e81611129565b9050919050565b6000602082019050818103600083015261129e8161114c565b9050919050565b60006020820190506112ba600083018461116f565b92915050565b60006020820190506112d5600083018461117e565b92915050565b600081519050919050565b600082825260208201905092915050565b60006113028261138b565b915061130d8361138b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561134257611341611407565b5b828201905092915050565b60006113588261136b565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156113c05780820151818401526020810190506113a5565b838111156113cf576000848401525b50505050565b600060028204905060018216806113ed57607f821691505b6020821081141561140157611400611436565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6116388161134d565b811461164357600080fd5b50565b61164f8161138b565b811461165a57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b327039b46be81200a8f494fbbf90a9a34fae817c1064123a7a92ce033c6a73e64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000018276ee8a96384930b26dff85998295714b833c1000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000015426c756520536b79204c69746869756d20436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000004424c535800000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000018276ee8a96384930b26dff85998295714b833c1000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000015426c756520536b79204c69746869756d20436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000004424c535800000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Blue Sky Lithium Coin
Arg [1] : symbol_ (string): BLSX
Arg [2] : decimals_ (uint8): 18
Arg [3] : totalSupply_ (uint256): 100000000000000000000000000
Arg [4] : serviceFeeReceiver_ (address): 0x18276Ee8A96384930b26Dff85998295714b833c1
Arg [5] : serviceFee_ (uint256): 10000000000000000
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [4] : 00000000000000000000000018276ee8a96384930b26dff85998295714b833c1
Arg [5] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [7] : 426c756520536b79204c69746869756d20436f696e0000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 424c535800000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
13042:9698:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13986:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16069:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15021:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16705:382;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14879:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17470:254;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15178:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5324:97;;;:::i;:::-;;4713:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14180:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18197:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15522:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15765:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5566:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13133:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13986:85;14031:13;14060:5;14053:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13986:85;:::o;16069:182::-;16172:4;16188:39;16197:12;:10;:12::i;:::-;16211:7;16220:6;16188:8;:39::i;:::-;16241:4;16234:11;;16069:182;;;;:::o;15021:102::-;15082:7;15105:12;;15098:19;;15021:102;:::o;16705:382::-;16831:4;16844:36;16854:6;16862:9;16873:6;16844:9;:36::i;:::-;16887:176;16904:6;16919:12;:10;:12::i;:::-;16940:116;16988:6;16940:116;;;;;;;;;;;;;;;;;:11;:19;16952:6;16940:19;;;;;;;;;;;;;;;:33;16960:12;:10;:12::i;:::-;16940:33;;;;;;;;;;;;;;;;:37;;:116;;;;;:::i;:::-;16887:8;:176::i;:::-;17077:4;17070:11;;16705:382;;;;;:::o;14879:85::-;14928:5;14949:9;;;;;;;;;;;14942:16;;14879:85;:::o;17470:254::-;17573:4;17589:111;17606:12;:10;:12::i;:::-;17627:7;17643:50;17682:10;17643:11;:25;17655:12;:10;:12::i;:::-;17643:25;;;;;;;;;;;;;;;:34;17669:7;17643:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;17589:8;:111::i;:::-;17714:4;17707:11;;17470:254;;;;:::o;15178:149::-;15277:7;15303:9;:18;15313:7;15303:18;;;;;;;;;;;;;;;;15296:25;;15178:149;;;:::o;5324:97::-;4926:12;:10;:12::i;:::-;4915:23;;:7;:5;:7::i;:::-;:23;;;4907:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5385:30:::1;5412:1;5385:18;:30::i;:::-;5324:97::o:0;4713:81::-;4759:7;4782:6;;;;;;;;;;;4775:13;;4713:81;:::o;14180:89::-;14227:13;14256:7;14249:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14180:89;:::o;18197:332::-;18305:4;18321:184;18338:12;:10;:12::i;:::-;18359:7;18375:123;18424:15;18375:123;;;;;;;;;;;;;;;;;:11;:25;18387:12;:10;:12::i;:::-;18375:25;;;;;;;;;;;;;;;:34;18401:7;18375:34;;;;;;;;;;;;;;;;:38;;:123;;;;;:::i;:::-;18321:8;:184::i;:::-;18519:4;18512:11;;18197:332;;;;:::o;15522:188::-;15628:4;15644:42;15654:12;:10;:12::i;:::-;15668:9;15679:6;15644:9;:42::i;:::-;15700:4;15693:11;;15522:188;;;;:::o;15765:173::-;15879:7;15905:11;:18;15917:5;15905:18;;;;;;;;;;;;;;;:27;15924:7;15905:27;;;;;;;;;;;;;;;;15898:34;;15765:173;;;;:::o;5566:191::-;4926:12;:10;:12::i;:::-;4915:23;;:7;:5;:7::i;:::-;:23;;;4907:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5671:1:::1;5651:22;;:8;:22;;;;5643:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5723:28;5742:8;5723:18;:28::i;:::-;5566:191:::0;:::o;13133:35::-;13167:1;13133:35;:::o;8723:92::-;8781:7;8808:1;8804;:5;;;;:::i;:::-;8797:12;;8723:92;;;;:::o;3466:::-;3519:7;3542:10;3535:17;;3466:92;:::o;21297:348::-;21432:1;21415:19;;:5;:19;;;;21407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21509:1;21490:21;;:7;:21;;;;21482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21589:6;21559:11;:18;21571:5;21559:18;;;;;;;;;;;;;;;:27;21578:7;21559:27;;;;;;;;;;;;;;;:36;;;;21623:7;21607:32;;21616:5;21607:32;;;21632:6;21607:32;;;;;;:::i;:::-;;;;;;;;21297:348;;;:::o;18989:554::-;19129:1;19111:20;;:6;:20;;;;19103:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;19209:1;19188:23;;:9;:23;;;;19180:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19260:47;19281:6;19289:9;19300:6;19260:20;:47::i;:::-;19336:92;19366:6;19336:92;;;;;;;;;;;;;;;;;:9;:17;19346:6;19336:17;;;;;;;;;;;;;;;;:21;;:92;;;;;:::i;:::-;19316:9;:17;19326:6;19316:17;;;;;;;;;;;;;;;:112;;;;19458:32;19483:6;19458:9;:20;19468:9;19458:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;19435:9;:20;19445:9;19435:20;;;;;;;;;;;;;;;:55;;;;19519:9;19502:35;;19511:6;19502:35;;;19530:6;19502:35;;;;;;:::i;:::-;;;;;;;;18989:554;;;:::o;10852:204::-;10958:7;11006:1;11001;:6;;11009:12;10993:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11042:1;11038;:5;11031:12;;10852:204;;;;;:::o;5907:177::-;5977:16;5996:6;;;;;;;;;;;5977:25;;6018:8;6009:6;;:17;;;;;;;;;;;;;;;;;;6069:8;6038:40;;6059:8;6038:40;;;;;;;;;;;;5970:114;5907:177;:::o;22626:111::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;2456:364;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2826:366;;;:::o;3198:::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3198:366;;;:::o;3570:::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3570:366;;;:::o;3942:::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;3942:366;;;:::o;4314:::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4314:366;;;:::o;4686:::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4686:366;;;:::o;5058:118::-;5145:24;5163:5;5145:24;:::i;:::-;5140:3;5133:37;5058:118;;:::o;5182:112::-;5265:22;5281:5;5265:22;:::i;:::-;5260:3;5253:35;5182:112;;:::o;5300:222::-;5393:4;5431:2;5420:9;5416:18;5408:26;;5444:71;5512:1;5501:9;5497:17;5488:6;5444:71;:::i;:::-;5300:222;;;;:::o;5528:210::-;5615:4;5653:2;5642:9;5638:18;5630:26;;5666:65;5728:1;5717:9;5713:17;5704:6;5666:65;:::i;:::-;5528:210;;;;:::o;5744:313::-;5857:4;5895:2;5884:9;5880:18;5872:26;;5944:9;5938:4;5934:20;5930:1;5919:9;5915:17;5908:47;5972:78;6045:4;6036:6;5972:78;:::i;:::-;5964:86;;5744:313;;;;:::o;6063:419::-;6229:4;6267:2;6256:9;6252:18;6244:26;;6316:9;6310:4;6306:20;6302:1;6291:9;6287:17;6280:47;6344:131;6470:4;6344:131;:::i;:::-;6336:139;;6063:419;;;:::o;6488:::-;6654:4;6692:2;6681:9;6677:18;6669:26;;6741:9;6735:4;6731:20;6727:1;6716:9;6712:17;6705:47;6769:131;6895:4;6769:131;:::i;:::-;6761:139;;6488:419;;;:::o;6913:::-;7079:4;7117:2;7106:9;7102:18;7094:26;;7166:9;7160:4;7156:20;7152:1;7141:9;7137:17;7130:47;7194:131;7320:4;7194:131;:::i;:::-;7186:139;;6913:419;;;:::o;7338:::-;7504:4;7542:2;7531:9;7527:18;7519:26;;7591:9;7585:4;7581:20;7577:1;7566:9;7562:17;7555:47;7619:131;7745:4;7619:131;:::i;:::-;7611:139;;7338:419;;;:::o;7763:::-;7929:4;7967:2;7956:9;7952:18;7944:26;;8016:9;8010:4;8006:20;8002:1;7991:9;7987:17;7980:47;8044:131;8170:4;8044:131;:::i;:::-;8036:139;;7763:419;;;:::o;8188:::-;8354:4;8392:2;8381:9;8377:18;8369:26;;8441:9;8435:4;8431:20;8427:1;8416:9;8412:17;8405:47;8469:131;8595:4;8469:131;:::i;:::-;8461:139;;8188:419;;;:::o;8613:222::-;8706:4;8744:2;8733:9;8729:18;8721:26;;8757:71;8825:1;8814:9;8810:17;8801:6;8757:71;:::i;:::-;8613:222;;;;:::o;8841:214::-;8930:4;8968:2;8957:9;8953:18;8945:26;;8981:67;9045:1;9034:9;9030:17;9021:6;8981:67;:::i;:::-;8841:214;;;;:::o;9142:99::-;9194:6;9228:5;9222:12;9212:22;;9142:99;;;:::o;9247:169::-;9331:11;9365:6;9360:3;9353:19;9405:4;9400:3;9396:14;9381:29;;9247:169;;;;:::o;9422:305::-;9462:3;9481:20;9499:1;9481:20;:::i;:::-;9476:25;;9515:20;9533:1;9515:20;:::i;:::-;9510:25;;9669:1;9601:66;9597:74;9594:1;9591:81;9588:107;;;9675:18;;:::i;:::-;9588:107;9719:1;9716;9712:9;9705:16;;9422:305;;;;:::o;9733:96::-;9770:7;9799:24;9817:5;9799:24;:::i;:::-;9788:35;;9733:96;;;:::o;9835:90::-;9869:7;9912:5;9905:13;9898:21;9887:32;;9835:90;;;:::o;9931:126::-;9968:7;10008:42;10001:5;9997:54;9986:65;;9931:126;;;:::o;10063:77::-;10100:7;10129:5;10118:16;;10063:77;;;:::o;10146:86::-;10181:7;10221:4;10214:5;10210:16;10199:27;;10146:86;;;:::o;10238:307::-;10306:1;10316:113;10330:6;10327:1;10324:13;10316:113;;;10415:1;10410:3;10406:11;10400:18;10396:1;10391:3;10387:11;10380:39;10352:2;10349:1;10345:10;10340:15;;10316:113;;;10447:6;10444:1;10441:13;10438:101;;;10527:1;10518:6;10513:3;10509:16;10502:27;10438:101;10287:258;10238:307;;;:::o;10551:320::-;10595:6;10632:1;10626:4;10622:12;10612:22;;10679:1;10673:4;10669:12;10700:18;10690:81;;10756:4;10748:6;10744:17;10734:27;;10690:81;10818:2;10810:6;10807:14;10787:18;10784:38;10781:84;;;10837:18;;:::i;:::-;10781:84;10602:269;10551:320;;;:::o;10877:180::-;10925:77;10922:1;10915:88;11022:4;11019:1;11012:15;11046:4;11043:1;11036:15;11063:180;11111:77;11108:1;11101:88;11208:4;11205:1;11198:15;11232:4;11229:1;11222:15;11372:117;11481:1;11478;11471:12;11495:102;11536:6;11587:2;11583:7;11578:2;11571:5;11567:14;11563:28;11553:38;;11495:102;;;:::o;11603:222::-;11743:34;11739:1;11731:6;11727:14;11720:58;11812:5;11807:2;11799:6;11795:15;11788:30;11603:222;:::o;11831:225::-;11971:34;11967:1;11959:6;11955:14;11948:58;12040:8;12035:2;12027:6;12023:15;12016:33;11831:225;:::o;12062:221::-;12202:34;12198:1;12190:6;12186:14;12179:58;12271:4;12266:2;12258:6;12254:15;12247:29;12062:221;:::o;12289:182::-;12429:34;12425:1;12417:6;12413:14;12406:58;12289:182;:::o;12477:224::-;12617:34;12613:1;12605:6;12601:14;12594:58;12686:7;12681:2;12673:6;12669:15;12662:32;12477:224;:::o;12707:223::-;12847:34;12843:1;12835:6;12831:14;12824:58;12916:6;12911:2;12903:6;12899:15;12892:31;12707:223;:::o;12936:122::-;13009:24;13027:5;13009:24;:::i;:::-;13002:5;12999:35;12989:63;;13048:1;13045;13038:12;12989:63;12936:122;:::o;13064:::-;13137:24;13155:5;13137:24;:::i;:::-;13130:5;13127:35;13117:63;;13176:1;13173;13166:12;13117:63;13064:122;:::o
Swarm Source
ipfs://b327039b46be81200a8f494fbbf90a9a34fae817c1064123a7a92ce033c6a73e
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.