ERC-20
Overview
Max Total Supply
40,100,019,527,237.000000000271609415 GAS
Holders
244
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
484,792,432 GASValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GasDAO
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ModifiedERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; contract GasDAO is ERC20, EIP712 { uint256 public constant MAX_SUPPLY = 1e14 ether; // for DAO uint256 public constant AMOUNT_DAO = MAX_SUPPLY / 100 * 15; address public constant ADDR_DAO = 0x05c1b6e50dFa64D96c4b2f3B881ef807a2dCC286; // for team uint256 public constant AMOUNT_TEAM = MAX_SUPPLY / 100 * 5; address public constant ADDR_TEAM = 0x27A8894577B20f492f078Cdc548949548ab50A43; // for liquidity providers uint256 public constant AMOUNT_LP = MAX_SUPPLY / 100 * 20; address public constant ADDR_LP = 0xF5b0B8380D6F7C61Ae01F59CB6b4bD082F3f7445; // for airdrop uint256 public constant AMOUNT_AIRDROP = MAX_SUPPLY - (AMOUNT_DAO + AMOUNT_TEAM + AMOUNT_LP); constructor() ERC20("GasDAO", "GAS") EIP712("GasDAO", "1") { _mint(ADDR_DAO, AMOUNT_DAO); _mint(ADDR_TEAM, AMOUNT_TEAM); _mint(ADDR_LP, AMOUNT_LP); _totalSupply = AMOUNT_DAO + AMOUNT_TEAM + AMOUNT_LP; cSigner = 0x9a5da01DcF5Ae9fd5B1CB39e8dAf6512e13EdE9a; } bytes32 constant public MINT_CALL_HASH_TYPE = keccak256("mint(address receiver,uint256 amount)"); address public cSigner; function claim(uint256 amountV, bytes32 r, bytes32 s) external { uint256 amount = uint248(amountV); uint8 v = uint8(amountV >> 248); uint256 total = _totalSupply + amount; require(total <= MAX_SUPPLY, "GasDAO: Exceed max supply"); require(minted(msg.sender) == 0, "GasDAO: Claimed"); bytes32 digest = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", ECDSA.toTypedDataHash(_domainSeparatorV4(), keccak256(abi.encode(MINT_CALL_HASH_TYPE, msg.sender, amount)) ))); require(ecrecover(digest, v, r, s) == cSigner, "GasDAO: Invalid signer"); _totalSupply = total; _mint(msg.sender, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC20Metadata.sol"; import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { struct MintBalance { uint8 minted; uint248 balance; } mapping(address => MintBalance) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 internal _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account].balance; } function minted(address account) public view returns (uint256) { return _balances[account].minted; } /** * @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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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); uint256 senderBalance = _balances[sender].balance; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender].balance = uint248(senderBalance - amount); } _balances[recipient].balance += uint248(amount); emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { // require(account != address(0), "ERC20: mint to the zero address"); // _beforeTokenTransfer(address(0), account, amount); // _totalSupply += amount; uint256 b = _balances[account].balance + amount; _balances[account].balance = uint248(b); _balances[account].minted = 1; emit Transfer(address(0), account, amount); // _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account].balance; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account].balance = uint248(accountBalance - amount); } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (interfaces/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../token/ERC20/extensions/IERC20Metadata.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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 `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 // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"ADDR_DAO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDR_LP","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDR_TEAM","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_AIRDROP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_DAO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_LP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_TEAM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_CALL_HASH_TYPE","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":"cSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountV","type":"uint256"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]
Contract Creation Code
6101406040523480156200001257600080fd5b506040518060400160405280600681526020017f47617344414f00000000000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f47617344414f00000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4741530000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000103929190620005f4565b5080600490805190602001906200011c929190620005f4565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a0818152505062000188818484620003bb60201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508061012081815250505050505050620002217305c1b6e50dfa64d96c4b2f3b881ef807a2dcc286600f60646d04ee2d6d415b85acef81000000006200020991906200070c565b62000215919062000744565b620003f760201b60201c565b620002717327a8894577b20f492f078cdc548949548ab50a43600560646d04ee2d6d415b85acef81000000006200025991906200070c565b62000265919062000744565b620003f760201b60201c565b620002c173f5b0b8380d6f7c61ae01f59cb6b4bd082f3f7445601460646d04ee2d6d415b85acef8100000000620002a991906200070c565b620002b5919062000744565b620003f760201b60201c565b601460646d04ee2d6d415b85acef8100000000620002e091906200070c565b620002ec919062000744565b600560646d04ee2d6d415b85acef81000000006200030b91906200070c565b62000317919062000744565b600f60646d04ee2d6d415b85acef81000000006200033691906200070c565b62000342919062000744565b6200034e9190620007a5565b6200035a9190620007a5565b600281905550739a5da01dcf5ae9fd5b1cb39e8daf6512e13ede9a600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000952565b60008383834630604051602001620003d895949392919062000873565b6040516020818303038152906040528051906020012090509392505050565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620004949190620007a5565b9050806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555060016000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051620005e79190620008d0565b60405180910390a3505050565b82805462000602906200091c565b90600052602060002090601f01602090048101928262000626576000855562000672565b82601f106200064157805160ff191683800117855562000672565b8280016001018555821562000672579182015b828111156200067157825182559160200191906001019062000654565b5b50905062000681919062000685565b5090565b5b80821115620006a057600081600090555060010162000686565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200071982620006a4565b91506200072683620006a4565b925082620007395762000738620006ae565b5b828204905092915050565b60006200075182620006a4565b91506200075e83620006a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200079a5762000799620006dd565b5b828202905092915050565b6000620007b282620006a4565b9150620007bf83620006a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007f757620007f6620006dd565b5b828201905092915050565b6000819050919050565b620008178162000802565b82525050565b6200082881620006a4565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200085b826200082e565b9050919050565b6200086d816200084e565b82525050565b600060a0820190506200088a60008301886200080c565b6200089960208301876200080c565b620008a860408301866200080c565b620008b760608301856200081d565b620008c6608083018462000862565b9695505050505050565b6000602082019050620008e760008301846200081d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200093557607f821691505b602082108114156200094c576200094b620008ed565b5b50919050565b60805160a05160c05160e05161010051610120516124ac620009a2600039600061144c0152600061148e0152600061146d015260006113a2015260006113f80152600061142101526124ac6000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb146103bc578063abf2ebd8146103ec578063b8fcfa5e14610408578063c688387f14610426578063da394aec14610444578063dd62ed3e146104625761014d565b806370a08231146102e4578063720248de1461031457806380ef01601461033257806386fdbdc11461035057806395d89b411461036e578063a457c2d71461038c5761014d565b806323b872dd1161011557806323b872dd1461020c578063313ce5671461023c57806332cb6b0c1461025a578063395093511461027857806346de2673146102a85780635760cc5d146102c65761014d565b80630389223d1461015257806306fdde0314610170578063095ea7b31461018e57806318160ddd146101be5780631e7269c5146101dc575b600080fd5b61015a610492565b6040516101679190611741565b60405180910390f35b6101786104bc565b60405161018591906117f5565b60405180910390f35b6101a860048036038101906101a391906118a6565b61054e565b6040516101b59190611901565b60405180910390f35b6101c661056c565b6040516101d39190611741565b60405180910390f35b6101f660048036038101906101f1919061191c565b610576565b6040516102039190611741565b60405180910390f35b61022660048036038101906102219190611949565b6105d1565b6040516102339190611901565b60405180910390f35b6102446106c9565b60405161025191906119b8565b60405180910390f35b6102626106d2565b60405161026f9190611741565b60405180910390f35b610292600480360381019061028d91906118a6565b6106e4565b60405161029f9190611901565b60405180910390f35b6102b0610790565b6040516102bd91906119e2565b60405180910390f35b6102ce6107a8565b6040516102db91906119e2565b60405180910390f35b6102fe60048036038101906102f9919061191c565b6107ce565b60405161030b9190611741565b60405180910390f35b61031c610865565b6040516103299190611741565b60405180910390f35b61033a61088f565b6040516103479190611741565b60405180910390f35b610358610934565b6040516103659190611741565b60405180910390f35b61037661095e565b60405161038391906117f5565b60405180910390f35b6103a660048036038101906103a191906118a6565b6109f0565b6040516103b39190611901565b60405180910390f35b6103d660048036038101906103d191906118a6565b610adb565b6040516103e39190611901565b60405180910390f35b61040660048036038101906104019190611a33565b610af9565b005b610410610d53565b60405161041d91906119e2565b60405180910390f35b61042e610d6b565b60405161043b9190611a95565b60405180910390f35b61044c610d8f565b60405161045991906119e2565b60405180910390f35b61047c60048036038101906104779190611ab0565b610da7565b6040516104899190611741565b60405180910390f35b600560646d04ee2d6d415b85acef81000000006104af9190611b4e565b6104b99190611b7f565b81565b6060600380546104cb90611c08565b80601f01602080910402602001604051908101604052809291908181526020018280546104f790611c08565b80156105445780601f1061051957610100808354040283529160200191610544565b820191906000526020600020905b81548152906001019060200180831161052757829003601f168201915b5050505050905090565b600061056261055b610e2e565b8484610e36565b6001905092915050565b6000600254905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff1660ff169050919050565b60006105de848484611001565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610629610e2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a090611cac565b60405180910390fd5b6106bd856106b5610e2e565b858403610e36565b60019150509392505050565b60006012905090565b6d04ee2d6d415b85acef810000000081565b60006107866106f1610e2e565b8484600160006106ff610e2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107819190611ccc565b610e36565b6001905092915050565b73f5b0b8380d6f7c61ae01f59cb6b4bd082f3f744581565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050919050565b600f60646d04ee2d6d415b85acef81000000006108829190611b4e565b61088c9190611b7f565b81565b601460646d04ee2d6d415b85acef81000000006108ac9190611b4e565b6108b69190611b7f565b600560646d04ee2d6d415b85acef81000000006108d39190611b4e565b6108dd9190611b7f565b600f60646d04ee2d6d415b85acef81000000006108fa9190611b4e565b6109049190611b7f565b61090e9190611ccc565b6109189190611ccc565b6d04ee2d6d415b85acef81000000006109319190611d22565b81565b601460646d04ee2d6d415b85acef81000000006109519190611b4e565b61095b9190611b7f565b81565b60606004805461096d90611c08565b80601f016020809104026020016040519081016040528092919081815260200182805461099990611c08565b80156109e65780601f106109bb576101008083540402835291602001916109e6565b820191906000526020600020905b8154815290600101906020018083116109c957829003601f168201915b5050505050905090565b600080600160006109ff610e2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390611dc8565b60405180910390fd5b610ad0610ac7610e2e565b85858403610e36565b600191505092915050565b6000610aef610ae8610e2e565b8484611001565b6001905092915050565b6000837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050600060f885901c9050600082600254610b389190611ccc565b90506d04ee2d6d415b85acef8100000000811115610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8290611e34565b60405180910390fd5b6000610b9633610576565b14610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90611ea0565b60405180910390fd5b6000610c33610be361139e565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea3387604051602001610c1893929190611ec0565b604051602081830303815290604052805190602001206114b8565b604051602001610c439190611f6f565b604051602081830303815290604052805190602001209050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660018285898960405160008152602001604052604051610cb79493929190611f95565b6020604051602081039080840390855afa158015610cd9573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff1614610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090612026565b60405180910390fd5b81600281905550610d4a33856114eb565b50505050505050565b7327a8894577b20f492f078cdc548949548ab50a4381565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea81565b7305c1b6e50dfa64d96c4b2f3b881ef807a2dcc28681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d906120b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d9061214a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ff49190611741565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611068906121dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d89061226e565b60405180910390fd5b6110ec8383836116e4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050818110156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890612300565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160018282829054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166112d4919061234b565b92506101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113859190611741565b60405180910390a36113988484846116e9565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561141a57507f000000000000000000000000000000000000000000000000000000000000000046145b15611447577f000000000000000000000000000000000000000000000000000000000000000090506114b5565b6114b27f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006116ee565b90505b90565b600082826040516020016114cd9291906123ec565b60405160208183030381529060405280519060200120905092915050565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166115869190611ccc565b9050806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555060016000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116d79190611741565b60405180910390a3505050565b505050565b505050565b60008383834630604051602001611709959493929190612423565b6040516020818303038152906040528051906020012090509392505050565b6000819050919050565b61173b81611728565b82525050565b60006020820190506117566000830184611732565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561179657808201518184015260208101905061177b565b838111156117a5576000848401525b50505050565b6000601f19601f8301169050919050565b60006117c78261175c565b6117d18185611767565b93506117e1818560208601611778565b6117ea816117ab565b840191505092915050565b6000602082019050818103600083015261180f81846117bc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118478261181c565b9050919050565b6118578161183c565b811461186257600080fd5b50565b6000813590506118748161184e565b92915050565b61188381611728565b811461188e57600080fd5b50565b6000813590506118a08161187a565b92915050565b600080604083850312156118bd576118bc611817565b5b60006118cb85828601611865565b92505060206118dc85828601611891565b9150509250929050565b60008115159050919050565b6118fb816118e6565b82525050565b600060208201905061191660008301846118f2565b92915050565b60006020828403121561193257611931611817565b5b600061194084828501611865565b91505092915050565b60008060006060848603121561196257611961611817565b5b600061197086828701611865565b935050602061198186828701611865565b925050604061199286828701611891565b9150509250925092565b600060ff82169050919050565b6119b28161199c565b82525050565b60006020820190506119cd60008301846119a9565b92915050565b6119dc8161183c565b82525050565b60006020820190506119f760008301846119d3565b92915050565b6000819050919050565b611a10816119fd565b8114611a1b57600080fd5b50565b600081359050611a2d81611a07565b92915050565b600080600060608486031215611a4c57611a4b611817565b5b6000611a5a86828701611891565b9350506020611a6b86828701611a1e565b9250506040611a7c86828701611a1e565b9150509250925092565b611a8f816119fd565b82525050565b6000602082019050611aaa6000830184611a86565b92915050565b60008060408385031215611ac757611ac6611817565b5b6000611ad585828601611865565b9250506020611ae685828601611865565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b5982611728565b9150611b6483611728565b925082611b7457611b73611af0565b5b828204905092915050565b6000611b8a82611728565b9150611b9583611728565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611bce57611bcd611b1f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c2057607f821691505b60208210811415611c3457611c33611bd9565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611c96602883611767565b9150611ca182611c3a565b604082019050919050565b60006020820190508181036000830152611cc581611c89565b9050919050565b6000611cd782611728565b9150611ce283611728565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d1757611d16611b1f565b5b828201905092915050565b6000611d2d82611728565b9150611d3883611728565b925082821015611d4b57611d4a611b1f565b5b828203905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611db2602583611767565b9150611dbd82611d56565b604082019050919050565b60006020820190508181036000830152611de181611da5565b9050919050565b7f47617344414f3a20457863656564206d617820737570706c7900000000000000600082015250565b6000611e1e601983611767565b9150611e2982611de8565b602082019050919050565b60006020820190508181036000830152611e4d81611e11565b9050919050565b7f47617344414f3a20436c61696d65640000000000000000000000000000000000600082015250565b6000611e8a600f83611767565b9150611e9582611e54565b602082019050919050565b60006020820190508181036000830152611eb981611e7d565b9050919050565b6000606082019050611ed56000830186611a86565b611ee260208301856119d3565b611eef6040830184611732565b949350505050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000611f38601c83611ef7565b9150611f4382611f02565b601c82019050919050565b6000819050919050565b611f69611f64826119fd565b611f4e565b82525050565b6000611f7a82611f2b565b9150611f868284611f58565b60208201915081905092915050565b6000608082019050611faa6000830187611a86565b611fb760208301866119a9565b611fc46040830185611a86565b611fd16060830184611a86565b95945050505050565b7f47617344414f3a20496e76616c6964207369676e657200000000000000000000600082015250565b6000612010601683611767565b915061201b82611fda565b602082019050919050565b6000602082019050818103600083015261203f81612003565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120a2602483611767565b91506120ad82612046565b604082019050919050565b600060208201905081810360008301526120d181612095565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612134602283611767565b915061213f826120d8565b604082019050919050565b6000602082019050818103600083015261216381612127565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121c6602583611767565b91506121d18261216a565b604082019050919050565b600060208201905081810360008301526121f5816121b9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612258602383611767565b9150612263826121fc565b604082019050919050565b600060208201905081810360008301526122878161224b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122ea602683611767565b91506122f58261228e565b604082019050919050565b60006020820190508181036000830152612319816122dd565b9050919050565b60007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b600061235682612320565b915061236183612320565b9250827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561239557612394611b1f565b5b828201905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b60006123d6600283611ef7565b91506123e1826123a0565b600282019050919050565b60006123f7826123c9565b91506124038285611f58565b6020820191506124138284611f58565b6020820191508190509392505050565b600060a0820190506124386000830188611a86565b6124456020830187611a86565b6124526040830186611a86565b61245f6060830185611732565b61246c60808301846119d3565b969550505050505056fea2646970667358221220f271ef45c90c1c8598c8efedc559888ea496008e06f56d090b443cccbec510c864736f6c634300080a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb146103bc578063abf2ebd8146103ec578063b8fcfa5e14610408578063c688387f14610426578063da394aec14610444578063dd62ed3e146104625761014d565b806370a08231146102e4578063720248de1461031457806380ef01601461033257806386fdbdc11461035057806395d89b411461036e578063a457c2d71461038c5761014d565b806323b872dd1161011557806323b872dd1461020c578063313ce5671461023c57806332cb6b0c1461025a578063395093511461027857806346de2673146102a85780635760cc5d146102c65761014d565b80630389223d1461015257806306fdde0314610170578063095ea7b31461018e57806318160ddd146101be5780631e7269c5146101dc575b600080fd5b61015a610492565b6040516101679190611741565b60405180910390f35b6101786104bc565b60405161018591906117f5565b60405180910390f35b6101a860048036038101906101a391906118a6565b61054e565b6040516101b59190611901565b60405180910390f35b6101c661056c565b6040516101d39190611741565b60405180910390f35b6101f660048036038101906101f1919061191c565b610576565b6040516102039190611741565b60405180910390f35b61022660048036038101906102219190611949565b6105d1565b6040516102339190611901565b60405180910390f35b6102446106c9565b60405161025191906119b8565b60405180910390f35b6102626106d2565b60405161026f9190611741565b60405180910390f35b610292600480360381019061028d91906118a6565b6106e4565b60405161029f9190611901565b60405180910390f35b6102b0610790565b6040516102bd91906119e2565b60405180910390f35b6102ce6107a8565b6040516102db91906119e2565b60405180910390f35b6102fe60048036038101906102f9919061191c565b6107ce565b60405161030b9190611741565b60405180910390f35b61031c610865565b6040516103299190611741565b60405180910390f35b61033a61088f565b6040516103479190611741565b60405180910390f35b610358610934565b6040516103659190611741565b60405180910390f35b61037661095e565b60405161038391906117f5565b60405180910390f35b6103a660048036038101906103a191906118a6565b6109f0565b6040516103b39190611901565b60405180910390f35b6103d660048036038101906103d191906118a6565b610adb565b6040516103e39190611901565b60405180910390f35b61040660048036038101906104019190611a33565b610af9565b005b610410610d53565b60405161041d91906119e2565b60405180910390f35b61042e610d6b565b60405161043b9190611a95565b60405180910390f35b61044c610d8f565b60405161045991906119e2565b60405180910390f35b61047c60048036038101906104779190611ab0565b610da7565b6040516104899190611741565b60405180910390f35b600560646d04ee2d6d415b85acef81000000006104af9190611b4e565b6104b99190611b7f565b81565b6060600380546104cb90611c08565b80601f01602080910402602001604051908101604052809291908181526020018280546104f790611c08565b80156105445780601f1061051957610100808354040283529160200191610544565b820191906000526020600020905b81548152906001019060200180831161052757829003601f168201915b5050505050905090565b600061056261055b610e2e565b8484610e36565b6001905092915050565b6000600254905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff1660ff169050919050565b60006105de848484611001565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610629610e2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a090611cac565b60405180910390fd5b6106bd856106b5610e2e565b858403610e36565b60019150509392505050565b60006012905090565b6d04ee2d6d415b85acef810000000081565b60006107866106f1610e2e565b8484600160006106ff610e2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107819190611ccc565b610e36565b6001905092915050565b73f5b0b8380d6f7c61ae01f59cb6b4bd082f3f744581565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050919050565b600f60646d04ee2d6d415b85acef81000000006108829190611b4e565b61088c9190611b7f565b81565b601460646d04ee2d6d415b85acef81000000006108ac9190611b4e565b6108b69190611b7f565b600560646d04ee2d6d415b85acef81000000006108d39190611b4e565b6108dd9190611b7f565b600f60646d04ee2d6d415b85acef81000000006108fa9190611b4e565b6109049190611b7f565b61090e9190611ccc565b6109189190611ccc565b6d04ee2d6d415b85acef81000000006109319190611d22565b81565b601460646d04ee2d6d415b85acef81000000006109519190611b4e565b61095b9190611b7f565b81565b60606004805461096d90611c08565b80601f016020809104026020016040519081016040528092919081815260200182805461099990611c08565b80156109e65780601f106109bb576101008083540402835291602001916109e6565b820191906000526020600020905b8154815290600101906020018083116109c957829003601f168201915b5050505050905090565b600080600160006109ff610e2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390611dc8565b60405180910390fd5b610ad0610ac7610e2e565b85858403610e36565b600191505092915050565b6000610aef610ae8610e2e565b8484611001565b6001905092915050565b6000837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050600060f885901c9050600082600254610b389190611ccc565b90506d04ee2d6d415b85acef8100000000811115610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8290611e34565b60405180910390fd5b6000610b9633610576565b14610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90611ea0565b60405180910390fd5b6000610c33610be361139e565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea3387604051602001610c1893929190611ec0565b604051602081830303815290604052805190602001206114b8565b604051602001610c439190611f6f565b604051602081830303815290604052805190602001209050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660018285898960405160008152602001604052604051610cb79493929190611f95565b6020604051602081039080840390855afa158015610cd9573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff1614610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090612026565b60405180910390fd5b81600281905550610d4a33856114eb565b50505050505050565b7327a8894577b20f492f078cdc548949548ab50a4381565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea81565b7305c1b6e50dfa64d96c4b2f3b881ef807a2dcc28681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d906120b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d9061214a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ff49190611741565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611068906121dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d89061226e565b60405180910390fd5b6110ec8383836116e4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050818110156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890612300565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160018282829054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166112d4919061234b565b92506101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113859190611741565b60405180910390a36113988484846116e9565b50505050565b60007f000000000000000000000000b7621435c7dce99a529132fd59f61ab9981a899c73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561141a57507f000000000000000000000000000000000000000000000000000000000000000146145b15611447577fc3ce128a970833384e655111c93981c93e36120fa43397ff17f6d33eeedc457c90506114b5565b6114b27f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fb29b0529d38dd7ea63a004ebf42629646a13c84b195f2c2fe0eaeb980c01b4767fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66116ee565b90505b90565b600082826040516020016114cd9291906123ec565b60405160208183030381529060405280519060200120905092915050565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166115869190611ccc565b9050806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555060016000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116d79190611741565b60405180910390a3505050565b505050565b505050565b60008383834630604051602001611709959493929190612423565b6040516020818303038152906040528051906020012090509392505050565b6000819050919050565b61173b81611728565b82525050565b60006020820190506117566000830184611732565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561179657808201518184015260208101905061177b565b838111156117a5576000848401525b50505050565b6000601f19601f8301169050919050565b60006117c78261175c565b6117d18185611767565b93506117e1818560208601611778565b6117ea816117ab565b840191505092915050565b6000602082019050818103600083015261180f81846117bc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118478261181c565b9050919050565b6118578161183c565b811461186257600080fd5b50565b6000813590506118748161184e565b92915050565b61188381611728565b811461188e57600080fd5b50565b6000813590506118a08161187a565b92915050565b600080604083850312156118bd576118bc611817565b5b60006118cb85828601611865565b92505060206118dc85828601611891565b9150509250929050565b60008115159050919050565b6118fb816118e6565b82525050565b600060208201905061191660008301846118f2565b92915050565b60006020828403121561193257611931611817565b5b600061194084828501611865565b91505092915050565b60008060006060848603121561196257611961611817565b5b600061197086828701611865565b935050602061198186828701611865565b925050604061199286828701611891565b9150509250925092565b600060ff82169050919050565b6119b28161199c565b82525050565b60006020820190506119cd60008301846119a9565b92915050565b6119dc8161183c565b82525050565b60006020820190506119f760008301846119d3565b92915050565b6000819050919050565b611a10816119fd565b8114611a1b57600080fd5b50565b600081359050611a2d81611a07565b92915050565b600080600060608486031215611a4c57611a4b611817565b5b6000611a5a86828701611891565b9350506020611a6b86828701611a1e565b9250506040611a7c86828701611a1e565b9150509250925092565b611a8f816119fd565b82525050565b6000602082019050611aaa6000830184611a86565b92915050565b60008060408385031215611ac757611ac6611817565b5b6000611ad585828601611865565b9250506020611ae685828601611865565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b5982611728565b9150611b6483611728565b925082611b7457611b73611af0565b5b828204905092915050565b6000611b8a82611728565b9150611b9583611728565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611bce57611bcd611b1f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c2057607f821691505b60208210811415611c3457611c33611bd9565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611c96602883611767565b9150611ca182611c3a565b604082019050919050565b60006020820190508181036000830152611cc581611c89565b9050919050565b6000611cd782611728565b9150611ce283611728565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d1757611d16611b1f565b5b828201905092915050565b6000611d2d82611728565b9150611d3883611728565b925082821015611d4b57611d4a611b1f565b5b828203905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611db2602583611767565b9150611dbd82611d56565b604082019050919050565b60006020820190508181036000830152611de181611da5565b9050919050565b7f47617344414f3a20457863656564206d617820737570706c7900000000000000600082015250565b6000611e1e601983611767565b9150611e2982611de8565b602082019050919050565b60006020820190508181036000830152611e4d81611e11565b9050919050565b7f47617344414f3a20436c61696d65640000000000000000000000000000000000600082015250565b6000611e8a600f83611767565b9150611e9582611e54565b602082019050919050565b60006020820190508181036000830152611eb981611e7d565b9050919050565b6000606082019050611ed56000830186611a86565b611ee260208301856119d3565b611eef6040830184611732565b949350505050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000611f38601c83611ef7565b9150611f4382611f02565b601c82019050919050565b6000819050919050565b611f69611f64826119fd565b611f4e565b82525050565b6000611f7a82611f2b565b9150611f868284611f58565b60208201915081905092915050565b6000608082019050611faa6000830187611a86565b611fb760208301866119a9565b611fc46040830185611a86565b611fd16060830184611a86565b95945050505050565b7f47617344414f3a20496e76616c6964207369676e657200000000000000000000600082015250565b6000612010601683611767565b915061201b82611fda565b602082019050919050565b6000602082019050818103600083015261203f81612003565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120a2602483611767565b91506120ad82612046565b604082019050919050565b600060208201905081810360008301526120d181612095565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612134602283611767565b915061213f826120d8565b604082019050919050565b6000602082019050818103600083015261216381612127565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121c6602583611767565b91506121d18261216a565b604082019050919050565b600060208201905081810360008301526121f5816121b9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612258602383611767565b9150612263826121fc565b604082019050919050565b600060208201905081810360008301526122878161224b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122ea602683611767565b91506122f58261228e565b604082019050919050565b60006020820190508181036000830152612319816122dd565b9050919050565b60007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b600061235682612320565b915061236183612320565b9250827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561239557612394611b1f565b5b828201905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b60006123d6600283611ef7565b91506123e1826123a0565b600282019050919050565b60006123f7826123c9565b91506124038285611f58565b6020820191506124138284611f58565b6020820191508190509392505050565b600060a0820190506124386000830188611a86565b6124456020830187611a86565b6124526040830186611a86565b61245f6060830185611732565b61246c60808301846119d3565b969550505050505056fea2646970667358221220f271ef45c90c1c8598c8efedc559888ea496008e06f56d090b443cccbec510c864736f6c634300080a0033
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.