ERC-721
Overview
Max Total Supply
0 BPRINT
Holders
224
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
11 BPRINTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RealAssetNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-17 */ // File: @openzeppelin/contracts/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 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed 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/contracts/security/ReentrancyGuard.sol pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @chainlink/contracts/src/v0.8/VRFRequestIDBase.sol pragma solidity ^0.8.0; contract VRFRequestIDBase { /** * @notice returns the seed which is actually input to the VRF coordinator * * @dev To prevent repetition of VRF output due to repetition of the * @dev user-supplied seed, that seed is combined in a hash with the * @dev user-specific nonce, and the address of the consuming contract. The * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in * @dev the final seed, but the nonce does protect against repetition in * @dev requests which are included in a single block. * * @param _userSeed VRF seed input provided by user * @param _requester Address of the requesting contract * @param _nonce User-specific nonce at the time of the request */ function makeVRFInputSeed( bytes32 _keyHash, uint256 _userSeed, address _requester, uint256 _nonce ) internal pure returns ( uint256 ) { return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce))); } /** * @notice Returns the id for this request * @param _keyHash The serviceAgreement ID to be used for this request * @param _vRFInputSeed The seed to be passed directly to the VRF * @return The id for this request * * @dev Note that _vRFInputSeed is not the seed passed by the consuming * @dev contract, but the one generated by makeVRFInputSeed */ function makeRequestId( bytes32 _keyHash, uint256 _vRFInputSeed ) internal pure returns ( bytes32 ) { return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed)); } } // File: @chainlink/contracts/src/v0.8/interfaces/LinkTokenInterface.sol pragma solidity ^0.8.0; interface LinkTokenInterface { function allowance( address owner, address spender ) external view returns ( uint256 remaining ); function approve( address spender, uint256 value ) external returns ( bool success ); function balanceOf( address owner ) external view returns ( uint256 balance ); function decimals() external view returns ( uint8 decimalPlaces ); function decreaseApproval( address spender, uint256 addedValue ) external returns ( bool success ); function increaseApproval( address spender, uint256 subtractedValue ) external; function name() external view returns ( string memory tokenName ); function symbol() external view returns ( string memory tokenSymbol ); function totalSupply() external view returns ( uint256 totalTokensIssued ); function transfer( address to, uint256 value ) external returns ( bool success ); function transferAndCall( address to, uint256 value, bytes calldata data ) external returns ( bool success ); function transferFrom( address from, address to, uint256 value ) external returns ( bool success ); } // File: @chainlink/contracts/src/v0.8/VRFConsumerBase.sol pragma solidity ^0.8.0; /** **************************************************************************** * @notice Interface for contracts using VRF randomness * ***************************************************************************** * @dev PURPOSE * * @dev Reggie the Random Oracle (not his real job) wants to provide randomness * @dev to Vera the verifier in such a way that Vera can be sure he's not * @dev making his output up to suit himself. Reggie provides Vera a public key * @dev to which he knows the secret key. Each time Vera provides a seed to * @dev Reggie, he gives back a value which is computed completely * @dev deterministically from the seed and the secret key. * * @dev Reggie provides a proof by which Vera can verify that the output was * @dev correctly computed once Reggie tells it to her, but without that proof, * @dev the output is indistinguishable to her from a uniform random sample * @dev from the output space. * * @dev The purpose of this contract is to make it easy for unrelated contracts * @dev to talk to Vera the verifier about the work Reggie is doing, to provide * @dev simple access to a verifiable source of randomness. * ***************************************************************************** * @dev USAGE * * @dev Calling contracts must inherit from VRFConsumerBase, and can * @dev initialize VRFConsumerBase's attributes in their constructor as * @dev shown: * * @dev contract VRFConsumer { * @dev constuctor(<other arguments>, address _vrfCoordinator, address _link) * @dev VRFConsumerBase(_vrfCoordinator, _link) public { * @dev <initialization with other arguments goes here> * @dev } * @dev } * * @dev The oracle will have given you an ID for the VRF keypair they have * @dev committed to (let's call it keyHash), and have told you the minimum LINK * @dev price for VRF service. Make sure your contract has sufficient LINK, and * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you * @dev want to generate randomness from. * * @dev Once the VRFCoordinator has received and validated the oracle's response * @dev to your request, it will call your contract's fulfillRandomness method. * * @dev The randomness argument to fulfillRandomness is the actual random value * @dev generated from your seed. * * @dev The requestId argument is generated from the keyHash and the seed by * @dev makeRequestId(keyHash, seed). If your contract could have concurrent * @dev requests open, you can use the requestId to track which seed is * @dev associated with which randomness. See VRFRequestIDBase.sol for more * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind, * @dev if your contract could have multiple requests in flight simultaneously.) * * @dev Colliding `requestId`s are cryptographically impossible as long as seeds * @dev differ. (Which is critical to making unpredictable randomness! See the * @dev next section.) * * ***************************************************************************** * @dev SECURITY CONSIDERATIONS * * @dev A method with the ability to call your fulfillRandomness method directly * @dev could spoof a VRF response with any random value, so it's critical that * @dev it cannot be directly called by anything other than this base contract * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method). * * @dev For your users to trust that your contract's random behavior is free * @dev from malicious interference, it's best if you can write it so that all * @dev behaviors implied by a VRF response are executed *during* your * @dev fulfillRandomness method. If your contract must store the response (or * @dev anything derived from it) and use it later, you must ensure that any * @dev user-significant behavior which depends on that stored value cannot be * @dev manipulated by a subsequent VRF request. * * @dev Similarly, both miners and the VRF oracle itself have some influence * @dev over the order in which VRF responses appear on the blockchain, so if * @dev your contract could have multiple VRF requests in flight simultaneously, * @dev you must ensure that the order in which the VRF responses arrive cannot * @dev be used to manipulate your contract's user-significant behavior. * * @dev Since the ultimate input to the VRF is mixed with the block hash of the * @dev block in which the request is made, user-provided seeds have no impact * @dev on its economic security properties. They are only included for API * @dev compatability with previous versions of this contract. * * @dev Since the block hash of the block which contains the requestRandomness * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful * @dev miner could, in principle, fork the blockchain to evict the block * @dev containing the request, forcing the request to be included in a * @dev different block with a different hash, and therefore a different input * @dev to the VRF. However, such an attack would incur a substantial economic * @dev cost. This cost scales with the number of blocks the VRF oracle waits * @dev until it calls responds to a request. */ abstract contract VRFConsumerBase is VRFRequestIDBase { /** * @notice fulfillRandomness handles the VRF response. Your contract must * @notice implement it. See "SECURITY CONSIDERATIONS" above for important * @notice principles to keep in mind when implementing your fulfillRandomness * @notice method. * * @dev VRFConsumerBase expects its subcontracts to have a method with this * @dev signature, and will call it once it has verified the proof * @dev associated with the randomness. (It is triggered via a call to * @dev rawFulfillRandomness, below.) * * @param requestId The Id initially returned by requestRandomness * @param randomness the VRF output */ function fulfillRandomness( bytes32 requestId, uint256 randomness ) internal virtual; /** * @dev In order to keep backwards compatibility we have kept the user * seed field around. We remove the use of it because given that the blockhash * enters later, it overrides whatever randomness the used seed provides. * Given that it adds no security, and can easily lead to misunderstandings, * we have removed it from usage and can now provide a simpler API. */ uint256 constant private USER_SEED_PLACEHOLDER = 0; /** * @notice requestRandomness initiates a request for VRF output given _seed * * @dev The fulfillRandomness method receives the output, once it's provided * @dev by the Oracle, and verified by the vrfCoordinator. * * @dev The _keyHash must already be registered with the VRFCoordinator, and * @dev the _fee must exceed the fee specified during registration of the * @dev _keyHash. * * @dev The _seed parameter is vestigial, and is kept only for API * @dev compatibility with older versions. It can't *hurt* to mix in some of * @dev your own randomness, here, but it's not necessary because the VRF * @dev oracle will mix the hash of the block containing your request into the * @dev VRF seed it ultimately uses. * * @param _keyHash ID of public key against which randomness is generated * @param _fee The amount of LINK to send with the request * * @return requestId unique ID for this request * * @dev The returned requestId can be used to distinguish responses to * @dev concurrent requests. It is passed as the first argument to * @dev fulfillRandomness. */ function requestRandomness( bytes32 _keyHash, uint256 _fee ) internal returns ( bytes32 requestId ) { LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER)); // This is the seed passed to VRFCoordinator. The oracle will mix this with // the hash of the block containing this request to obtain the seed/input // which is finally passed to the VRF cryptographic machinery. uint256 vRFSeed = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]); // nonces[_keyHash] must stay in sync with // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest). // This provides protection against the user repeating their input seed, // which would result in a predictable/duplicate output, if multiple such // requests appeared in the same block. nonces[_keyHash] = nonces[_keyHash] + 1; return makeRequestId(_keyHash, vRFSeed); } LinkTokenInterface immutable internal LINK; address immutable private vrfCoordinator; // Nonces for each VRF key from which randomness has been requested. // // Must stay in sync with VRFCoordinator[_keyHash][this] mapping(bytes32 /* keyHash */ => uint256 /* nonce */) private nonces; /** * @param _vrfCoordinator address of VRFCoordinator contract * @param _link address of LINK token contract * * @dev https://docs.chain.link/docs/link-token-contracts */ constructor( address _vrfCoordinator, address _link ) { vrfCoordinator = _vrfCoordinator; LINK = LinkTokenInterface(_link); } // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF // proof. rawFulfillRandomness then calls fulfillRandomness, after validating // the origin of the call function rawFulfillRandomness( bytes32 requestId, uint256 randomness ) external { require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill"); fulfillRandomness(requestId, randomness); } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` 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 tokenId ) internal virtual {} } // File: contracts/4_RealAssetNFT.sol pragma solidity ^0.8.1; contract RealAssetNFT is VRFConsumerBase, ERC721, Ownable, ReentrancyGuard { using Strings for uint256; using SafeMath for uint256; using ECDSA for bytes32; bool public ended = false; bool public revealed = false; bool private isrequestfulfilled; uint256 public immutable MaxSupply; uint256 public immutable saleStartTime; uint256 public immutable preSaleStartTime; uint256 public immutable preSaleEndTime; uint256 public immutable preSaleDuration; uint256 public constant publicSaleBufferDuration=30; uint256 public constant maxTokenPerMint = 5; uint256 public immutable mintCost; uint256 private currentTokenId = 0; uint256 public totalMint = 0; uint256 public constant BigPrimeNumber = 9973; uint256 private constant fee = 2 * 10 ** 18; uint256 private randomNumber; bytes32 internal keyHash; bytes32 public vrfRequestId; string public baseTokenURI; mapping(address => uint256) public presalerListPurchases; address private immutable signerAddress; modifier preSaleEnded { require(block.timestamp > preSaleEndTime, "Sorry, the pre-sale is not yet ended"); _; } modifier saleNotEnded { require(!ended, "Sorry, the sale is ended"); _; } modifier saleEnded { require(ended, "Sorry, the sale not yet ended"); _; } modifier saleStarted { require(block.timestamp >= saleStartTime, "Sorry, the sale is not yet started"); _; } event URI(string uri); event RandomNumberRequested( address indexed sender,bytes32 indexed vrfRequestId); event RandomNumberCompleted(bytes32 indexed requestId, uint256 randomNumber); event SaleEnded(address account); event TokensRevealed(uint256 time); constructor(address _vrfCoordinator, address _link , bytes32 _keyHash , string memory _metadataBaseUri , uint256 _mintCost , uint256 _maxSuppply,uint256 _preSaleStartTime ,uint256 _preSaleDuration,address _signerAddress) VRFConsumerBase(_vrfCoordinator, _link) ERC721('BLUPRINT', 'BPRINT') { require(block.timestamp <= _preSaleStartTime,"Presale start time must be greater then current time"); require(_maxSuppply > 0,"Maximum token supply must be greator then zero"); require(_preSaleDuration > 0,"Presale duration must be greater then zero"); require(_mintCost > 0,"Token cost must be greater then zero wei"); mintCost = _mintCost; keyHash = _keyHash; baseTokenURI = _metadataBaseUri; MaxSupply = _maxSuppply; signerAddress = _signerAddress; preSaleStartTime = _preSaleStartTime; preSaleDuration = _preSaleDuration; preSaleEndTime = _preSaleDuration + _preSaleStartTime; saleStartTime = _preSaleDuration + _preSaleStartTime + publicSaleBufferDuration; } function hashMessage(address sender,uint256 chainId,uint256 tokenQuantity) private pure returns(bytes32) { bytes32 hash = keccak256(abi.encodePacked( "\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked(sender,chainId,tokenQuantity))) ); return hash; } function matchAddressSigner(bytes32 hash, bytes memory signature) private view returns(bool) { return signerAddress == hash.recover(signature); } function preSalebuy(uint256 tokenSignQuantity,uint256 tokenQuantity,bytes memory signature) external nonReentrant() payable { bytes32 hash = hashMessage(msg.sender,block.chainid,tokenSignQuantity); require(tokenQuantity > 0 && tokenSignQuantity > 0,"Token quantity to mint must be greter then zero"); require(block.timestamp >= preSaleStartTime, "Sorry, the pre-sale is not yet started"); require(block.timestamp <= preSaleEndTime, "Sorry, the pre-sale is ended"); require(matchAddressSigner(hash, signature), "Sorry, you are not a whitelisted user"); require((totalMint + tokenQuantity) <= MaxSupply,"Sorry, can't be purchased as exceed max supply."); require((mintCost * tokenQuantity) <= msg.value,"you need to pay the minimum token price."); require(msg.sender != address(0),"ERC1155: mint to the zero address"); require(presalerListPurchases[msg.sender] + tokenQuantity <= tokenSignQuantity, "Sorry,can't be purchased as exceed maxm allowed limit"); for(uint256 i = 0; i < tokenQuantity; i++) { _incrementTokenId(); _mint(msg.sender, currentTokenId); presalerListPurchases[msg.sender]++; totalMint += uint256(1); } } function presalePurchasedCount(address addr) external view returns (uint256) { return presalerListPurchases[addr]; } function isPreSaleLive() external view returns(bool) { return (block.timestamp >= preSaleStartTime && block.timestamp <= preSaleEndTime); } function isPublicSaleLive() external view returns(bool) { return (block.timestamp >= saleStartTime && !ended); } function mint(uint256 tokenQuantity) external nonReentrant() payable saleNotEnded saleStarted preSaleEnded { require(tokenQuantity > 0,"Token quantity to mint must be greter then zero"); require(tokenQuantity <= maxTokenPerMint, "Limit exceed to purchase in single mint"); require((totalMint + tokenQuantity) <= MaxSupply,"Sorry, can't be purchased as exceed max supply."); require((mintCost * tokenQuantity) <= msg.value, "you need to pay the minimum token price."); require(msg.sender != address(0),"ERC1155: mint to the zero address"); for(uint256 i = 0; i < tokenQuantity; i++) { _incrementTokenId(); _mint(msg.sender, currentTokenId); totalMint += uint256(1); } } function endSale() external onlyOwner saleStarted saleNotEnded { ended = true; emit SaleEnded(msg.sender); } function requestRandomNumber() external onlyOwner saleStarted saleEnded returns (bytes32, uint32) { require( !isrequestfulfilled , "Already obtained the random no"); require(LINK.balanceOf(address(this)) >= fee, "Not enough LINK tokens available"); uint32 lockBlock = uint32(block.number); vrfRequestId = requestRandomness(keyHash, fee); emit RandomNumberRequested( msg.sender ,vrfRequestId); return (vrfRequestId, lockBlock); } function revealTokens(string memory _uri) external onlyOwner saleStarted saleEnded { require(isrequestfulfilled, "Random entropy has not been assigned"); require(!revealed, "Already revealed"); revealed = true; baseTokenURI = _uri; emit TokensRevealed(block.timestamp); emit URI(_uri); } function fulfillRandomness(bytes32 _requestId, uint256 _randomness) internal override { randomNumber = _randomness; isrequestfulfilled = true; emit RandomNumberCompleted(_requestId, _randomness); } function getAssetId(uint256 _tokenID) external view saleStarted returns(uint256){ require(_tokenID > 0 && _tokenID <= MaxSupply, "Invalid token Id"); require( isrequestfulfilled , "Please wait for random number to be assigned"); uint256 assetID = BigPrimeNumber * _tokenID + ( randomNumber % BigPrimeNumber); assetID = assetID%MaxSupply; if(assetID == 0) assetID = MaxSupply; return assetID; } function getRandomNumber() external view saleStarted returns(uint256) { require(isrequestfulfilled , "Please wait for random number to be assigned"); return randomNumber; } function _incrementTokenId() private { require(currentTokenId < MaxSupply, "token Id limit reached"); currentTokenId++; } function setURI(string memory _uri) external onlyOwner { baseTokenURI = _uri; emit URI(_uri); } function _baseURI() internal view override returns (string memory) { return baseTokenURI; } function getBalanceEther() external view onlyOwner returns(uint256) { return address(this).balance; } function getBalanceLink() external view onlyOwner returns(uint256) { return LINK.balanceOf(address(this)); } function withdrawEth(uint256 _amount) external onlyOwner nonReentrant(){ require(_amount > 0, "Amount should be greater then zero"); require(address(this).balance >= _amount , "Not enough eth balance to withdraw"); payable(msg.sender).transfer(_amount); } function getLinkAddress() external view returns (address) { return address(LINK); } function withdrawLink(uint256 _amount) external onlyOwner nonReentrant() { require(_amount > 0, "Amount should be greater then zero"); require(LINK.balanceOf(address(this)) >= _amount, "Not enough LINK tokens available"); LINK.transfer(msg.sender , _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_vrfCoordinator","type":"address"},{"internalType":"address","name":"_link","type":"address"},{"internalType":"bytes32","name":"_keyHash","type":"bytes32"},{"internalType":"string","name":"_metadataBaseUri","type":"string"},{"internalType":"uint256","name":"_mintCost","type":"uint256"},{"internalType":"uint256","name":"_maxSuppply","type":"uint256"},{"internalType":"uint256","name":"_preSaleStartTime","type":"uint256"},{"internalType":"uint256","name":"_preSaleDuration","type":"uint256"},{"internalType":"address","name":"_signerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"requestId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"randomNumber","type":"uint256"}],"name":"RandomNumberCompleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"bytes32","name":"vrfRequestId","type":"bytes32"}],"name":"RandomNumberRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"SaleEnded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"TokensRevealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"URI","type":"event"},{"inputs":[],"name":"BigPrimeNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ended","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"getAssetId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalanceEther","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalanceLink","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLinkAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRandomNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenSignQuantity","type":"uint256"},{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"preSalebuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"presalePurchasedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleBufferDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestRandomNumber","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"revealTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vrfRequestId","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawLink","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101a06040526009805461ffff191690556000600a819055600b553480156200002757600080fd5b5060405162004112380380620041128339810160408190526200004a9162000432565b6040805180820182526008815267109315541492539560c21b60208083019182528351808501909452600684526510941492539560d21b908401526001600160601b031960608d811b821660a0528c901b166080528151919291620000b2916001916200036f565b508051620000c89060029060208401906200036f565b505050620000e5620000df6200031960201b60201c565b6200031d565b600160085542831015620001665760405162461bcd60e51b815260206004820152603460248201527f50726573616c652073746172742074696d65206d75737420626520677265617460448201527f6572207468656e2063757272656e742074696d6500000000000000000000000060648201526084015b60405180910390fd5b60008411620001cf5760405162461bcd60e51b815260206004820152602e60248201527f4d6178696d756d20746f6b656e20737570706c79206d7573742062652067726560448201526d61746f72207468656e207a65726f60901b60648201526084016200015d565b60008211620002345760405162461bcd60e51b815260206004820152602a60248201527f50726573616c65206475726174696f6e206d7573742062652067726561746572604482015269207468656e207a65726f60b01b60648201526084016200015d565b60008511620002975760405162461bcd60e51b815260206004820152602860248201527f546f6b656e20636f7374206d7573742062652067726561746572207468656e206044820152677a65726f2077656960c01b60648201526084016200015d565b610160859052600d8790558551620002b790600f9060208901906200036f565b5060c08490526001600160601b0319606082901b1661018052610100839052610140829052620002e883836200057e565b61012052601e620002fa84846200057e565b6200030691906200057e565b60e05250620005f8975050505050505050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200037d90620005a5565b90600052602060002090601f016020900481019282620003a15760008555620003ec565b82601f10620003bc57805160ff1916838001178555620003ec565b82800160010185558215620003ec579182015b82811115620003ec578251825591602001919060010190620003cf565b50620003fa929150620003fe565b5090565b5b80821115620003fa5760008155600101620003ff565b80516001600160a01b03811681146200042d57600080fd5b919050565b60008060008060008060008060006101208a8c0312156200045257600080fd5b6200045d8a62000415565b98506200046d60208b0162000415565b60408b015160608c015191995097506001600160401b03808211156200049257600080fd5b818c0191508c601f830112620004a757600080fd5b815181811115620004bc57620004bc620005e2565b604051601f8201601f19908116603f01168101908382118183101715620004e757620004e7620005e2565b816040528281528f60208487010111156200050157600080fd5b600093505b828410156200052957602084860101516020858301015260208401935062000506565b828411156200053c576000602084830101525b809a50505050505060808a0151945060a08a0151935060c08a0151925060e08a015191506200056f6101008b0162000415565b90509295985092959850929598565b60008219821115620005a057634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620005ba57607f821691505b60208210811415620005dc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160601c60c05160e051610100516101205161014051610160516101805160601c6139ea620007286000396000612618015260008181610748015281816115710152611bdb015260006104020152600081816107ef0152818161144b01528181611a8d01526121ea015260008181610301015281816113cc01526121be01526000818161043601528181610d3901528181610e26015281816112b80152818161171601528181611a4d01528181611ec5015261214d0152600081816106f401528181610e7101528181610f2a01528181610f590152818161151f01528181611b89015261264b01526000818161194b015261283f0152600081816107b901528181610c550152818161113b015281816112270152818161181e015261281001526139ea6000f3fe6080604052600436106102935760003560e01c80638644fdd01161015a578063c311d049116100c1578063d8a409531161007a578063d8a4095314610846578063dbdff2c11461085b578063e985e9c514610870578063f21852d0146108b9578063f2fde38b146108ce578063f7bc596d146108ee57600080fd5b8063c311d0491461076a578063c87b56dd1461078a578063ca30e603146107aa578063cce29ea7146107dd578063d50cf08e14610811578063d547cfb71461083157600080fd5b8063a0712d6811610113578063a0712d6814610699578063a22cb465146106ac578063af2cfb00146106cc578063b36c1284146106e2578063b88d4fde14610716578063bdb4b8481461073657600080fd5b80638644fdd0146105d75780638678a7b2146105ea5780638da5cb5b1461061957806394985ddd1461063757806395d89b41146106575780639bf803161461066c57600080fd5b806323b872dd116101fe57806361f547fd116101b757806361f547fd1461052d5780636352211e1461054d57806370a082311461056d578063715018a61461058d5780637a8042bd146105a257806386233071146105c257600080fd5b806323b872dd1461046d578063380d831b1461048d57806342842e0e146104a257806351830227146104c257806359a7715a146104e15780635ce7af1f146104f757600080fd5b806312fa6feb1161025057806312fa6feb146103ab578063136d6ea5146103c557806318a7ea5f146103da5780631bd16dbf146103f05780631cbaee2d146104245780631e9dc7af1461045857600080fd5b806301ffc9a71461029857806302fe5305146102cd57806306d65af3146102ef57806306fdde0314610331578063081812fc14610353578063095ea7b31461038b575b600080fd5b3480156102a457600080fd5b506102b86102b3366004613344565b610903565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e836600461337e565b610955565b005b3480156102fb57600080fd5b506103237f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020016102c4565b34801561033d57600080fd5b506103466109d6565b6040516102c49190613511565b34801561035f57600080fd5b5061037361036e3660046133c7565b610a68565b6040516001600160a01b0390911681526020016102c4565b34801561039757600080fd5b506102ed6103a63660046132db565b610afd565b3480156103b757600080fd5b506009546102b89060ff1681565b3480156103d157600080fd5b50610323610c13565b3480156103e657600080fd5b50610323600e5481565b3480156103fc57600080fd5b506103237f000000000000000000000000000000000000000000000000000000000000000081565b34801561043057600080fd5b506103237f000000000000000000000000000000000000000000000000000000000000000081565b34801561046457600080fd5b50610323600581565b34801561047957600080fd5b506102ed610488366004613200565b610cdc565b34801561049957600080fd5b506102ed610d0d565b3480156104ae57600080fd5b506102ed6104bd366004613200565b610e07565b3480156104ce57600080fd5b506009546102b890610100900460ff1681565b3480156104ed57600080fd5b50610323600b5481565b34801561050357600080fd5b506103236105123660046131b2565b6001600160a01b031660009081526010602052604090205490565b34801561053957600080fd5b506103236105483660046133c7565b610e22565b34801561055957600080fd5b506103736105683660046133c7565b610f81565b34801561057957600080fd5b506103236105883660046131b2565b610ff8565b34801561059957600080fd5b506102ed61107f565b3480156105ae57600080fd5b506102ed6105bd3660046133c7565b6110b5565b3480156105ce57600080fd5b506102b86112b4565b6102ed6105e53660046133f9565b6112ec565b3480156105f657600080fd5b506105ff6116cf565b6040805192835263ffffffff9091166020830152016102c4565b34801561062557600080fd5b506007546001600160a01b0316610373565b34801561064357600080fd5b506102ed610652366004613322565b611940565b34801561066357600080fd5b506103466119c6565b34801561067857600080fd5b506103236106873660046131b2565b60106020526000908152604090205481565b6102ed6106a73660046133c7565b6119d5565b3480156106b857600080fd5b506102ed6106c73660046132a4565b611c84565b3480156106d857600080fd5b506103236126f581565b3480156106ee57600080fd5b506103237f000000000000000000000000000000000000000000000000000000000000000081565b34801561072257600080fd5b506102ed61073136600461323c565b611c8f565b34801561074257600080fd5b506103237f000000000000000000000000000000000000000000000000000000000000000081565b34801561077657600080fd5b506102ed6107853660046133c7565b611cc7565b34801561079657600080fd5b506103466107a53660046133c7565b611dbe565b3480156107b657600080fd5b507f0000000000000000000000000000000000000000000000000000000000000000610373565b3480156107e957600080fd5b506103237f000000000000000000000000000000000000000000000000000000000000000081565b34801561081d57600080fd5b506102ed61082c36600461337e565b611e99565b34801561083d57600080fd5b50610346612089565b34801561085257600080fd5b50610323612117565b34801561086757600080fd5b50610323612149565b34801561087c57600080fd5b506102b861088b3660046131cd565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108c557600080fd5b506102b86121ba565b3480156108da57600080fd5b506102ed6108e93660046131b2565b61220f565b3480156108fa57600080fd5b50610323601e81565b60006001600160e01b031982166380ac58cd60e01b148061093457506001600160e01b03198216635b5e139f60e01b145b8061094f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146109885760405162461bcd60e51b815260040161097f90613649565b60405180910390fd5b805161099b90600f90602084019061306c565b507f3d7a9962f6da134f6896430d6867bd08e3546dbf9570df877e7cec39ba4305f0816040516109cb9190613511565b60405180910390a150565b6060600180546109e5906138b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a11906138b8565b8015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610ae15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097f565b506000908152600560205260409020546001600160a01b031690565b6000610b0882610f81565b9050806001600160a01b0316836001600160a01b03161415610b765760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097f565b336001600160a01b0382161480610b925750610b92813361088b565b610c045760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097f565b610c0e83836122aa565b505050565b6007546000906001600160a01b03163314610c405760405162461bcd60e51b815260040161097f90613649565b6040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b158015610c9f57600080fd5b505afa158015610cb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd791906133e0565b905090565b610ce63382612318565b610d025760405162461bcd60e51b815260040161097f9061367e565b610c0e83838361240f565b6007546001600160a01b03163314610d375760405162461bcd60e51b815260040161097f90613649565b7f0000000000000000000000000000000000000000000000000000000000000000421015610d775760405162461bcd60e51b815260040161097f90613607565b60095460ff1615610dc55760405162461bcd60e51b815260206004820152601860248201527714dbdc9c9e4b081d1a19481cd85b19481a5cc8195b99195960421b604482015260640161097f565b6009805460ff191660011790556040513381527f3bf74796fb125ab3c0f1c7c4419d72af7311e2d12f7d55b6fe62f4dfdcc8f0339060200160405180910390a1565b610c0e83838360405180602001604052806000815250611c8f565b60007f0000000000000000000000000000000000000000000000000000000000000000421015610e645760405162461bcd60e51b815260040161097f90613607565b600082118015610e9457507f00000000000000000000000000000000000000000000000000000000000000008211155b610ed35760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a59081d1bdad95b88125960821b604482015260640161097f565b60095462010000900460ff16610efb5760405162461bcd60e51b815260040161097f90613717565b60006126f5600c54610f0d919061390e565b610f19846126f5613856565b610f23919061382a565b9050610f4f7f00000000000000000000000000000000000000000000000000000000000000008261390e565b905080610f7957507f00000000000000000000000000000000000000000000000000000000000000005b90505b919050565b6000818152600360205260408120546001600160a01b031680610f795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097f565b60006001600160a01b0382166110635760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097f565b506001600160a01b031660009081526004602052604090205490565b6007546001600160a01b031633146110a95760405162461bcd60e51b815260040161097f90613649565b6110b360006125af565b565b6007546001600160a01b031633146110df5760405162461bcd60e51b815260040161097f90613649565b600260085414156111025760405162461bcd60e51b815260040161097f906137f3565b6002600855806111245760405162461bcd60e51b815260040161097f906135c5565b6040516370a0823160e01b815230600482015281907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b15801561118557600080fd5b505afa158015611199573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bd91906133e0565b101561120b5760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f756768204c494e4b20746f6b656e7320617661696c61626c65604482015260640161097f565b60405163a9059cbb60e01b8152336004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb90604401602060405180830381600087803b15801561127357600080fd5b505af1158015611287573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ab9190613305565b50506001600855565b60007f00000000000000000000000000000000000000000000000000000000000000004210158015610cd757505060095460ff161590565b6002600854141561130f5760405162461bcd60e51b815260040161097f906137f3565b6002600855604080513360601b6bffffffffffffffffffffffff19166020808301919091524660348301526054808301879052835180840390910181526074830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a333200000000609484015260b0808401919091528351808403909101815260d090920190925280519101206000831180156113ae5750600084115b6113ca5760405162461bcd60e51b815260040161097f90613524565b7f00000000000000000000000000000000000000000000000000000000000000004210156114495760405162461bcd60e51b815260206004820152602660248201527f536f7272792c20746865207072652d73616c65206973206e6f742079657420736044820152651d185c9d195960d21b606482015260840161097f565b7f00000000000000000000000000000000000000000000000000000000000000004211156114b95760405162461bcd60e51b815260206004820152601c60248201527f536f7272792c20746865207072652d73616c6520697320656e64656400000000604482015260640161097f565b6114c38183612601565b61151d5760405162461bcd60e51b815260206004820152602560248201527f536f7272792c20796f7520617265206e6f7420612077686974656c6973746564604482015264103ab9b2b960d91b606482015260840161097f565b7f000000000000000000000000000000000000000000000000000000000000000083600b5461154c919061382a565b111561156a5760405162461bcd60e51b815260040161097f90613763565b34611595847f0000000000000000000000000000000000000000000000000000000000000000613856565b11156115b35760405162461bcd60e51b815260040161097f906136cf565b336115d05760405162461bcd60e51b815260040161097f906137b2565b3360009081526010602052604090205484906115ed90859061382a565b11156116595760405162461bcd60e51b815260206004820152603560248201527f536f7272792c63616e27742062652070757263686173656420617320657863656044820152741959081b585e1b48185b1b1bddd959081b1a5b5a5d605a1b606482015260840161097f565b60005b838110156116c35761166c612649565b61167833600a546126ca565b336000908152601060205260408120805491611693836138f3565b91905055506001600b60008282546116ab919061382a565b909155508190506116bb816138f3565b91505061165c565b50506001600855505050565b600080336001600160a01b03166116ee6007546001600160a01b031690565b6001600160a01b0316146117145760405162461bcd60e51b815260040161097f90613649565b7f00000000000000000000000000000000000000000000000000000000000000004210156117545760405162461bcd60e51b815260040161097f90613607565b60095460ff166117a65760405162461bcd60e51b815260206004820152601d60248201527f536f7272792c207468652073616c65206e6f742079657420656e646564000000604482015260640161097f565b60095462010000900460ff16156117ff5760405162461bcd60e51b815260206004820152601e60248201527f416c7265616479206f627461696e6564207468652072616e646f6d206e6f0000604482015260640161097f565b6040516370a0823160e01b8152306004820152671bc16d674ec80000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b15801561186857600080fd5b505afa15801561187c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a091906133e0565b10156118ee5760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f756768204c494e4b20746f6b656e7320617661696c61626c65604482015260640161097f565b600d54439061190590671bc16d674ec8000061280c565b600e81905560405133907ffb9e6931d074560e7cb254d248daf84079f54f66558a6ba8b9eccb9442a642ce90600090a3600e54925090509091565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146119b85760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c00604482015260640161097f565b6119c28282612992565b5050565b6060600280546109e5906138b8565b600260085414156119f85760405162461bcd60e51b815260040161097f906137f3565b600260085560095460ff1615611a4b5760405162461bcd60e51b815260206004820152601860248201527714dbdc9c9e4b081d1a19481cd85b19481a5cc8195b99195960421b604482015260640161097f565b7f0000000000000000000000000000000000000000000000000000000000000000421015611a8b5760405162461bcd60e51b815260040161097f90613607565b7f00000000000000000000000000000000000000000000000000000000000000004211611b065760405162461bcd60e51b8152602060048201526024808201527f536f7272792c20746865207072652d73616c65206973206e6f742079657420656044820152631b99195960e21b606482015260840161097f565b60008111611b265760405162461bcd60e51b815260040161097f90613524565b6005811115611b875760405162461bcd60e51b815260206004820152602760248201527f4c696d69742065786365656420746f20707572636861736520696e2073696e676044820152661b19481b5a5b9d60ca1b606482015260840161097f565b7f000000000000000000000000000000000000000000000000000000000000000081600b54611bb6919061382a565b1115611bd45760405162461bcd60e51b815260040161097f90613763565b34611bff827f0000000000000000000000000000000000000000000000000000000000000000613856565b1115611c1d5760405162461bcd60e51b815260040161097f906136cf565b33611c3a5760405162461bcd60e51b815260040161097f906137b2565b60005b818110156112ab57611c4d612649565b611c5933600a546126ca565b6001600b6000828254611c6c919061382a565b90915550819050611c7c816138f3565b915050611c3d565b6119c23383836129e8565b611c993383612318565b611cb55760405162461bcd60e51b815260040161097f9061367e565b611cc184848484612ab7565b50505050565b6007546001600160a01b03163314611cf15760405162461bcd60e51b815260040161097f90613649565b60026008541415611d145760405162461bcd60e51b815260040161097f906137f3565b600260085580611d365760405162461bcd60e51b815260040161097f906135c5565b80471015611d915760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f756768206574682062616c616e636520746f20776974686472604482015261617760f01b606482015260840161097f565b604051339082156108fc029083906000818181858888f193505050501580156112ab573d6000803e3d6000fd5b6000818152600360205260409020546060906001600160a01b0316611e3d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161097f565b6000611e47612aea565b90506000815111611e675760405180602001604052806000815250611e92565b80611e7184612af9565b604051602001611e82929190613475565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611ec35760405162461bcd60e51b815260040161097f90613649565b7f0000000000000000000000000000000000000000000000000000000000000000421015611f035760405162461bcd60e51b815260040161097f90613607565b60095460ff16611f555760405162461bcd60e51b815260206004820152601d60248201527f536f7272792c207468652073616c65206e6f742079657420656e646564000000604482015260640161097f565b60095462010000900460ff16611fb95760405162461bcd60e51b8152602060048201526024808201527f52616e646f6d20656e74726f707920686173206e6f74206265656e206173736960448201526319db995960e21b606482015260840161097f565b600954610100900460ff16156120045760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481c995d99585b195960821b604482015260640161097f565b6009805461ff001916610100179055805161202690600f90602084019061306c565b506040514281527f5d9f916a9a2e7f5c0c1bc09b661f04bbc60a7f742cafa1e7f1a9a4db055c4d399060200160405180910390a17f3d7a9962f6da134f6896430d6867bd08e3546dbf9570df877e7cec39ba4305f0816040516109cb9190613511565b600f8054612096906138b8565b80601f01602080910402602001604051908101604052809291908181526020018280546120c2906138b8565b801561210f5780601f106120e45761010080835404028352916020019161210f565b820191906000526020600020905b8154815290600101906020018083116120f257829003601f168201915b505050505081565b6007546000906001600160a01b031633146121445760405162461bcd60e51b815260040161097f90613649565b504790565b60007f000000000000000000000000000000000000000000000000000000000000000042101561218b5760405162461bcd60e51b815260040161097f90613607565b60095462010000900460ff166121b35760405162461bcd60e51b815260040161097f90613717565b50600c5490565b60007f00000000000000000000000000000000000000000000000000000000000000004210158015610cd75750507f000000000000000000000000000000000000000000000000000000000000000042111590565b6007546001600160a01b031633146122395760405162461bcd60e51b815260040161097f90613649565b6001600160a01b03811661229e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097f565b6122a7816125af565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122df82610f81565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166123915760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097f565b600061239c83610f81565b9050806001600160a01b0316846001600160a01b031614806123d75750836001600160a01b03166123cc84610a68565b6001600160a01b0316145b8061240757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661242282610f81565b6001600160a01b03161461248a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161097f565b6001600160a01b0382166124ec5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097f565b6124f76000826122aa565b6001600160a01b0383166000908152600460205260408120805460019290612520908490613875565b90915550506001600160a01b038216600090815260046020526040812080546001929061254e90849061382a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061260d8383612bf7565b6001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614905092915050565b7f0000000000000000000000000000000000000000000000000000000000000000600a54106126b35760405162461bcd60e51b81526020600482015260166024820152751d1bdad95b881259081b1a5b5a5d081c995858da195960521b604482015260640161097f565b600a80549060006126c3836138f3565b9190505550565b6001600160a01b0382166127205760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097f565b6000818152600360205260409020546001600160a01b0316156127855760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097f565b6001600160a01b03821660009081526004602052604081208054600192906127ae90849061382a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634000aea07f00000000000000000000000000000000000000000000000000000000000000008486600060405160200161287c929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b81526004016128a9939291906134e1565b602060405180830381600087803b1580156128c357600080fd5b505af11580156128d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128fb9190613305565b5060008381526020818152604080832054815180840188905280830185905230606082015260808082018390528351808303909101815260a09091019092528151918301919091208684529290915261295590600161382a565b6000858152602081815260409182902092909255805180830187905280820184905281518082038301815260609091019091528051910120612407565b600c8190556009805462ff000019166201000017905560405182907ffb6cd07fbeb11b44106860d622b9f060079f790fa9ee013da16efb6e9b5b167f906129dc9084815260200190565b60405180910390a25050565b816001600160a01b0316836001600160a01b03161415612a4a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097f565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612ac284848461240f565b612ace84848484612c1b565b611cc15760405162461bcd60e51b815260040161097f90613573565b6060600f80546109e5906138b8565b606081612b1d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b475780612b31816138f3565b9150612b409050600a83613842565b9150612b21565b60008167ffffffffffffffff811115612b6257612b6261397a565b6040519080825280601f01601f191660200182016040528015612b8c576020820181803683370190505b5090505b841561240757612ba1600183613875565b9150612bae600a8661390e565b612bb990603061382a565b60f81b818381518110612bce57612bce613964565b60200101906001600160f81b031916908160001a905350612bf0600a86613842565b9450612b90565b6000806000612c068585612d25565b91509150612c1381612d95565b509392505050565b60006001600160a01b0384163b15612d1d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612c5f9033908990889088906004016134a4565b602060405180830381600087803b158015612c7957600080fd5b505af1925050508015612ca9575060408051601f3d908101601f19168201909252612ca691810190613361565b60015b612d03573d808015612cd7576040519150601f19603f3d011682016040523d82523d6000602084013e612cdc565b606091505b508051612cfb5760405162461bcd60e51b815260040161097f90613573565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612407565b506001612407565b600080825160411415612d5c5760208301516040840151606085015160001a612d5087828585612f50565b94509450505050612d8e565b825160401415612d865760208301516040840151612d7b86838361303d565b935093505050612d8e565b506000905060025b9250929050565b6000816004811115612da957612da961394e565b1415612db25750565b6001816004811115612dc657612dc661394e565b1415612e145760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161097f565b6002816004811115612e2857612e2861394e565b1415612e765760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161097f565b6003816004811115612e8a57612e8a61394e565b1415612ee35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161097f565b6004816004811115612ef757612ef761394e565b14156122a75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161097f565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612f875750600090506003613034565b8460ff16601b14158015612f9f57508460ff16601c14155b15612fb05750600090506004613034565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613004573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661302d57600060019250925050613034565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161305e87828885612f50565b935093505050935093915050565b828054613078906138b8565b90600052602060002090601f01602090048101928261309a57600085556130e0565b82601f106130b357805160ff19168380011785556130e0565b828001600101855582156130e0579182015b828111156130e05782518255916020019190600101906130c5565b506130ec9291506130f0565b5090565b5b808211156130ec57600081556001016130f1565b600067ffffffffffffffff808411156131205761312061397a565b604051601f8501601f19908116603f011681019082821181831017156131485761314861397a565b8160405280935085815286868601111561316157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610f7c57600080fd5b600082601f8301126131a357600080fd5b611e9283833560208501613105565b6000602082840312156131c457600080fd5b611e928261317b565b600080604083850312156131e057600080fd5b6131e98361317b565b91506131f76020840161317b565b90509250929050565b60008060006060848603121561321557600080fd5b61321e8461317b565b925061322c6020850161317b565b9150604084013590509250925092565b6000806000806080858703121561325257600080fd5b61325b8561317b565b93506132696020860161317b565b925060408501359150606085013567ffffffffffffffff81111561328c57600080fd5b61329887828801613192565b91505092959194509250565b600080604083850312156132b757600080fd5b6132c08361317b565b915060208301356132d081613990565b809150509250929050565b600080604083850312156132ee57600080fd5b6132f78361317b565b946020939093013593505050565b60006020828403121561331757600080fd5b8151611e9281613990565b6000806040838503121561333557600080fd5b50508035926020909101359150565b60006020828403121561335657600080fd5b8135611e928161399e565b60006020828403121561337357600080fd5b8151611e928161399e565b60006020828403121561339057600080fd5b813567ffffffffffffffff8111156133a757600080fd5b8201601f810184136133b857600080fd5b61240784823560208401613105565b6000602082840312156133d957600080fd5b5035919050565b6000602082840312156133f257600080fd5b5051919050565b60008060006060848603121561340e57600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561343357600080fd5b61343f86828701613192565b9150509250925092565b6000815180845261346181602086016020860161388c565b601f01601f19169290920160200192915050565b6000835161348781846020880161388c565b83519083019061349b81836020880161388c565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134d790830184613449565b9695505050505050565b60018060a01b03841681528260208201526060604082015260006135086060830184613449565b95945050505050565b602081526000611e926020830184613449565b6020808252602f908201527f546f6b656e207175616e7469747920746f206d696e74206d757374206265206760408201526e7265746572207468656e207a65726f60881b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f416d6f756e742073686f756c642062652067726561746572207468656e207a65604082015261726f60f01b606082015260800190565b60208082526022908201527f536f7272792c207468652073616c65206973206e6f7420796574207374617274604082015261195960f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526028908201527f796f75206e65656420746f2070617920746865206d696e696d756d20746f6b656040820152673710383934b1b29760c11b606082015260800190565b6020808252602c908201527f506c65617365207761697420666f722072616e646f6d206e756d62657220746f60408201526b08189948185cdcda59db995960a21b606082015260800190565b6020808252602f908201527f536f7272792c2063616e2774206265207075726368617365642061732065786360408201526e32b2b21036b0bc1039bab838363c9760891b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000821982111561383d5761383d613922565b500190565b60008261385157613851613938565b500490565b600081600019048311821515161561387057613870613922565b500290565b60008282101561388757613887613922565b500390565b60005b838110156138a757818101518382015260200161388f565b83811115611cc15750506000910152565b600181811c908216806138cc57607f821691505b602082108114156138ed57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561390757613907613922565b5060010190565b60008261391d5761391d613938565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146122a757600080fd5b6001600160e01b0319811681146122a757600080fdfea26469706673582212206856682672a799b14800e80cbf8f12b186421019167e37dd322c4c50aacaae6264736f6c63430008070033000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000008e1bc9bf04000000000000000000000000000000000000000000000000000000000000000022b80000000000000000000000000000000000000000000000000000000061bcfa500000000000000000000000000000000000000000000000000000000000015180000000000000000000000000b85f3cc902ee7b1be923439af141c606b708513b000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f626c757072696e742e78797a2f6170692f76312f70726552657665616c2f0000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102935760003560e01c80638644fdd01161015a578063c311d049116100c1578063d8a409531161007a578063d8a4095314610846578063dbdff2c11461085b578063e985e9c514610870578063f21852d0146108b9578063f2fde38b146108ce578063f7bc596d146108ee57600080fd5b8063c311d0491461076a578063c87b56dd1461078a578063ca30e603146107aa578063cce29ea7146107dd578063d50cf08e14610811578063d547cfb71461083157600080fd5b8063a0712d6811610113578063a0712d6814610699578063a22cb465146106ac578063af2cfb00146106cc578063b36c1284146106e2578063b88d4fde14610716578063bdb4b8481461073657600080fd5b80638644fdd0146105d75780638678a7b2146105ea5780638da5cb5b1461061957806394985ddd1461063757806395d89b41146106575780639bf803161461066c57600080fd5b806323b872dd116101fe57806361f547fd116101b757806361f547fd1461052d5780636352211e1461054d57806370a082311461056d578063715018a61461058d5780637a8042bd146105a257806386233071146105c257600080fd5b806323b872dd1461046d578063380d831b1461048d57806342842e0e146104a257806351830227146104c257806359a7715a146104e15780635ce7af1f146104f757600080fd5b806312fa6feb1161025057806312fa6feb146103ab578063136d6ea5146103c557806318a7ea5f146103da5780631bd16dbf146103f05780631cbaee2d146104245780631e9dc7af1461045857600080fd5b806301ffc9a71461029857806302fe5305146102cd57806306d65af3146102ef57806306fdde0314610331578063081812fc14610353578063095ea7b31461038b575b600080fd5b3480156102a457600080fd5b506102b86102b3366004613344565b610903565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e836600461337e565b610955565b005b3480156102fb57600080fd5b506103237f0000000000000000000000000000000000000000000000000000000061bcfa5081565b6040519081526020016102c4565b34801561033d57600080fd5b506103466109d6565b6040516102c49190613511565b34801561035f57600080fd5b5061037361036e3660046133c7565b610a68565b6040516001600160a01b0390911681526020016102c4565b34801561039757600080fd5b506102ed6103a63660046132db565b610afd565b3480156103b757600080fd5b506009546102b89060ff1681565b3480156103d157600080fd5b50610323610c13565b3480156103e657600080fd5b50610323600e5481565b3480156103fc57600080fd5b506103237f000000000000000000000000000000000000000000000000000000000001518081565b34801561043057600080fd5b506103237f0000000000000000000000000000000000000000000000000000000061be4bee81565b34801561046457600080fd5b50610323600581565b34801561047957600080fd5b506102ed610488366004613200565b610cdc565b34801561049957600080fd5b506102ed610d0d565b3480156104ae57600080fd5b506102ed6104bd366004613200565b610e07565b3480156104ce57600080fd5b506009546102b890610100900460ff1681565b3480156104ed57600080fd5b50610323600b5481565b34801561050357600080fd5b506103236105123660046131b2565b6001600160a01b031660009081526010602052604090205490565b34801561053957600080fd5b506103236105483660046133c7565b610e22565b34801561055957600080fd5b506103736105683660046133c7565b610f81565b34801561057957600080fd5b506103236105883660046131b2565b610ff8565b34801561059957600080fd5b506102ed61107f565b3480156105ae57600080fd5b506102ed6105bd3660046133c7565b6110b5565b3480156105ce57600080fd5b506102b86112b4565b6102ed6105e53660046133f9565b6112ec565b3480156105f657600080fd5b506105ff6116cf565b6040805192835263ffffffff9091166020830152016102c4565b34801561062557600080fd5b506007546001600160a01b0316610373565b34801561064357600080fd5b506102ed610652366004613322565b611940565b34801561066357600080fd5b506103466119c6565b34801561067857600080fd5b506103236106873660046131b2565b60106020526000908152604090205481565b6102ed6106a73660046133c7565b6119d5565b3480156106b857600080fd5b506102ed6106c73660046132a4565b611c84565b3480156106d857600080fd5b506103236126f581565b3480156106ee57600080fd5b506103237f00000000000000000000000000000000000000000000000000000000000022b881565b34801561072257600080fd5b506102ed61073136600461323c565b611c8f565b34801561074257600080fd5b506103237f000000000000000000000000000000000000000000000000008e1bc9bf04000081565b34801561077657600080fd5b506102ed6107853660046133c7565b611cc7565b34801561079657600080fd5b506103466107a53660046133c7565b611dbe565b3480156107b657600080fd5b507f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca610373565b3480156107e957600080fd5b506103237f0000000000000000000000000000000000000000000000000000000061be4bd081565b34801561081d57600080fd5b506102ed61082c36600461337e565b611e99565b34801561083d57600080fd5b50610346612089565b34801561085257600080fd5b50610323612117565b34801561086757600080fd5b50610323612149565b34801561087c57600080fd5b506102b861088b3660046131cd565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108c557600080fd5b506102b86121ba565b3480156108da57600080fd5b506102ed6108e93660046131b2565b61220f565b3480156108fa57600080fd5b50610323601e81565b60006001600160e01b031982166380ac58cd60e01b148061093457506001600160e01b03198216635b5e139f60e01b145b8061094f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146109885760405162461bcd60e51b815260040161097f90613649565b60405180910390fd5b805161099b90600f90602084019061306c565b507f3d7a9962f6da134f6896430d6867bd08e3546dbf9570df877e7cec39ba4305f0816040516109cb9190613511565b60405180910390a150565b6060600180546109e5906138b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a11906138b8565b8015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610ae15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097f565b506000908152600560205260409020546001600160a01b031690565b6000610b0882610f81565b9050806001600160a01b0316836001600160a01b03161415610b765760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097f565b336001600160a01b0382161480610b925750610b92813361088b565b610c045760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097f565b610c0e83836122aa565b505050565b6007546000906001600160a01b03163314610c405760405162461bcd60e51b815260040161097f90613649565b6040516370a0823160e01b81523060048201527f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316906370a082319060240160206040518083038186803b158015610c9f57600080fd5b505afa158015610cb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd791906133e0565b905090565b610ce63382612318565b610d025760405162461bcd60e51b815260040161097f9061367e565b610c0e83838361240f565b6007546001600160a01b03163314610d375760405162461bcd60e51b815260040161097f90613649565b7f0000000000000000000000000000000000000000000000000000000061be4bee421015610d775760405162461bcd60e51b815260040161097f90613607565b60095460ff1615610dc55760405162461bcd60e51b815260206004820152601860248201527714dbdc9c9e4b081d1a19481cd85b19481a5cc8195b99195960421b604482015260640161097f565b6009805460ff191660011790556040513381527f3bf74796fb125ab3c0f1c7c4419d72af7311e2d12f7d55b6fe62f4dfdcc8f0339060200160405180910390a1565b610c0e83838360405180602001604052806000815250611c8f565b60007f0000000000000000000000000000000000000000000000000000000061be4bee421015610e645760405162461bcd60e51b815260040161097f90613607565b600082118015610e9457507f00000000000000000000000000000000000000000000000000000000000022b88211155b610ed35760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a59081d1bdad95b88125960821b604482015260640161097f565b60095462010000900460ff16610efb5760405162461bcd60e51b815260040161097f90613717565b60006126f5600c54610f0d919061390e565b610f19846126f5613856565b610f23919061382a565b9050610f4f7f00000000000000000000000000000000000000000000000000000000000022b88261390e565b905080610f7957507f00000000000000000000000000000000000000000000000000000000000022b85b90505b919050565b6000818152600360205260408120546001600160a01b031680610f795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097f565b60006001600160a01b0382166110635760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097f565b506001600160a01b031660009081526004602052604090205490565b6007546001600160a01b031633146110a95760405162461bcd60e51b815260040161097f90613649565b6110b360006125af565b565b6007546001600160a01b031633146110df5760405162461bcd60e51b815260040161097f90613649565b600260085414156111025760405162461bcd60e51b815260040161097f906137f3565b6002600855806111245760405162461bcd60e51b815260040161097f906135c5565b6040516370a0823160e01b815230600482015281907f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316906370a082319060240160206040518083038186803b15801561118557600080fd5b505afa158015611199573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bd91906133e0565b101561120b5760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f756768204c494e4b20746f6b656e7320617661696c61626c65604482015260640161097f565b60405163a9059cbb60e01b8152336004820152602481018290527f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b03169063a9059cbb90604401602060405180830381600087803b15801561127357600080fd5b505af1158015611287573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ab9190613305565b50506001600855565b60007f0000000000000000000000000000000000000000000000000000000061be4bee4210158015610cd757505060095460ff161590565b6002600854141561130f5760405162461bcd60e51b815260040161097f906137f3565b6002600855604080513360601b6bffffffffffffffffffffffff19166020808301919091524660348301526054808301879052835180840390910181526074830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a333200000000609484015260b0808401919091528351808403909101815260d090920190925280519101206000831180156113ae5750600084115b6113ca5760405162461bcd60e51b815260040161097f90613524565b7f0000000000000000000000000000000000000000000000000000000061bcfa504210156114495760405162461bcd60e51b815260206004820152602660248201527f536f7272792c20746865207072652d73616c65206973206e6f742079657420736044820152651d185c9d195960d21b606482015260840161097f565b7f0000000000000000000000000000000000000000000000000000000061be4bd04211156114b95760405162461bcd60e51b815260206004820152601c60248201527f536f7272792c20746865207072652d73616c6520697320656e64656400000000604482015260640161097f565b6114c38183612601565b61151d5760405162461bcd60e51b815260206004820152602560248201527f536f7272792c20796f7520617265206e6f7420612077686974656c6973746564604482015264103ab9b2b960d91b606482015260840161097f565b7f00000000000000000000000000000000000000000000000000000000000022b883600b5461154c919061382a565b111561156a5760405162461bcd60e51b815260040161097f90613763565b34611595847f000000000000000000000000000000000000000000000000008e1bc9bf040000613856565b11156115b35760405162461bcd60e51b815260040161097f906136cf565b336115d05760405162461bcd60e51b815260040161097f906137b2565b3360009081526010602052604090205484906115ed90859061382a565b11156116595760405162461bcd60e51b815260206004820152603560248201527f536f7272792c63616e27742062652070757263686173656420617320657863656044820152741959081b585e1b48185b1b1bddd959081b1a5b5a5d605a1b606482015260840161097f565b60005b838110156116c35761166c612649565b61167833600a546126ca565b336000908152601060205260408120805491611693836138f3565b91905055506001600b60008282546116ab919061382a565b909155508190506116bb816138f3565b91505061165c565b50506001600855505050565b600080336001600160a01b03166116ee6007546001600160a01b031690565b6001600160a01b0316146117145760405162461bcd60e51b815260040161097f90613649565b7f0000000000000000000000000000000000000000000000000000000061be4bee4210156117545760405162461bcd60e51b815260040161097f90613607565b60095460ff166117a65760405162461bcd60e51b815260206004820152601d60248201527f536f7272792c207468652073616c65206e6f742079657420656e646564000000604482015260640161097f565b60095462010000900460ff16156117ff5760405162461bcd60e51b815260206004820152601e60248201527f416c7265616479206f627461696e6564207468652072616e646f6d206e6f0000604482015260640161097f565b6040516370a0823160e01b8152306004820152671bc16d674ec80000907f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316906370a082319060240160206040518083038186803b15801561186857600080fd5b505afa15801561187c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a091906133e0565b10156118ee5760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f756768204c494e4b20746f6b656e7320617661696c61626c65604482015260640161097f565b600d54439061190590671bc16d674ec8000061280c565b600e81905560405133907ffb9e6931d074560e7cb254d248daf84079f54f66558a6ba8b9eccb9442a642ce90600090a3600e54925090509091565b336001600160a01b037f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795216146119b85760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c00604482015260640161097f565b6119c28282612992565b5050565b6060600280546109e5906138b8565b600260085414156119f85760405162461bcd60e51b815260040161097f906137f3565b600260085560095460ff1615611a4b5760405162461bcd60e51b815260206004820152601860248201527714dbdc9c9e4b081d1a19481cd85b19481a5cc8195b99195960421b604482015260640161097f565b7f0000000000000000000000000000000000000000000000000000000061be4bee421015611a8b5760405162461bcd60e51b815260040161097f90613607565b7f0000000000000000000000000000000000000000000000000000000061be4bd04211611b065760405162461bcd60e51b8152602060048201526024808201527f536f7272792c20746865207072652d73616c65206973206e6f742079657420656044820152631b99195960e21b606482015260840161097f565b60008111611b265760405162461bcd60e51b815260040161097f90613524565b6005811115611b875760405162461bcd60e51b815260206004820152602760248201527f4c696d69742065786365656420746f20707572636861736520696e2073696e676044820152661b19481b5a5b9d60ca1b606482015260840161097f565b7f00000000000000000000000000000000000000000000000000000000000022b881600b54611bb6919061382a565b1115611bd45760405162461bcd60e51b815260040161097f90613763565b34611bff827f000000000000000000000000000000000000000000000000008e1bc9bf040000613856565b1115611c1d5760405162461bcd60e51b815260040161097f906136cf565b33611c3a5760405162461bcd60e51b815260040161097f906137b2565b60005b818110156112ab57611c4d612649565b611c5933600a546126ca565b6001600b6000828254611c6c919061382a565b90915550819050611c7c816138f3565b915050611c3d565b6119c23383836129e8565b611c993383612318565b611cb55760405162461bcd60e51b815260040161097f9061367e565b611cc184848484612ab7565b50505050565b6007546001600160a01b03163314611cf15760405162461bcd60e51b815260040161097f90613649565b60026008541415611d145760405162461bcd60e51b815260040161097f906137f3565b600260085580611d365760405162461bcd60e51b815260040161097f906135c5565b80471015611d915760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f756768206574682062616c616e636520746f20776974686472604482015261617760f01b606482015260840161097f565b604051339082156108fc029083906000818181858888f193505050501580156112ab573d6000803e3d6000fd5b6000818152600360205260409020546060906001600160a01b0316611e3d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161097f565b6000611e47612aea565b90506000815111611e675760405180602001604052806000815250611e92565b80611e7184612af9565b604051602001611e82929190613475565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611ec35760405162461bcd60e51b815260040161097f90613649565b7f0000000000000000000000000000000000000000000000000000000061be4bee421015611f035760405162461bcd60e51b815260040161097f90613607565b60095460ff16611f555760405162461bcd60e51b815260206004820152601d60248201527f536f7272792c207468652073616c65206e6f742079657420656e646564000000604482015260640161097f565b60095462010000900460ff16611fb95760405162461bcd60e51b8152602060048201526024808201527f52616e646f6d20656e74726f707920686173206e6f74206265656e206173736960448201526319db995960e21b606482015260840161097f565b600954610100900460ff16156120045760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481c995d99585b195960821b604482015260640161097f565b6009805461ff001916610100179055805161202690600f90602084019061306c565b506040514281527f5d9f916a9a2e7f5c0c1bc09b661f04bbc60a7f742cafa1e7f1a9a4db055c4d399060200160405180910390a17f3d7a9962f6da134f6896430d6867bd08e3546dbf9570df877e7cec39ba4305f0816040516109cb9190613511565b600f8054612096906138b8565b80601f01602080910402602001604051908101604052809291908181526020018280546120c2906138b8565b801561210f5780601f106120e45761010080835404028352916020019161210f565b820191906000526020600020905b8154815290600101906020018083116120f257829003601f168201915b505050505081565b6007546000906001600160a01b031633146121445760405162461bcd60e51b815260040161097f90613649565b504790565b60007f0000000000000000000000000000000000000000000000000000000061be4bee42101561218b5760405162461bcd60e51b815260040161097f90613607565b60095462010000900460ff166121b35760405162461bcd60e51b815260040161097f90613717565b50600c5490565b60007f0000000000000000000000000000000000000000000000000000000061bcfa504210158015610cd75750507f0000000000000000000000000000000000000000000000000000000061be4bd042111590565b6007546001600160a01b031633146122395760405162461bcd60e51b815260040161097f90613649565b6001600160a01b03811661229e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097f565b6122a7816125af565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122df82610f81565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166123915760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097f565b600061239c83610f81565b9050806001600160a01b0316846001600160a01b031614806123d75750836001600160a01b03166123cc84610a68565b6001600160a01b0316145b8061240757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661242282610f81565b6001600160a01b03161461248a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161097f565b6001600160a01b0382166124ec5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097f565b6124f76000826122aa565b6001600160a01b0383166000908152600460205260408120805460019290612520908490613875565b90915550506001600160a01b038216600090815260046020526040812080546001929061254e90849061382a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061260d8383612bf7565b6001600160a01b03167f000000000000000000000000b85f3cc902ee7b1be923439af141c606b708513b6001600160a01b031614905092915050565b7f00000000000000000000000000000000000000000000000000000000000022b8600a54106126b35760405162461bcd60e51b81526020600482015260166024820152751d1bdad95b881259081b1a5b5a5d081c995858da195960521b604482015260640161097f565b600a80549060006126c3836138f3565b9190505550565b6001600160a01b0382166127205760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097f565b6000818152600360205260409020546001600160a01b0316156127855760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097f565b6001600160a01b03821660009081526004602052604081208054600192906127ae90849061382a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79528486600060405160200161287c929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b81526004016128a9939291906134e1565b602060405180830381600087803b1580156128c357600080fd5b505af11580156128d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128fb9190613305565b5060008381526020818152604080832054815180840188905280830185905230606082015260808082018390528351808303909101815260a09091019092528151918301919091208684529290915261295590600161382a565b6000858152602081815260409182902092909255805180830187905280820184905281518082038301815260609091019091528051910120612407565b600c8190556009805462ff000019166201000017905560405182907ffb6cd07fbeb11b44106860d622b9f060079f790fa9ee013da16efb6e9b5b167f906129dc9084815260200190565b60405180910390a25050565b816001600160a01b0316836001600160a01b03161415612a4a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097f565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612ac284848461240f565b612ace84848484612c1b565b611cc15760405162461bcd60e51b815260040161097f90613573565b6060600f80546109e5906138b8565b606081612b1d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b475780612b31816138f3565b9150612b409050600a83613842565b9150612b21565b60008167ffffffffffffffff811115612b6257612b6261397a565b6040519080825280601f01601f191660200182016040528015612b8c576020820181803683370190505b5090505b841561240757612ba1600183613875565b9150612bae600a8661390e565b612bb990603061382a565b60f81b818381518110612bce57612bce613964565b60200101906001600160f81b031916908160001a905350612bf0600a86613842565b9450612b90565b6000806000612c068585612d25565b91509150612c1381612d95565b509392505050565b60006001600160a01b0384163b15612d1d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612c5f9033908990889088906004016134a4565b602060405180830381600087803b158015612c7957600080fd5b505af1925050508015612ca9575060408051601f3d908101601f19168201909252612ca691810190613361565b60015b612d03573d808015612cd7576040519150601f19603f3d011682016040523d82523d6000602084013e612cdc565b606091505b508051612cfb5760405162461bcd60e51b815260040161097f90613573565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612407565b506001612407565b600080825160411415612d5c5760208301516040840151606085015160001a612d5087828585612f50565b94509450505050612d8e565b825160401415612d865760208301516040840151612d7b86838361303d565b935093505050612d8e565b506000905060025b9250929050565b6000816004811115612da957612da961394e565b1415612db25750565b6001816004811115612dc657612dc661394e565b1415612e145760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161097f565b6002816004811115612e2857612e2861394e565b1415612e765760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161097f565b6003816004811115612e8a57612e8a61394e565b1415612ee35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161097f565b6004816004811115612ef757612ef761394e565b14156122a75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161097f565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612f875750600090506003613034565b8460ff16601b14158015612f9f57508460ff16601c14155b15612fb05750600090506004613034565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613004573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661302d57600060019250925050613034565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161305e87828885612f50565b935093505050935093915050565b828054613078906138b8565b90600052602060002090601f01602090048101928261309a57600085556130e0565b82601f106130b357805160ff19168380011785556130e0565b828001600101855582156130e0579182015b828111156130e05782518255916020019190600101906130c5565b506130ec9291506130f0565b5090565b5b808211156130ec57600081556001016130f1565b600067ffffffffffffffff808411156131205761312061397a565b604051601f8501601f19908116603f011681019082821181831017156131485761314861397a565b8160405280935085815286868601111561316157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610f7c57600080fd5b600082601f8301126131a357600080fd5b611e9283833560208501613105565b6000602082840312156131c457600080fd5b611e928261317b565b600080604083850312156131e057600080fd5b6131e98361317b565b91506131f76020840161317b565b90509250929050565b60008060006060848603121561321557600080fd5b61321e8461317b565b925061322c6020850161317b565b9150604084013590509250925092565b6000806000806080858703121561325257600080fd5b61325b8561317b565b93506132696020860161317b565b925060408501359150606085013567ffffffffffffffff81111561328c57600080fd5b61329887828801613192565b91505092959194509250565b600080604083850312156132b757600080fd5b6132c08361317b565b915060208301356132d081613990565b809150509250929050565b600080604083850312156132ee57600080fd5b6132f78361317b565b946020939093013593505050565b60006020828403121561331757600080fd5b8151611e9281613990565b6000806040838503121561333557600080fd5b50508035926020909101359150565b60006020828403121561335657600080fd5b8135611e928161399e565b60006020828403121561337357600080fd5b8151611e928161399e565b60006020828403121561339057600080fd5b813567ffffffffffffffff8111156133a757600080fd5b8201601f810184136133b857600080fd5b61240784823560208401613105565b6000602082840312156133d957600080fd5b5035919050565b6000602082840312156133f257600080fd5b5051919050565b60008060006060848603121561340e57600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561343357600080fd5b61343f86828701613192565b9150509250925092565b6000815180845261346181602086016020860161388c565b601f01601f19169290920160200192915050565b6000835161348781846020880161388c565b83519083019061349b81836020880161388c565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134d790830184613449565b9695505050505050565b60018060a01b03841681528260208201526060604082015260006135086060830184613449565b95945050505050565b602081526000611e926020830184613449565b6020808252602f908201527f546f6b656e207175616e7469747920746f206d696e74206d757374206265206760408201526e7265746572207468656e207a65726f60881b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f416d6f756e742073686f756c642062652067726561746572207468656e207a65604082015261726f60f01b606082015260800190565b60208082526022908201527f536f7272792c207468652073616c65206973206e6f7420796574207374617274604082015261195960f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526028908201527f796f75206e65656420746f2070617920746865206d696e696d756d20746f6b656040820152673710383934b1b29760c11b606082015260800190565b6020808252602c908201527f506c65617365207761697420666f722072616e646f6d206e756d62657220746f60408201526b08189948185cdcda59db995960a21b606082015260800190565b6020808252602f908201527f536f7272792c2063616e2774206265207075726368617365642061732065786360408201526e32b2b21036b0bc1039bab838363c9760891b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000821982111561383d5761383d613922565b500190565b60008261385157613851613938565b500490565b600081600019048311821515161561387057613870613922565b500290565b60008282101561388757613887613922565b500390565b60005b838110156138a757818101518382015260200161388f565b83811115611cc15750506000910152565b600181811c908216806138cc57607f821691505b602082108114156138ed57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561390757613907613922565b5060010190565b60008261391d5761391d613938565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146122a757600080fd5b6001600160e01b0319811681146122a757600080fdfea26469706673582212206856682672a799b14800e80cbf8f12b186421019167e37dd322c4c50aacaae6264736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000008e1bc9bf04000000000000000000000000000000000000000000000000000000000000000022b80000000000000000000000000000000000000000000000000000000061bcfa500000000000000000000000000000000000000000000000000000000000015180000000000000000000000000b85f3cc902ee7b1be923439af141c606b708513b000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f626c757072696e742e78797a2f6170692f76312f70726552657665616c2f0000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _vrfCoordinator (address): 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952
Arg [1] : _link (address): 0x514910771AF9Ca656af840dff83E8264EcF986CA
Arg [2] : _keyHash (bytes32): 0xaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [3] : _metadataBaseUri (string): https://bluprint.xyz/api/v1/preReveal/
Arg [4] : _mintCost (uint256): 40000000000000000
Arg [5] : _maxSuppply (uint256): 8888
Arg [6] : _preSaleStartTime (uint256): 1639774800
Arg [7] : _preSaleDuration (uint256): 86400
Arg [8] : _signerAddress (address): 0xb85f3cC902Ee7B1be923439af141c606b708513B
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952
Arg [1] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca
Arg [2] : aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 000000000000000000000000000000000000000000000000008e1bc9bf040000
Arg [5] : 00000000000000000000000000000000000000000000000000000000000022b8
Arg [6] : 0000000000000000000000000000000000000000000000000000000061bcfa50
Arg [7] : 0000000000000000000000000000000000000000000000000000000000015180
Arg [8] : 000000000000000000000000b85f3cc902ee7b1be923439af141c606b708513b
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [10] : 68747470733a2f2f626c757072696e742e78797a2f6170692f76312f70726552
Arg [11] : 657665616c2f0000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
67746:9272:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55222:305;;;;;;;;;;-1:-1:-1;55222:305:0;;;;;:::i;:::-;;:::i;:::-;;;8533:14:1;;8526:22;8508:41;;8496:2;8481:18;55222:305:0;;;;;;;;75809:118;;;;;;;;;;-1:-1:-1;75809:118:0;;;;;:::i;:::-;;:::i;:::-;;68140:41;;;;;;;;;;;;;;;;;;8706:25:1;;;8694:2;8679:18;68140:41:0;8560:177:1;56167:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57726:221::-;;;;;;;;;;-1:-1:-1;57726:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7162:32:1;;;7144:51;;7132:2;7117:18;57726:221:0;6998:203:1;57249:411:0;;;;;;;;;;-1:-1:-1;57249:411:0;;;;;:::i;:::-;;:::i;67946:25::-;;;;;;;;;;-1:-1:-1;67946:25:0;;;;;;;;76171:122;;;;;;;;;;;;;:::i;68681:27::-;;;;;;;;;;;;;;;;68234:40;;;;;;;;;;;;;;;68095:38;;;;;;;;;;;;;;;68339:43;;;;;;;;;;;;68381:1;68339:43;;58476:339;;;;;;;;;;-1:-1:-1;58476:339:0;;;;;:::i;:::-;;:::i;73749:131::-;;;;;;;;;;;;;:::i;58886:185::-;;;;;;;;;;-1:-1:-1;58886:185:0;;;;;:::i;:::-;;:::i;67978:28::-;;;;;;;;;;-1:-1:-1;67978:28:0;;;;;;;;;;;68475;;;;;;;;;;;;;;;;72521:130;;;;;;;;;;-1:-1:-1;72521:130:0;;;;;:::i;:::-;-1:-1:-1;;;;;72616:27:0;72589:7;72616:27;;;:21;:27;;;;;;;72521:130;74987:454;;;;;;;;;;-1:-1:-1;74987:454:0;;;;;:::i;:::-;;:::i;55861:239::-;;;;;;;;;;-1:-1:-1;55861:239:0;;;;;:::i;:::-;;:::i;55591:208::-;;;;;;;;;;-1:-1:-1;55591:208:0;;;;;:::i;:::-;;:::i;36587:94::-;;;;;;;;;;;;;:::i;76707:302::-;;;;;;;;;;-1:-1:-1;76707:302:0;;;;;:::i;:::-;;:::i;72821:127::-;;;;;;;;;;;;;:::i;71229:1284::-;;;;;;:::i;:::-;;:::i;73892:489::-;;;;;;;;;;;;;:::i;:::-;;;;9589:25:1;;;9662:10;9650:23;;;9645:2;9630:18;;9623:51;9562:18;73892:489:0;9417:263:1;35936:87:0;;;;;;;;;;-1:-1:-1;36009:6:0;;-1:-1:-1;;;;;36009:6:0;35936:87;;24832:233;;;;;;;;;;-1:-1:-1;24832:233:0;;;;;:::i;:::-;;:::i;56336:104::-;;;;;;;;;;;;;:::i;68754:56::-;;;;;;;;;;-1:-1:-1;68754:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;72956:785;;;;;;:::i;:::-;;:::i;58019:155::-;;;;;;;;;;-1:-1:-1;58019:155:0;;;;;:::i;:::-;;:::i;68510:45::-;;;;;;;;;;;;68551:4;68510:45;;68053:34;;;;;;;;;;;;;;;59142:328;;;;;;;;;;-1:-1:-1;59142:328:0;;;;;:::i;:::-;;:::i;68390:33::-;;;;;;;;;;;;;;;76301:289;;;;;;;;;;-1:-1:-1;76301:289:0;;;;;:::i;:::-;;:::i;56511:334::-;;;;;;;;;;-1:-1:-1;56511:334:0;;;;;:::i;:::-;;:::i;76602:97::-;;;;;;;;;;-1:-1:-1;76686:4:0;76602:97;;68188:39;;;;;;;;;;;;;;;74389:348;;;;;;;;;;-1:-1:-1;74389:348:0;;;;;:::i;:::-;;:::i;68721:26::-;;;;;;;;;;;;;:::i;76048:115::-;;;;;;;;;;;;;:::i;75449:198::-;;;;;;;;;;;;;:::i;58245:164::-;;;;;;;;;;-1:-1:-1;58245:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;58366:25:0;;;58342:4;58366:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;58245:164;72659:154;;;;;;;;;;;;;:::i;36836:192::-;;;;;;;;;;-1:-1:-1;36836:192:0;;;;;:::i;:::-;;:::i;68281:51::-;;;;;;;;;;;;68330:2;68281:51;;55222:305;55324:4;-1:-1:-1;;;;;;55361:40:0;;-1:-1:-1;;;55361:40:0;;:105;;-1:-1:-1;;;;;;;55418:48:0;;-1:-1:-1;;;55418:48:0;55361:105;:158;;;-1:-1:-1;;;;;;;;;;48100:40:0;;;55483:36;55341:178;55222:305;-1:-1:-1;;55222:305:0:o;75809:118::-;36009:6;;-1:-1:-1;;;;;36009:6:0;34804:10;36156:23;36148:68;;;;-1:-1:-1;;;36148:68:0;;;;;;;:::i;:::-;;;;;;;;;75875:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;75910:9;75914:4;75910:9;;;;;;:::i;:::-;;;;;;;;75809:118:::0;:::o;56167:100::-;56221:13;56254:5;56247:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56167:100;:::o;57726:221::-;57802:7;61069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;61069:16:0;57822:73;;;;-1:-1:-1;;;57822:73:0;;20675:2:1;57822:73:0;;;20657:21:1;20714:2;20694:18;;;20687:30;20753:34;20733:18;;;20726:62;-1:-1:-1;;;20804:18:1;;;20797:42;20856:19;;57822:73:0;20473:408:1;57822:73:0;-1:-1:-1;57915:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;57915:24:0;;57726:221::o;57249:411::-;57330:13;57346:23;57361:7;57346:14;:23::i;:::-;57330:39;;57394:5;-1:-1:-1;;;;;57388:11:0;:2;-1:-1:-1;;;;;57388:11:0;;;57380:57;;;;-1:-1:-1;;;57380:57:0;;22992:2:1;57380:57:0;;;22974:21:1;23031:2;23011:18;;;23004:30;23070:34;23050:18;;;23043:62;-1:-1:-1;;;23121:18:1;;;23114:31;23162:19;;57380:57:0;22790:397:1;57380:57:0;34804:10;-1:-1:-1;;;;;57472:21:0;;;;:62;;-1:-1:-1;57497:37:0;57514:5;34804:10;58245:164;:::i;57497:37::-;57450:168;;;;-1:-1:-1;;;57450:168:0;;17967:2:1;57450:168:0;;;17949:21:1;18006:2;17986:18;;;17979:30;18045:34;18025:18;;;18018:62;18116:26;18096:18;;;18089:54;18160:19;;57450:168:0;17765:420:1;57450:168:0;57631:21;57640:2;57644:7;57631:8;:21::i;:::-;57319:341;57249:411;;:::o;76171:122::-;36009:6;;76229:7;;-1:-1:-1;;;;;36009:6:0;34804:10;36156:23;36148:68;;;;-1:-1:-1;;;36148:68:0;;;;;;;:::i;:::-;76256:29:::1;::::0;-1:-1:-1;;;76256:29:0;;76279:4:::1;76256:29;::::0;::::1;7144:51:1::0;76256:4:0::1;-1:-1:-1::0;;;;;76256:14:0::1;::::0;::::1;::::0;7117:18:1;;76256:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;76249:36;;76171:122:::0;:::o;58476:339::-;58671:41;34804:10;58704:7;58671:18;:41::i;:::-;58663:103;;;;-1:-1:-1;;;58663:103:0;;;;;;;:::i;:::-;58779:28;58789:4;58795:2;58799:7;58779:9;:28::i;73749:131::-;36009:6;;-1:-1:-1;;;;;36009:6:0;34804:10;36156:23;36148:68;;;;-1:-1:-1;;;36148:68:0;;;;;;;:::i;:::-;69275:13:::1;69256:15;:32;;69248:79;;;;-1:-1:-1::0;;;69248:79:0::1;;;;;;;:::i;:::-;69049:5:::2;::::0;::::2;;69048:6;69040:43;;;::::0;-1:-1:-1;;;69040:43:0;;20322:2:1;69040:43:0::2;::::0;::::2;20304:21:1::0;20361:2;20341:18;;;20334:30;-1:-1:-1;;;20380:18:1;;;20373:54;20444:18;;69040:43:0::2;20120:348:1::0;69040:43:0::2;73823:5:::3;:12:::0;;-1:-1:-1;;73823:12:0::3;73831:4;73823:12;::::0;;73851:21:::3;::::0;73861:10:::3;7144:51:1::0;;73851:21:0::3;::::0;7132:2:1;7117:18;73851:21:0::3;;;;;;;73749:131::o:0;58886:185::-;59024:39;59041:4;59047:2;59051:7;59024:39;;;;;;;;;;;;:16;:39::i;74987:454::-;75059:7;69275:13;69256:15;:32;;69248:79;;;;-1:-1:-1;;;69248:79:0;;;;;;;:::i;:::-;75097:1:::1;75086:8;:12;:37;;;;;75114:9;75102:8;:21;;75086:37;75078:66;;;::::0;-1:-1:-1;;;75078:66:0;;23394:2:1;75078:66:0::1;::::0;::::1;23376:21:1::0;23433:2;23413:18;;;23406:30;-1:-1:-1;;;23452:18:1;;;23445:46;23508:18;;75078:66:0::1;23192:340:1::0;75078:66:0::1;75164:18;::::0;;;::::1;;;75155:77;;;;-1:-1:-1::0;;;75155:77:0::1;;;;;;;:::i;:::-;75245:15;68551:4;75293:12;;:29;;;;:::i;:::-;75263:25;75280:8:::0;68551:4:::1;75263:25;:::i;:::-;:60;;;;:::i;:::-;75245:78:::0;-1:-1:-1;75344:17:0::1;75352:9;75245:78:::0;75344:17:::1;:::i;:::-;75334:27:::0;-1:-1:-1;75375:12:0;75372:36:::1;;-1:-1:-1::0;75399:9:0::1;75372:36;75426:7:::0;-1:-1:-1;69338:1:0::1;74987:454:::0;;;:::o;55861:239::-;55933:7;55969:16;;;:7;:16;;;;;;-1:-1:-1;;;;;55969:16:0;56004:19;55996:73;;;;-1:-1:-1;;;55996:73:0;;18803:2:1;55996:73:0;;;18785:21:1;18842:2;18822:18;;;18815:30;18881:34;18861:18;;;18854:62;-1:-1:-1;;;18932:18:1;;;18925:39;18981:19;;55996:73:0;18601:405:1;55591:208:0;55663:7;-1:-1:-1;;;;;55691:19:0;;55683:74;;;;-1:-1:-1;;;55683:74:0;;18392:2:1;55683:74:0;;;18374:21:1;18431:2;18411:18;;;18404:30;18470:34;18450:18;;;18443:62;-1:-1:-1;;;18521:18:1;;;18514:40;18571:19;;55683:74:0;18190:406:1;55683:74:0;-1:-1:-1;;;;;;55775:16:0;;;;;:9;:16;;;;;;;55591:208::o;36587:94::-;36009:6;;-1:-1:-1;;;;;36009:6:0;34804:10;36156:23;36148:68;;;;-1:-1:-1;;;36148:68:0;;;;;;;:::i;:::-;36652:21:::1;36670:1;36652:9;:21::i;:::-;36587:94::o:0;76707:302::-;36009:6;;-1:-1:-1;;;;;36009:6:0;34804:10;36156:23;36148:68;;;;-1:-1:-1;;;36148:68:0;;;;;;;:::i;:::-;10753:1:::1;11349:7;;:19;;11341:63;;;;-1:-1:-1::0;;;11341:63:0::1;;;;;;;:::i;:::-;10753:1;11482:7;:18:::0;76799:11;76791:58:::2;;;;-1:-1:-1::0;;;76791:58:0::2;;;;;;;:::i;:::-;76868:29;::::0;-1:-1:-1;;;76868:29:0;;76891:4:::2;76868:29;::::0;::::2;7144:51:1::0;76901:7:0;;76868:4:::2;-1:-1:-1::0;;;;;76868:14:0::2;::::0;::::2;::::0;7117:18:1;;76868:29:0::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;;76860:85;;;::::0;-1:-1:-1;;;76860:85:0;;26970:2:1;76860:85:0::2;::::0;::::2;26952:21:1::0;;;26989:18;;;26982:30;27048:34;27028:18;;;27021:62;27100:18;;76860:85:0::2;26768:356:1::0;76860:85:0::2;76966:35;::::0;-1:-1:-1;;;76966:35:0;;76980:10:::2;76966:35;::::0;::::2;7873:51:1::0;7940:18;;;7933:34;;;76966:4:0::2;-1:-1:-1::0;;;;;76966:13:0::2;::::0;::::2;::::0;7846:18:1;;76966:35:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;10709:1:0::1;11661:7;:22:::0;76707:302::o;72821:127::-;72872:4;72916:13;72897:15;:32;;:42;;;;-1:-1:-1;;72934:5:0;;;;72933:6;;72821:127::o;71229:1284::-;10753:1;11349:7;;:19;;11341:63;;;;-1:-1:-1;;;11341:63:0;;;;;;;:::i;:::-;10753:1;11482:7;:18;70961:46;;;71395:10:::1;5727:2:1::0;5723:15;-1:-1:-1;;5719:53:1;70961:46:0;;;;5707:66:1;;;;71406:13:0::1;5789:12:1::0;;;5782:28;5826:12;;;;5819:28;;;70961:46:0;;;;;;;;;;5863:12:1;;;70961:46:0;;70951:57;;;;;;6855:66:1;70879:130:0;;;6843:79:1;6938:12;;;;6931:28;;;;70879:130:0;;;;;;;;;;6975:12:1;;;;70879:130:0;;;70869:151;;;;;71473:1:::1;71457:13;:17;:42;;;;;71498:1;71478:17;:21;71457:42;71449:101;;;;-1:-1:-1::0;;;71449:101:0::1;;;;;;;:::i;:::-;71588:16;71569:15;:35;;71561:86;;;::::0;-1:-1:-1;;;71561:86:0;;13681:2:1;71561:86:0::1;::::0;::::1;13663:21:1::0;13720:2;13700:18;;;13693:30;13759:34;13739:18;;;13732:62;-1:-1:-1;;;13810:18:1;;;13803:36;13856:19;;71561:86:0::1;13479:402:1::0;71561:86:0::1;71685:14;71666:15;:33;;71658:74;;;::::0;-1:-1:-1;;;71658:74:0;;21088:2:1;71658:74:0::1;::::0;::::1;21070:21:1::0;21127:2;21107:18;;;21100:30;21166;21146:18;;;21139:58;21214:18;;71658:74:0::1;20886:352:1::0;71658:74:0::1;71751:35;71770:4;71776:9;71751:18;:35::i;:::-;71743:85;;;::::0;-1:-1:-1;;;71743:85:0;;12868:2:1;71743:85:0::1;::::0;::::1;12850:21:1::0;12907:2;12887:18;;;12880:30;12946:34;12926:18;;;12919:62;-1:-1:-1;;;12997:18:1;;;12990:35;13042:19;;71743:85:0::1;12666:401:1::0;71743:85:0::1;71878:9;71860:13;71848:9;;:25;;;;:::i;:::-;71847:40;;71839:99;;;;-1:-1:-1::0;;;71839:99:0::1;;;;;;;:::i;:::-;71987:9;71958:24;71969:13:::0;71958:8:::1;:24;:::i;:::-;71957:39;;71949:91;;;;-1:-1:-1::0;;;71949:91:0::1;;;;;;;:::i;:::-;72059:10;72051:69;;;;-1:-1:-1::0;;;72051:69:0::1;;;;;;;:::i;:::-;72161:10;72139:33;::::0;;;:21:::1;:33;::::0;;;;;72193:17;;72139:49:::1;::::0;72175:13;;72139:49:::1;:::i;:::-;:71;;72131:137;;;::::0;-1:-1:-1;;;72131:137:0;;16737:2:1;72131:137:0::1;::::0;::::1;16719:21:1::0;16776:2;16756:18;;;16749:30;16815:34;16795:18;;;16788:62;-1:-1:-1;;;16866:18:1;;;16859:51;16927:19;;72131:137:0::1;16535:417:1::0;72131:137:0::1;72285:9;72281:225;72304:13;72300:1;:17;72281:225;;;72339:19;:17;:19::i;:::-;72373:33;72379:10;72391:14;;72373:5;:33::i;:::-;72443:10;72421:33;::::0;;;:21:::1;:33;::::0;;;;:35;;;::::1;::::0;::::1;:::i;:::-;;;;;;72492:1;72471:9;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;72319:3:0;;-1:-1:-1;72319:3:0::1;::::0;::::1;:::i;:::-;;;;72281:225;;;-1:-1:-1::0;;10709:1:0;11661:7;:22;-1:-1:-1;;;71229:1284:0:o;73892:489::-;73973:7;;34804:10;-1:-1:-1;;;;;36156:23:0;:7;36009:6;;-1:-1:-1;;;;;36009:6:0;;35936:87;36156:7;-1:-1:-1;;;;;36156:23:0;;36148:68;;;;-1:-1:-1;;;36148:68:0;;;;;;;:::i;:::-;69275:13:::1;69256:15;:32;;69248:79;;;;-1:-1:-1::0;;;69248:79:0::1;;;;;;;:::i;:::-;69149:5:::2;::::0;::::2;;69141:47;;;::::0;-1:-1:-1;;;69141:47:0;;14445:2:1;69141:47:0::2;::::0;::::2;14427:21:1::0;14484:2;14464:18;;;14457:30;14523:31;14503:18;;;14496:59;14572:18;;69141:47:0::2;14243:353:1::0;69141:47:0::2;74011:18:::3;::::0;;;::::3;;;74010:19;74001:64;;;::::0;-1:-1:-1;;;74001:64:0;;15562:2:1;74001:64:0::3;::::0;::::3;15544:21:1::0;15601:2;15581:18;;;15574:30;15640:32;15620:18;;;15613:60;15690:18;;74001:64:0::3;15360:354:1::0;74001:64:0::3;74084:29;::::0;-1:-1:-1;;;74084:29:0;;74107:4:::3;74084:29;::::0;::::3;7144:51:1::0;68596:12:0::3;::::0;74084:4:::3;-1:-1:-1::0;;;;;74084:14:0::3;::::0;::::3;::::0;7117:18:1;;74084:29:0::3;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;74076:81;;;::::0;-1:-1:-1;;;74076:81:0;;26970:2:1;74076:81:0::3;::::0;::::3;26952:21:1::0;;;26989:18;;;26982:30;27048:34;27028:18;;;27021:62;27100:18;;74076:81:0::3;26768:356:1::0;74076:81:0::3;74253:7;::::0;74196:12:::3;::::0;74235:31:::3;::::0;68596:12:::3;74235:17;:31::i;:::-;74220:12;:46:::0;;;74282:48:::3;::::0;74305:10:::3;::::0;74282:48:::3;::::0;;;::::3;74349:12;::::0;;-1:-1:-1;74363:9:0;-1:-1:-1;73892:489:0;;:::o;24832:233::-;24948:10;-1:-1:-1;;;;;24962:14:0;24948:28;;24940:72;;;;-1:-1:-1;;;24940:72:0;;22632:2:1;24940:72:0;;;22614:21:1;22671:2;22651:18;;;22644:30;22710:33;22690:18;;;22683:61;22761:18;;24940:72:0;22430:355:1;24940:72:0;25019:40;25037:9;25048:10;25019:17;:40::i;:::-;24832:233;;:::o;56336:104::-;56392:13;56425:7;56418:14;;;;;:::i;72956:785::-;10753:1;11349:7;;:19;;11341:63;;;;-1:-1:-1;;;11341:63:0;;;;;;;:::i;:::-;10753:1;11482:7;:18;69049:5:::1;::::0;::::1;;69048:6;69040:43;;;::::0;-1:-1:-1;;;69040:43:0;;20322:2:1;69040:43:0::1;::::0;::::1;20304:21:1::0;20361:2;20341:18;;;20334:30;-1:-1:-1;;;20380:18:1;;;20373:54;20444:18;;69040:43:0::1;20120:348:1::0;69040:43:0::1;69275:13:::2;69256:15;:32;;69248:79;;;;-1:-1:-1::0;;;69248:79:0::2;;;;;;;:::i;:::-;68924:14:::3;68906:15;:32;68898:81;;;::::0;-1:-1:-1;;;68898:81:0;;17159:2:1;68898:81:0::3;::::0;::::3;17141:21:1::0;17198:2;17178:18;;;17171:30;17237:34;17217:18;;;17210:62;-1:-1:-1;;;17288:18:1;;;17281:34;17332:19;;68898:81:0::3;16957:400:1::0;68898:81:0::3;73098:1:::4;73082:13;:17;73074:76;;;;-1:-1:-1::0;;;73074:76:0::4;;;;;;;:::i;:::-;68381:1;73169:13;:32;;73161:84;;;::::0;-1:-1:-1;;;73161:84:0;;25800:2:1;73161:84:0::4;::::0;::::4;25782:21:1::0;25839:2;25819:18;;;25812:30;25878:34;25858:18;;;25851:62;-1:-1:-1;;;25929:18:1;;;25922:37;25976:19;;73161:84:0::4;25598:403:1::0;73161:84:0::4;73295:9;73277:13;73265:9;;:25;;;;:::i;:::-;73264:40;;73256:99;;;;-1:-1:-1::0;;;73256:99:0::4;;;;;;;:::i;:::-;73404:9;73375:24;73386:13:::0;73375:8:::4;:24;:::i;:::-;73374:39;;73366:92;;;;-1:-1:-1::0;;;73366:92:0::4;;;;;;;:::i;:::-;73477:10;73469:69;;;;-1:-1:-1::0;;;73469:69:0::4;;;;;;;:::i;:::-;73555:9;73551:175;73574:13;73570:1;:17;73551:175;;;73609:19;:17;:19::i;:::-;73643:33;73649:10;73661:14;;73643:5;:33::i;:::-;73712:1;73691:9;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;73589:3:0;;-1:-1:-1;73589:3:0::4;::::0;::::4;:::i;:::-;;;;73551:175;;58019:155:::0;58114:52;34804:10;58147:8;58157;58114:18;:52::i;59142:328::-;59317:41;34804:10;59350:7;59317:18;:41::i;:::-;59309:103;;;;-1:-1:-1;;;59309:103:0;;;;;;;:::i;:::-;59423:39;59437:4;59443:2;59447:7;59456:5;59423:13;:39::i;:::-;59142:328;;;;:::o;76301:289::-;36009:6;;-1:-1:-1;;;;;36009:6:0;34804:10;36156:23;36148:68;;;;-1:-1:-1;;;36148:68:0;;;;;;;:::i;:::-;10753:1:::1;11349:7;;:19;;11341:63;;;;-1:-1:-1::0;;;11341:63:0::1;;;;;;;:::i;:::-;10753:1;11482:7;:18:::0;76391:11;76383:58:::2;;;;-1:-1:-1::0;;;76383:58:0::2;;;;;;;:::i;:::-;76485:7;76460:21;:32;;76452:80;;;::::0;-1:-1:-1;;;76452:80:0;;10867:2:1;76452:80:0::2;::::0;::::2;10849:21:1::0;10906:2;10886:18;;;10879:30;10945:34;10925:18;;;10918:62;-1:-1:-1;;;10996:18:1;;;10989:32;11038:19;;76452:80:0::2;10665:398:1::0;76452:80:0::2;76545:37;::::0;76553:10:::2;::::0;76545:37;::::2;;;::::0;76574:7;;76545:37:::2;::::0;;;76574:7;76553:10;76545:37;::::2;;;;;;;;;;;;;::::0;::::2;;;;56511:334:::0;61045:4;61069:16;;;:7;:16;;;;;;56584:13;;-1:-1:-1;;;;;61069:16:0;56610:76;;;;-1:-1:-1;;;56610:76:0;;22216:2:1;56610:76:0;;;22198:21:1;22255:2;22235:18;;;22228:30;22294:34;22274:18;;;22267:62;-1:-1:-1;;;22345:18:1;;;22338:45;22400:19;;56610:76:0;22014:411:1;56610:76:0;56699:21;56723:10;:8;:10::i;:::-;56699:34;;56775:1;56757:7;56751:21;:25;:86;;;;;;;;;;;;;;;;;56803:7;56812:18;:7;:16;:18::i;:::-;56786:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56751:86;56744:93;56511:334;-1:-1:-1;;;56511:334:0:o;74389:348::-;36009:6;;-1:-1:-1;;;;;36009:6:0;34804:10;36156:23;36148:68;;;;-1:-1:-1;;;36148:68:0;;;;;;;:::i;:::-;69275:13:::1;69256:15;:32;;69248:79;;;;-1:-1:-1::0;;;69248:79:0::1;;;;;;;:::i;:::-;69149:5:::2;::::0;::::2;;69141:47;;;::::0;-1:-1:-1;;;69141:47:0;;14445:2:1;69141:47:0::2;::::0;::::2;14427:21:1::0;14484:2;14464:18;;;14457:30;14523:31;14503:18;;;14496:59;14572:18;;69141:47:0::2;14243:353:1::0;69141:47:0::2;74491:18:::3;::::0;;;::::3;;;74483:67;;;::::0;-1:-1:-1;;;74483:67:0;;24157:2:1;74483:67:0::3;::::0;::::3;24139:21:1::0;24196:2;24176:18;;;24169:30;24235:34;24215:18;;;24208:62;-1:-1:-1;;;24286:18:1;;;24279:34;24330:19;;74483:67:0::3;23955:400:1::0;74483:67:0::3;74570:8;::::0;::::3;::::0;::::3;;;74569:9;74561:38;;;::::0;-1:-1:-1;;;74561:38:0;;19213:2:1;74561:38:0::3;::::0;::::3;19195:21:1::0;19252:2;19232:18;;;19225:30;-1:-1:-1;;;19271:18:1;;;19264:46;19327:18;;74561:38:0::3;19011:340:1::0;74561:38:0::3;74612:8;:15:::0;;-1:-1:-1;;74612:15:0::3;;;::::0;;74638:19;;::::3;::::0;:12:::3;::::0;:19:::3;::::0;::::3;::::0;::::3;:::i;:::-;-1:-1:-1::0;74673:31:0::3;::::0;74688:15:::3;8706:25:1::0;;74673:31:0::3;::::0;8694:2:1;8679:18;74673:31:0::3;;;;;;;74720:9;74724:4;74720:9;;;;;;:::i;68721:26::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76048:115::-;36009:6;;76107:7;;-1:-1:-1;;;;;36009:6:0;34804:10;36156:23;36148:68;;;;-1:-1:-1;;;36148:68:0;;;;;;;:::i;:::-;-1:-1:-1;76134:21:0::1;76048:115:::0;:::o;75449:198::-;75511:7;69275:13;69256:15;:32;;69248:79;;;;-1:-1:-1;;;69248:79:0;;;;;;;:::i;:::-;75539:18:::1;::::0;;;::::1;;;75531:76;;;;-1:-1:-1::0;;;75531:76:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;75627:12:0::1;::::0;75449:198;:::o;72659:154::-;72707:4;72751:16;72732:15;:35;;:72;;;;-1:-1:-1;;72790:14:0;72771:15;:33;;;72659:154::o;36836:192::-;36009:6;;-1:-1:-1;;;;;36009:6:0;34804:10;36156:23;36148:68;;;;-1:-1:-1;;;36148:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36925:22:0;::::1;36917:73;;;::::0;-1:-1:-1;;;36917:73:0;;13274:2:1;36917:73:0::1;::::0;::::1;13256:21:1::0;13313:2;13293:18;;;13286:30;13352:34;13332:18;;;13325:62;-1:-1:-1;;;13403:18:1;;;13396:36;13449:19;;36917:73:0::1;13072:402:1::0;36917:73:0::1;37001:19;37011:8;37001:9;:19::i;:::-;36836:192:::0;:::o;64962:174::-;65037:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;65037:29:0;-1:-1:-1;;;;;65037:29:0;;;;;;;;:24;;65091:23;65037:24;65091:14;:23::i;:::-;-1:-1:-1;;;;;65082:46:0;;;;;;;;;;;64962:174;;:::o;61274:348::-;61367:4;61069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;61069:16:0;61384:73;;;;-1:-1:-1;;;61384:73:0;;16324:2:1;61384:73:0;;;16306:21:1;16363:2;16343:18;;;16336:30;16402:34;16382:18;;;16375:62;-1:-1:-1;;;16453:18:1;;;16446:42;16505:19;;61384:73:0;16122:408:1;61384:73:0;61468:13;61484:23;61499:7;61484:14;:23::i;:::-;61468:39;;61537:5;-1:-1:-1;;;;;61526:16:0;:7;-1:-1:-1;;;;;61526:16:0;;:51;;;;61570:7;-1:-1:-1;;;;;61546:31:0;:20;61558:7;61546:11;:20::i;:::-;-1:-1:-1;;;;;61546:31:0;;61526:51;:87;;;-1:-1:-1;;;;;;58366:25:0;;;58342:4;58366:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;61581:32;61518:96;61274:348;-1:-1:-1;;;;61274:348:0:o;64266:578::-;64425:4;-1:-1:-1;;;;;64398:31:0;:23;64413:7;64398:14;:23::i;:::-;-1:-1:-1;;;;;64398:31:0;;64390:85;;;;-1:-1:-1;;;64390:85:0;;21806:2:1;64390:85:0;;;21788:21:1;21845:2;21825:18;;;21818:30;21884:34;21864:18;;;21857:62;-1:-1:-1;;;21935:18:1;;;21928:39;21984:19;;64390:85:0;21604:405:1;64390:85:0;-1:-1:-1;;;;;64494:16:0;;64486:65;;;;-1:-1:-1;;;64486:65:0;;14803:2:1;64486:65:0;;;14785:21:1;14842:2;14822:18;;;14815:30;14881:34;14861:18;;;14854:62;-1:-1:-1;;;14932:18:1;;;14925:34;14976:19;;64486:65:0;14601:400:1;64486:65:0;64668:29;64685:1;64689:7;64668:8;:29::i;:::-;-1:-1:-1;;;;;64710:15:0;;;;;;:9;:15;;;;;:20;;64729:1;;64710:15;:20;;64729:1;;64710:20;:::i;:::-;;;;-1:-1:-1;;;;;;;64741:13:0;;;;;;:9;:13;;;;;:18;;64758:1;;64741:13;:18;;64758:1;;64741:18;:::i;:::-;;;;-1:-1:-1;;64770:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;64770:21:0;-1:-1:-1;;;;;64770:21:0;;;;;;;;;64809:27;;64770:16;;64809:27;;;;;;;64266:578;;;:::o;37036:173::-;37111:6;;;-1:-1:-1;;;;;37128:17:0;;;-1:-1:-1;;;;;;37128:17:0;;;;;;;37161:40;;37111:6;;;37128:17;37111:6;;37161:40;;37092:16;;37161:40;37081:128;37036:173;:::o;71058:159::-;71145:4;71186:23;:4;71199:9;71186:12;:23::i;:::-;-1:-1:-1;;;;;71169:40:0;:13;-1:-1:-1;;;;;71169:40:0;;71162:47;;71058:159;;;;:::o;75655:146::-;75728:9;75711:14;;:26;75703:61;;;;-1:-1:-1;;;75703:61:0;;27331:2:1;75703:61:0;;;27313:21:1;27370:2;27350:18;;;27343:30;-1:-1:-1;;;27389:18:1;;;27382:52;27451:18;;75703:61:0;27129:346:1;75703:61:0;75777:14;:16;;;:14;:16;;;:::i;:::-;;;;;;75655:146::o;62958:382::-;-1:-1:-1;;;;;63038:16:0;;63030:61;;;;-1:-1:-1;;;63030:61:0;;19961:2:1;63030:61:0;;;19943:21:1;;;19980:18;;;19973:30;20039:34;20019:18;;;20012:62;20091:18;;63030:61:0;19759:356:1;63030:61:0;61045:4;61069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;61069:16:0;:30;63102:58;;;;-1:-1:-1;;;63102:58:0;;14088:2:1;63102:58:0;;;14070:21:1;14127:2;14107:18;;;14100:30;14166;14146:18;;;14139:58;14214:18;;63102:58:0;13886:352:1;63102:58:0;-1:-1:-1;;;;;63231:13:0;;;;;;:9;:13;;;;;:18;;63248:1;;63231:13;:18;;63248:1;;63231:18;:::i;:::-;;;;-1:-1:-1;;63260:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;63260:21:0;-1:-1:-1;;;;;63260:21:0;;;;;;;;63299:33;;63260:16;;;63299:33;;63260:16;;63299:33;62958:382;;:::o;22896:1077::-;23006:17;23041:4;-1:-1:-1;;;;;23041:20:0;;23062:14;23078:4;23095:8;21726:1;23084:43;;;;;;;;8916:25:1;;;8972:2;8957:18;;8950:34;8904:2;8889:18;;8742:248;23084:43:0;;;;;;;;;;;;;23041:87;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;23363:15:0;23447:16;;;;;;;;;;;;12766:51;;;;;9226:25:1;;;9267:18;;;9260:34;;;23440:4:0;9310:18:1;;;9303:60;9379:18;;;;9372:34;;;12766:51:0;;;;;;;;;;9198:19:1;;;;12766:51:0;;;12756:62;;;;;;;;;23901:16;;;;;;;:20;;23920:1;23901:20;:::i;:::-;23882:6;:16;;;;;;;;;;;;:39;;;;13383:41;;;;;6043:19:1;;;6078:12;;;6071:28;;;13383:41:0;;;;;;;;;6115:12:1;;;;13383:41:0;;;13373:52;;;;;23935:32;13216:215;74749:230;74846:12;:26;;;74883:18;:25;;-1:-1:-1;;74883:25:0;;;;;74925:46;;74947:10;;74925:46;;;;74861:11;8706:25:1;;8694:2;8679:18;;8560:177;74925:46:0;;;;;;;;74749:230;;:::o;65278:315::-;65433:8;-1:-1:-1;;;;;65424:17:0;:5;-1:-1:-1;;;;;65424:17:0;;;65416:55;;;;-1:-1:-1;;;65416:55:0;;15208:2:1;65416:55:0;;;15190:21:1;15247:2;15227:18;;;15220:30;15286:27;15266:18;;;15259:55;15331:18;;65416:55:0;15006:349:1;65416:55:0;-1:-1:-1;;;;;65482:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;65482:46:0;;;;;;;;;;65544:41;;8508::1;;;65544::0;;8481:18:1;65544:41:0;;;;;;;65278:315;;;:::o;60352:::-;60509:28;60519:4;60525:2;60529:7;60509:9;:28::i;:::-;60556:48;60579:4;60585:2;60589:7;60598:5;60556:22;:48::i;:::-;60548:111;;;;-1:-1:-1;;;60548:111:0;;;;;;;:::i;75935:105::-;75987:13;76020:12;76013:19;;;;;:::i;32340:723::-;32396:13;32617:10;32613:53;;-1:-1:-1;;32644:10:0;;;;;;;;;;;;-1:-1:-1;;;32644:10:0;;;;;32340:723::o;32613:53::-;32691:5;32676:12;32732:78;32739:9;;32732:78;;32765:8;;;;:::i;:::-;;-1:-1:-1;32788:10:0;;-1:-1:-1;32796:2:0;32788:10;;:::i;:::-;;;32732:78;;;32820:19;32852:6;32842:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32842:17:0;;32820:39;;32870:154;32877:10;;32870:154;;32904:11;32914:1;32904:11;;:::i;:::-;;-1:-1:-1;32973:10:0;32981:2;32973:5;:10;:::i;:::-;32960:24;;:2;:24;:::i;:::-;32947:39;;32930:6;32937;32930:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;32930:56:0;;;;;;;;-1:-1:-1;33001:11:0;33010:2;33001:11;;:::i;:::-;;;32870:154;;4335:231;4413:7;4434:17;4453:18;4475:27;4486:4;4492:9;4475:10;:27::i;:::-;4433:69;;;;4513:18;4525:5;4513:11;:18::i;:::-;-1:-1:-1;4549:9:0;4335:231;-1:-1:-1;;;4335:231:0:o;66158:799::-;66313:4;-1:-1:-1;;;;;66334:13:0;;38305:20;38353:8;66330:620;;66370:72;;-1:-1:-1;;;66370:72:0;;-1:-1:-1;;;;;66370:36:0;;;;;:72;;34804:10;;66421:4;;66427:7;;66436:5;;66370:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66370:72:0;;;;;;;;-1:-1:-1;;66370:72:0;;;;;;;;;;;;:::i;:::-;;;66366:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66612:13:0;;66608:272;;66655:60;;-1:-1:-1;;;66655:60:0;;;;;;;:::i;66608:272::-;66830:6;66824:13;66815:6;66811:2;66807:15;66800:38;66366:529;-1:-1:-1;;;;;;66493:51:0;-1:-1:-1;;;66493:51:0;;-1:-1:-1;66486:58:0;;66330:620;-1:-1:-1;66934:4:0;66927:11;;2225:1308;2306:7;2315:12;2540:9;:16;2560:2;2540:22;2536:990;;;2836:4;2821:20;;2815:27;2886:4;2871:20;;2865:27;2944:4;2929:20;;2923:27;2579:9;2915:36;2987:25;2998:4;2915:36;2815:27;2865;2987:10;:25::i;:::-;2980:32;;;;;;;;;2536:990;3034:9;:16;3054:2;3034:22;3030:496;;;3309:4;3294:20;;3288:27;3360:4;3345:20;;3339:27;3402:23;3413:4;3288:27;3339;3402:10;:23::i;:::-;3395:30;;;;;;;;3030:496;-1:-1:-1;3474:1:0;;-1:-1:-1;3478:35:0;3030:496;2225:1308;;;;;:::o;496:643::-;574:20;565:5;:29;;;;;;;;:::i;:::-;;561:571;;;496:643;:::o;561:571::-;672:29;663:5;:38;;;;;;;;:::i;:::-;;659:473;;;718:34;;-1:-1:-1;;;718:34:0;;10514:2:1;718:34:0;;;10496:21:1;10553:2;10533:18;;;10526:30;10592:26;10572:18;;;10565:54;10636:18;;718:34:0;10312:348:1;659:473:0;783:35;774:5;:44;;;;;;;;:::i;:::-;;770:362;;;835:41;;-1:-1:-1;;;835:41:0;;11270:2:1;835:41:0;;;11252:21:1;11309:2;11289:18;;;11282:30;11348:33;11328:18;;;11321:61;11399:18;;835:41:0;11068:355:1;770:362:0;907:30;898:5;:39;;;;;;;;:::i;:::-;;894:238;;;954:44;;-1:-1:-1;;;954:44:0;;15921:2:1;954:44:0;;;15903:21:1;15960:2;15940:18;;;15933:30;15999:34;15979:18;;;15972:62;-1:-1:-1;;;16050:18:1;;;16043:32;16092:19;;954:44:0;15719:398:1;894:238:0;1029:30;1020:5;:39;;;;;;;;:::i;:::-;;1016:116;;;1076:44;;-1:-1:-1;;;1076:44:0;;19558:2:1;1076:44:0;;;19540:21:1;19597:2;19577:18;;;19570:30;19636:34;19616:18;;;19609:62;-1:-1:-1;;;19687:18:1;;;19680:32;19729:19;;1076:44:0;19356:398:1;5834:1632:0;5965:7;;6899:66;6886:79;;6882:163;;;-1:-1:-1;6998:1:0;;-1:-1:-1;7002:30:0;6982:51;;6882:163;7059:1;:7;;7064:2;7059:7;;:18;;;;;7070:1;:7;;7075:2;7070:7;;7059:18;7055:102;;;-1:-1:-1;7110:1:0;;-1:-1:-1;7114:30:0;7094:51;;7055:102;7271:24;;;7254:14;7271:24;;;;;;;;;9912:25:1;;;9985:4;9973:17;;9953:18;;;9946:45;;;;10007:18;;;10000:34;;;10050:18;;;10043:34;;;7271:24:0;;9884:19:1;;7271:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7271:24:0;;-1:-1:-1;;7271:24:0;;;-1:-1:-1;;;;;;;7310:20:0;;7306:103;;7363:1;7367:29;7347:50;;;;;;;7306:103;7429:6;-1:-1:-1;7437:20:0;;-1:-1:-1;5834:1632:0;;;;;;;;:::o;4829:391::-;4943:7;;-1:-1:-1;;;;;5044:75:0;;5146:3;5142:12;;;5156:2;5138:21;5187:25;5198:4;5138:21;5207:1;5044:75;5187:10;:25::i;:::-;5180:32;;;;;;4829:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:220;870:5;923:3;916:4;908:6;904:17;900:27;890:55;;941:1;938;931:12;890:55;963:79;1038:3;1029:6;1016:20;1009:4;1001:6;997:17;963:79;:::i;1053:186::-;1112:6;1165:2;1153:9;1144:7;1140:23;1136:32;1133:52;;;1181:1;1178;1171:12;1133:52;1204:29;1223:9;1204:29;:::i;1244:260::-;1312:6;1320;1373:2;1361:9;1352:7;1348:23;1344:32;1341:52;;;1389:1;1386;1379:12;1341:52;1412:29;1431:9;1412:29;:::i;:::-;1402:39;;1460:38;1494:2;1483:9;1479:18;1460:38;:::i;:::-;1450:48;;1244:260;;;;;:::o;1509:328::-;1586:6;1594;1602;1655:2;1643:9;1634:7;1630:23;1626:32;1623:52;;;1671:1;1668;1661:12;1623:52;1694:29;1713:9;1694:29;:::i;:::-;1684:39;;1742:38;1776:2;1765:9;1761:18;1742:38;:::i;:::-;1732:48;;1827:2;1816:9;1812:18;1799:32;1789:42;;1509:328;;;;;:::o;1842:537::-;1937:6;1945;1953;1961;2014:3;2002:9;1993:7;1989:23;1985:33;1982:53;;;2031:1;2028;2021:12;1982:53;2054:29;2073:9;2054:29;:::i;:::-;2044:39;;2102:38;2136:2;2125:9;2121:18;2102:38;:::i;:::-;2092:48;;2187:2;2176:9;2172:18;2159:32;2149:42;;2242:2;2231:9;2227:18;2214:32;2269:18;2261:6;2258:30;2255:50;;;2301:1;2298;2291:12;2255:50;2324:49;2365:7;2356:6;2345:9;2341:22;2324:49;:::i;:::-;2314:59;;;1842:537;;;;;;;:::o;2384:315::-;2449:6;2457;2510:2;2498:9;2489:7;2485:23;2481:32;2478:52;;;2526:1;2523;2516:12;2478:52;2549:29;2568:9;2549:29;:::i;:::-;2539:39;;2628:2;2617:9;2613:18;2600:32;2641:28;2663:5;2641:28;:::i;:::-;2688:5;2678:15;;;2384:315;;;;;:::o;2704:254::-;2772:6;2780;2833:2;2821:9;2812:7;2808:23;2804:32;2801:52;;;2849:1;2846;2839:12;2801:52;2872:29;2891:9;2872:29;:::i;:::-;2862:39;2948:2;2933:18;;;;2920:32;;-1:-1:-1;;;2704:254:1:o;2963:245::-;3030:6;3083:2;3071:9;3062:7;3058:23;3054:32;3051:52;;;3099:1;3096;3089:12;3051:52;3131:9;3125:16;3150:28;3172:5;3150:28;:::i;3213:248::-;3281:6;3289;3342:2;3330:9;3321:7;3317:23;3313:32;3310:52;;;3358:1;3355;3348:12;3310:52;-1:-1:-1;;3381:23:1;;;3451:2;3436:18;;;3423:32;;-1:-1:-1;3213:248:1:o;3466:245::-;3524:6;3577:2;3565:9;3556:7;3552:23;3548:32;3545:52;;;3593:1;3590;3583:12;3545:52;3632:9;3619:23;3651:30;3675:5;3651:30;:::i;3716:249::-;3785:6;3838:2;3826:9;3817:7;3813:23;3809:32;3806:52;;;3854:1;3851;3844:12;3806:52;3886:9;3880:16;3905:30;3929:5;3905:30;:::i;3970:450::-;4039:6;4092:2;4080:9;4071:7;4067:23;4063:32;4060:52;;;4108:1;4105;4098:12;4060:52;4148:9;4135:23;4181:18;4173:6;4170:30;4167:50;;;4213:1;4210;4203:12;4167:50;4236:22;;4289:4;4281:13;;4277:27;-1:-1:-1;4267:55:1;;4318:1;4315;4308:12;4267:55;4341:73;4406:7;4401:2;4388:16;4383:2;4379;4375:11;4341:73;:::i;4425:180::-;4484:6;4537:2;4525:9;4516:7;4512:23;4508:32;4505:52;;;4553:1;4550;4543:12;4505:52;-1:-1:-1;4576:23:1;;4425:180;-1:-1:-1;4425:180:1:o;4610:184::-;4680:6;4733:2;4721:9;4712:7;4708:23;4704:32;4701:52;;;4749:1;4746;4739:12;4701:52;-1:-1:-1;4772:16:1;;4610:184;-1:-1:-1;4610:184:1:o;4799:456::-;4885:6;4893;4901;4954:2;4942:9;4933:7;4929:23;4925:32;4922:52;;;4970:1;4967;4960:12;4922:52;5006:9;4993:23;4983:33;;5063:2;5052:9;5048:18;5035:32;5025:42;;5118:2;5107:9;5103:18;5090:32;5145:18;5137:6;5134:30;5131:50;;;5177:1;5174;5167:12;5131:50;5200:49;5241:7;5232:6;5221:9;5217:22;5200:49;:::i;:::-;5190:59;;;4799:456;;;;;:::o;5260:257::-;5301:3;5339:5;5333:12;5366:6;5361:3;5354:19;5382:63;5438:6;5431:4;5426:3;5422:14;5415:4;5408:5;5404:16;5382:63;:::i;:::-;5499:2;5478:15;-1:-1:-1;;5474:29:1;5465:39;;;;5506:4;5461:50;;5260:257;-1:-1:-1;;5260:257:1:o;6138:470::-;6317:3;6355:6;6349:13;6371:53;6417:6;6412:3;6405:4;6397:6;6393:17;6371:53;:::i;:::-;6487:13;;6446:16;;;;6509:57;6487:13;6446:16;6543:4;6531:17;;6509:57;:::i;:::-;6582:20;;6138:470;-1:-1:-1;;;;6138:470:1:o;7206:488::-;-1:-1:-1;;;;;7475:15:1;;;7457:34;;7527:15;;7522:2;7507:18;;7500:43;7574:2;7559:18;;7552:34;;;7622:3;7617:2;7602:18;;7595:31;;;7400:4;;7643:45;;7668:19;;7660:6;7643:45;:::i;:::-;7635:53;7206:488;-1:-1:-1;;;;;;7206:488:1:o;7978:385::-;8210:1;8206;8201:3;8197:11;8193:19;8185:6;8181:32;8170:9;8163:51;8250:6;8245:2;8234:9;8230:18;8223:34;8293:2;8288;8277:9;8273:18;8266:30;8144:4;8313:44;8353:2;8342:9;8338:18;8330:6;8313:44;:::i;:::-;8305:52;7978:385;-1:-1:-1;;;;;7978:385:1:o;10088:219::-;10237:2;10226:9;10219:21;10200:4;10257:44;10297:2;10286:9;10282:18;10274:6;10257:44;:::i;11428:411::-;11630:2;11612:21;;;11669:2;11649:18;;;11642:30;11708:34;11703:2;11688:18;;11681:62;-1:-1:-1;;;11774:2:1;11759:18;;11752:45;11829:3;11814:19;;11428:411::o;11844:414::-;12046:2;12028:21;;;12085:2;12065:18;;;12058:30;12124:34;12119:2;12104:18;;12097:62;-1:-1:-1;;;12190:2:1;12175:18;;12168:48;12248:3;12233:19;;11844:414::o;12263:398::-;12465:2;12447:21;;;12504:2;12484:18;;;12477:30;12543:34;12538:2;12523:18;;12516:62;-1:-1:-1;;;12609:2:1;12594:18;;12587:32;12651:3;12636:19;;12263:398::o;17362:::-;17564:2;17546:21;;;17603:2;17583:18;;;17576:30;17642:34;17637:2;17622:18;;17615:62;-1:-1:-1;;;17708:2:1;17693:18;;17686:32;17750:3;17735:19;;17362:398::o;21243:356::-;21445:2;21427:21;;;21464:18;;;21457:30;21523:34;21518:2;21503:18;;21496:62;21590:2;21575:18;;21243:356::o;23537:413::-;23739:2;23721:21;;;23778:2;23758:18;;;23751:30;23817:34;23812:2;23797:18;;23790:62;-1:-1:-1;;;23883:2:1;23868:18;;23861:47;23940:3;23925:19;;23537:413::o;24360:404::-;24562:2;24544:21;;;24601:2;24581:18;;;24574:30;24640:34;24635:2;24620:18;;24613:62;-1:-1:-1;;;24706:2:1;24691:18;;24684:38;24754:3;24739:19;;24360:404::o;24769:408::-;24971:2;24953:21;;;25010:2;24990:18;;;24983:30;25049:34;25044:2;25029:18;;25022:62;-1:-1:-1;;;25115:2:1;25100:18;;25093:42;25167:3;25152:19;;24769:408::o;25182:411::-;25384:2;25366:21;;;25423:2;25403:18;;;25396:30;25462:34;25457:2;25442:18;;25435:62;-1:-1:-1;;;25528:2:1;25513:18;;25506:45;25583:3;25568:19;;25182:411::o;26006:397::-;26208:2;26190:21;;;26247:2;26227:18;;;26220:30;26286:34;26281:2;26266:18;;26259:62;-1:-1:-1;;;26352:2:1;26337:18;;26330:31;26393:3;26378:19;;26006:397::o;26408:355::-;26610:2;26592:21;;;26649:2;26629:18;;;26622:30;26688:33;26683:2;26668:18;;26661:61;26754:2;26739:18;;26408:355::o;27662:128::-;27702:3;27733:1;27729:6;27726:1;27723:13;27720:39;;;27739:18;;:::i;:::-;-1:-1:-1;27775:9:1;;27662:128::o;27795:120::-;27835:1;27861;27851:35;;27866:18;;:::i;:::-;-1:-1:-1;27900:9:1;;27795:120::o;27920:168::-;27960:7;28026:1;28022;28018:6;28014:14;28011:1;28008:21;28003:1;27996:9;27989:17;27985:45;27982:71;;;28033:18;;:::i;:::-;-1:-1:-1;28073:9:1;;27920:168::o;28093:125::-;28133:4;28161:1;28158;28155:8;28152:34;;;28166:18;;:::i;:::-;-1:-1:-1;28203:9:1;;28093:125::o;28223:258::-;28295:1;28305:113;28319:6;28316:1;28313:13;28305:113;;;28395:11;;;28389:18;28376:11;;;28369:39;28341:2;28334:10;28305:113;;;28436:6;28433:1;28430:13;28427:48;;;-1:-1:-1;;28471:1:1;28453:16;;28446:27;28223:258::o;28486:380::-;28565:1;28561:12;;;;28608;;;28629:61;;28683:4;28675:6;28671:17;28661:27;;28629:61;28736:2;28728:6;28725:14;28705:18;28702:38;28699:161;;;28782:10;28777:3;28773:20;28770:1;28763:31;28817:4;28814:1;28807:15;28845:4;28842:1;28835:15;28699:161;;28486:380;;;:::o;28871:135::-;28910:3;-1:-1:-1;;28931:17:1;;28928:43;;;28951:18;;:::i;:::-;-1:-1:-1;28998:1:1;28987:13;;28871:135::o;29011:112::-;29043:1;29069;29059:35;;29074:18;;:::i;:::-;-1:-1:-1;29108:9:1;;29011:112::o;29128:127::-;29189:10;29184:3;29180:20;29177:1;29170:31;29220:4;29217:1;29210:15;29244:4;29241:1;29234:15;29260:127;29321:10;29316:3;29312:20;29309:1;29302:31;29352:4;29349:1;29342:15;29376:4;29373:1;29366:15;29392:127;29453:10;29448:3;29444:20;29441:1;29434:31;29484:4;29481:1;29474:15;29508:4;29505:1;29498:15;29524:127;29585:10;29580:3;29576:20;29573:1;29566:31;29616:4;29613:1;29606:15;29640:4;29637:1;29630:15;29656:127;29717:10;29712:3;29708:20;29705:1;29698:31;29748:4;29745:1;29738:15;29772:4;29769:1;29762:15;29788:118;29874:5;29867:13;29860:21;29853:5;29850:32;29840:60;;29896:1;29893;29886:12;29911:131;-1:-1:-1;;;;;;29985:32:1;;29975:43;;29965:71;;30032:1;30029;30022:12
Swarm Source
ipfs://6856682672a799b14800e80cbf8f12b186421019167e37dd322c4c50aacaae62
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.