Feature Tip: Add private address tag to any address under My Name Tag !
SportX token contract has rebranded to SX Network and migrated to a new address.
ERC-20
Overview
Max Total Supply
1,000,000,000 SX
Holders
2,435 ( -2.464%)
Market
Price
$0.10 @ 0.000038 ETH (+3.27%)
Onchain Market Cap
$97,103,000.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
20 SXValue
$1.94 ( ~0.000758969058857055 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SportX
Compiler Version
v0.7.5+commit.eb77ed08
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.7.5; pragma abicoder v2; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract SportX is ERC20 { // --- EIP712 niceties --- string public constant version = "1"; bytes32 public EIP712_DOMAIN_SEPARATOR; bytes32 public constant PERMIT_TYPEHASH = keccak256( "Permit(address holder,address spender,uint256 nonce,uint256 expiry,uint256 amount)" ); bytes2 private constant EIP191_HEADER = 0x1901; uint256 private constant INITIAL_SUPPLY = 10**9 * 10**18; mapping(address => uint256) public nonces; // bytes32 public constant PERMIT_TYPEHASH = 0xea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb; constructor(uint256 _chainId) ERC20("SportX", "SX") { EIP712_DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ), keccak256(bytes("SportX")), keccak256(bytes(version)), _chainId, address(this) ) ); _mint(msg.sender, INITIAL_SUPPLY); } // --- Approve by signature --- function permit( address holder, address spender, uint256 nonce, uint256 expiry, uint256 amount, uint8 v, bytes32 r, bytes32 s ) external { bytes32 digest = keccak256( abi.encodePacked( EIP191_HEADER, EIP712_DOMAIN_SEPARATOR, keccak256( abi.encode( PERMIT_TYPEHASH, holder, spender, nonce, expiry, amount ) ) ) ); require(holder != address(0), "SportX/invalid-address-0"); require(holder == ecrecover(digest, v, r, s), "SportX/invalid-permit"); require(expiry == 0 || block.timestamp <= expiry, "SportX/permit-expired"); require(nonce == nonces[holder]++, "SportX/invalid-nonce"); _approve(holder, spender, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.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 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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 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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; 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-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @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) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); 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 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) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "../../GSN/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * 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_) { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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 { _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 { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `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); /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @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) internal 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 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, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "evmVersion": "istanbul", "libraries": {}, "metadata": { "bytecodeHash": "ipfs" }, "optimizer": { "enabled": true, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_chainId","type":"uint256"}],"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":"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":"EIP712_DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","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":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200125a3803806200125a8339810160408190526200003491620003a7565b60408051808201825260068152650a6e0dee4e8b60d31b6020808301918252835180850190945260028452610a6b60f31b9084015281519192916200007c91600391620002fb565b50805162000092906004906020840190620002fb565b50506005805460ff191660121790555060408051808201825260068152650a6e0dee4e8b60d31b6020918201528151808301835260018152603160f81b9082015290516200014b917f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f917f307d38318f4227987d4147e31cd68113e73166eea558882b266e1d95da210912917fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6918691309101620003c0565b60408051601f1981840301815291905280516020909101206006556200017e336b033b2e3c9fd0803ce800000062000185565b50620003ec565b6001600160a01b038216620001e1576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001ef6000838362000294565b6200020b816002546200029960201b620006f21790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200023e918390620006f262000299821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620002f4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200033357600085556200037e565b82601f106200034e57805160ff19168380011785556200037e565b828001600101855582156200037e579182015b828111156200037e57825182559160200191906001019062000361565b506200038c92915062000390565b5090565b5b808211156200038c576000815560010162000391565b600060208284031215620003b9578081fd5b5051919050565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b610e5e80620003fc6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a9059cbb11610066578063a9059cbb146101e4578063dab400f3146101f7578063dbaef5e0146101ff578063dd62ed3e1461021457610100565b806370a08231146101a35780637ecebe00146101b657806395d89b41146101c9578063a457c2d7146101d157610100565b806330adf81f116100d357806330adf81f1461016b578063313ce56714610173578063395093511461018857806354fd4d501461019b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014357806323b872dd14610158575b600080fd5b61010d610227565b60405161011a9190610c03565b60405180910390f35b610136610131366004610b52565b6102bd565b60405161011a9190610b9d565b61014b6102da565b60405161011a9190610ba8565b610136610166366004610a9d565b6102e0565b61014b610367565b61017b61038b565b60405161011a9190610d19565b610136610196366004610b52565b610394565b61010d6103e2565b61014b6101b1366004610a51565b6103ff565b61014b6101c4366004610a51565b61041e565b61010d610430565b6101366101df366004610b52565b610491565b6101366101f2366004610b52565b6104f9565b61014b61050d565b61021261020d366004610ad8565b610513565b005b61014b610222366004610a6b565b6106c7565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156102b35780601f10610288576101008083540402835291602001916102b3565b820191906000526020600020905b81548152906001019060200180831161029657829003601f168201915b5050505050905090565b60006102d16102ca610753565b8484610757565b50600192915050565b60025490565b60006102ed848484610843565b61035d846102f9610753565b61035885604051806060016040528060288152602001610d93602891396001600160a01b038a16600090815260016020526040812090610337610753565b6001600160a01b03168152602081019190915260400160002054919061099e565b610757565b5060019392505050565b7f3cc8b7c780987c4b5a6eaea1f7f4ab862a6b1e040ae0f37e556d8a79fce08b1381565b60055460ff1690565b60006102d16103a1610753565b8461035885600160006103b2610753565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906106f2565b604051806040016040528060018152602001603160f81b81525081565b6001600160a01b0381166000908152602081905260409020545b919050565b60076020526000908152604090205481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156102b35780601f10610288576101008083540402835291602001916102b3565b60006102d161049e610753565b8461035885604051806060016040528060258152602001610e0460259139600160006104c8610753565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061099e565b60006102d1610506610753565b8484610843565b60065481565b600061190160f01b6006547f3cc8b7c780987c4b5a6eaea1f7f4ab862a6b1e040ae0f37e556d8a79fce08b138b8b8b8b8b60405160200161055996959493929190610bb1565b6040516020818303038152906040528051906020012060405160200161058193929190610b7b565b60408051601f19818403018152919052805160209091012090506001600160a01b0389166105ca5760405162461bcd60e51b81526004016105c190610c84565b60405180910390fd5b600181858585604051600081526020016040526040516105ed9493929190610be5565b6020604051602081039080840390855afa15801561060f573d6000803e3d6000fd5b505050602060405103516001600160a01b0316896001600160a01b0316146106495760405162461bcd60e51b81526004016105c190610cea565b8515806106565750854211155b6106725760405162461bcd60e51b81526004016105c190610cbb565b6001600160a01b038916600090815260076020526040902080546001810190915587146106b15760405162461bcd60e51b81526004016105c190610c56565b6106bc898987610757565b505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60008282018381101561074c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b03831661079c5760405162461bcd60e51b8152600401808060200182810382526024815260200180610de06024913960400191505060405180910390fd5b6001600160a01b0382166107e15760405162461bcd60e51b8152600401808060200182810382526022815260200180610d4b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166108885760405162461bcd60e51b8152600401808060200182810382526025815260200180610dbb6025913960400191505060405180910390fd5b6001600160a01b0382166108cd5760405162461bcd60e51b8152600401808060200182810382526023815260200180610d286023913960400191505060405180910390fd5b6108d8838383610a35565b61091581604051806060016040528060268152602001610d6d602691396001600160a01b038616600090815260208190526040902054919061099e565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461094490826106f2565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610a2d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156109f25781810151838201526020016109da565b50505050905090810190601f168015610a1f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b505050565b80356001600160a01b038116811461041957600080fd5b600060208284031215610a62578081fd5b61074c82610a3a565b60008060408385031215610a7d578081fd5b610a8683610a3a565b9150610a9460208401610a3a565b90509250929050565b600080600060608486031215610ab1578081fd5b610aba84610a3a565b9250610ac860208501610a3a565b9150604084013590509250925092565b600080600080600080600080610100898b031215610af4578384fd5b610afd89610a3a565b9750610b0b60208a01610a3a565b965060408901359550606089013594506080890135935060a089013560ff81168114610b35578384fd5b979a969950949793969295929450505060c08201359160e0013590565b60008060408385031215610b64578182fd5b610b6d83610a3a565b946020939093013593505050565b6001600160f01b03199390931683526002830191909152602282015260420190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015610c2f57858101830151858201604001528201610c13565b81811115610c405783604083870101525b50601f01601f1916929092016040019392505050565b60208082526014908201527353706f7274582f696e76616c69642d6e6f6e636560601b604082015260600190565b60208082526018908201527f53706f7274582f696e76616c69642d616464726573732d300000000000000000604082015260600190565b60208082526015908201527414dc1bdc9d160bdc195c9b5a5d0b595e1c1a5c9959605a1b604082015260600190565b60208082526015908201527414dc1bdc9d160bda5b9d985b1a590b5c195c9b5a5d605a1b604082015260600190565b60ff9190911681526020019056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122009030b1b6edf5f2d376174e986c6febc04c6f44e49f0b682ef8d990a98bea68d64736f6c634300070500330000000000000000000000000000000000000000000000000000000000000001
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a9059cbb11610066578063a9059cbb146101e4578063dab400f3146101f7578063dbaef5e0146101ff578063dd62ed3e1461021457610100565b806370a08231146101a35780637ecebe00146101b657806395d89b41146101c9578063a457c2d7146101d157610100565b806330adf81f116100d357806330adf81f1461016b578063313ce56714610173578063395093511461018857806354fd4d501461019b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014357806323b872dd14610158575b600080fd5b61010d610227565b60405161011a9190610c03565b60405180910390f35b610136610131366004610b52565b6102bd565b60405161011a9190610b9d565b61014b6102da565b60405161011a9190610ba8565b610136610166366004610a9d565b6102e0565b61014b610367565b61017b61038b565b60405161011a9190610d19565b610136610196366004610b52565b610394565b61010d6103e2565b61014b6101b1366004610a51565b6103ff565b61014b6101c4366004610a51565b61041e565b61010d610430565b6101366101df366004610b52565b610491565b6101366101f2366004610b52565b6104f9565b61014b61050d565b61021261020d366004610ad8565b610513565b005b61014b610222366004610a6b565b6106c7565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156102b35780601f10610288576101008083540402835291602001916102b3565b820191906000526020600020905b81548152906001019060200180831161029657829003601f168201915b5050505050905090565b60006102d16102ca610753565b8484610757565b50600192915050565b60025490565b60006102ed848484610843565b61035d846102f9610753565b61035885604051806060016040528060288152602001610d93602891396001600160a01b038a16600090815260016020526040812090610337610753565b6001600160a01b03168152602081019190915260400160002054919061099e565b610757565b5060019392505050565b7f3cc8b7c780987c4b5a6eaea1f7f4ab862a6b1e040ae0f37e556d8a79fce08b1381565b60055460ff1690565b60006102d16103a1610753565b8461035885600160006103b2610753565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906106f2565b604051806040016040528060018152602001603160f81b81525081565b6001600160a01b0381166000908152602081905260409020545b919050565b60076020526000908152604090205481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156102b35780601f10610288576101008083540402835291602001916102b3565b60006102d161049e610753565b8461035885604051806060016040528060258152602001610e0460259139600160006104c8610753565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061099e565b60006102d1610506610753565b8484610843565b60065481565b600061190160f01b6006547f3cc8b7c780987c4b5a6eaea1f7f4ab862a6b1e040ae0f37e556d8a79fce08b138b8b8b8b8b60405160200161055996959493929190610bb1565b6040516020818303038152906040528051906020012060405160200161058193929190610b7b565b60408051601f19818403018152919052805160209091012090506001600160a01b0389166105ca5760405162461bcd60e51b81526004016105c190610c84565b60405180910390fd5b600181858585604051600081526020016040526040516105ed9493929190610be5565b6020604051602081039080840390855afa15801561060f573d6000803e3d6000fd5b505050602060405103516001600160a01b0316896001600160a01b0316146106495760405162461bcd60e51b81526004016105c190610cea565b8515806106565750854211155b6106725760405162461bcd60e51b81526004016105c190610cbb565b6001600160a01b038916600090815260076020526040902080546001810190915587146106b15760405162461bcd60e51b81526004016105c190610c56565b6106bc898987610757565b505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60008282018381101561074c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b03831661079c5760405162461bcd60e51b8152600401808060200182810382526024815260200180610de06024913960400191505060405180910390fd5b6001600160a01b0382166107e15760405162461bcd60e51b8152600401808060200182810382526022815260200180610d4b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166108885760405162461bcd60e51b8152600401808060200182810382526025815260200180610dbb6025913960400191505060405180910390fd5b6001600160a01b0382166108cd5760405162461bcd60e51b8152600401808060200182810382526023815260200180610d286023913960400191505060405180910390fd5b6108d8838383610a35565b61091581604051806060016040528060268152602001610d6d602691396001600160a01b038616600090815260208190526040902054919061099e565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461094490826106f2565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610a2d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156109f25781810151838201526020016109da565b50505050905090810190601f168015610a1f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b505050565b80356001600160a01b038116811461041957600080fd5b600060208284031215610a62578081fd5b61074c82610a3a565b60008060408385031215610a7d578081fd5b610a8683610a3a565b9150610a9460208401610a3a565b90509250929050565b600080600060608486031215610ab1578081fd5b610aba84610a3a565b9250610ac860208501610a3a565b9150604084013590509250925092565b600080600080600080600080610100898b031215610af4578384fd5b610afd89610a3a565b9750610b0b60208a01610a3a565b965060408901359550606089013594506080890135935060a089013560ff81168114610b35578384fd5b979a969950949793969295929450505060c08201359160e0013590565b60008060408385031215610b64578182fd5b610b6d83610a3a565b946020939093013593505050565b6001600160f01b03199390931683526002830191909152602282015260420190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015610c2f57858101830151858201604001528201610c13565b81811115610c405783604083870101525b50601f01601f1916929092016040019392505050565b60208082526014908201527353706f7274582f696e76616c69642d6e6f6e636560601b604082015260600190565b60208082526018908201527f53706f7274582f696e76616c69642d616464726573732d300000000000000000604082015260600190565b60208082526015908201527414dc1bdc9d160bdc195c9b5a5d0b595e1c1a5c9959605a1b604082015260600190565b60208082526015908201527414dc1bdc9d160bda5b9d985b1a590b5c195c9b5a5d605a1b604082015260600190565b60ff9190911681526020019056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122009030b1b6edf5f2d376174e986c6febc04c6f44e49f0b682ef8d990a98bea68d64736f6c63430007050033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000001
-----Decoded View---------------
Arg [0] : _chainId (uint256): 1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Deployed Bytecode Sourcemap
138:2225:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2216:81:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4252:166;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3259:98::-;;;:::i;:::-;;;;;;;:::i;4878:317::-;;;;;;:::i;:::-;;:::i;286:167:0:-;;;:::i;3118:81:3:-;;;:::i;:::-;;;;;;;:::i;5590:215::-;;;;;;:::i;:::-;;:::i;200:36:0:-;;;:::i;3415:117:3:-;;;;;;:::i;:::-;;:::i;574:41:0:-;;;;;;:::i;:::-;;:::i;2410:85:3:-;;;:::i;6292:266::-;;;;;;:::i;:::-;;:::i;3735:172::-;;;;;;:::i;:::-;;:::i;242:38:0:-;;;:::i;1271:1090::-;;;;;;:::i;:::-;;:::i;:::-;;3965:149:3;;;;;;:::i;:::-;;:::i;2216:81::-;2285:5;2278:12;;;;;;;;-1:-1:-1;;2278:12:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2253:13;;2278:12;;2285:5;;2278:12;;2285:5;2278:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2216:81;:::o;4252:166::-;4335:4;4351:39;4360:12;:10;:12::i;:::-;4374:7;4383:6;4351:8;:39::i;:::-;-1:-1:-1;4407:4:3;4252:166;;;;:::o;3259:98::-;3338:12;;3259:98;:::o;4878:317::-;4984:4;5000:36;5010:6;5018:9;5029:6;5000:9;:36::i;:::-;5046:121;5055:6;5063:12;:10;:12::i;:::-;5077:89;5115:6;5077:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5077:19:3;;;;;;:11;:19;;;;;;5097:12;:10;:12::i;:::-;-1:-1:-1;;;;;5077:33:3;;;;;;;;;;;;-1:-1:-1;5077:33:3;;;:89;:37;:89::i;:::-;5046:8;:121::i;:::-;-1:-1:-1;5184:4:3;4878:317;;;;;:::o;286:167:0:-;336:117;286:167;:::o;3118:81:3:-;3183:9;;;;3118:81;:::o;5590:215::-;5678:4;5694:83;5703:12;:10;:12::i;:::-;5717:7;5726:50;5765:10;5726:11;:25;5738:12;:10;:12::i;:::-;-1:-1:-1;;;;;5726:25:3;;;;;;;;;;;;;;;;;-1:-1:-1;5726:25:3;;;:34;;;;;;;;;;;:38;:50::i;200:36:0:-;;;;;;;;;;;;;;-1:-1:-1;;;200:36:0;;;;:::o;3415:117:3:-;-1:-1:-1;;;;;3507:18:3;;3481:7;3507:18;;;;;;;;;;;3415:117;;;;:::o;574:41:0:-;;;;;;;;;;;;;:::o;2410:85:3:-;2481:7;2474:14;;;;;;;;-1:-1:-1;;2474:14:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2449:13;;2474:14;;2481:7;;2474:14;;2481:7;2474:14;;;;;;;;;;;;;;;;;;;;;;;;6292:266;6385:4;6401:129;6410:12;:10;:12::i;:::-;6424:7;6433:96;6472:15;6433:96;;;;;;;;;;;;;;;;;:11;:25;6445:12;:10;:12::i;:::-;-1:-1:-1;;;;;6433:25:3;;;;;;;;;;;;;;;;;-1:-1:-1;6433:25:3;;;:34;;;;;;;;;;;:96;:38;:96::i;3735:172::-;3821:4;3837:42;3847:12;:10;:12::i;:::-;3861:9;3872:6;3837:9;:42::i;242:38:0:-;;;;:::o;1271:1090::-;1487:14;499:6;1581:13;;1616:23;;336:117;1781:6;1817:7;1854:5;1889:6;1925;1696:261;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1661:318;;;;;;1543:454;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1543:454:0;;;;;;;;;1516:495;;1543:454;1516:495;;;;;-1:-1:-1;;;;;;2030:20:0;;2022:57;;;;-1:-1:-1;;;2022:57:0;;;;;;;:::i;:::-;;;;;;;;;2107:26;2117:6;2125:1;2128;2131;2107:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2097:36:0;:6;-1:-1:-1;;;;;2097:36:0;;2089:70;;;;-1:-1:-1;;;2089:70:0;;;;;;;:::i;:::-;2177:11;;;:40;;;2211:6;2192:15;:25;;2177:40;2169:74;;;;-1:-1:-1;;;2169:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2270:14:0;;;;;;:6;:14;;;;;:16;;;;;;;;2261:25;;2253:58;;;;-1:-1:-1;;;2253:58:0;;;;;;;:::i;:::-;2321:33;2330:6;2338:7;2347:6;2321:8;:33::i;:::-;1271:1090;;;;;;;;;:::o;3965:149:3:-;-1:-1:-1;;;;;4080:18:3;;;4054:7;4080:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3965:149::o;874:176:2:-;932:7;963:5;;;986:6;;;;978:46;;;;;-1:-1:-1;;;978:46:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1042:1;874:176;-1:-1:-1;;;874:176:2:o;590:104:1:-;677:10;590:104;:::o;9354:340:3:-;-1:-1:-1;;;;;9455:19:3;;9447:68;;;;-1:-1:-1;;;9447:68:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9533:21:3;;9525:68;;;;-1:-1:-1;;;9525:68:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9604:18:3;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9655:32;;;;;;;;;;;;;;;;;9354:340;;;:::o;7032:530::-;-1:-1:-1;;;;;7137:20:3;;7129:70;;;;-1:-1:-1;;;7129:70:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7217:23:3;;7209:71;;;;-1:-1:-1;;;7209:71:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7291:47;7312:6;7320:9;7331:6;7291:20;:47::i;:::-;7369:71;7391:6;7369:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7369:17:3;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;7349:17:3;;;:9;:17;;;;;;;;;;;:91;;;;7473:20;;;;;;;:32;;7498:6;7473:24;:32::i;:::-;-1:-1:-1;;;;;7450:20:3;;;:9;:20;;;;;;;;;;;;:55;;;;7520:35;;;;;;;7450:20;;7520:35;;;;;;;;;;;;;7032:530;;;:::o;1746:187:2:-;1832:7;1867:12;1859:6;;;;1851:29;;;;-1:-1:-1;;;1851:29:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1902:5:2;;;1746:187::o;10692:92:3:-;;;;:::o;14:175:6:-;84:20;;-1:-1:-1;;;;;133:31:6;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:786::-;;;;;;;;;1252:3;1240:9;1231:7;1227:23;1223:33;1220:2;;;1274:6;1266;1259:22;1220:2;1302:31;1323:9;1302:31;:::i;:::-;1292:41;;1352:40;1388:2;1377:9;1373:18;1352:40;:::i;:::-;1342:50;;1439:2;1428:9;1424:18;1411:32;1401:42;;1490:2;1479:9;1475:18;1462:32;1452:42;;1541:3;1530:9;1526:19;1513:33;1503:43;;1596:3;1585:9;1581:19;1568:33;1641:4;1634:5;1630:16;1623:5;1620:27;1610:2;;1666:6;1658;1651:22;1610:2;1210:599;;;;-1:-1:-1;1210:599:6;;;;;;1694:5;;-1:-1:-1;;;1746:3:6;1731:19;;1718:33;;1798:3;1783:19;1770:33;;1210:599::o;1814:266::-;;;1943:2;1931:9;1922:7;1918:23;1914:32;1911:2;;;1964:6;1956;1949:22;1911:2;1992:31;2013:9;1992:31;:::i;:::-;1982:41;2070:2;2055:18;;;;2042:32;;-1:-1:-1;;;1901:179:6:o;2085:331::-;-1:-1:-1;;;;;;2280:28:6;;;;2268:41;;2334:1;2325:11;;2318:27;;;;2370:2;2361:12;;2354:28;2407:2;2398:12;;2258:158::o;2421:187::-;2586:14;;2579:22;2561:41;;2549:2;2534:18;;2516:92::o;2613:177::-;2759:25;;;2747:2;2732:18;;2714:76::o;2795:591::-;3082:25;;;-1:-1:-1;;;;;3181:15:6;;;3176:2;3161:18;;3154:43;3233:15;;;;3228:2;3213:18;;3206:43;3280:2;3265:18;;3258:34;3323:3;3308:19;;3301:35;;;;3134:3;3352:19;;3345:35;3069:3;3054:19;;3036:350::o;3391:398::-;3618:25;;;3691:4;3679:17;;;;3674:2;3659:18;;3652:45;3728:2;3713:18;;3706:34;3771:2;3756:18;;3749:34;3605:3;3590:19;;3572:217::o;3794:603::-;;3935:2;3964;3953:9;3946:21;3996:6;3990:13;4039:6;4034:2;4023:9;4019:18;4012:34;4064:4;4077:140;4091:6;4088:1;4085:13;4077:140;;;4186:14;;;4182:23;;4176:30;4152:17;;;4171:2;4148:26;4141:66;4106:10;;4077:140;;;4235:6;4232:1;4229:13;4226:2;;;4305:4;4300:2;4291:6;4280:9;4276:22;4272:31;4265:45;4226:2;-1:-1:-1;4381:2:6;4360:15;-1:-1:-1;;4356:29:6;4341:45;;;;4388:2;4337:54;;3915:482;-1:-1:-1;;;3915:482:6:o;4402:344::-;4604:2;4586:21;;;4643:2;4623:18;;;4616:30;-1:-1:-1;;;4677:2:6;4662:18;;4655:50;4737:2;4722:18;;4576:170::o;4751:348::-;4953:2;4935:21;;;4992:2;4972:18;;;4965:30;5031:26;5026:2;5011:18;;5004:54;5090:2;5075:18;;4925:174::o;5104:345::-;5306:2;5288:21;;;5345:2;5325:18;;;5318:30;-1:-1:-1;;;5379:2:6;5364:18;;5357:51;5440:2;5425:18;;5278:171::o;5454:345::-;5656:2;5638:21;;;5695:2;5675:18;;;5668:30;-1:-1:-1;;;5729:2:6;5714:18;;5707:51;5790:2;5775:18;;5628:171::o;5986:184::-;6158:4;6146:17;;;;6128:36;;6116:2;6101:18;;6083:87::o
Swarm Source
ipfs://09030b1b6edf5f2d376174e986c6febc04c6f44e49f0b682ef8d990a98bea68d
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.