Contract Overview
[ Download CSV Export ]
Latest 2 internal transactions
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x47b43fb4ca30de94a22888c845946898422e133860723b75defa1383dfd86a74 | 1845047 | 125 days 9 hrs ago | 0xdfaeff1c5d26efb0a36db2f2e2ccc87bcdc99abe | 0x495b33579c7a1439e2f6c95bafcc716894a13483 | 0 ETH | ||
0x47b43fb4ca30de94a22888c845946898422e133860723b75defa1383dfd86a74 | 1845047 | 125 days 9 hrs ago | 0xdfaeff1c5d26efb0a36db2f2e2ccc87bcdc99abe | 0x495b33579c7a1439e2f6c95bafcc716894a13483 | 0 ETH |
[ Download CSV Export ]
Contract Name:
Cryptopoker_Token
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at basescan.org on 2023-07-23 */ // File: @openzeppelin/[email protected]/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/[email protected]/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/[email protected]/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/[email protected]/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @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 // Deprecated in v4.8 } 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"); } } /** * @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) { 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. /// @solidity memory-safe-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 { 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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 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 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)); } } // File: @openzeppelin/[email protected]/utils/cryptography/EIP712.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.0; /** * @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); } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/draft-IERC20Permit.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/[email protected]/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/[email protected]/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/[email protected]/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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.openzeppelin.com/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 { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/[email protected]/token/ERC20/extensions/draft-ERC20Permit.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/extensions/draft-ERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * _Available since v3.4._ */ abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 { using Counters for Counters.Counter; mapping(address => Counters.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private constant _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`. * However, to ensure consistency with the upgradeable transpiler, we will continue * to reserve a slot. * @custom:oz-renamed-from _PERMIT_TYPEHASH */ // solhint-disable-next-line var-name-mixedcase bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT; /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ constructor(string memory name) EIP712(name, "1") {} /** * @dev See {IERC20Permit-permit}. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= deadline, "ERC20Permit: expired deadline"); bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _approve(owner, spender, value); } /** * @dev See {IERC20Permit-nonces}. */ function nonces(address owner) public view virtual override returns (uint256) { return _nonces[owner].current(); } /** * @dev See {IERC20Permit-DOMAIN_SEPARATOR}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view override returns (bytes32) { return _domainSeparatorV4(); } /** * @dev "Consume a nonce": return the current value and increment. * * _Available since v4.1._ */ function _useNonce(address owner) internal virtual returns (uint256 current) { Counters.Counter storage nonce = _nonces[owner]; current = nonce.current(); nonce.increment(); } } // File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: contracts/cpt.sol pragma solidity ^0.8.9; // OP MAINNET: 0x3C402196E976964a4FeF5F07b790523Eb68C9b06 // ARBITRUM ONE: 0x85D68F3E6F945592ADc3B0F458b14814c6847592 // BASE: /// @custom:security-contact [email protected] contract Cryptopoker_Token is ERC20, ERC20Burnable, Pausable, Ownable, ERC20Permit { constructor() ERC20("Cryptopoker_Token", "CPT") ERC20Permit("Cryptopoker_Token") { _mint(msg.sender, 10000 * 10 ** decimals()); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } // function faucet(address recipient) external { // _mint(recipient, 5); // } function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override { super._beforeTokenTransfer(from, to, amount); } }
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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101406040523480156200001257600080fd5b506040518060400160405280601181526020017f43727970746f706f6b65725f546f6b656e000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280601181526020017f43727970746f706f6b65725f546f6b656e0000000000000000000000000000008152506040518060400160405280600381526020017f435054000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010492919062000576565b5080600490805190602001906200011d92919062000576565b5050506000600560006101000a81548160ff0219169083151502179055506200015b6200014f6200025260201b60201c565b6200025a60201b60201c565b60008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001c48184846200032060201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508061012081815250505050505050506200024c33620002236200035c60201b60201c565b600a620002319190620007c0565b61271062000240919062000811565b6200036560201b60201c565b62000b14565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600083838346306040516020016200033d959493929190620008e3565b6040516020818303038152906040528051906020012090509392505050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cf90620009a1565b60405180910390fd5b620003ec60008383620004d360201b60201c565b8060026000828254620004009190620009c3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004b3919062000a20565b60405180910390a3620004cf600083836200050060201b60201c565b5050565b620004e36200050560201b60201c565b620004fb8383836200055a60201b62000a5f1760201c565b505050565b505050565b620005156200055f60201b60201c565b1562000558576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054f9062000a8d565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b828054620005849062000ade565b90600052602060002090601f016020900481019282620005a85760008555620005f4565b82601f10620005c357805160ff1916838001178555620005f4565b82800160010185558215620005f4579182015b82811115620005f3578251825591602001919060010190620005d6565b5b50905062000603919062000607565b5090565b5b808211156200062257600081600090555060010162000608565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006b4578086048111156200068c576200068b62000626565b5b60018516156200069c5780820291505b8081029050620006ac8562000655565b94506200066c565b94509492505050565b600082620006cf5760019050620007a2565b81620006df5760009050620007a2565b8160018114620006f85760028114620007035762000739565b6001915050620007a2565b60ff84111562000718576200071762000626565b5b8360020a91508482111562000732576200073162000626565b5b50620007a2565b5060208310610133831016604e8410600b8410161715620007735782820a9050838111156200076d576200076c62000626565b5b620007a2565b62000782848484600162000662565b925090508184048111156200079c576200079b62000626565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620007cd82620007a9565b9150620007da83620007b3565b9250620008097fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006bd565b905092915050565b60006200081e82620007a9565b91506200082b83620007a9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000867576200086662000626565b5b828202905092915050565b6000819050919050565b620008878162000872565b82525050565b6200089881620007a9565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008cb826200089e565b9050919050565b620008dd81620008be565b82525050565b600060a082019050620008fa60008301886200087c565b6200090960208301876200087c565b6200091860408301866200087c565b6200092760608301856200088d565b620009366080830184620008d2565b9695505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000989601f8362000940565b9150620009968262000951565b602082019050919050565b60006020820190508181036000830152620009bc816200097a565b9050919050565b6000620009d082620007a9565b9150620009dd83620007a9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a155762000a1462000626565b5b828201905092915050565b600060208201905062000a3760008301846200088d565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000a7560108362000940565b915062000a828262000a3d565b602082019050919050565b6000602082019050818103600083015262000aa88162000a66565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000af757607f821691505b6020821081141562000b0e5762000b0d62000aaf565b5b50919050565b60805160a05160c05160e0516101005161012051612a9c62000b646000396000610fe90152600061102b0152600061100a01526000610f3f01526000610f9501526000610fbe0152612a9c6000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c357806395d89b411161007c57806395d89b4114610368578063a457c2d714610386578063a9059cbb146103b6578063d505accf146103e6578063dd62ed3e14610402578063f2fde38b146104325761014d565b806370a08231146102ba578063715018a6146102ea57806379cc6790146102f45780637ecebe00146103105780638456cb59146103405780638da5cb5b1461034a5761014d565b80633644e515116101155780633644e5151461020c578063395093511461022a5780633f4ba83a1461025a57806340c10f191461026457806342966c68146102805780635c975abb1461029c5761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be578063313ce567146101ee575b600080fd5b61015a61044e565b6040516101679190611a52565b60405180910390f35b61018a60048036038101906101859190611b0d565b6104e0565b6040516101979190611b68565b60405180910390f35b6101a8610503565b6040516101b59190611b92565b60405180910390f35b6101d860048036038101906101d39190611bad565b61050d565b6040516101e59190611b68565b60405180910390f35b6101f661053c565b6040516102039190611c1c565b60405180910390f35b610214610545565b6040516102219190611c50565b60405180910390f35b610244600480360381019061023f9190611b0d565b610554565b6040516102519190611b68565b60405180910390f35b61026261058b565b005b61027e60048036038101906102799190611b0d565b61059d565b005b61029a60048036038101906102959190611c6b565b6105b3565b005b6102a46105c7565b6040516102b19190611b68565b60405180910390f35b6102d460048036038101906102cf9190611c98565b6105de565b6040516102e19190611b92565b60405180910390f35b6102f2610626565b005b61030e60048036038101906103099190611b0d565b61063a565b005b61032a60048036038101906103259190611c98565b61065a565b6040516103379190611b92565b60405180910390f35b6103486106aa565b005b6103526106bc565b60405161035f9190611cd4565b60405180910390f35b6103706106e6565b60405161037d9190611a52565b60405180910390f35b6103a0600480360381019061039b9190611b0d565b610778565b6040516103ad9190611b68565b60405180910390f35b6103d060048036038101906103cb9190611b0d565b6107ef565b6040516103dd9190611b68565b60405180910390f35b61040060048036038101906103fb9190611d47565b610812565b005b61041c60048036038101906104179190611de9565b610954565b6040516104299190611b92565b60405180910390f35b61044c60048036038101906104479190611c98565b6109db565b005b60606003805461045d90611e58565b80601f016020809104026020016040519081016040528092919081815260200182805461048990611e58565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b6000806104eb610a64565b90506104f8818585610a6c565b600191505092915050565b6000600254905090565b600080610518610a64565b9050610525858285610c37565b610530858585610cc3565b60019150509392505050565b60006012905090565b600061054f610f3b565b905090565b60008061055f610a64565b90506105808185856105718589610954565b61057b9190611eb9565b610a6c565b600191505092915050565b610593611055565b61059b6110d3565b565b6105a5611055565b6105af8282611136565b5050565b6105c46105be610a64565b8261128d565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61062e611055565b610638600061145b565b565b61064c82610646610a64565b83610c37565b610656828261128d565b5050565b60006106a3600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611521565b9050919050565b6106b2611055565b6106ba61152f565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106f590611e58565b80601f016020809104026020016040519081016040528092919081815260200182805461072190611e58565b801561076e5780601f106107435761010080835404028352916020019161076e565b820191906000526020600020905b81548152906001019060200180831161075157829003601f168201915b5050505050905090565b600080610783610a64565b905060006107918286610954565b9050838110156107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cd90611f81565b60405180910390fd5b6107e38286868403610a6c565b60019250505092915050565b6000806107fa610a64565b9050610807818585610cc3565b600191505092915050565b83421115610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c90611fed565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886108848c611592565b8960405160200161089a9695949392919061200d565b60405160208183030381529060405280519060200120905060006108bd826115f0565b905060006108cd8287878761160a565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461093d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610934906120ba565b60405180910390fd5b6109488a8a8a610a6c565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109e3611055565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a9061214c565b60405180910390fd5b610a5c8161145b565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad3906121de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4390612270565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c2a9190611b92565b60405180910390a3505050565b6000610c438484610954565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cbd5781811015610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca6906122dc565b60405180910390fd5b610cbc8484848403610a6c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2a9061236e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a90612400565b60405180910390fd5b610dae838383611635565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90612492565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f229190611b92565b60405180910390a3610f3584848461164d565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015610fb757507f000000000000000000000000000000000000000000000000000000000000000046145b15610fe4577f00000000000000000000000000000000000000000000000000000000000000009050611052565b61104f7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611652565b90505b90565b61105d610a64565b73ffffffffffffffffffffffffffffffffffffffff1661107b6106bc565b73ffffffffffffffffffffffffffffffffffffffff16146110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c8906124fe565b60405180910390fd5b565b6110db61168c565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61111f610a64565b60405161112c9190611cd4565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d9061256a565b60405180910390fd5b6111b260008383611635565b80600260008282546111c49190611eb9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112759190611b92565b60405180910390a36112896000838361164d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f4906125fc565b60405180910390fd5b61130982600083611635565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561138f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113869061268e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114429190611b92565b60405180910390a36114568360008461164d565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6115376116d5565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861157b610a64565b6040516115889190611cd4565b60405180910390a1565b600080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506115df81611521565b91506115ea8161171f565b50919050565b60006116036115fd610f3b565b83611735565b9050919050565b600080600061161b87878787611768565b915091506116288161184b565b8192505050949350505050565b61163d6116d5565b611648838383610a5f565b505050565b505050565b6000838383463060405160200161166d9594939291906126ae565b6040516020818303038152906040528051906020012090509392505050565b6116946105c7565b6116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca9061274d565b60405180910390fd5b565b6116dd6105c7565b1561171d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611714906127b9565b60405180910390fd5b565b6001816000016000828254019250508190555050565b6000828260405160200161174a929190612851565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156117a3576000600391509150611842565b6000600187878787604051600081526020016040526040516117c89493929190612888565b6020604051602081039080840390855afa1580156117ea573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561183957600060019250925050611842565b80600092509250505b94509492505050565b6000600481111561185f5761185e6128cd565b5b816004811115611872576118716128cd565b5b141561187d576119b6565b60016004811115611891576118906128cd565b5b8160048111156118a4576118a36128cd565b5b14156118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc90612948565b60405180910390fd5b600260048111156118f9576118f86128cd565b5b81600481111561190c5761190b6128cd565b5b141561194d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611944906129b4565b60405180910390fd5b60036004811115611961576119606128cd565b5b816004811115611974576119736128cd565b5b14156119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90612a46565b60405180910390fd5b5b50565b600081519050919050565b600082825260208201905092915050565b60005b838110156119f35780820151818401526020810190506119d8565b83811115611a02576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a24826119b9565b611a2e81856119c4565b9350611a3e8185602086016119d5565b611a4781611a08565b840191505092915050565b60006020820190508181036000830152611a6c8184611a19565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611aa482611a79565b9050919050565b611ab481611a99565b8114611abf57600080fd5b50565b600081359050611ad181611aab565b92915050565b6000819050919050565b611aea81611ad7565b8114611af557600080fd5b50565b600081359050611b0781611ae1565b92915050565b60008060408385031215611b2457611b23611a74565b5b6000611b3285828601611ac2565b9250506020611b4385828601611af8565b9150509250929050565b60008115159050919050565b611b6281611b4d565b82525050565b6000602082019050611b7d6000830184611b59565b92915050565b611b8c81611ad7565b82525050565b6000602082019050611ba76000830184611b83565b92915050565b600080600060608486031215611bc657611bc5611a74565b5b6000611bd486828701611ac2565b9350506020611be586828701611ac2565b9250506040611bf686828701611af8565b9150509250925092565b600060ff82169050919050565b611c1681611c00565b82525050565b6000602082019050611c316000830184611c0d565b92915050565b6000819050919050565b611c4a81611c37565b82525050565b6000602082019050611c656000830184611c41565b92915050565b600060208284031215611c8157611c80611a74565b5b6000611c8f84828501611af8565b91505092915050565b600060208284031215611cae57611cad611a74565b5b6000611cbc84828501611ac2565b91505092915050565b611cce81611a99565b82525050565b6000602082019050611ce96000830184611cc5565b92915050565b611cf881611c00565b8114611d0357600080fd5b50565b600081359050611d1581611cef565b92915050565b611d2481611c37565b8114611d2f57600080fd5b50565b600081359050611d4181611d1b565b92915050565b600080600080600080600060e0888a031215611d6657611d65611a74565b5b6000611d748a828b01611ac2565b9750506020611d858a828b01611ac2565b9650506040611d968a828b01611af8565b9550506060611da78a828b01611af8565b9450506080611db88a828b01611d06565b93505060a0611dc98a828b01611d32565b92505060c0611dda8a828b01611d32565b91505092959891949750929550565b60008060408385031215611e0057611dff611a74565b5b6000611e0e85828601611ac2565b9250506020611e1f85828601611ac2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e7057607f821691505b60208210811415611e8457611e83611e29565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ec482611ad7565b9150611ecf83611ad7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f0457611f03611e8a565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f6b6025836119c4565b9150611f7682611f0f565b604082019050919050565b60006020820190508181036000830152611f9a81611f5e565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000611fd7601d836119c4565b9150611fe282611fa1565b602082019050919050565b6000602082019050818103600083015261200681611fca565b9050919050565b600060c0820190506120226000830189611c41565b61202f6020830188611cc5565b61203c6040830187611cc5565b6120496060830186611b83565b6120566080830185611b83565b61206360a0830184611b83565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b60006120a4601e836119c4565b91506120af8261206e565b602082019050919050565b600060208201905081810360008301526120d381612097565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121366026836119c4565b9150612141826120da565b604082019050919050565b6000602082019050818103600083015261216581612129565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121c86024836119c4565b91506121d38261216c565b604082019050919050565b600060208201905081810360008301526121f7816121bb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061225a6022836119c4565b9150612265826121fe565b604082019050919050565b600060208201905081810360008301526122898161224d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006122c6601d836119c4565b91506122d182612290565b602082019050919050565b600060208201905081810360008301526122f5816122b9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123586025836119c4565b9150612363826122fc565b604082019050919050565b600060208201905081810360008301526123878161234b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123ea6023836119c4565b91506123f58261238e565b604082019050919050565b60006020820190508181036000830152612419816123dd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061247c6026836119c4565b915061248782612420565b604082019050919050565b600060208201905081810360008301526124ab8161246f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006124e86020836119c4565b91506124f3826124b2565b602082019050919050565b60006020820190508181036000830152612517816124db565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612554601f836119c4565b915061255f8261251e565b602082019050919050565b6000602082019050818103600083015261258381612547565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006125e66021836119c4565b91506125f18261258a565b604082019050919050565b60006020820190508181036000830152612615816125d9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006126786022836119c4565b91506126838261261c565b604082019050919050565b600060208201905081810360008301526126a78161266b565b9050919050565b600060a0820190506126c36000830188611c41565b6126d06020830187611c41565b6126dd6040830186611c41565b6126ea6060830185611b83565b6126f76080830184611cc5565b9695505050505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006127376014836119c4565b915061274282612701565b602082019050919050565b600060208201905081810360008301526127668161272a565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006127a36010836119c4565b91506127ae8261276d565b602082019050919050565b600060208201905081810360008301526127d281612796565b9050919050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061281a6002836127d9565b9150612825826127e4565b600282019050919050565b6000819050919050565b61284b61284682611c37565b612830565b82525050565b600061285c8261280d565b9150612868828561283a565b602082019150612878828461283a565b6020820191508190509392505050565b600060808201905061289d6000830187611c41565b6128aa6020830186611c0d565b6128b76040830185611c41565b6128c46060830184611c41565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006129326018836119c4565b915061293d826128fc565b602082019050919050565b6000602082019050818103600083015261296181612925565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061299e601f836119c4565b91506129a982612968565b602082019050919050565b600060208201905081810360008301526129cd81612991565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a306022836119c4565b9150612a3b826129d4565b604082019050919050565b60006020820190508181036000830152612a5f81612a23565b905091905056fea264697066735822122014bfd1a14a9fbc4c98c8e17162ff9d06dbbaac4223c2d83f1e0006ca7e2548ff64736f6c63430008090033
Deployed ByteCode Sourcemap
60403:810:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44502:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46853:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45622:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47634:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45464:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58515:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48338:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60736:65;;;:::i;:::-;;60809:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59571:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37744:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45793:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35248:103;;;:::i;:::-;;59981:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58257:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60667:61;;;:::i;:::-;;34600:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44721:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49079:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46126:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57546:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46382:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35506:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44502:100;44556:13;44589:5;44582:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44502:100;:::o;46853:201::-;46936:4;46953:13;46969:12;:10;:12::i;:::-;46953:28;;46992:32;47001:5;47008:7;47017:6;46992:8;:32::i;:::-;47042:4;47035:11;;;46853:201;;;;:::o;45622:108::-;45683:7;45710:12;;45703:19;;45622:108;:::o;47634:295::-;47765:4;47782:15;47800:12;:10;:12::i;:::-;47782:30;;47823:38;47839:4;47845:7;47854:6;47823:15;:38::i;:::-;47872:27;47882:4;47888:2;47892:6;47872:9;:27::i;:::-;47917:4;47910:11;;;47634:295;;;;;:::o;45464:93::-;45522:5;45547:2;45540:9;;45464:93;:::o;58515:115::-;58575:7;58602:20;:18;:20::i;:::-;58595:27;;58515:115;:::o;48338:238::-;48426:4;48443:13;48459:12;:10;:12::i;:::-;48443:28;;48482:64;48491:5;48498:7;48535:10;48507:25;48517:5;48524:7;48507:9;:25::i;:::-;:38;;;;:::i;:::-;48482:8;:64::i;:::-;48564:4;48557:11;;;48338:238;;;;:::o;60736:65::-;34486:13;:11;:13::i;:::-;60783:10:::1;:8;:10::i;:::-;60736:65::o:0;60809:95::-;34486:13;:11;:13::i;:::-;60879:17:::1;60885:2;60889:6;60879:5;:17::i;:::-;60809:95:::0;;:::o;59571:91::-;59627:27;59633:12;:10;:12::i;:::-;59647:6;59627:5;:27::i;:::-;59571:91;:::o;37744:86::-;37791:4;37815:7;;;;;;;;;;;37808:14;;37744:86;:::o;45793:127::-;45867:7;45894:9;:18;45904:7;45894:18;;;;;;;;;;;;;;;;45887:25;;45793:127;;;:::o;35248:103::-;34486:13;:11;:13::i;:::-;35313:30:::1;35340:1;35313:18;:30::i;:::-;35248:103::o:0;59981:164::-;60058:46;60074:7;60083:12;:10;:12::i;:::-;60097:6;60058:15;:46::i;:::-;60115:22;60121:7;60130:6;60115:5;:22::i;:::-;59981:164;;:::o;58257:128::-;58326:7;58353:24;:7;:14;58361:5;58353:14;;;;;;;;;;;;;;;:22;:24::i;:::-;58346:31;;58257:128;;;:::o;60667:61::-;34486:13;:11;:13::i;:::-;60712:8:::1;:6;:8::i;:::-;60667:61::o:0;34600:87::-;34646:7;34673:6;;;;;;;;;;;34666:13;;34600:87;:::o;44721:104::-;44777:13;44810:7;44803:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44721:104;:::o;49079:436::-;49172:4;49189:13;49205:12;:10;:12::i;:::-;49189:28;;49228:24;49255:25;49265:5;49272:7;49255:9;:25::i;:::-;49228:52;;49319:15;49299:16;:35;;49291:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;49412:60;49421:5;49428:7;49456:15;49437:16;:34;49412:8;:60::i;:::-;49503:4;49496:11;;;;49079:436;;;;:::o;46126:193::-;46205:4;46222:13;46238:12;:10;:12::i;:::-;46222:28;;46261;46271:5;46278:2;46282:6;46261:9;:28::i;:::-;46307:4;46300:11;;;46126:193;;;;:::o;57546:645::-;57790:8;57771:15;:27;;57763:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;57845:18;56721:95;57905:5;57912:7;57921:5;57928:16;57938:5;57928:9;:16::i;:::-;57946:8;57876:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57866:90;;;;;;57845:111;;57969:12;57984:28;58001:10;57984:16;:28::i;:::-;57969:43;;58025:14;58042:28;58056:4;58062:1;58065;58068;58042:13;:28::i;:::-;58025:45;;58099:5;58089:15;;:6;:15;;;58081:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;58152:31;58161:5;58168:7;58177:5;58152:8;:31::i;:::-;57752:439;;;57546:645;;;;;;;:::o;46382:151::-;46471:7;46498:11;:18;46510:5;46498:18;;;;;;;;;;;;;;;:27;46517:7;46498:27;;;;;;;;;;;;;;;;46491:34;;46382:151;;;;:::o;35506:201::-;34486:13;:11;:13::i;:::-;35615:1:::1;35595:22;;:8;:22;;;;35587:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35671:28;35690:8;35671:18;:28::i;:::-;35506:201:::0;:::o;54830:125::-;;;;:::o;33145:98::-;33198:7;33225:10;33218:17;;33145:98;:::o;53106:380::-;53259:1;53242:19;;:5;:19;;;;53234:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53340:1;53321:21;;:7;:21;;;;53313:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53424:6;53394:11;:18;53406:5;53394:18;;;;;;;;;;;;;;;:27;53413:7;53394:27;;;;;;;;;;;;;;;:36;;;;53462:7;53446:32;;53455:5;53446:32;;;53471:6;53446:32;;;;;;:::i;:::-;;;;;;;;53106:380;;;:::o;53777:453::-;53912:24;53939:25;53949:5;53956:7;53939:9;:25::i;:::-;53912:52;;53999:17;53979:16;:37;53975:248;;54061:6;54041:16;:26;;54033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54145:51;54154:5;54161:7;54189:6;54170:16;:25;54145:8;:51::i;:::-;53975:248;53901:329;53777:453;;;:::o;49985:840::-;50132:1;50116:18;;:4;:18;;;;50108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50209:1;50195:16;;:2;:16;;;;50187:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;50264:38;50285:4;50291:2;50295:6;50264:20;:38::i;:::-;50315:19;50337:9;:15;50347:4;50337:15;;;;;;;;;;;;;;;;50315:37;;50386:6;50371:11;:21;;50363:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;50503:6;50489:11;:20;50471:9;:15;50481:4;50471:15;;;;;;;;;;;;;;;:38;;;;50706:6;50689:9;:13;50699:2;50689:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;50756:2;50741:26;;50750:4;50741:26;;;50760:6;50741:26;;;;;;:::i;:::-;;;;;;;;50780:37;50800:4;50806:2;50810:6;50780:19;:37::i;:::-;50097:728;49985:840;;;:::o;28688:314::-;28741:7;28782:12;28765:29;;28773:4;28765:29;;;:66;;;;;28815:16;28798:13;:33;28765:66;28761:234;;;28855:24;28848:31;;;;28761:234;28919:64;28941:10;28953:12;28967:15;28919:21;:64::i;:::-;28912:71;;28688:314;;:::o;34765:132::-;34840:12;:10;:12::i;:::-;34829:23;;:7;:5;:7::i;:::-;:23;;;34821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34765:132::o;38599:120::-;37608:16;:14;:16::i;:::-;38668:5:::1;38658:7;;:15;;;;;;;;;;;;;;;;;;38689:22;38698:12;:10;:12::i;:::-;38689:22;;;;;;:::i;:::-;;;;;;;;38599:120::o:0;51112:548::-;51215:1;51196:21;;:7;:21;;;;51188:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51266:49;51295:1;51299:7;51308:6;51266:20;:49::i;:::-;51344:6;51328:12;;:22;;;;;;;:::i;:::-;;;;;;;;51521:6;51499:9;:18;51509:7;51499:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;51575:7;51554:37;;51571:1;51554:37;;;51584:6;51554:37;;;;;;:::i;:::-;;;;;;;;51604:48;51632:1;51636:7;51645:6;51604:19;:48::i;:::-;51112:548;;:::o;51993:675::-;52096:1;52077:21;;:7;:21;;;;52069:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;52149:49;52170:7;52187:1;52191:6;52149:20;:49::i;:::-;52211:22;52236:9;:18;52246:7;52236:18;;;;;;;;;;;;;;;;52211:43;;52291:6;52273:14;:24;;52265:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;52410:6;52393:14;:23;52372:9;:18;52382:7;52372:18;;;;;;;;;;;;;;;:44;;;;52527:6;52511:12;;:22;;;;;;;;;;;52588:1;52562:37;;52571:7;52562:37;;;52592:6;52562:37;;;;;;:::i;:::-;;;;;;;;52612:48;52632:7;52649:1;52653:6;52612:19;:48::i;:::-;52058:610;51993:675;;:::o;35867:191::-;35941:16;35960:6;;;;;;;;;;;35941:25;;35986:8;35977:6;;:17;;;;;;;;;;;;;;;;;;36041:8;36010:40;;36031:8;36010:40;;;;;;;;;;;;35930:128;35867:191;:::o;878:114::-;943:7;970;:14;;;963:21;;878:114;;;:::o;38340:118::-;37349:19;:17;:19::i;:::-;38410:4:::1;38400:7;;:14;;;;;;;;;;;;;;;;;;38430:20;38437:12;:10;:12::i;:::-;38430:20;;;;;;:::i;:::-;;;;;;;;38340:118::o:0;58768:207::-;58828:15;58856:30;58889:7;:14;58897:5;58889:14;;;;;;;;;;;;;;;58856:47;;58924:15;:5;:13;:15::i;:::-;58914:25;;58950:17;:5;:15;:17::i;:::-;58845:130;58768:207;;;:::o;29915:167::-;29992:7;30019:55;30041:20;:18;:20::i;:::-;30063:10;30019:21;:55::i;:::-;30012:62;;29915:167;;;:::o;23555:279::-;23683:7;23704:17;23723:18;23745:25;23756:4;23762:1;23765;23768;23745:10;:25::i;:::-;23703:67;;;;23781:18;23793:5;23781:11;:18::i;:::-;23817:9;23810:16;;;;23555:279;;;;;;:::o;61011:199::-;37349:19;:17;:19::i;:::-;61158:44:::1;61185:4;61191:2;61195:6;61158:26;:44::i;:::-;61011:199:::0;;;:::o;55559:124::-;;;;:::o;29010:263::-;29154:7;29202:8;29212;29222:11;29235:13;29258:4;29191:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29181:84;;;;;;29174:91;;29010:263;;;;;:::o;38088:108::-;38155:8;:6;:8::i;:::-;38147:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;38088:108::o;37903:::-;37974:8;:6;:8::i;:::-;37973:9;37965:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;37903:108::o;1000:127::-;1107:1;1089:7;:14;;;:19;;;;;;;;;;;1000:127;:::o;25246:196::-;25339:7;25405:15;25422:10;25376:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25366:68;;;;;;25359:75;;25246:196;;;;:::o;21896:1520::-;22027:7;22036:12;22961:66;22956:1;22948:10;;:79;22944:163;;;23060:1;23064:30;23044:51;;;;;;22944:163;23204:14;23221:24;23231:4;23237:1;23240;23243;23221:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23204:41;;23278:1;23260:20;;:6;:20;;;23256:103;;;23313:1;23317:29;23297:50;;;;;;;23256:103;23379:6;23387:20;23371:37;;;;;21896:1520;;;;;;;;:::o;17288:521::-;17366:20;17357:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;17353:449;;;17403:7;;17353:449;17464:29;17455:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;17451:351;;;17510:34;;;;;;;;;;:::i;:::-;;;;;;;;17451:351;17575:35;17566:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;17562:240;;;17627:41;;;;;;;;;;:::i;:::-;;;;;;;;17562:240;17699:30;17690:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;17686:116;;;17746:44;;;;;;;;;;:::i;:::-;;;;;;;;17686:116;17288:521;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:77::-;4938:7;4967:5;4956:16;;4901:77;;;:::o;4984:118::-;5071:24;5089:5;5071:24;:::i;:::-;5066:3;5059:37;4984:118;;:::o;5108:222::-;5201:4;5239:2;5228:9;5224:18;5216:26;;5252:71;5320:1;5309:9;5305:17;5296:6;5252:71;:::i;:::-;5108:222;;;;:::o;5336:329::-;5395:6;5444:2;5432:9;5423:7;5419:23;5415:32;5412:119;;;5450:79;;:::i;:::-;5412:119;5570:1;5595:53;5640:7;5631:6;5620:9;5616:22;5595:53;:::i;:::-;5585:63;;5541:117;5336:329;;;;:::o;5671:::-;5730:6;5779:2;5767:9;5758:7;5754:23;5750:32;5747:119;;;5785:79;;:::i;:::-;5747:119;5905:1;5930:53;5975:7;5966:6;5955:9;5951:22;5930:53;:::i;:::-;5920:63;;5876:117;5671:329;;;;:::o;6006:118::-;6093:24;6111:5;6093:24;:::i;:::-;6088:3;6081:37;6006:118;;:::o;6130:222::-;6223:4;6261:2;6250:9;6246:18;6238:26;;6274:71;6342:1;6331:9;6327:17;6318:6;6274:71;:::i;:::-;6130:222;;;;:::o;6358:118::-;6429:22;6445:5;6429:22;:::i;:::-;6422:5;6419:33;6409:61;;6466:1;6463;6456:12;6409:61;6358:118;:::o;6482:135::-;6526:5;6564:6;6551:20;6542:29;;6580:31;6605:5;6580:31;:::i;:::-;6482:135;;;;:::o;6623:122::-;6696:24;6714:5;6696:24;:::i;:::-;6689:5;6686:35;6676:63;;6735:1;6732;6725:12;6676:63;6623:122;:::o;6751:139::-;6797:5;6835:6;6822:20;6813:29;;6851:33;6878:5;6851:33;:::i;:::-;6751:139;;;;:::o;6896:1199::-;7007:6;7015;7023;7031;7039;7047;7055;7104:3;7092:9;7083:7;7079:23;7075:33;7072:120;;;7111:79;;:::i;:::-;7072:120;7231:1;7256:53;7301:7;7292:6;7281:9;7277:22;7256:53;:::i;:::-;7246:63;;7202:117;7358:2;7384:53;7429:7;7420:6;7409:9;7405:22;7384:53;:::i;:::-;7374:63;;7329:118;7486:2;7512:53;7557:7;7548:6;7537:9;7533:22;7512:53;:::i;:::-;7502:63;;7457:118;7614:2;7640:53;7685:7;7676:6;7665:9;7661:22;7640:53;:::i;:::-;7630:63;;7585:118;7742:3;7769:51;7812:7;7803:6;7792:9;7788:22;7769:51;:::i;:::-;7759:61;;7713:117;7869:3;7896:53;7941:7;7932:6;7921:9;7917:22;7896:53;:::i;:::-;7886:63;;7840:119;7998:3;8025:53;8070:7;8061:6;8050:9;8046:22;8025:53;:::i;:::-;8015:63;;7969:119;6896:1199;;;;;;;;;;:::o;8101:474::-;8169:6;8177;8226:2;8214:9;8205:7;8201:23;8197:32;8194:119;;;8232:79;;:::i;:::-;8194:119;8352:1;8377:53;8422:7;8413:6;8402:9;8398:22;8377:53;:::i;:::-;8367:63;;8323:117;8479:2;8505:53;8550:7;8541:6;8530:9;8526:22;8505:53;:::i;:::-;8495:63;;8450:118;8101:474;;;;;:::o;8581:180::-;8629:77;8626:1;8619:88;8726:4;8723:1;8716:15;8750:4;8747:1;8740:15;8767:320;8811:6;8848:1;8842:4;8838:12;8828:22;;8895:1;8889:4;8885:12;8916:18;8906:81;;8972:4;8964:6;8960:17;8950:27;;8906:81;9034:2;9026:6;9023:14;9003:18;9000:38;8997:84;;;9053:18;;:::i;:::-;8997:84;8818:269;8767:320;;;:::o;9093:180::-;9141:77;9138:1;9131:88;9238:4;9235:1;9228:15;9262:4;9259:1;9252:15;9279:305;9319:3;9338:20;9356:1;9338:20;:::i;:::-;9333:25;;9372:20;9390:1;9372:20;:::i;:::-;9367:25;;9526:1;9458:66;9454:74;9451:1;9448:81;9445:107;;;9532:18;;:::i;:::-;9445:107;9576:1;9573;9569:9;9562:16;;9279:305;;;;:::o;9590:224::-;9730:34;9726:1;9718:6;9714:14;9707:58;9799:7;9794:2;9786:6;9782:15;9775:32;9590:224;:::o;9820:366::-;9962:3;9983:67;10047:2;10042:3;9983:67;:::i;:::-;9976:74;;10059:93;10148:3;10059:93;:::i;:::-;10177:2;10172:3;10168:12;10161:19;;9820:366;;;:::o;10192:419::-;10358:4;10396:2;10385:9;10381:18;10373:26;;10445:9;10439:4;10435:20;10431:1;10420:9;10416:17;10409:47;10473:131;10599:4;10473:131;:::i;:::-;10465:139;;10192:419;;;:::o;10617:179::-;10757:31;10753:1;10745:6;10741:14;10734:55;10617:179;:::o;10802:366::-;10944:3;10965:67;11029:2;11024:3;10965:67;:::i;:::-;10958:74;;11041:93;11130:3;11041:93;:::i;:::-;11159:2;11154:3;11150:12;11143:19;;10802:366;;;:::o;11174:419::-;11340:4;11378:2;11367:9;11363:18;11355:26;;11427:9;11421:4;11417:20;11413:1;11402:9;11398:17;11391:47;11455:131;11581:4;11455:131;:::i;:::-;11447:139;;11174:419;;;:::o;11599:775::-;11832:4;11870:3;11859:9;11855:19;11847:27;;11884:71;11952:1;11941:9;11937:17;11928:6;11884:71;:::i;:::-;11965:72;12033:2;12022:9;12018:18;12009:6;11965:72;:::i;:::-;12047;12115:2;12104:9;12100:18;12091:6;12047:72;:::i;:::-;12129;12197:2;12186:9;12182:18;12173:6;12129:72;:::i;:::-;12211:73;12279:3;12268:9;12264:19;12255:6;12211:73;:::i;:::-;12294;12362:3;12351:9;12347:19;12338:6;12294:73;:::i;:::-;11599:775;;;;;;;;;:::o;12380:180::-;12520:32;12516:1;12508:6;12504:14;12497:56;12380:180;:::o;12566:366::-;12708:3;12729:67;12793:2;12788:3;12729:67;:::i;:::-;12722:74;;12805:93;12894:3;12805:93;:::i;:::-;12923:2;12918:3;12914:12;12907:19;;12566:366;;;:::o;12938:419::-;13104:4;13142:2;13131:9;13127:18;13119:26;;13191:9;13185:4;13181:20;13177:1;13166:9;13162:17;13155:47;13219:131;13345:4;13219:131;:::i;:::-;13211:139;;12938:419;;;:::o;13363:225::-;13503:34;13499:1;13491:6;13487:14;13480:58;13572:8;13567:2;13559:6;13555:15;13548:33;13363:225;:::o;13594:366::-;13736:3;13757:67;13821:2;13816:3;13757:67;:::i;:::-;13750:74;;13833:93;13922:3;13833:93;:::i;:::-;13951:2;13946:3;13942:12;13935:19;;13594:366;;;:::o;13966:419::-;14132:4;14170:2;14159:9;14155:18;14147:26;;14219:9;14213:4;14209:20;14205:1;14194:9;14190:17;14183:47;14247:131;14373:4;14247:131;:::i;:::-;14239:139;;13966:419;;;:::o;14391:223::-;14531:34;14527:1;14519:6;14515:14;14508:58;14600:6;14595:2;14587:6;14583:15;14576:31;14391:223;:::o;14620:366::-;14762:3;14783:67;14847:2;14842:3;14783:67;:::i;:::-;14776:74;;14859:93;14948:3;14859:93;:::i;:::-;14977:2;14972:3;14968:12;14961:19;;14620:366;;;:::o;14992:419::-;15158:4;15196:2;15185:9;15181:18;15173:26;;15245:9;15239:4;15235:20;15231:1;15220:9;15216:17;15209:47;15273:131;15399:4;15273:131;:::i;:::-;15265:139;;14992:419;;;:::o;15417:221::-;15557:34;15553:1;15545:6;15541:14;15534:58;15626:4;15621:2;15613:6;15609:15;15602:29;15417:221;:::o;15644:366::-;15786:3;15807:67;15871:2;15866:3;15807:67;:::i;:::-;15800:74;;15883:93;15972:3;15883:93;:::i;:::-;16001:2;15996:3;15992:12;15985:19;;15644:366;;;:::o;16016:419::-;16182:4;16220:2;16209:9;16205:18;16197:26;;16269:9;16263:4;16259:20;16255:1;16244:9;16240:17;16233:47;16297:131;16423:4;16297:131;:::i;:::-;16289:139;;16016:419;;;:::o;16441:179::-;16581:31;16577:1;16569:6;16565:14;16558:55;16441:179;:::o;16626:366::-;16768:3;16789:67;16853:2;16848:3;16789:67;:::i;:::-;16782:74;;16865:93;16954:3;16865:93;:::i;:::-;16983:2;16978:3;16974:12;16967:19;;16626:366;;;:::o;16998:419::-;17164:4;17202:2;17191:9;17187:18;17179:26;;17251:9;17245:4;17241:20;17237:1;17226:9;17222:17;17215:47;17279:131;17405:4;17279:131;:::i;:::-;17271:139;;16998:419;;;:::o;17423:224::-;17563:34;17559:1;17551:6;17547:14;17540:58;17632:7;17627:2;17619:6;17615:15;17608:32;17423:224;:::o;17653:366::-;17795:3;17816:67;17880:2;17875:3;17816:67;:::i;:::-;17809:74;;17892:93;17981:3;17892:93;:::i;:::-;18010:2;18005:3;18001:12;17994:19;;17653:366;;;:::o;18025:419::-;18191:4;18229:2;18218:9;18214:18;18206:26;;18278:9;18272:4;18268:20;18264:1;18253:9;18249:17;18242:47;18306:131;18432:4;18306:131;:::i;:::-;18298:139;;18025:419;;;:::o;18450:222::-;18590:34;18586:1;18578:6;18574:14;18567:58;18659:5;18654:2;18646:6;18642:15;18635:30;18450:222;:::o;18678:366::-;18820:3;18841:67;18905:2;18900:3;18841:67;:::i;:::-;18834:74;;18917:93;19006:3;18917:93;:::i;:::-;19035:2;19030:3;19026:12;19019:19;;18678:366;;;:::o;19050:419::-;19216:4;19254:2;19243:9;19239:18;19231:26;;19303:9;19297:4;19293:20;19289:1;19278:9;19274:17;19267:47;19331:131;19457:4;19331:131;:::i;:::-;19323:139;;19050:419;;;:::o;19475:225::-;19615:34;19611:1;19603:6;19599:14;19592:58;19684:8;19679:2;19671:6;19667:15;19660:33;19475:225;:::o;19706:366::-;19848:3;19869:67;19933:2;19928:3;19869:67;:::i;:::-;19862:74;;19945:93;20034:3;19945:93;:::i;:::-;20063:2;20058:3;20054:12;20047:19;;19706:366;;;:::o;20078:419::-;20244:4;20282:2;20271:9;20267:18;20259:26;;20331:9;20325:4;20321:20;20317:1;20306:9;20302:17;20295:47;20359:131;20485:4;20359:131;:::i;:::-;20351:139;;20078:419;;;:::o;20503:182::-;20643:34;20639:1;20631:6;20627:14;20620:58;20503:182;:::o;20691:366::-;20833:3;20854:67;20918:2;20913:3;20854:67;:::i;:::-;20847:74;;20930:93;21019:3;20930:93;:::i;:::-;21048:2;21043:3;21039:12;21032:19;;20691:366;;;:::o;21063:419::-;21229:4;21267:2;21256:9;21252:18;21244:26;;21316:9;21310:4;21306:20;21302:1;21291:9;21287:17;21280:47;21344:131;21470:4;21344:131;:::i;:::-;21336:139;;21063:419;;;:::o;21488:181::-;21628:33;21624:1;21616:6;21612:14;21605:57;21488:181;:::o;21675:366::-;21817:3;21838:67;21902:2;21897:3;21838:67;:::i;:::-;21831:74;;21914:93;22003:3;21914:93;:::i;:::-;22032:2;22027:3;22023:12;22016:19;;21675:366;;;:::o;22047:419::-;22213:4;22251:2;22240:9;22236:18;22228:26;;22300:9;22294:4;22290:20;22286:1;22275:9;22271:17;22264:47;22328:131;22454:4;22328:131;:::i;:::-;22320:139;;22047:419;;;:::o;22472:220::-;22612:34;22608:1;22600:6;22596:14;22589:58;22681:3;22676:2;22668:6;22664:15;22657:28;22472:220;:::o;22698:366::-;22840:3;22861:67;22925:2;22920:3;22861:67;:::i;:::-;22854:74;;22937:93;23026:3;22937:93;:::i;:::-;23055:2;23050:3;23046:12;23039:19;;22698:366;;;:::o;23070:419::-;23236:4;23274:2;23263:9;23259:18;23251:26;;23323:9;23317:4;23313:20;23309:1;23298:9;23294:17;23287:47;23351:131;23477:4;23351:131;:::i;:::-;23343:139;;23070:419;;;:::o;23495:221::-;23635:34;23631:1;23623:6;23619:14;23612:58;23704:4;23699:2;23691:6;23687:15;23680:29;23495:221;:::o;23722:366::-;23864:3;23885:67;23949:2;23944:3;23885:67;:::i;:::-;23878:74;;23961:93;24050:3;23961:93;:::i;:::-;24079:2;24074:3;24070:12;24063:19;;23722:366;;;:::o;24094:419::-;24260:4;24298:2;24287:9;24283:18;24275:26;;24347:9;24341:4;24337:20;24333:1;24322:9;24318:17;24311:47;24375:131;24501:4;24375:131;:::i;:::-;24367:139;;24094:419;;;:::o;24519:664::-;24724:4;24762:3;24751:9;24747:19;24739:27;;24776:71;24844:1;24833:9;24829:17;24820:6;24776:71;:::i;:::-;24857:72;24925:2;24914:9;24910:18;24901:6;24857:72;:::i;:::-;24939;25007:2;24996:9;24992:18;24983:6;24939:72;:::i;:::-;25021;25089:2;25078:9;25074:18;25065:6;25021:72;:::i;:::-;25103:73;25171:3;25160:9;25156:19;25147:6;25103:73;:::i;:::-;24519:664;;;;;;;;:::o;25189:170::-;25329:22;25325:1;25317:6;25313:14;25306:46;25189:170;:::o;25365:366::-;25507:3;25528:67;25592:2;25587:3;25528:67;:::i;:::-;25521:74;;25604:93;25693:3;25604:93;:::i;:::-;25722:2;25717:3;25713:12;25706:19;;25365:366;;;:::o;25737:419::-;25903:4;25941:2;25930:9;25926:18;25918:26;;25990:9;25984:4;25980:20;25976:1;25965:9;25961:17;25954:47;26018:131;26144:4;26018:131;:::i;:::-;26010:139;;25737:419;;;:::o;26162:166::-;26302:18;26298:1;26290:6;26286:14;26279:42;26162:166;:::o;26334:366::-;26476:3;26497:67;26561:2;26556:3;26497:67;:::i;:::-;26490:74;;26573:93;26662:3;26573:93;:::i;:::-;26691:2;26686:3;26682:12;26675:19;;26334:366;;;:::o;26706:419::-;26872:4;26910:2;26899:9;26895:18;26887:26;;26959:9;26953:4;26949:20;26945:1;26934:9;26930:17;26923:47;26987:131;27113:4;26987:131;:::i;:::-;26979:139;;26706:419;;;:::o;27131:148::-;27233:11;27270:3;27255:18;;27131:148;;;;:::o;27285:214::-;27425:66;27421:1;27413:6;27409:14;27402:90;27285:214;:::o;27505:400::-;27665:3;27686:84;27768:1;27763:3;27686:84;:::i;:::-;27679:91;;27779:93;27868:3;27779:93;:::i;:::-;27897:1;27892:3;27888:11;27881:18;;27505:400;;;:::o;27911:79::-;27950:7;27979:5;27968:16;;27911:79;;;:::o;27996:157::-;28101:45;28121:24;28139:5;28121:24;:::i;:::-;28101:45;:::i;:::-;28096:3;28089:58;27996:157;;:::o;28159:663::-;28400:3;28422:148;28566:3;28422:148;:::i;:::-;28415:155;;28580:75;28651:3;28642:6;28580:75;:::i;:::-;28680:2;28675:3;28671:12;28664:19;;28693:75;28764:3;28755:6;28693:75;:::i;:::-;28793:2;28788:3;28784:12;28777:19;;28813:3;28806:10;;28159:663;;;;;:::o;28828:545::-;29001:4;29039:3;29028:9;29024:19;29016:27;;29053:71;29121:1;29110:9;29106:17;29097:6;29053:71;:::i;:::-;29134:68;29198:2;29187:9;29183:18;29174:6;29134:68;:::i;:::-;29212:72;29280:2;29269:9;29265:18;29256:6;29212:72;:::i;:::-;29294;29362:2;29351:9;29347:18;29338:6;29294:72;:::i;:::-;28828:545;;;;;;;:::o;29379:180::-;29427:77;29424:1;29417:88;29524:4;29521:1;29514:15;29548:4;29545:1;29538:15;29565:174;29705:26;29701:1;29693:6;29689:14;29682:50;29565:174;:::o;29745:366::-;29887:3;29908:67;29972:2;29967:3;29908:67;:::i;:::-;29901:74;;29984:93;30073:3;29984:93;:::i;:::-;30102:2;30097:3;30093:12;30086:19;;29745:366;;;:::o;30117:419::-;30283:4;30321:2;30310:9;30306:18;30298:26;;30370:9;30364:4;30360:20;30356:1;30345:9;30341:17;30334:47;30398:131;30524:4;30398:131;:::i;:::-;30390:139;;30117:419;;;:::o;30542:181::-;30682:33;30678:1;30670:6;30666:14;30659:57;30542:181;:::o;30729:366::-;30871:3;30892:67;30956:2;30951:3;30892:67;:::i;:::-;30885:74;;30968:93;31057:3;30968:93;:::i;:::-;31086:2;31081:3;31077:12;31070:19;;30729:366;;;:::o;31101:419::-;31267:4;31305:2;31294:9;31290:18;31282:26;;31354:9;31348:4;31344:20;31340:1;31329:9;31325:17;31318:47;31382:131;31508:4;31382:131;:::i;:::-;31374:139;;31101:419;;;:::o;31526:221::-;31666:34;31662:1;31654:6;31650:14;31643:58;31735:4;31730:2;31722:6;31718:15;31711:29;31526:221;:::o;31753:366::-;31895:3;31916:67;31980:2;31975:3;31916:67;:::i;:::-;31909:74;;31992:93;32081:3;31992:93;:::i;:::-;32110:2;32105:3;32101:12;32094:19;;31753:366;;;:::o;32125:419::-;32291:4;32329:2;32318:9;32314:18;32306:26;;32378:9;32372:4;32368:20;32364:1;32353:9;32349:17;32342:47;32406:131;32532:4;32406:131;:::i;:::-;32398:139;;32125:419;;;:::o
Swarm Source
ipfs://14bfd1a14a9fbc4c98c8e17162ff9d06dbbaac4223c2d83f1e0006ca7e2548ff
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.