testeOptmims (testeOptmims) Token Tracker | OP Sepolia (2024)

testeOptmims (testeOptmims) Token Tracker | OP Sepolia (1)

testeOptmims (testeOptmims)

ERC721

  • Transfers
  • Holders
  • Contract

Loading...

Loading

Loading...

Loading

Loading...

Loading

Click here to update the token information / general information

  • Code
  • Read Contract
  • Write Contract

Similar Match Source Code

This contract matches the deployed Bytecode of the Source Code for Contract 0x05e53F87...8FA5E682B

The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:

LumxProtocol

Compiler Version

v0.8.18+commit.87f61d96

Optimization Enabled:

No with 200 runs

Other Settings:

default evmVersion, MIT license

Contract Source Code (Solidity)

    library Math - function max(uint256 a, uint256 b) - function min(uint256 a, uint256 b) - function average(uint256 a, uint256 b ... - function ceilDiv(uint256 a, uint256 b ... - function mulDiv( - function mulDiv( - function sqrt(uint256 a) - function sqrt(uint256 a, Rounding rou ... - function log2(uint256 value) - function log2(uint256 value, Rounding ... - function log10(uint256 value) - function log10(uint256 value, Roundin ... - function log256(uint256 value) - function log256(uint256 value, Roundi ... library Strings - function toString(uint256 value) - function toHexString(uint256 value) - function toHexString(uint256 value, u ... - function toHexString(address addr) library ECDSA - function _throwError(RecoverError err ... - function tryRecover(bytes32 hash, byt ... - function recover(bytes32 hash, bytes ... - function tryRecover( - function recover( - function tryRecover( - function recover( - function toEthSignedMessageHash(bytes ... - function toEthSignedMessageHash(bytes ... - function toTypedDataHash(bytes32 doma ... interface IERC721A - function totalSupply() - function supportsInterface(bytes4 int ... - function balanceOf(address owner) - function ownerOf(uint256 tokenId) - function safeTransferFrom( - function safeTransferFrom( - function transferFrom( - function approve(address to, uint256 ... - function setApprovalForAll(address op ... - function getApproved(uint256 tokenId) - function isApprovedForAll(address own ... - function name() - function symbol() - function tokenURI(uint256 tokenId) interface ERC721A__IERC721Receiver - function onERC721Received( contract ERC721A is IERC721A - function _startTokenId() - function _nextTokenId() - function totalSupply() - function _totalMinted() - function _totalBurned() - function balanceOf(address owner) - function _numberMinted(address owner) - function _numberBurned(address owner) - function _getAux(address owner) - function _setAux(address owner, uint6 ... - function supportsInterface(bytes4 int ... - function name() - function symbol() - function tokenURI(uint256 tokenId) - function _baseURI() - function ownerOf(uint256 tokenId) - function _ownershipOf(uint256 tokenId ... - function _ownershipAt(uint256 index) - function _initializeOwnershipAt(uint2 ... - function _packedOwnershipOf(uint256 t ... - function _unpackedOwnership(uint256 p ... - function _packOwnershipData(address o ... - function _nextInitializedFlag(uint256 ... - function approve(address to, uint256 ... - function getApproved(uint256 tokenId) - function setApprovalForAll(address op ... - function isApprovedForAll(address own ... - function _exists(uint256 tokenId) - function _isSenderApprovedOrOwner( - function _getApprovedSlotAndAddress(u ... - function transferFrom( - function safeTransferFrom( - function safeTransferFrom( - function _beforeTokenTransfers( - function _afterTokenTransfers( - function _checkContractOnERC721Receiv ... - function _mint(address to, uint256 qu ... - function _mintERC2309(address to, uin ... - function _safeMint( - function _safeMint(address to, uint25 ... - function _burn(uint256 tokenId) - function _burn(uint256 tokenId, bool ... - function _setExtraDataAt(uint256 inde ... - function _extraData( - function _nextExtraData( - function _msgSenderERC721A() - function _toString(uint256 value) interface IERC721AQueryable is IERC72 ... - function explicitOwnershipOf(uint256 ... - function explicitOwnershipsOf(uint256 ... - function tokensOfOwnerIn( - function tokensOfOwner(address owner) - function explicitOwnershipOf(uint256 ... - function explicitOwnershipsOf(uint256 ... - function tokensOfOwnerIn( - function tokensOfOwner(address owner) - function _msgSender() - function _msgData() - function owner() - function _checkOwner() - function renounceOwnership() - function transferOwnership(address ne ... - function _transferOwnership(address n ... contract LumxProtocol is Ownable, ... * - function mint(uint256 quantity, uint2 ... - function mintForUser(address to, uint ... - function airdrop(address to, uint256[ ... - function _mintInternal(address to, ui ... - function setTokensIdsUris(uint256[] c ... - function tokenURI(uint256 tokenId) - function setBaseURI(string calldata _ ... - function setMaxSupply(uint256[] calld ... - function setWithdrawAddress(address _ ... - function setMaxPerAddress(uint256 _ma ... - function setBackendAddress(address _a ... - function setStart(uint256 _startAt) - function setEnd(uint256 _endAt) - function _verifySignature(bytes calld ... - function withdrawMoney() - function checkTokenCurrentSupply() - function getSupplyArray() - function burn(uint256[] calldata toke ...
  • Similar
  • Submit Audit
  • Compare
/** *Submitted for verification at sepolia-optimm.etherscan.io on 2024-02-23*/// File: contracts/customErros.solpragma solidity ^0.8.13;error MaxSupplyReached();error MaxAllowedPerAddress();error WindowNotOpened();error NotAllowed();error ContractPaused();error NonExistentToken();error TransferFailed();error UserNotOwner();error InvalidArgument();error InvalidPrice(); // File: @openzeppelin/contracts/utils/math/Math.sol// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)pragma solidity ^0.8.0;/** * @dev Standard math utilities missing in the Solidity language. */library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } }}// File: @openzeppelin/contracts/utils/Strings.sol// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)pragma solidity ^0.8.0;/** * @dev String operations. */library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); }}// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)pragma solidity ^0.8.0;/** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); }}// File: erc721a/contracts/IERC721A.sol// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;/** * @dev Interface of ERC721A. */interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);}// File: erc721a/contracts/ERC721A.sol// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;/** * @dev Interface of ERC721 token receiver. */interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4);}/** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } }}// File: erc721a/contracts/extensions/IERC721AQueryable.sol// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;/** * @dev Interface of ERC721AQueryable. */interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory);}// File: erc721a/contracts/extensions/ERC721AQueryable.sol// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;/** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } }}// File: @openzeppelin/contracts/utils/Context.sol// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; }}// File: @openzeppelin/contracts/access/Ownable.sol// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)pragma solidity ^0.8.0;/** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); }}// File: contracts/lumx.solpragma solidity ^0.8.13;contract LumxProtocol is Ownable, ERC721AQueryable { using Strings for uint256; using ECDSA for bytes32; // Time to mint uint256 public startAt; uint256 public endAt; // Addresses address public backend; address private addressWithdraw; // Sales configs uint256 public maxPerAddress; uint256[] public maxSupplyEach; // Metadata uris string public baseURI = ""; // Tokens ids mapping(uint256 => uint256) public tokenIdsUris; // Current Suply for each type of token mapping(uint256 => uint256) public currentSupply; // Events event ChangeMaxAddress(address _from, uint256 _value); event ChangeMaxSupply(address _from, uint256[] _value); event ChangeStartTime(address _from, uint256 _value); event ChangeEndTime(address _from, uint256 _value); event ChangeBaseUri(address _from, string _value); event ChangePause(address _from, bool _value); event ChangeWithdrawAddress(address _from, address _value); event ChangeBackendAddress(address _from, address _value); constructor( string memory _baseURI, string memory name, string memory symbol, address _backend, address _addressWithdraw, uint256[] memory _maxSupplyEach, uint256 _maxPerAddress, uint256 _startAt, uint256 _endAt ) ERC721A(name, symbol) { // Set variables baseURI = _baseURI; addressWithdraw = _addressWithdraw; backend = _backend; maxPerAddress = _maxPerAddress; startAt = _startAt; maxSupplyEach = _maxSupplyEach; endAt = _endAt; } modifier onlyBackend() { require((msg.sender == backend) || (msg.sender == owner()), "Only sender can use giveaway function."); _; } function mint(uint256 quantity, uint256[] calldata ids, bytes calldata signature) external payable { if(!_verifySignature(signature, msg.sender, quantity, ids)) revert NotAllowed(); _mintInternal(msg.sender, ids, quantity); } function mintForUser(address to, uint256[] calldata ids, uint256 quantity) external onlyBackend { _mintInternal(to, ids, quantity); } function airdrop(address to, uint256[] calldata ids, uint256 quantity) external onlyOwner { if(quantity + _numberMinted(to) > maxPerAddress) revert MaxAllowedPerAddress(); setTokensIdsUris(ids, quantity); _mint(to, quantity); } function _mintInternal(address to, uint256[] calldata ids, uint256 quantity) internal { if(quantity + _numberMinted(to) > maxPerAddress) revert MaxAllowedPerAddress(); if(block.timestamp < startAt || block.timestamp > endAt) revert WindowNotOpened(); setTokensIdsUris(ids, quantity); _mint(to, quantity); } function setTokensIdsUris(uint256[] calldata ids, uint256 quantity) internal { if(ids.length != quantity) revert InvalidArgument(); for (uint256 index = 0; index < quantity; index++) { if(currentSupply[ids[index]] + 1 > maxSupplyEach[ids[index]]) revert MaxSupplyReached(); tokenIdsUris[_nextTokenId() + index] = ids[index]; currentSupply[ids[index]]++; } } function tokenURI(uint256 tokenId) public view virtual override (IERC721A, ERC721A) returns (string memory) { if(!_exists(tokenId)) revert NonExistentToken(); return string(abi.encodePacked(baseURI, tokenIdsUris[tokenId].toString(), ".json")); } function setBaseURI(string calldata _baseURI) external onlyOwner { baseURI = _baseURI; emit ChangeBaseUri(msg.sender, _baseURI); } function setMaxSupply(uint256[] calldata _maxSupplyEach) external onlyBackend { if(_maxSupplyEach.length < maxSupplyEach.length) revert InvalidArgument(); maxSupplyEach = _maxSupplyEach; emit ChangeMaxSupply(msg.sender, _maxSupplyEach); } function setWithdrawAddress(address _address) external onlyOwner { addressWithdraw = _address; emit ChangeWithdrawAddress(msg.sender, _address); } function setMaxPerAddress(uint256 _maxPerAddress) external onlyOwner { maxPerAddress = _maxPerAddress; emit ChangeMaxAddress(msg.sender, _maxPerAddress); } function setBackendAddress(address _address) external onlyOwner { backend = _address; emit ChangeBackendAddress(msg.sender, _address); } function setStart(uint256 _startAt) external onlyOwner { startAt = _startAt; emit ChangeStartTime(msg.sender, _startAt); } function setEnd(uint256 _endAt) external onlyOwner { endAt = _endAt; emit ChangeEndTime(msg.sender, _endAt); } // Recover the address that signed the message in the back-end, needs to be the same public address in the contract function _verifySignature(bytes calldata signature, address to, uint256 quantity, uint256[] calldata ids) internal view returns (bool) { return backend == keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked(this, to, quantity, ids)))).recover(signature); } function withdrawMoney() external onlyOwner { (bool success, ) = addressWithdraw.call{value: address(this).balance}(""); if(!success) revert TransferFailed(); } // Get the current supply array all at once function checkTokenCurrentSupply() external view returns (uint256[] memory) { uint256[] memory totalSupplyEach = new uint[](maxSupplyEach.length); for (uint8 i = 0; i < maxSupplyEach.length; i++) { totalSupplyEach[i] = currentSupply[i]; } return totalSupplyEach; } // Get the supply array all at once function getSupplyArray() external view returns (uint256[] memory) { return maxSupplyEach; } function burn(uint256[] calldata tokensId) external { for(uint8 i = 0; i < tokensId.length; i++){ if(ownerOf(tokensId[i]) != msg.sender) revert UserNotOwner(); _burn(tokensId[i]); } }}

Contract ABI

  • JSON Format
  • RAW/Text Format
[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_backend","type":"address"},{"internalType":"address","name":"_addressWithdraw","type":"address"},{"internalType":"uint256[]","name":"_maxSupplyEach","type":"uint256[]"},{"internalType":"uint256","name":"_maxPerAddress","type":"uint256"},{"internalType":"uint256","name":"_startAt","type":"uint256"},{"internalType":"uint256","name":"_endAt","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidArgument","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MaxAllowedPerAddress","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NonExistentToken","type":"error"},{"inputs":[],"name":"NotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"UserNotOwner","type":"error"},{"inputs":[],"name":"WindowNotOpened","type":"error"},{"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":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"address","name":"_value","type":"address"}],"name":"ChangeBackendAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"string","name":"_value","type":"string"}],"name":"ChangeBaseUri","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"ChangeEndTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"ChangeMaxAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_value","type":"uint256[]"}],"name":"ChangeMaxSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"bool","name":"_value","type":"bool"}],"name":"ChangePause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"ChangeStartTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"address","name":"_value","type":"address"}],"name":"ChangeWithdrawAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"backend","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokensId","type":"uint256[]"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkTokenCurrentSupply","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupplyArray","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":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxSupplyEach","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintForUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setBackendAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_endAt","type":"uint256"}],"name":"setEnd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerAddress","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_maxSupplyEach","type":"uint256[]"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startAt","type":"uint256"}],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"","type":"uint256"}],"name":"tokenIdsUris","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Contract Creation Code

Decompile Bytecode Switch to Opcodes View

608060405260405180602001604052806000815250600f908162000024919062000543565b503480156200003257600080fd5b5060405162005947380380620059478339818101604052810190620000589190620008ff565b87876200007a6200006e6200018760201b60201c565b6200018f60201b60201c565b81600390816200008b919062000543565b5080600490816200009d919062000543565b50620000ae6200025360201b60201c565b600181905550505088600f9081620000c7919062000543565b5084600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600d819055508160098190555083600e90805190602001906200017092919062000258565b5080600a8190555050505050505050505062000a5a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b82805482825590600052602060002090810192821562000297579160200282015b828111156200029657825182559160200191906001019062000279565b5b509050620002a69190620002aa565b5090565b5b80821115620002c5576000816000905550600101620002ab565b5090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200034b57607f821691505b60208210810362000361576200036062000303565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003cb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200038c565b620003d786836200038c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004246200041e6200041884620003ef565b620003f9565b620003ef565b9050919050565b6000819050919050565b620004408362000403565b620004586200044f826200042b565b84845462000399565b825550505050565b600090565b6200046f62000460565b6200047c81848462000435565b505050565b5b81811015620004a4576200049860008262000465565b60018101905062000482565b5050565b601f821115620004f357620004bd8162000367565b620004c8846200037c565b81016020851015620004d8578190505b620004f0620004e7856200037c565b83018262000481565b50505b505050565b600082821c905092915050565b60006200051860001984600802620004f8565b1980831691505092915050565b600062000533838362000505565b9150826002028217905092915050565b6200054e82620002c9565b67ffffffffffffffff8111156200056a5762000569620002d4565b5b62000576825462000332565b62000583828285620004a8565b600060209050601f831160018114620005bb5760008415620005a6578287015190505b620005b2858262000525565b86555062000622565b601f198416620005cb8662000367565b60005b82811015620005f557848901518255600182019150602085019450602081019050620005ce565b8683101562000615578489015162000611601f89168262000505565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620006648262000648565b810181811067ffffffffffffffff82111715620006865762000685620002d4565b5b80604052505050565b60006200069b6200062a565b9050620006a9828262000659565b919050565b600067ffffffffffffffff821115620006cc57620006cb620002d4565b5b620006d78262000648565b9050602081019050919050565b60005b8381101562000704578082015181840152602081019050620006e7565b60008484015250505050565b6000620007276200072184620006ae565b6200068f565b90508281526020810184848401111562000746576200074562000643565b5b62000753848285620006e4565b509392505050565b600082601f8301126200077357620007726200063e565b5b81516200078584826020860162000710565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007bb826200078e565b9050919050565b620007cd81620007ae565b8114620007d957600080fd5b50565b600081519050620007ed81620007c2565b92915050565b600067ffffffffffffffff821115620008115762000810620002d4565b5b602082029050602081019050919050565b600080fd5b6200083281620003ef565b81146200083e57600080fd5b50565b600081519050620008528162000827565b92915050565b60006200086f6200086984620007f3565b6200068f565b9050808382526020820190506020840283018581111562000895576200089462000822565b5b835b81811015620008c25780620008ad888262000841565b84526020840193505060208101905062000897565b5050509392505050565b600082601f830112620008e457620008e36200063e565b5b8151620008f684826020860162000858565b91505092915050565b60008060008060008060008060006101208a8c03121562000925576200092462000634565b5b60008a015167ffffffffffffffff81111562000946576200094562000639565b5b620009548c828d016200075b565b99505060208a015167ffffffffffffffff81111562000978576200097762000639565b5b620009868c828d016200075b565b98505060408a015167ffffffffffffffff811115620009aa57620009a962000639565b5b620009b88c828d016200075b565b9750506060620009cb8c828d01620007dc565b9650506080620009de8c828d01620007dc565b95505060a08a015167ffffffffffffffff81111562000a025762000a0162000639565b5b62000a108c828d01620008cc565b94505060c062000a238c828d0162000841565b93505060e062000a368c828d0162000841565b92505061010062000a4a8c828d0162000841565b9150509295985092959850929598565b614edd8062000a6a6000396000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063ac446002116100b6578063c87b56dd1161007a578063c87b56dd146108db578063e0f925a514610918578063e23d2ffa14610941578063e985e9c51461096a578063f2fde38b146109a7578063f6a03ebf146109d05761025c565b8063ac44600214610817578063b80f55c91461082e578063b88d4fde14610857578063c23dc68f14610873578063c7446565146108b05761025c565b80638462151c116101085780638462151c146107025780638da5cb5b1461073f57806395c1d9191461076a57806395d89b411461078657806399a2557a146107b1578063a22cb465146107ee5761025c565b806370a0823114610631578063715018a61461066e5780637bddd65b146106855780637cc3ae8c146106ae5780637f498ffc146106d95761025c565b80633ab1a494116101dd5780635bbb2177116101a15780635bbb2177146104f95780635c0b288514610536578063623d29e4146105735780636352211e1461059e578063639814e0146105db5780636c0360eb146106065761025c565b80633ab1a4941461042557806342842e0e1461044e57806347da385b1461046a57806355f804b3146104935780635b746077146104bc5761025c565b80631815ce7d116102245780631815ce7d1461034d57806318160ddd146103765780631d17f1d6146103a157806322e893a9146103cc57806323b872dd146104095761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b314610306578063099e413314610322575b600080fd5b34801561026d57600080fd5b506102886004803603810190610283919061360a565b6109f9565b6040516102959190613652565b60405180910390f35b3480156102aa57600080fd5b506102b3610a8b565b6040516102c091906136fd565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613755565b610b1d565b6040516102fd91906137c3565b60405180910390f35b610320600480360381019061031b919061380a565b610b9c565b005b34801561032e57600080fd5b50610337610ce0565b60405161034491906137c3565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f919061384a565b610d06565b005b34801561038257600080fd5b5061038b610d8b565b6040516103989190613886565b60405180910390f35b3480156103ad57600080fd5b506103b6610da2565b6040516103c3919061395f565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613755565b610e5d565b6040516104009190613886565b60405180910390f35b610423600480360381019061041e9190613981565b610e75565b005b34801561043157600080fd5b5061044c6004803603810190610447919061384a565b611197565b005b61046860048036038101906104639190613981565b61121c565b005b34801561047657600080fd5b50610491600480360381019061048c9190613a39565b61123c565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613b03565b61131b565b005b3480156104c857600080fd5b506104e360048036038101906104de9190613755565b611374565b6040516104f09190613886565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613b50565b61138c565b60405161052d9190613d00565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613755565b61144f565b60405161056a9190613886565b60405180910390f35b34801561057f57600080fd5b50610588611473565b604051610595919061395f565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190613755565b6114cb565b6040516105d291906137c3565b60405180910390f35b3480156105e757600080fd5b506105f06114dd565b6040516105fd9190613886565b60405180910390f35b34801561061257600080fd5b5061061b6114e3565b60405161062891906136fd565b60405180910390f35b34801561063d57600080fd5b506106586004803603810190610653919061384a565b611571565b6040516106659190613886565b60405180910390f35b34801561067a57600080fd5b50610683611629565b005b34801561069157600080fd5b506106ac60048036038101906106a79190613755565b61163d565b005b3480156106ba57600080fd5b506106c3611688565b6040516106d09190613886565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190613755565b61168e565b005b34801561070e57600080fd5b506107296004803603810190610724919061384a565b6116d9565b604051610736919061395f565b60405180910390f35b34801561074b57600080fd5b5061075461181c565b60405161076191906137c3565b60405180910390f35b610784600480360381019061077f9190613d78565b611845565b005b34801561079257600080fd5b5061079b61189c565b6040516107a891906136fd565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613e0d565b61192e565b6040516107e5919061395f565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190613e8c565b611b3a565b005b34801561082357600080fd5b5061082c611c45565b005b34801561083a57600080fd5b5061085560048036038101906108509190613b50565b611d15565b005b610871600480360381019061086c9190613ffc565b611deb565b005b34801561087f57600080fd5b5061089a60048036038101906108959190613755565b611e5e565b6040516108a791906140d4565b60405180910390f35b3480156108bc57600080fd5b506108c5611ec8565b6040516108d29190613886565b60405180910390f35b3480156108e757600080fd5b5061090260048036038101906108fd9190613755565b611ece565b60405161090f91906136fd565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190613a39565b611f54565b005b34801561094d57600080fd5b5061096860048036038101906109639190613b50565b611fc6565b005b34801561097657600080fd5b50610991600480360381019061098c91906140ef565b612126565b60405161099e9190613652565b60405180910390f35b3480156109b357600080fd5b506109ce60048036038101906109c9919061384a565b6121ba565b005b3480156109dc57600080fd5b506109f760048036038101906109f29190613755565b61223d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a845750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610a9a9061415e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac69061415e565b8015610b135780601f10610ae857610100808354040283529160200191610b13565b820191906000526020600020905b815481529060010190602001808311610af657829003601f168201915b5050505050905090565b6000610b2882612288565b610b5e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba7826114cb565b90508073ffffffffffffffffffffffffffffffffffffffff16610bc86122e7565b73ffffffffffffffffffffffffffffffffffffffff1614610c2b57610bf481610bef6122e7565b612126565b610c2a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d0e6122ef565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f737f5a50787df347119fb10c2c728e69bc9fda0006cb1c121c0ad255542cc8533382604051610d8092919061418f565b60405180910390a150565b6000610d9561236d565b6002546001540303905090565b60606000600e8054905067ffffffffffffffff811115610dc557610dc4613ed1565b5b604051908082528060200260200182016040528015610df35781602001602082028036833780820191505090505b50905060005b600e805490508160ff161015610e5557601160008260ff16815260200190815260200160002054828260ff1681518110610e3657610e356141b8565b5b6020026020010181815250508080610e4d90614223565b915050610df9565b508091505090565b60106020528060005260406000206000915090505481565b6000610e8082612372565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ee7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ef38461243e565b91509150610f098187610f046122e7565b612465565b610f5557610f1e86610f196122e7565b612126565b610f54576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610fbb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fc886868660016124a9565b8015610fd357600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110a18561107d8888876124af565b7c0200000000000000000000000000000000000000000000000000000000176124d7565b600560008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111275760006001850190506000600560008381526020019081526020016000205403611125576001548114611124578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461118f8686866001612502565b505050505050565b61119f6122ef565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa3a0c04195bfa34ad94652a3bccfc8aca031df8bb93aad6da0bdb86881766650338260405161121192919061418f565b60405180910390a150565b61123783838360405180602001604052806000815250611deb565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112ca575061129b61181c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611300906142be565b60405180910390fd5b61131584848484612508565b50505050565b6113236122ef565b8181600f9182611334929190614495565b507f8d4b3b35330f04b14885eebb3e1a11928bdb149234e60f4b5321660d94132d1433838360405161136893929190614592565b60405180910390a15050565b60116020528060005260406000206000915090505481565b6060600083839050905060008167ffffffffffffffff8111156113b2576113b1613ed1565b5b6040519080825280602002602001820160405280156113eb57816020015b6113d86134e5565b8152602001906001900390816113d05790505b50905060005b8281146114435761141a86868381811061140e5761140d6141b8565b5b90506020020135611e5e565b82828151811061142d5761142c6141b8565b5b60200260200101819052508060010190506113f1565b50809250505092915050565b600e818154811061145f57600080fd5b906000526020600020016000915090505481565b6060600e8054806020026020016040519081016040528092919081815260200182805480156114c157602002820191906000526020600020905b8154815260200190600101908083116114ad575b5050505050905090565b60006114d682612372565b9050919050565b600d5481565b600f80546114f09061415e565b80601f016020809104026020016040519081016040528092919081815260200182805461151c9061415e565b80156115695780601f1061153e57610100808354040283529160200191611569565b820191906000526020600020905b81548152906001019060200180831161154c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115d8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116316122ef565b61163b60006125ba565b565b6116456122ef565b80600d819055507f25dd0e6fe3c668487fc006df7a33a01e9d24df894a24594fb31807e3522aed0b338260405161167d9291906145c4565b60405180910390a150565b600a5481565b6116966122ef565b80600a819055507f3e1054e524685e501baaf47c95daab914dbcd75def66b8ad655ec30348a9689533826040516116ce9291906145c4565b60405180910390a150565b606060008060006116e985611571565b905060008167ffffffffffffffff81111561170757611706613ed1565b5b6040519080825280602002602001820160405280156117355781602001602082028036833780820191505090505b5090506117406134e5565b600061174a61236d565b90505b83861461180e5761175d8161267e565b9150816040015161180357600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146117a857816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361180257808387806001019850815181106117f5576117f46141b8565b5b6020026020010181815250505b5b80600101905061174d565b508195505050505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118538282338888886126a9565b611889576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61189533858588612508565b5050505050565b6060600480546118ab9061415e565b80601f01602080910402602001604051908101604052809291908181526020018280546118d79061415e565b80156119245780601f106118f957610100808354040283529160200191611924565b820191906000526020600020905b81548152906001019060200180831161190757829003601f168201915b5050505050905090565b6060818310611969576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806119746127b2565b905061197e61236d565b8510156119905761198d61236d565b94505b8084111561199c578093505b60006119a787611571565b9050848610156119ca5760008686039050818110156119c4578091505b506119cf565b600090505b60008167ffffffffffffffff8111156119eb576119ea613ed1565b5b604051908082528060200260200182016040528015611a195781602001602082028036833780820191505090505b50905060008203611a305780945050505050611b33565b6000611a3b88611e5e565b905060008160400151611a5057816000015190505b60008990505b888114158015611a665750848714155b15611b2557611a748161267e565b92508260400151611b1a57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611abf57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b195780848880600101995081518110611b0c57611b0b6141b8565b5b6020026020010181815250505b5b806001019050611a56565b508583528296505050505050505b9392505050565b8060086000611b476122e7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bf46122e7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c399190613652565b60405180910390a35050565b611c4d6122ef565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611c959061461e565b60006040518083038185875af1925050503d8060008114611cd2576040519150601f19603f3d011682016040523d82523d6000602084013e611cd7565b606091505b5050905080611d12576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b60005b828290508160ff161015611de6573373ffffffffffffffffffffffffffffffffffffffff16611d6284848460ff16818110611d5657611d556141b8565b5b905060200201356114cb565b73ffffffffffffffffffffffffffffffffffffffff1614611dae576040517efa70d300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd383838360ff16818110611dc757611dc66141b8565b5b905060200201356127bc565b8080611dde90614223565b915050611d18565b505050565b611df6848484610e75565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e5857611e21848484846127ca565b611e57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611e666134e5565b611e6e6134e5565b611e7661236d565b831080611e8a5750611e866127b2565b8310155b15611e985780915050611ec3565b611ea18361267e565b9050806040015115611eb65780915050611ec3565b611ebf8361291a565b9150505b919050565b60095481565b6060611ed982612288565b611f0f576040517f9430a17e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f611f2d601060008581526020019081526020016000205461293a565b604051602001611f3e92919061473e565b6040516020818303038152906040529050919050565b611f5c6122ef565b600d54611f6885612a08565b82611f73919061476d565b1115611fab576040517fc24746be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fb6838383612a5f565b611fc08482612bed565b50505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480612054575061202561181c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a906142be565b60405180910390fd5b600e805490508282905010156120d5576040517fa9cb9e0d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181600e91906120e6929190613534565b507fba0a281ecbc124e976676fa667f92ed76ae4f83ae947d592f000dea44e9d005a33838360405161211a9392919061480b565b60405180910390a15050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121c26122ef565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612231576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612228906148af565b60405180910390fd5b61223a816125ba565b50565b6122456122ef565b806009819055507f669d23c3e58e8a909becbc69535097c526818da1f9f4b3e91060d8e1cafb79de338260405161227d9291906145c4565b60405180910390a150565b60008161229361236d565b111580156122a2575060015482105b80156122e0575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b6122f7612da9565b73ffffffffffffffffffffffffffffffffffffffff1661231561181c565b73ffffffffffffffffffffffffffffffffffffffff161461236b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123629061491b565b60405180910390fd5b565b600090565b6000808290508061238161236d565b11612407576001548110156124065760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612404575b600081036123fa5760056000836001900393508381526020019081526020016000205490506123d0565b8092505050612439565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86124c6868684612db1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600d5461251485612a08565b8261251f919061476d565b1115612557576040517fc24746be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009544210806125685750600a5442115b1561259f576040517fe282bc5c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125aa838383612a5f565b6125b48482612bed565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126866134e5565b6126a26005600084815260200190815260200160002054612dba565b9050919050565b600061275687878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050308787878760405160200161270c959493929190614a68565b604051602081830303815290604052805190602001206040516020016127329190614b2b565b60405160208183030381529060405280519060200120612e7090919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161490509695505050505050565b6000600154905090565b6127c7816000612e97565b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127f06122e7565b8786866040518563ffffffff1660e01b81526004016128129493929190614ba6565b6020604051808303816000875af192505050801561284e57506040513d601f19601f8201168201806040525081019061284b9190614c07565b60015b6128c7573d806000811461287e576040519150601f19603f3d011682016040523d82523d6000602084013e612883565b606091505b5060008151036128bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6129226134e5565b61293361292e83612372565b612dba565b9050919050565b606060006001612949846130e9565b01905060008167ffffffffffffffff81111561296857612967613ed1565b5b6040519080825280601f01601f19166020018201604052801561299a5781602001600182028036833780820191505090505b509050600082602001820190505b6001156129fd578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816129f1576129f0614c34565b5b049450600085036129a8575b819350505050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b808383905014612a9b576040517fa9cb9e0d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81811015612be757600e848483818110612abb57612aba6141b8565b5b9050602002013581548110612ad357612ad26141b8565b5b9060005260206000200154600160116000878786818110612af757612af66141b8565b5b90506020020135815260200190815260200160002054612b17919061476d565b1115612b4f576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b838382818110612b6257612b616141b8565b5b905060200201356010600083612b766127b2565b612b80919061476d565b81526020019081526020016000208190555060116000858584818110612ba957612ba86141b8565b5b9050602002013581526020019081526020016000206000815480929190612bcf90614c63565b91905055508080612bdf90614c63565b915050612a9e565b50505050565b6000600154905060008203612c2e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c3b60008483856124a9565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612cb283612ca360008660006124af565b612cac8561323c565b176124d7565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612d5357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612d18565b5060008203612d8e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050612da46000848385612502565b505050565b600033905090565b60009392505050565b612dc26134e5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000806000612e7f858561324c565b91509150612e8c8161329d565b819250505092915050565b6000612ea283612372565b90506000819050600080612eb58661243e565b915091508415612f1e57612ed18184612ecc6122e7565b612465565b612f1d57612ee683612ee16122e7565b612126565b612f1c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612f2c8360008860016124a9565b8015612f3757600082555b600160806001901b03600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612fdf83612f9c856000886124af565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176124d7565b600560008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036130655760006001870190506000600560008381526020019081526020016000205403613063576001548114613062578460056000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130cf836000886001612502565b600260008154809291906001019190505550505050505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613147577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161313d5761313c614c34565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613184576d04ee2d6d415b85acef8100000000838161317a57613179614c34565b5b0492506020810190505b662386f26fc1000083106131b357662386f26fc1000083816131a9576131a8614c34565b5b0492506010810190505b6305f5e10083106131dc576305f5e10083816131d2576131d1614c34565b5b0492506008810190505b61271083106132015761271083816131f7576131f6614c34565b5b0492506004810190505b60648310613224576064838161321a57613219614c34565b5b0492506002810190505b600a8310613233576001810190505b80915050919050565b60006001821460e11b9050919050565b600080604183510361328d5760008060006020860151925060408601519150606086015160001a905061328187828585613403565b94509450505050613296565b60006002915091505b9250929050565b600060048111156132b1576132b0614cab565b5b8160048111156132c4576132c3614cab565b5b031561340057600160048111156132de576132dd614cab565b5b8160048111156132f1576132f0614cab565b5b03613331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332890614d26565b60405180910390fd5b6002600481111561334557613344614cab565b5b81600481111561335857613357614cab565b5b03613398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338f90614d92565b60405180910390fd5b600360048111156133ac576133ab614cab565b5b8160048111156133bf576133be614cab565b5b036133ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f690614e24565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561343e5760006003915091506134dc565b6000600187878787604051600081526020016040526040516134639493929190614e62565b6020604051602081039080840390855afa158015613485573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036134d3576000600192509250506134dc565b80600092509250505b94509492505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b828054828255906000526020600020908101928215613570579160200282015b8281111561356f578235825591602001919060010190613554565b5b50905061357d9190613581565b5090565b5b8082111561359a576000816000905550600101613582565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135e7816135b2565b81146135f257600080fd5b50565b600081359050613604816135de565b92915050565b6000602082840312156136205761361f6135a8565b5b600061362e848285016135f5565b91505092915050565b60008115159050919050565b61364c81613637565b82525050565b60006020820190506136676000830184613643565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136a757808201518184015260208101905061368c565b60008484015250505050565b6000601f19601f8301169050919050565b60006136cf8261366d565b6136d98185613678565b93506136e9818560208601613689565b6136f2816136b3565b840191505092915050565b6000602082019050818103600083015261371781846136c4565b905092915050565b6000819050919050565b6137328161371f565b811461373d57600080fd5b50565b60008135905061374f81613729565b92915050565b60006020828403121561376b5761376a6135a8565b5b600061377984828501613740565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137ad82613782565b9050919050565b6137bd816137a2565b82525050565b60006020820190506137d860008301846137b4565b92915050565b6137e7816137a2565b81146137f257600080fd5b50565b600081359050613804816137de565b92915050565b60008060408385031215613821576138206135a8565b5b600061382f858286016137f5565b925050602061384085828601613740565b9150509250929050565b6000602082840312156138605761385f6135a8565b5b600061386e848285016137f5565b91505092915050565b6138808161371f565b82525050565b600060208201905061389b6000830184613877565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138d68161371f565b82525050565b60006138e883836138cd565b60208301905092915050565b6000602082019050919050565b600061390c826138a1565b61391681856138ac565b9350613921836138bd565b8060005b8381101561395257815161393988826138dc565b9750613944836138f4565b925050600181019050613925565b5085935050505092915050565b600060208201905081810360008301526139798184613901565b905092915050565b60008060006060848603121561399a576139996135a8565b5b60006139a8868287016137f5565b93505060206139b9868287016137f5565b92505060406139ca86828701613740565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126139f9576139f86139d4565b5b8235905067ffffffffffffffff811115613a1657613a156139d9565b5b602083019150836020820283011115613a3257613a316139de565b5b9250929050565b60008060008060608587031215613a5357613a526135a8565b5b6000613a61878288016137f5565b945050602085013567ffffffffffffffff811115613a8257613a816135ad565b5b613a8e878288016139e3565b93509350506040613aa187828801613740565b91505092959194509250565b60008083601f840112613ac357613ac26139d4565b5b8235905067ffffffffffffffff811115613ae057613adf6139d9565b5b602083019150836001820283011115613afc57613afb6139de565b5b9250929050565b60008060208385031215613b1a57613b196135a8565b5b600083013567ffffffffffffffff811115613b3857613b376135ad565b5b613b4485828601613aad565b92509250509250929050565b60008060208385031215613b6757613b666135a8565b5b600083013567ffffffffffffffff811115613b8557613b846135ad565b5b613b91858286016139e3565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bd2816137a2565b82525050565b600067ffffffffffffffff82169050919050565b613bf581613bd8565b82525050565b613c0481613637565b82525050565b600062ffffff82169050919050565b613c2281613c0a565b82525050565b608082016000820151613c3e6000850182613bc9565b506020820151613c516020850182613bec565b506040820151613c646040850182613bfb565b506060820151613c776060850182613c19565b50505050565b6000613c898383613c28565b60808301905092915050565b6000602082019050919050565b6000613cad82613b9d565b613cb78185613ba8565b9350613cc283613bb9565b8060005b83811015613cf3578151613cda8882613c7d565b9750613ce583613c95565b925050600181019050613cc6565b5085935050505092915050565b60006020820190508181036000830152613d1a8184613ca2565b905092915050565b60008083601f840112613d3857613d376139d4565b5b8235905067ffffffffffffffff811115613d5557613d546139d9565b5b602083019150836001820283011115613d7157613d706139de565b5b9250929050565b600080600080600060608688031215613d9457613d936135a8565b5b6000613da288828901613740565b955050602086013567ffffffffffffffff811115613dc357613dc26135ad565b5b613dcf888289016139e3565b9450945050604086013567ffffffffffffffff811115613df257613df16135ad565b5b613dfe88828901613d22565b92509250509295509295909350565b600080600060608486031215613e2657613e256135a8565b5b6000613e34868287016137f5565b9350506020613e4586828701613740565b9250506040613e5686828701613740565b9150509250925092565b613e6981613637565b8114613e7457600080fd5b50565b600081359050613e8681613e60565b92915050565b60008060408385031215613ea357613ea26135a8565b5b6000613eb1858286016137f5565b9250506020613ec285828601613e77565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f09826136b3565b810181811067ffffffffffffffff82111715613f2857613f27613ed1565b5b80604052505050565b6000613f3b61359e565b9050613f478282613f00565b919050565b600067ffffffffffffffff821115613f6757613f66613ed1565b5b613f70826136b3565b9050602081019050919050565b82818337600083830152505050565b6000613f9f613f9a84613f4c565b613f31565b905082815260208101848484011115613fbb57613fba613ecc565b5b613fc6848285613f7d565b509392505050565b600082601f830112613fe357613fe26139d4565b5b8135613ff3848260208601613f8c565b91505092915050565b60008060008060808587031215614016576140156135a8565b5b6000614024878288016137f5565b9450506020614035878288016137f5565b935050604061404687828801613740565b925050606085013567ffffffffffffffff811115614067576140666135ad565b5b61407387828801613fce565b91505092959194509250565b6080820160008201516140956000850182613bc9565b5060208201516140a86020850182613bec565b5060408201516140bb6040850182613bfb565b5060608201516140ce6060850182613c19565b50505050565b60006080820190506140e9600083018461407f565b92915050565b60008060408385031215614106576141056135a8565b5b6000614114858286016137f5565b9250506020614125858286016137f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061417657607f821691505b6020821081036141895761418861412f565b5b50919050565b60006040820190506141a460008301856137b4565b6141b160208301846137b4565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600060ff82169050919050565b600061422e82614216565b915060ff8203614241576142406141e7565b5b600182019050919050565b7f4f6e6c792073656e6465722063616e207573652067697665617761792066756e60008201527f6374696f6e2e0000000000000000000000000000000000000000000000000000602082015250565b60006142a8602683613678565b91506142b38261424c565b604082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261434b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261430e565b614355868361430e565b95508019841693508086168417925050509392505050565b6000819050919050565b600061439261438d6143888461371f565b61436d565b61371f565b9050919050565b6000819050919050565b6143ac83614377565b6143c06143b882614399565b84845461431b565b825550505050565b600090565b6143d56143c8565b6143e08184846143a3565b505050565b5b81811015614404576143f96000826143cd565b6001810190506143e6565b5050565b601f8211156144495761441a816142e9565b614423846142fe565b81016020851015614432578190505b61444661443e856142fe565b8301826143e5565b50505b505050565b600082821c905092915050565b600061446c6000198460080261444e565b1980831691505092915050565b6000614485838361445b565b9150826002028217905092915050565b61449f83836142de565b67ffffffffffffffff8111156144b8576144b7613ed1565b5b6144c2825461415e565b6144cd828285614408565b6000601f8311600181146144fc57600084156144ea578287013590505b6144f48582614479565b86555061455c565b601f19841661450a866142e9565b60005b828110156145325784890135825560018201915060208501945060208101905061450d565b8683101561454f578489013561454b601f89168261445b565b8355505b6001600288020188555050505b50505050505050565b60006145718385613678565b935061457e838584613f7d565b614587836136b3565b840190509392505050565b60006040820190506145a760008301866137b4565b81810360208301526145ba818486614565565b9050949350505050565b60006040820190506145d960008301856137b4565b6145e66020830184613877565b9392505050565b600081905092915050565b50565b60006146086000836145ed565b9150614613826145f8565b600082019050919050565b6000614629826145fb565b9150819050919050565b600081905092915050565b6000815461464b8161415e565b6146558186614633565b945060018216600081146146705760018114614685576146b8565b60ff19831686528115158202860193506146b8565b61468e856142e9565b60005b838110156146b057815481890152600182019150602081019050614691565b838801955050505b50505092915050565b60006146cc8261366d565b6146d68185614633565b93506146e6818560208601613689565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614728600583614633565b9150614733826146f2565b600582019050919050565b600061474a828561463e565b915061475682846146c1565b91506147618261471b565b91508190509392505050565b60006147788261371f565b91506147838361371f565b925082820190508082111561479b5761479a6141e7565b5b92915050565b600080fd5b82818337505050565b60006147bb83856138ac565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311156147ee576147ed6147a1565b5b6020830292506147ff8385846147a6565b82840190509392505050565b600060408201905061482060008301866137b4565b81810360208301526148338184866147af565b9050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614899602683613678565b91506148a48261483d565b604082019050919050565b600060208201905081810360008301526148c88161488c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614905602083613678565b9150614910826148cf565b602082019050919050565b60006020820190508181036000830152614934816148f8565b9050919050565b600061495661495161494c84613782565b61436d565b613782565b9050919050565b60006149688261493b565b9050919050565b600061497a8261495d565b9050919050565b60008160601b9050919050565b600061499982614981565b9050919050565b60006149ab8261498e565b9050919050565b6149c36149be8261496f565b6149a0565b82525050565b6149da6149d5826137a2565b6149a0565b82525050565b6000819050919050565b6149fb6149f68261371f565b6149e0565b82525050565b600081905092915050565b6000614a188385614a01565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115614a4b57614a4a6147a1565b5b602083029250614a5c8385846147a6565b82840190509392505050565b6000614a7482886149b2565b601482019150614a8482876149c9565b601482019150614a9482866149ea565b602082019150614aa5828486614a0c565b91508190509695505050505050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614aea601c83614633565b9150614af582614ab4565b601c82019050919050565b6000819050919050565b6000819050919050565b614b25614b2082614b00565b614b0a565b82525050565b6000614b3682614add565b9150614b428284614b14565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000614b7882614b51565b614b828185614b5c565b9350614b92818560208601613689565b614b9b816136b3565b840191505092915050565b6000608082019050614bbb60008301876137b4565b614bc860208301866137b4565b614bd56040830185613877565b8181036060830152614be78184614b6d565b905095945050505050565b600081519050614c01816135de565b92915050565b600060208284031215614c1d57614c1c6135a8565b5b6000614c2b84828501614bf2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c6e8261371f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614ca057614c9f6141e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614d10601883613678565b9150614d1b82614cda565b602082019050919050565b60006020820190508181036000830152614d3f81614d03565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000614d7c601f83613678565b9150614d8782614d46565b602082019050919050565b60006020820190508181036000830152614dab81614d6f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e0e602283613678565b9150614e1982614db2565b604082019050919050565b60006020820190508181036000830152614e3d81614e01565b9050919050565b614e4d81614b00565b82525050565b614e5c81614216565b82525050565b6000608082019050614e776000830187614e44565b614e846020830186614e53565b614e916040830185614e44565b614e9e6060830184614e44565b9594505050505056fea2646970667358221220bcce3d2b1ce69c6c28377213a9f06167b386a13dca7a002d10e8e785d91b49d364736f6c63430008120033000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000a65aae78edef916d4102ba7b5672068c0d35fbff000000000000000000000000a65aae78edef916d4102ba7b5672068c0d35fbff0000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000007b0000000000000000000000000000000000000000000000000000000065cf739c000000000000000000000000000000000000000000000000000000006b745f9c000000000000000000000000000000000000000000000000000000000000007968747470733a2f2f6c756d782d6e66742d646174612d73746167696e672e73332e616d617a6f6e6177732e636f6d2f61383136386136372d303061662d343765392d623763382d3039376562393362323136382f66623032376133632d336562392d346430352d383461652d3566653534383563613665362f0000000000000000000000000000000000000000000000000000000000000000000000000000057465737465000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000574657374650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000007b


Deployed Bytecode

0x60806040526004361061025c5760003560e01c806370a0823111610144578063ac446002116100b6578063c87b56dd1161007a578063c87b56dd146108db578063e0f925a514610918578063e23d2ffa14610941578063e985e9c51461096a578063f2fde38b146109a7578063f6a03ebf146109d05761025c565b8063ac44600214610817578063b80f55c91461082e578063b88d4fde14610857578063c23dc68f14610873578063c7446565146108b05761025c565b80638462151c116101085780638462151c146107025780638da5cb5b1461073f57806395c1d9191461076a57806395d89b411461078657806399a2557a146107b1578063a22cb465146107ee5761025c565b806370a0823114610631578063715018a61461066e5780637bddd65b146106855780637cc3ae8c146106ae5780637f498ffc146106d95761025c565b80633ab1a494116101dd5780635bbb2177116101a15780635bbb2177146104f95780635c0b288514610536578063623d29e4146105735780636352211e1461059e578063639814e0146105db5780636c0360eb146106065761025c565b80633ab1a4941461042557806342842e0e1461044e57806347da385b1461046a57806355f804b3146104935780635b746077146104bc5761025c565b80631815ce7d116102245780631815ce7d1461034d57806318160ddd146103765780631d17f1d6146103a157806322e893a9146103cc57806323b872dd146104095761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b314610306578063099e413314610322575b600080fd5b34801561026d57600080fd5b506102886004803603810190610283919061360a565b6109f9565b6040516102959190613652565b60405180910390f35b3480156102aa57600080fd5b506102b3610a8b565b6040516102c091906136fd565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613755565b610b1d565b6040516102fd91906137c3565b60405180910390f35b610320600480360381019061031b919061380a565b610b9c565b005b34801561032e57600080fd5b50610337610ce0565b60405161034491906137c3565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f919061384a565b610d06565b005b34801561038257600080fd5b5061038b610d8b565b6040516103989190613886565b60405180910390f35b3480156103ad57600080fd5b506103b6610da2565b6040516103c3919061395f565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613755565b610e5d565b6040516104009190613886565b60405180910390f35b610423600480360381019061041e9190613981565b610e75565b005b34801561043157600080fd5b5061044c6004803603810190610447919061384a565b611197565b005b61046860048036038101906104639190613981565b61121c565b005b34801561047657600080fd5b50610491600480360381019061048c9190613a39565b61123c565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613b03565b61131b565b005b3480156104c857600080fd5b506104e360048036038101906104de9190613755565b611374565b6040516104f09190613886565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613b50565b61138c565b60405161052d9190613d00565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613755565b61144f565b60405161056a9190613886565b60405180910390f35b34801561057f57600080fd5b50610588611473565b604051610595919061395f565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190613755565b6114cb565b6040516105d291906137c3565b60405180910390f35b3480156105e757600080fd5b506105f06114dd565b6040516105fd9190613886565b60405180910390f35b34801561061257600080fd5b5061061b6114e3565b60405161062891906136fd565b60405180910390f35b34801561063d57600080fd5b506106586004803603810190610653919061384a565b611571565b6040516106659190613886565b60405180910390f35b34801561067a57600080fd5b50610683611629565b005b34801561069157600080fd5b506106ac60048036038101906106a79190613755565b61163d565b005b3480156106ba57600080fd5b506106c3611688565b6040516106d09190613886565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190613755565b61168e565b005b34801561070e57600080fd5b506107296004803603810190610724919061384a565b6116d9565b604051610736919061395f565b60405180910390f35b34801561074b57600080fd5b5061075461181c565b60405161076191906137c3565b60405180910390f35b610784600480360381019061077f9190613d78565b611845565b005b34801561079257600080fd5b5061079b61189c565b6040516107a891906136fd565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613e0d565b61192e565b6040516107e5919061395f565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190613e8c565b611b3a565b005b34801561082357600080fd5b5061082c611c45565b005b34801561083a57600080fd5b5061085560048036038101906108509190613b50565b611d15565b005b610871600480360381019061086c9190613ffc565b611deb565b005b34801561087f57600080fd5b5061089a60048036038101906108959190613755565b611e5e565b6040516108a791906140d4565b60405180910390f35b3480156108bc57600080fd5b506108c5611ec8565b6040516108d29190613886565b60405180910390f35b3480156108e757600080fd5b5061090260048036038101906108fd9190613755565b611ece565b60405161090f91906136fd565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190613a39565b611f54565b005b34801561094d57600080fd5b5061096860048036038101906109639190613b50565b611fc6565b005b34801561097657600080fd5b50610991600480360381019061098c91906140ef565b612126565b60405161099e9190613652565b60405180910390f35b3480156109b357600080fd5b506109ce60048036038101906109c9919061384a565b6121ba565b005b3480156109dc57600080fd5b506109f760048036038101906109f29190613755565b61223d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a845750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610a9a9061415e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac69061415e565b8015610b135780601f10610ae857610100808354040283529160200191610b13565b820191906000526020600020905b815481529060010190602001808311610af657829003601f168201915b5050505050905090565b6000610b2882612288565b610b5e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba7826114cb565b90508073ffffffffffffffffffffffffffffffffffffffff16610bc86122e7565b73ffffffffffffffffffffffffffffffffffffffff1614610c2b57610bf481610bef6122e7565b612126565b610c2a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d0e6122ef565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f737f5a50787df347119fb10c2c728e69bc9fda0006cb1c121c0ad255542cc8533382604051610d8092919061418f565b60405180910390a150565b6000610d9561236d565b6002546001540303905090565b60606000600e8054905067ffffffffffffffff811115610dc557610dc4613ed1565b5b604051908082528060200260200182016040528015610df35781602001602082028036833780820191505090505b50905060005b600e805490508160ff161015610e5557601160008260ff16815260200190815260200160002054828260ff1681518110610e3657610e356141b8565b5b6020026020010181815250508080610e4d90614223565b915050610df9565b508091505090565b60106020528060005260406000206000915090505481565b6000610e8082612372565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ee7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ef38461243e565b91509150610f098187610f046122e7565b612465565b610f5557610f1e86610f196122e7565b612126565b610f54576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610fbb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fc886868660016124a9565b8015610fd357600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110a18561107d8888876124af565b7c0200000000000000000000000000000000000000000000000000000000176124d7565b600560008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111275760006001850190506000600560008381526020019081526020016000205403611125576001548114611124578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461118f8686866001612502565b505050505050565b61119f6122ef565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa3a0c04195bfa34ad94652a3bccfc8aca031df8bb93aad6da0bdb86881766650338260405161121192919061418f565b60405180910390a150565b61123783838360405180602001604052806000815250611deb565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112ca575061129b61181c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611300906142be565b60405180910390fd5b61131584848484612508565b50505050565b6113236122ef565b8181600f9182611334929190614495565b507f8d4b3b35330f04b14885eebb3e1a11928bdb149234e60f4b5321660d94132d1433838360405161136893929190614592565b60405180910390a15050565b60116020528060005260406000206000915090505481565b6060600083839050905060008167ffffffffffffffff8111156113b2576113b1613ed1565b5b6040519080825280602002602001820160405280156113eb57816020015b6113d86134e5565b8152602001906001900390816113d05790505b50905060005b8281146114435761141a86868381811061140e5761140d6141b8565b5b90506020020135611e5e565b82828151811061142d5761142c6141b8565b5b60200260200101819052508060010190506113f1565b50809250505092915050565b600e818154811061145f57600080fd5b906000526020600020016000915090505481565b6060600e8054806020026020016040519081016040528092919081815260200182805480156114c157602002820191906000526020600020905b8154815260200190600101908083116114ad575b5050505050905090565b60006114d682612372565b9050919050565b600d5481565b600f80546114f09061415e565b80601f016020809104026020016040519081016040528092919081815260200182805461151c9061415e565b80156115695780601f1061153e57610100808354040283529160200191611569565b820191906000526020600020905b81548152906001019060200180831161154c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115d8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116316122ef565b61163b60006125ba565b565b6116456122ef565b80600d819055507f25dd0e6fe3c668487fc006df7a33a01e9d24df894a24594fb31807e3522aed0b338260405161167d9291906145c4565b60405180910390a150565b600a5481565b6116966122ef565b80600a819055507f3e1054e524685e501baaf47c95daab914dbcd75def66b8ad655ec30348a9689533826040516116ce9291906145c4565b60405180910390a150565b606060008060006116e985611571565b905060008167ffffffffffffffff81111561170757611706613ed1565b5b6040519080825280602002602001820160405280156117355781602001602082028036833780820191505090505b5090506117406134e5565b600061174a61236d565b90505b83861461180e5761175d8161267e565b9150816040015161180357600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146117a857816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361180257808387806001019850815181106117f5576117f46141b8565b5b6020026020010181815250505b5b80600101905061174d565b508195505050505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118538282338888886126a9565b611889576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61189533858588612508565b5050505050565b6060600480546118ab9061415e565b80601f01602080910402602001604051908101604052809291908181526020018280546118d79061415e565b80156119245780601f106118f957610100808354040283529160200191611924565b820191906000526020600020905b81548152906001019060200180831161190757829003601f168201915b5050505050905090565b6060818310611969576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806119746127b2565b905061197e61236d565b8510156119905761198d61236d565b94505b8084111561199c578093505b60006119a787611571565b9050848610156119ca5760008686039050818110156119c4578091505b506119cf565b600090505b60008167ffffffffffffffff8111156119eb576119ea613ed1565b5b604051908082528060200260200182016040528015611a195781602001602082028036833780820191505090505b50905060008203611a305780945050505050611b33565b6000611a3b88611e5e565b905060008160400151611a5057816000015190505b60008990505b888114158015611a665750848714155b15611b2557611a748161267e565b92508260400151611b1a57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611abf57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b195780848880600101995081518110611b0c57611b0b6141b8565b5b6020026020010181815250505b5b806001019050611a56565b508583528296505050505050505b9392505050565b8060086000611b476122e7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bf46122e7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c399190613652565b60405180910390a35050565b611c4d6122ef565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611c959061461e565b60006040518083038185875af1925050503d8060008114611cd2576040519150601f19603f3d011682016040523d82523d6000602084013e611cd7565b606091505b5050905080611d12576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b60005b828290508160ff161015611de6573373ffffffffffffffffffffffffffffffffffffffff16611d6284848460ff16818110611d5657611d556141b8565b5b905060200201356114cb565b73ffffffffffffffffffffffffffffffffffffffff1614611dae576040517efa70d300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd383838360ff16818110611dc757611dc66141b8565b5b905060200201356127bc565b8080611dde90614223565b915050611d18565b505050565b611df6848484610e75565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e5857611e21848484846127ca565b611e57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611e666134e5565b611e6e6134e5565b611e7661236d565b831080611e8a5750611e866127b2565b8310155b15611e985780915050611ec3565b611ea18361267e565b9050806040015115611eb65780915050611ec3565b611ebf8361291a565b9150505b919050565b60095481565b6060611ed982612288565b611f0f576040517f9430a17e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f611f2d601060008581526020019081526020016000205461293a565b604051602001611f3e92919061473e565b6040516020818303038152906040529050919050565b611f5c6122ef565b600d54611f6885612a08565b82611f73919061476d565b1115611fab576040517fc24746be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fb6838383612a5f565b611fc08482612bed565b50505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480612054575061202561181c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a906142be565b60405180910390fd5b600e805490508282905010156120d5576040517fa9cb9e0d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181600e91906120e6929190613534565b507fba0a281ecbc124e976676fa667f92ed76ae4f83ae947d592f000dea44e9d005a33838360405161211a9392919061480b565b60405180910390a15050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121c26122ef565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612231576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612228906148af565b60405180910390fd5b61223a816125ba565b50565b6122456122ef565b806009819055507f669d23c3e58e8a909becbc69535097c526818da1f9f4b3e91060d8e1cafb79de338260405161227d9291906145c4565b60405180910390a150565b60008161229361236d565b111580156122a2575060015482105b80156122e0575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b6122f7612da9565b73ffffffffffffffffffffffffffffffffffffffff1661231561181c565b73ffffffffffffffffffffffffffffffffffffffff161461236b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123629061491b565b60405180910390fd5b565b600090565b6000808290508061238161236d565b11612407576001548110156124065760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612404575b600081036123fa5760056000836001900393508381526020019081526020016000205490506123d0565b8092505050612439565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86124c6868684612db1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600d5461251485612a08565b8261251f919061476d565b1115612557576040517fc24746be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009544210806125685750600a5442115b1561259f576040517fe282bc5c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125aa838383612a5f565b6125b48482612bed565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126866134e5565b6126a26005600084815260200190815260200160002054612dba565b9050919050565b600061275687878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050308787878760405160200161270c959493929190614a68565b604051602081830303815290604052805190602001206040516020016127329190614b2b565b60405160208183030381529060405280519060200120612e7090919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161490509695505050505050565b6000600154905090565b6127c7816000612e97565b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127f06122e7565b8786866040518563ffffffff1660e01b81526004016128129493929190614ba6565b6020604051808303816000875af192505050801561284e57506040513d601f19601f8201168201806040525081019061284b9190614c07565b60015b6128c7573d806000811461287e576040519150601f19603f3d011682016040523d82523d6000602084013e612883565b606091505b5060008151036128bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6129226134e5565b61293361292e83612372565b612dba565b9050919050565b606060006001612949846130e9565b01905060008167ffffffffffffffff81111561296857612967613ed1565b5b6040519080825280601f01601f19166020018201604052801561299a5781602001600182028036833780820191505090505b509050600082602001820190505b6001156129fd578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816129f1576129f0614c34565b5b049450600085036129a8575b819350505050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b808383905014612a9b576040517fa9cb9e0d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81811015612be757600e848483818110612abb57612aba6141b8565b5b9050602002013581548110612ad357612ad26141b8565b5b9060005260206000200154600160116000878786818110612af757612af66141b8565b5b90506020020135815260200190815260200160002054612b17919061476d565b1115612b4f576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b838382818110612b6257612b616141b8565b5b905060200201356010600083612b766127b2565b612b80919061476d565b81526020019081526020016000208190555060116000858584818110612ba957612ba86141b8565b5b9050602002013581526020019081526020016000206000815480929190612bcf90614c63565b91905055508080612bdf90614c63565b915050612a9e565b50505050565b6000600154905060008203612c2e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c3b60008483856124a9565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612cb283612ca360008660006124af565b612cac8561323c565b176124d7565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612d5357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612d18565b5060008203612d8e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050612da46000848385612502565b505050565b600033905090565b60009392505050565b612dc26134e5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000806000612e7f858561324c565b91509150612e8c8161329d565b819250505092915050565b6000612ea283612372565b90506000819050600080612eb58661243e565b915091508415612f1e57612ed18184612ecc6122e7565b612465565b612f1d57612ee683612ee16122e7565b612126565b612f1c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612f2c8360008860016124a9565b8015612f3757600082555b600160806001901b03600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612fdf83612f9c856000886124af565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176124d7565b600560008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036130655760006001870190506000600560008381526020019081526020016000205403613063576001548114613062578460056000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130cf836000886001612502565b600260008154809291906001019190505550505050505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613147577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161313d5761313c614c34565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613184576d04ee2d6d415b85acef8100000000838161317a57613179614c34565b5b0492506020810190505b662386f26fc1000083106131b357662386f26fc1000083816131a9576131a8614c34565b5b0492506010810190505b6305f5e10083106131dc576305f5e10083816131d2576131d1614c34565b5b0492506008810190505b61271083106132015761271083816131f7576131f6614c34565b5b0492506004810190505b60648310613224576064838161321a57613219614c34565b5b0492506002810190505b600a8310613233576001810190505b80915050919050565b60006001821460e11b9050919050565b600080604183510361328d5760008060006020860151925060408601519150606086015160001a905061328187828585613403565b94509450505050613296565b60006002915091505b9250929050565b600060048111156132b1576132b0614cab565b5b8160048111156132c4576132c3614cab565b5b031561340057600160048111156132de576132dd614cab565b5b8160048111156132f1576132f0614cab565b5b03613331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332890614d26565b60405180910390fd5b6002600481111561334557613344614cab565b5b81600481111561335857613357614cab565b5b03613398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338f90614d92565b60405180910390fd5b600360048111156133ac576133ab614cab565b5b8160048111156133bf576133be614cab565b5b036133ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f690614e24565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561343e5760006003915091506134dc565b6000600187878787604051600081526020016040526040516134639493929190614e62565b6020604051602081039080840390855afa158015613485573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036134d3576000600192509250506134dc565b80600092509250505b94509492505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b828054828255906000526020600020908101928215613570579160200282015b8281111561356f578235825591602001919060010190613554565b5b50905061357d9190613581565b5090565b5b8082111561359a576000816000905550600101613582565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135e7816135b2565b81146135f257600080fd5b50565b600081359050613604816135de565b92915050565b6000602082840312156136205761361f6135a8565b5b600061362e848285016135f5565b91505092915050565b60008115159050919050565b61364c81613637565b82525050565b60006020820190506136676000830184613643565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136a757808201518184015260208101905061368c565b60008484015250505050565b6000601f19601f8301169050919050565b60006136cf8261366d565b6136d98185613678565b93506136e9818560208601613689565b6136f2816136b3565b840191505092915050565b6000602082019050818103600083015261371781846136c4565b905092915050565b6000819050919050565b6137328161371f565b811461373d57600080fd5b50565b60008135905061374f81613729565b92915050565b60006020828403121561376b5761376a6135a8565b5b600061377984828501613740565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137ad82613782565b9050919050565b6137bd816137a2565b82525050565b60006020820190506137d860008301846137b4565b92915050565b6137e7816137a2565b81146137f257600080fd5b50565b600081359050613804816137de565b92915050565b60008060408385031215613821576138206135a8565b5b600061382f858286016137f5565b925050602061384085828601613740565b9150509250929050565b6000602082840312156138605761385f6135a8565b5b600061386e848285016137f5565b91505092915050565b6138808161371f565b82525050565b600060208201905061389b6000830184613877565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138d68161371f565b82525050565b60006138e883836138cd565b60208301905092915050565b6000602082019050919050565b600061390c826138a1565b61391681856138ac565b9350613921836138bd565b8060005b8381101561395257815161393988826138dc565b9750613944836138f4565b925050600181019050613925565b5085935050505092915050565b600060208201905081810360008301526139798184613901565b905092915050565b60008060006060848603121561399a576139996135a8565b5b60006139a8868287016137f5565b93505060206139b9868287016137f5565b92505060406139ca86828701613740565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126139f9576139f86139d4565b5b8235905067ffffffffffffffff811115613a1657613a156139d9565b5b602083019150836020820283011115613a3257613a316139de565b5b9250929050565b60008060008060608587031215613a5357613a526135a8565b5b6000613a61878288016137f5565b945050602085013567ffffffffffffffff811115613a8257613a816135ad565b5b613a8e878288016139e3565b93509350506040613aa187828801613740565b91505092959194509250565b60008083601f840112613ac357613ac26139d4565b5b8235905067ffffffffffffffff811115613ae057613adf6139d9565b5b602083019150836001820283011115613afc57613afb6139de565b5b9250929050565b60008060208385031215613b1a57613b196135a8565b5b600083013567ffffffffffffffff811115613b3857613b376135ad565b5b613b4485828601613aad565b92509250509250929050565b60008060208385031215613b6757613b666135a8565b5b600083013567ffffffffffffffff811115613b8557613b846135ad565b5b613b91858286016139e3565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bd2816137a2565b82525050565b600067ffffffffffffffff82169050919050565b613bf581613bd8565b82525050565b613c0481613637565b82525050565b600062ffffff82169050919050565b613c2281613c0a565b82525050565b608082016000820151613c3e6000850182613bc9565b506020820151613c516020850182613bec565b506040820151613c646040850182613bfb565b506060820151613c776060850182613c19565b50505050565b6000613c898383613c28565b60808301905092915050565b6000602082019050919050565b6000613cad82613b9d565b613cb78185613ba8565b9350613cc283613bb9565b8060005b83811015613cf3578151613cda8882613c7d565b9750613ce583613c95565b925050600181019050613cc6565b5085935050505092915050565b60006020820190508181036000830152613d1a8184613ca2565b905092915050565b60008083601f840112613d3857613d376139d4565b5b8235905067ffffffffffffffff811115613d5557613d546139d9565b5b602083019150836001820283011115613d7157613d706139de565b5b9250929050565b600080600080600060608688031215613d9457613d936135a8565b5b6000613da288828901613740565b955050602086013567ffffffffffffffff811115613dc357613dc26135ad565b5b613dcf888289016139e3565b9450945050604086013567ffffffffffffffff811115613df257613df16135ad565b5b613dfe88828901613d22565b92509250509295509295909350565b600080600060608486031215613e2657613e256135a8565b5b6000613e34868287016137f5565b9350506020613e4586828701613740565b9250506040613e5686828701613740565b9150509250925092565b613e6981613637565b8114613e7457600080fd5b50565b600081359050613e8681613e60565b92915050565b60008060408385031215613ea357613ea26135a8565b5b6000613eb1858286016137f5565b9250506020613ec285828601613e77565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f09826136b3565b810181811067ffffffffffffffff82111715613f2857613f27613ed1565b5b80604052505050565b6000613f3b61359e565b9050613f478282613f00565b919050565b600067ffffffffffffffff821115613f6757613f66613ed1565b5b613f70826136b3565b9050602081019050919050565b82818337600083830152505050565b6000613f9f613f9a84613f4c565b613f31565b905082815260208101848484011115613fbb57613fba613ecc565b5b613fc6848285613f7d565b509392505050565b600082601f830112613fe357613fe26139d4565b5b8135613ff3848260208601613f8c565b91505092915050565b60008060008060808587031215614016576140156135a8565b5b6000614024878288016137f5565b9450506020614035878288016137f5565b935050604061404687828801613740565b925050606085013567ffffffffffffffff811115614067576140666135ad565b5b61407387828801613fce565b91505092959194509250565b6080820160008201516140956000850182613bc9565b5060208201516140a86020850182613bec565b5060408201516140bb6040850182613bfb565b5060608201516140ce6060850182613c19565b50505050565b60006080820190506140e9600083018461407f565b92915050565b60008060408385031215614106576141056135a8565b5b6000614114858286016137f5565b9250506020614125858286016137f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061417657607f821691505b6020821081036141895761418861412f565b5b50919050565b60006040820190506141a460008301856137b4565b6141b160208301846137b4565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600060ff82169050919050565b600061422e82614216565b915060ff8203614241576142406141e7565b5b600182019050919050565b7f4f6e6c792073656e6465722063616e207573652067697665617761792066756e60008201527f6374696f6e2e0000000000000000000000000000000000000000000000000000602082015250565b60006142a8602683613678565b91506142b38261424c565b604082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261434b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261430e565b614355868361430e565b95508019841693508086168417925050509392505050565b6000819050919050565b600061439261438d6143888461371f565b61436d565b61371f565b9050919050565b6000819050919050565b6143ac83614377565b6143c06143b882614399565b84845461431b565b825550505050565b600090565b6143d56143c8565b6143e08184846143a3565b505050565b5b81811015614404576143f96000826143cd565b6001810190506143e6565b5050565b601f8211156144495761441a816142e9565b614423846142fe565b81016020851015614432578190505b61444661443e856142fe565b8301826143e5565b50505b505050565b600082821c905092915050565b600061446c6000198460080261444e565b1980831691505092915050565b6000614485838361445b565b9150826002028217905092915050565b61449f83836142de565b67ffffffffffffffff8111156144b8576144b7613ed1565b5b6144c2825461415e565b6144cd828285614408565b6000601f8311600181146144fc57600084156144ea578287013590505b6144f48582614479565b86555061455c565b601f19841661450a866142e9565b60005b828110156145325784890135825560018201915060208501945060208101905061450d565b8683101561454f578489013561454b601f89168261445b565b8355505b6001600288020188555050505b50505050505050565b60006145718385613678565b935061457e838584613f7d565b614587836136b3565b840190509392505050565b60006040820190506145a760008301866137b4565b81810360208301526145ba818486614565565b9050949350505050565b60006040820190506145d960008301856137b4565b6145e66020830184613877565b9392505050565b600081905092915050565b50565b60006146086000836145ed565b9150614613826145f8565b600082019050919050565b6000614629826145fb565b9150819050919050565b600081905092915050565b6000815461464b8161415e565b6146558186614633565b945060018216600081146146705760018114614685576146b8565b60ff19831686528115158202860193506146b8565b61468e856142e9565b60005b838110156146b057815481890152600182019150602081019050614691565b838801955050505b50505092915050565b60006146cc8261366d565b6146d68185614633565b93506146e6818560208601613689565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614728600583614633565b9150614733826146f2565b600582019050919050565b600061474a828561463e565b915061475682846146c1565b91506147618261471b565b91508190509392505050565b60006147788261371f565b91506147838361371f565b925082820190508082111561479b5761479a6141e7565b5b92915050565b600080fd5b82818337505050565b60006147bb83856138ac565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311156147ee576147ed6147a1565b5b6020830292506147ff8385846147a6565b82840190509392505050565b600060408201905061482060008301866137b4565b81810360208301526148338184866147af565b9050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614899602683613678565b91506148a48261483d565b604082019050919050565b600060208201905081810360008301526148c88161488c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614905602083613678565b9150614910826148cf565b602082019050919050565b60006020820190508181036000830152614934816148f8565b9050919050565b600061495661495161494c84613782565b61436d565b613782565b9050919050565b60006149688261493b565b9050919050565b600061497a8261495d565b9050919050565b60008160601b9050919050565b600061499982614981565b9050919050565b60006149ab8261498e565b9050919050565b6149c36149be8261496f565b6149a0565b82525050565b6149da6149d5826137a2565b6149a0565b82525050565b6000819050919050565b6149fb6149f68261371f565b6149e0565b82525050565b600081905092915050565b6000614a188385614a01565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115614a4b57614a4a6147a1565b5b602083029250614a5c8385846147a6565b82840190509392505050565b6000614a7482886149b2565b601482019150614a8482876149c9565b601482019150614a9482866149ea565b602082019150614aa5828486614a0c565b91508190509695505050505050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614aea601c83614633565b9150614af582614ab4565b601c82019050919050565b6000819050919050565b6000819050919050565b614b25614b2082614b00565b614b0a565b82525050565b6000614b3682614add565b9150614b428284614b14565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000614b7882614b51565b614b828185614b5c565b9350614b92818560208601613689565b614b9b816136b3565b840191505092915050565b6000608082019050614bbb60008301876137b4565b614bc860208301866137b4565b614bd56040830185613877565b8181036060830152614be78184614b6d565b905095945050505050565b600081519050614c01816135de565b92915050565b600060208284031215614c1d57614c1c6135a8565b5b6000614c2b84828501614bf2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c6e8261371f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614ca057614c9f6141e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614d10601883613678565b9150614d1b82614cda565b602082019050919050565b60006020820190508181036000830152614d3f81614d03565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000614d7c601f83613678565b9150614d8782614d46565b602082019050919050565b60006020820190508181036000830152614dab81614d6f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e0e602283613678565b9150614e1982614db2565b604082019050919050565b60006020820190508181036000830152614e3d81614e01565b9050919050565b614e4d81614b00565b82525050565b614e5c81614216565b82525050565b6000608082019050614e776000830187614e44565b614e846020830186614e53565b614e916040830185614e44565b614e9e6060830184614e44565b9594505050505056fea2646970667358221220bcce3d2b1ce69c6c28377213a9f06167b386a13dca7a002d10e8e785d91b49d364736f6c63430008120033

Deployed Bytecode Sourcemap

88357:6327:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42687:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43589:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50080:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49513:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88576:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92814:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39340:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93954:332;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88817:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53719:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92447:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56640:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90493:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91999:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88916:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79910:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88702:30;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94335:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44982:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88667:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88763:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40524:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87469:103;;;;;;;;;;;;;:::i;:::-;;92626:180;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88529:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93138:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83786:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86821:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90235:250;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43765:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80826:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50638:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93718:179;;;;;;;;;;;;;:::i;:::-;;94449:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57431:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79323:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88500:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91721:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90648:265;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92162:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51029:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87727:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92983:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42687:639;42772:4;43111:10;43096:25;;:11;:25;;;;:102;;;;43188:10;43173:25;;:11;:25;;;;43096:102;:179;;;;43265:10;43250:25;;:11;:25;;;;43096:179;43076:199;;42687:639;;;:::o;43589:100::-;43643:13;43676:5;43669:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43589:100;:::o;50080:218::-;50156:7;50181:16;50189:7;50181;:16::i;:::-;50176:64;;50206:34;;;;;;;;;;;;;;50176:64;50260:15;:24;50276:7;50260:24;;;;;;;;;;;:30;;;;;;;;;;;;50253:37;;50080:218;;;:::o;49513:408::-;49602:13;49618:16;49626:7;49618;:16::i;:::-;49602:32;;49674:5;49651:28;;:19;:17;:19::i;:::-;:28;;;49647:175;;49699:44;49716:5;49723:19;:17;:19::i;:::-;49699:16;:44::i;:::-;49694:128;;49771:35;;;;;;;;;;;;;;49694:128;49647:175;49867:2;49834:15;:24;49850:7;49834:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;49905:7;49901:2;49885:28;;49894:5;49885:28;;;;;;;;;;;;49591:330;49513:408;;:::o;88576:22::-;;;;;;;;;;;;;:::o;92814:161::-;86707:13;:11;:13::i;:::-;92899:8:::1;92889:7;;:18;;;;;;;;;;;;;;;;;;92925:42;92946:10;92958:8;92925:42;;;;;;;:::i;:::-;;;;;;;;92814:161:::0;:::o;39340:323::-;39401:7;39629:15;:13;:15::i;:::-;39614:12;;39598:13;;:28;:46;39591:53;;39340:323;:::o;93954:332::-;94012:16;94041:32;94087:13;:20;;;;94076:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94041:67;;94126:7;94121:123;94143:13;:20;;;;94139:1;:24;;;94121:123;;;94216:13;:16;94230:1;94216:16;;;;;;;;;;;;;;94195:15;94211:1;94195:18;;;;;;;;;;:::i;:::-;;;;;;;:37;;;;;94165:3;;;;;:::i;:::-;;;;94121:123;;;;94263:15;94256:22;;;93954:332;:::o;88817:47::-;;;;;;;;;;;;;;;;;:::o;53719:2825::-;53861:27;53891;53910:7;53891:18;:27::i;:::-;53861:57;;53976:4;53935:45;;53951:19;53935:45;;;53931:86;;53989:28;;;;;;;;;;;;;;53931:86;54031:27;54060:23;54087:35;54114:7;54087:26;:35::i;:::-;54030:92;;;;54222:68;54247:15;54264:4;54270:19;:17;:19::i;:::-;54222:24;:68::i;:::-;54217:180;;54310:43;54327:4;54333:19;:17;:19::i;:::-;54310:16;:43::i;:::-;54305:92;;54362:35;;;;;;;;;;;;;;54305:92;54217:180;54428:1;54414:16;;:2;:16;;;54410:52;;54439:23;;;;;;;;;;;;;;54410:52;54475:43;54497:4;54503:2;54507:7;54516:1;54475:21;:43::i;:::-;54611:15;54608:160;;;54751:1;54730:19;54723:30;54608:160;55148:18;:24;55167:4;55148:24;;;;;;;;;;;;;;;;55146:26;;;;;;;;;;;;55217:18;:22;55236:2;55217:22;;;;;;;;;;;;;;;;55215:24;;;;;;;;;;;55539:146;55576:2;55625:45;55640:4;55646:2;55650:19;55625:14;:45::i;:::-;35739:8;55597:73;55539:18;:146::i;:::-;55510:17;:26;55528:7;55510:26;;;;;;;;;;;:175;;;;55856:1;35739:8;55805:19;:47;:52;55801:627;;55878:19;55910:1;55900:7;:11;55878:33;;56067:1;56033:17;:30;56051:11;56033:30;;;;;;;;;;;;:35;56029:384;;56171:13;;56156:11;:28;56152:242;;56351:19;56318:17;:30;56336:11;56318:30;;;;;;;;;;;:52;;;;56152:242;56029:384;55859:569;55801:627;56475:7;56471:2;56456:27;;56465:4;56456:27;;;;;;;;;;;;56494:42;56515:4;56521:2;56525:7;56534:1;56494:20;:42::i;:::-;53850:2694;;;53719:2825;;;:::o;92447:171::-;86707:13;:11;:13::i;:::-;92541:8:::1;92523:15;;:26;;;;;;;;;;;;;;;;;;92567:43;92589:10;92601:8;92567:43;;;;;;;:::i;:::-;;;;;;;;92447:171:::0;:::o;56640:193::-;56786:39;56803:4;56809:2;56813:7;56786:39;;;;;;;;;;;;:16;:39::i;:::-;56640:193;;;:::o;90493:147::-;90125:7;;;;;;;;;;;90111:21;;:10;:21;;;90110:50;;;;90152:7;:5;:7::i;:::-;90138:21;;:10;:21;;;90110:50;90102:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;90600:32:::1;90614:2;90618:3;;90623:8;90600:13;:32::i;:::-;90493:147:::0;;;;:::o;91999:155::-;86707:13;:11;:13::i;:::-;92085:8:::1;;92075:7;:18;;;;;;;:::i;:::-;;92111:35;92125:10;92137:8;;92111:35;;;;;;;;:::i;:::-;;;;;;;;91999:155:::0;;:::o;88916:48::-;;;;;;;;;;;;;;;;;:::o;79910:528::-;80054:23;80120:22;80145:8;;:15;;80120:40;;80175:34;80233:14;80212:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;80175:73;;80268:9;80263:125;80284:14;80279:1;:19;80263:125;;80340:32;80360:8;;80369:1;80360:11;;;;;;;:::i;:::-;;;;;;;;80340:19;:32::i;:::-;80324:10;80335:1;80324:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;80300:3;;;;;80263:125;;;;80409:10;80402:17;;;;79910:528;;;;:::o;88702:30::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;94335:106::-;94384:16;94420:13;94413:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94335:106;:::o;44982:152::-;45054:7;45097:27;45116:7;45097:18;:27::i;:::-;45074:52;;44982:152;;;:::o;88667:28::-;;;;:::o;88763:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40524:233::-;40596:7;40637:1;40620:19;;:5;:19;;;40616:60;;40648:28;;;;;;;;;;;;;;40616:60;34683:13;40694:18;:25;40713:5;40694:25;;;;;;;;;;;;;;;;:55;40687:62;;40524:233;;;:::o;87469:103::-;86707:13;:11;:13::i;:::-;87534:30:::1;87561:1;87534:18;:30::i;:::-;87469:103::o:0;92626:180::-;86707:13;:11;:13::i;:::-;92722:14:::1;92706:13;:30;;;;92754:44;92771:10;92783:14;92754:44;;;;;;;:::i;:::-;;;;;;;;92626:180:::0;:::o;88529:20::-;;;;:::o;93138:135::-;86707:13;:11;:13::i;:::-;93208:6:::1;93200:5;:14;;;;93232:33;93246:10;93258:6;93232:33;;;;;;;:::i;:::-;;;;;;;;93138:135:::0;:::o;83786:900::-;83864:16;83918:19;83952:25;83992:22;84017:16;84027:5;84017:9;:16::i;:::-;83992:41;;84048:25;84090:14;84076:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84048:57;;84120:31;;:::i;:::-;84171:9;84183:15;:13;:15::i;:::-;84171:27;;84166:472;84215:14;84200:11;:29;84166:472;;84267:15;84280:1;84267:12;:15::i;:::-;84255:27;;84305:9;:16;;;84346:8;84301:73;84422:1;84396:28;;:9;:14;;;:28;;;84392:111;;84469:9;:14;;;84449:34;;84392:111;84546:5;84525:26;;:17;:26;;;84521:102;;84602:1;84576:8;84585:13;;;;;;84576:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;84521:102;84166:472;84231:3;;;;;84166:472;;;;84659:8;84652:15;;;;;;;83786:900;;;:::o;86821:87::-;86867:7;86894:6;;;;;;;;;;;86887:13;;86821:87;:::o;90235:250::-;90349:54;90366:9;;90377:10;90389:8;90399:3;;90349:16;:54::i;:::-;90345:79;;90412:12;;;;;;;;;;;;;;90345:79;90437:40;90451:10;90463:3;;90468:8;90437:13;:40::i;:::-;90235:250;;;;;:::o;43765:104::-;43821:13;43854:7;43847:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43765:104;:::o;80826:2513::-;80969:16;81036:4;81027:5;:13;81023:45;;81049:19;;;;;;;;;;;;;;81023:45;81083:19;81117:17;81137:14;:12;:14::i;:::-;81117:34;;81237:15;:13;:15::i;:::-;81229:5;:23;81225:87;;;81281:15;:13;:15::i;:::-;81273:23;;81225:87;81388:9;81381:4;:16;81377:73;;;81425:9;81418:16;;81377:73;81464:25;81492:16;81502:5;81492:9;:16::i;:::-;81464:44;;81686:4;81678:5;:12;81674:278;;;81711:19;81740:5;81733:4;:12;81711:34;;81782:17;81768:11;:31;81764:111;;;81844:11;81824:31;;81764:111;81692:198;81674:278;;;81935:1;81915:21;;81674:278;81966:25;82008:17;81994:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81966:60;;82066:1;82045:17;:22;82041:78;;82095:8;82088:15;;;;;;;;82041:78;82263:31;82297:26;82317:5;82297:19;:26::i;:::-;82263:60;;82338:25;82583:9;:16;;;82578:92;;82640:9;:14;;;82620:34;;82578:92;82689:9;82701:5;82689:17;;82684:478;82713:4;82708:1;:9;;:45;;;;;82736:17;82721:11;:32;;82708:45;82684:478;;;82791:15;82804:1;82791:12;:15::i;:::-;82779:27;;82829:9;:16;;;82870:8;82825:73;82946:1;82920:28;;:9;:14;;;:28;;;82916:111;;82993:9;:14;;;82973:34;;82916:111;83070:5;83049:26;;:17;:26;;;83045:102;;83126:1;83100:8;83109:13;;;;;;83100:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;83045:102;82684:478;82755:3;;;;;82684:478;;;;83264:11;83254:8;83247:29;83312:8;83305:15;;;;;;;;80826:2513;;;;;;:::o;50638:234::-;50785:8;50733:18;:39;50752:19;:17;:19::i;:::-;50733:39;;;;;;;;;;;;;;;:49;50773:8;50733:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;50845:8;50809:55;;50824:19;:17;:19::i;:::-;50809:55;;;50855:8;50809:55;;;;;;:::i;:::-;;;;;;;;50638:234;;:::o;93718:179::-;86707:13;:11;:13::i;:::-;93772:12:::1;93790:15;;;;;;;;;;;:20;;93818:21;93790:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93771:73;;;93857:7;93853:36;;93873:16;;;;;;;;;;;;;;93853:36;93762:135;93718:179::o:0;94449:232::-;94516:7;94512:162;94533:8;;:15;;94529:1;:19;;;94512:162;;;94596:10;94572:34;;:20;94580:8;;94589:1;94580:11;;;;;;;;;:::i;:::-;;;;;;;;94572:7;:20::i;:::-;:34;;;94569:60;;94615:14;;;;;;;;;;;;;;94569:60;94644:18;94650:8;;94659:1;94650:11;;;;;;;;;:::i;:::-;;;;;;;;94644:5;:18::i;:::-;94550:3;;;;;:::i;:::-;;;;94512:162;;;;94449:232;;:::o;57431:407::-;57606:31;57619:4;57625:2;57629:7;57606:12;:31::i;:::-;57670:1;57652:2;:14;;;:19;57648:183;;57691:56;57722:4;57728:2;57732:7;57741:5;57691:30;:56::i;:::-;57686:145;;57775:40;;;;;;;;;;;;;;57686:145;57648:183;57431:407;;;;:::o;79323:428::-;79407:21;;:::i;:::-;79441:31;;:::i;:::-;79497:15;:13;:15::i;:::-;79487:7;:25;:54;;;;79527:14;:12;:14::i;:::-;79516:7;:25;;79487:54;79483:103;;;79565:9;79558:16;;;;;79483:103;79608:21;79621:7;79608:12;:21::i;:::-;79596:33;;79644:9;:16;;;79640:65;;;79684:9;79677:16;;;;;79640:65;79722:21;79735:7;79722:12;:21::i;:::-;79715:28;;;79323:428;;;;:::o;88500:22::-;;;;:::o;91721:270::-;91814:13;91844:16;91852:7;91844;:16::i;:::-;91840:47;;91869:18;;;;;;;;;;;;;;91840:47;91931:7;91940:32;:12;:21;91953:7;91940:21;;;;;;;;;;;;:30;:32::i;:::-;91914:68;;;;;;;;;:::i;:::-;;;;;;;;;;;;;91900:83;;91721:270;;;:::o;90648:265::-;86707:13;:11;:13::i;:::-;90783::::1;;90763:17;90777:2;90763:13;:17::i;:::-;90752:8;:28;;;;:::i;:::-;:44;90749:78;;;90805:22;;;;;;;;;;;;;;90749:78;90840:31;90857:3;;90862:8;90840:16;:31::i;:::-;90884:19;90890:2;90894:8;90884:5;:19::i;:::-;90648:265:::0;;;;:::o;92162:273::-;90125:7;;;;;;;;;;;90111:21;;:10;:21;;;90110:50;;;;90152:7;:5;:7::i;:::-;90138:21;;:10;:21;;;90110:50;90102:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;92279:13:::1;:20;;;;92255:14;;:21;;:44;92252:73;;;92308:17;;;;;;;;;;;;;;92252:73;92352:14;;92336:13;:30;;;;;;;:::i;:::-;;92384:43;92400:10;92412:14;;92384:43;;;;;;;;:::i;:::-;;;;;;;;92162:273:::0;;:::o;51029:164::-;51126:4;51150:18;:25;51169:5;51150:25;;;;;;;;;;;;;;;:35;51176:8;51150:35;;;;;;;;;;;;;;;;;;;;;;;;;51143:42;;51029:164;;;;:::o;87727:201::-;86707:13;:11;:13::i;:::-;87836:1:::1;87816:22;;:8;:22;;::::0;87808:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;87892:28;87911:8;87892:18;:28::i;:::-;87727:201:::0;:::o;92983:147::-;86707:13;:11;:13::i;:::-;93059:8:::1;93049:7;:18;;;;93085:37;93101:10;93113:8;93085:37;;;;;;;:::i;:::-;;;;;;;;92983:147:::0;:::o;51451:282::-;51516:4;51572:7;51553:15;:13;:15::i;:::-;:26;;:66;;;;;51606:13;;51596:7;:23;51553:66;:153;;;;;51705:1;35459:8;51657:17;:26;51675:7;51657:26;;;;;;;;;;;;:44;:49;51553:153;51533:173;;51451:282;;;:::o;73759:105::-;73819:7;73846:10;73839:17;;73759:105;:::o;86986:132::-;87061:12;:10;:12::i;:::-;87050:23;;:7;:5;:7::i;:::-;:23;;;87042:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;86986:132::o;38856:92::-;38912:7;38856:92;:::o;46137:1275::-;46204:7;46224:12;46239:7;46224:22;;46307:4;46288:15;:13;:15::i;:::-;:23;46284:1061;;46341:13;;46334:4;:20;46330:1015;;;46379:14;46396:17;:23;46414:4;46396:23;;;;;;;;;;;;46379:40;;46513:1;35459:8;46485:6;:24;:29;46481:845;;47150:113;47167:1;47157:6;:11;47150:113;;47210:17;:25;47228:6;;;;;;;47210:25;;;;;;;;;;;;47201:34;;47150:113;;;47296:6;47289:13;;;;;;46481:845;46356:989;46330:1015;46284:1061;47373:31;;;;;;;;;;;;;;46137:1275;;;;:::o;52614:485::-;52716:27;52745:23;52786:38;52827:15;:24;52843:7;52827:24;;;;;;;;;;;52786:65;;53004:18;52981:41;;53061:19;53055:26;53036:45;;52966:126;52614:485;;;:::o;51842:659::-;51991:11;52156:16;52149:5;52145:28;52136:37;;52316:16;52305:9;52301:32;52288:45;;52466:15;52455:9;52452:30;52444:5;52433:9;52430:20;52427:56;52417:66;;51842:659;;;;;:::o;58500:159::-;;;;;:::o;73068:311::-;73203:7;73223:16;35863:3;73249:19;:41;;73223:68;;35863:3;73317:31;73328:4;73334:2;73338:9;73317:10;:31::i;:::-;73309:40;;:62;;73302:69;;;73068:311;;;;;:::o;47960:450::-;48040:14;48208:16;48201:5;48197:28;48188:37;;48385:5;48371:11;48346:23;48342:41;48339:52;48332:5;48329:63;48319:73;;47960:450;;;;:::o;59324:158::-;;;;;:::o;90921:353::-;91052:13;;91032:17;91046:2;91032:13;:17::i;:::-;91021:8;:28;;;;:::i;:::-;:44;91018:78;;;91074:22;;;;;;;;;;;;;;91018:78;91128:7;;91110:15;:25;:52;;;;91157:5;;91139:15;:23;91110:52;91107:81;;;91171:17;;;;;;;;;;;;;;91107:81;91201:31;91218:3;;91223:8;91201:16;:31::i;:::-;91245:19;91251:2;91255:8;91245:5;:19::i;:::-;90921:353;;;;:::o;88088:191::-;88162:16;88181:6;;;;;;;;;;;88162:25;;88207:8;88198:6;;:17;;;;;;;;;;;;;;;;;;88262:8;88231:40;;88252:8;88231:40;;;;;;;;;;;;88151:128;88088:191;:::o;45585:161::-;45653:21;;:::i;:::-;45694:44;45713:17;:24;45731:5;45713:24;;;;;;;;;;;;45694:18;:44::i;:::-;45687:51;;45585:161;;;:::o;93402:308::-;93531:4;93566:136;93692:9;;93566:136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93656:4;93662:2;93666:8;93676:3;;93639:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;93629:52;;;;;;93576:106;;;;;;;;:::i;:::-;;;;;;;;;;;;;93566:117;;;;;;:125;;:136;;;;:::i;:::-;93555:147;;:7;;;;;;;;;;;:147;;;93548:154;;93402:308;;;;;;;;:::o;39027:103::-;39082:7;39109:13;;39102:20;;39027:103;:::o;67970:89::-;68030:21;68036:7;68045:5;68030;:21::i;:::-;67970:89;:::o;59922:716::-;60085:4;60131:2;60106:45;;;60152:19;:17;:19::i;:::-;60173:4;60179:7;60188:5;60106:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;60102:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60406:1;60389:6;:13;:18;60385:235;;60435:40;;;;;;;;;;;;;;60385:235;60578:6;60572:13;60563:6;60559:2;60555:15;60548:38;60102:529;60275:54;;;60265:64;;;:6;:64;;;;60258:71;;;59922:716;;;;;;:::o;45323:166::-;45393:21;;:::i;:::-;45434:47;45453:27;45472:7;45453:18;:27::i;:::-;45434:18;:47::i;:::-;45427:54;;45323:166;;;:::o;13628:716::-;13684:13;13735:14;13772:1;13752:17;13763:5;13752:10;:17::i;:::-;:21;13735:38;;13788:20;13822:6;13811:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13788:41;;13844:11;13973:6;13969:2;13965:15;13957:6;13953:28;13946:35;;14010:288;14017:4;14010:288;;;14042:5;;;;;;;;14184:8;14179:2;14172:5;14168:14;14163:30;14158:3;14150:44;14240:2;14231:11;;;;;;:::i;:::-;;;;;14274:1;14265:5;:10;14010:288;14261:21;14010:288;14319:6;14312:13;;;;;13628:716;;;:::o;40839:178::-;40900:7;34683:13;34821:2;40928:18;:25;40947:5;40928:25;;;;;;;;;;;;;;;;:50;;40927:82;40920:89;;40839:178;;;:::o;91282:431::-;91388:8;91374:3;;:10;;:22;91371:51;;91405:17;;;;;;;;;;;;;;91371:51;91440:13;91435:271;91467:8;91459:5;:16;91435:271;;;91536:13;91550:3;;91554:5;91550:10;;;;;;;:::i;:::-;;;;;;;;91536:25;;;;;;;;:::i;:::-;;;;;;;;;;91532:1;91504:13;:25;91518:3;;91522:5;91518:10;;;;;;;:::i;:::-;;;;;;;;91504:25;;;;;;;;;;;;:29;;;;:::i;:::-;:57;91501:87;;;91570:18;;;;;;;;;;;;;;91501:87;91642:3;;91646:5;91642:10;;;;;;;:::i;:::-;;;;;;;;91603:12;:36;91633:5;91616:14;:12;:14::i;:::-;:22;;;;:::i;:::-;91603:36;;;;;;;;;;;:49;;;;91667:13;:25;91681:3;;91685:5;91681:10;;;;;;;:::i;:::-;;;;;;;;91667:25;;;;;;;;;;;;:27;;;;;;;;;:::i;:::-;;;;;;91477:7;;;;;:::i;:::-;;;;91435:271;;;;91282:431;;;:::o;61100:2966::-;61173:20;61196:13;;61173:36;;61236:1;61224:8;:13;61220:44;;61246:18;;;;;;;;;;;;;;61220:44;61277:61;61307:1;61311:2;61315:12;61329:8;61277:21;:61::i;:::-;61821:1;34821:2;61791:1;:26;;61790:32;61778:8;:45;61752:18;:22;61771:2;61752:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;62100:139;62137:2;62191:33;62214:1;62218:2;62222:1;62191:14;:33::i;:::-;62158:30;62179:8;62158:20;:30::i;:::-;:66;62100:18;:139::i;:::-;62066:17;:31;62084:12;62066:31;;;;;;;;;;;:173;;;;62256:16;62287:11;62316:8;62301:12;:23;62287:37;;62837:16;62833:2;62829:25;62817:37;;63209:12;63169:8;63128:1;63066:25;63007:1;62946;62919:335;63580:1;63566:12;63562:20;63520:346;63621:3;63612:7;63609:16;63520:346;;63839:7;63829:8;63826:1;63799:25;63796:1;63793;63788:59;63674:1;63665:7;63661:15;63650:26;;63520:346;;;63524:77;63911:1;63899:8;:13;63895:45;;63921:19;;;;;;;;;;;;;;63895:45;63973:3;63957:13;:19;;;;61526:2462;;63998:60;64027:1;64031:2;64035:12;64049:8;63998:20;:60::i;:::-;61162:2904;61100:2966;;:::o;85372:98::-;85425:7;85452:10;85445:17;;85372:98;:::o;72769:147::-;72906:6;72769:147;;;;;:::o;47511:366::-;47577:31;;:::i;:::-;47654:6;47621:9;:14;;:41;;;;;;;;;;;35342:3;47707:6;:33;;47673:9;:24;;:68;;;;;;;;;;;47799:1;35459:8;47771:6;:24;:29;;47752:9;:16;;:48;;;;;;;;;;;35863:3;47840:6;:28;;47811:9;:19;;:58;;;;;;;;;;;47511:366;;;:::o;19278:231::-;19356:7;19377:17;19396:18;19418:27;19429:4;19435:9;19418:10;:27::i;:::-;19376:69;;;;19456:18;19468:5;19456:11;:18::i;:::-;19492:9;19485:16;;;;19278:231;;;;:::o;68288:3081::-;68368:27;68398;68417:7;68398:18;:27::i;:::-;68368:57;;68438:12;68469:19;68438:52;;68504:27;68533:23;68560:35;68587:7;68560:26;:35::i;:::-;68503:92;;;;68612:13;68608:316;;;68733:68;68758:15;68775:4;68781:19;:17;:19::i;:::-;68733:24;:68::i;:::-;68728:184;;68825:43;68842:4;68848:19;:17;:19::i;:::-;68825:16;:43::i;:::-;68820:92;;68877:35;;;;;;;;;;;;;;68820:92;68728:184;68608:316;68936:51;68958:4;68972:1;68976:7;68985:1;68936:21;:51::i;:::-;69080:15;69077:160;;;69220:1;69199:19;69192:30;69077:160;69898:1;34948:3;69868:1;:26;;69867:32;69839:18;:24;69858:4;69839:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;70166:176;70203:4;70274:53;70289:4;70303:1;70307:19;70274:14;:53::i;:::-;35739:8;35459;70227:43;70226:101;70166:18;:176::i;:::-;70137:17;:26;70155:7;70137:26;;;;;;;;;;;:205;;;;70513:1;35739:8;70462:19;:47;:52;70458:627;;70535:19;70567:1;70557:7;:11;70535:33;;70724:1;70690:17;:30;70708:11;70690:30;;;;;;;;;;;;:35;70686:384;;70828:13;;70813:11;:28;70809:242;;71008:19;70975:17;:30;70993:11;70975:30;;;;;;;;;;;:52;;;;70809:242;70686:384;70516:569;70458:627;71140:7;71136:1;71113:35;;71122:4;71113:35;;;;;;;;;;;;71159:50;71180:4;71194:1;71198:7;71207:1;71159:20;:50::i;:::-;71336:12;;:14;;;;;;;;;;;;;68357:3012;;;;68288:3081;;:::o;10494:922::-;10547:7;10567:14;10584:1;10567:18;;10634:6;10625:5;:15;10621:102;;10670:6;10661:15;;;;;;:::i;:::-;;;;;10705:2;10695:12;;;;10621:102;10750:6;10741:5;:15;10737:102;;10786:6;10777:15;;;;;;:::i;:::-;;;;;10821:2;10811:12;;;;10737:102;10866:6;10857:5;:15;10853:102;;10902:6;10893:15;;;;;;:::i;:::-;;;;;10937:2;10927:12;;;;10853:102;10982:5;10973;:14;10969:99;;11017:5;11008:14;;;;;;:::i;:::-;;;;;11051:1;11041:11;;;;10969:99;11095:5;11086;:14;11082:99;;11130:5;11121:14;;;;;;:::i;:::-;;;;;11164:1;11154:11;;;;11082:99;11208:5;11199;:14;11195:99;;11243:5;11234:14;;;;;;:::i;:::-;;;;;11277:1;11267:11;;;;11195:99;11321:5;11312;:14;11308:66;;11357:1;11347:11;;;;11308:66;11402:6;11395:13;;;10494:922;;;:::o;48512:324::-;48582:14;48815:1;48805:8;48802:15;48776:24;48772:46;48762:56;;48512:324;;;:::o;17729:747::-;17810:7;17819:12;17868:2;17848:9;:16;:22;17844:625;;17887:9;17911;17935:7;18192:4;18181:9;18177:20;18171:27;18166:32;;18242:4;18231:9;18227:20;18221:27;18216:32;;18300:4;18289:9;18285:20;18279:27;18276:1;18271:36;18266:41;;18343:25;18354:4;18360:1;18363;18366;18343:10;:25::i;:::-;18336:32;;;;;;;;;17844:625;18417:1;18421:35;18401:56;;;;17729:747;;;;;;:::o;16122:521::-;16200:20;16191:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;16187:449;16237:7;16187:449;16298:29;16289:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;16285:351;;16344:34;;;;;;;;;;:::i;:::-;;;;;;;;16285:351;16409:35;16400:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;16396:240;;16461:41;;;;;;;;;;:::i;:::-;;;;;;;;16396:240;16533:30;16524:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;16520:116;;16580:44;;;;;;;;;;:::i;:::-;;;;;;;;16520:116;16122:521;;:::o;20730:1520::-;20861:7;20870:12;21795:66;21790:1;21782:10;;:79;21778:163;;;21894:1;21898:30;21878:51;;;;;;21778:163;22038:14;22055:24;22065:4;22071:1;22074;22077;22055:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22038:41;;22112:1;22094:20;;:6;:20;;;22090:103;;22147:1;22151:29;22131:50;;;;;;;22090:103;22213:6;22221:20;22205:37;;;;;20730:1520;;;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:329::-;4949:6;4998:2;4986:9;4977:7;4973:23;4969:32;4966:119;;;5004:79;;:::i;:::-;4966:119;5124:1;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5095:117;4890:329;;;;:::o;5225:118::-;5312:24;5330:5;5312:24;:::i;:::-;5307:3;5300:37;5225:118;;:::o;5349:222::-;5442:4;5480:2;5469:9;5465:18;5457:26;;5493:71;5561:1;5550:9;5546:17;5537:6;5493:71;:::i;:::-;5349:222;;;;:::o;5577:114::-;5644:6;5678:5;5672:12;5662:22;;5577:114;;;:::o;5697:184::-;5796:11;5830:6;5825:3;5818:19;5870:4;5865:3;5861:14;5846:29;;5697:184;;;;:::o;5887:132::-;5954:4;5977:3;5969:11;;6007:4;6002:3;5998:14;5990:22;;5887:132;;;:::o;6025:108::-;6102:24;6120:5;6102:24;:::i;:::-;6097:3;6090:37;6025:108;;:::o;6139:179::-;6208:10;6229:46;6271:3;6263:6;6229:46;:::i;:::-;6307:4;6302:3;6298:14;6284:28;;6139:179;;;;:::o;6324:113::-;6394:4;6426;6421:3;6417:14;6409:22;;6324:113;;;:::o;6473:732::-;6592:3;6621:54;6669:5;6621:54;:::i;:::-;6691:86;6770:6;6765:3;6691:86;:::i;:::-;6684:93;;6801:56;6851:5;6801:56;:::i;:::-;6880:7;6911:1;6896:284;6921:6;6918:1;6915:13;6896:284;;;6997:6;6991:13;7024:63;7083:3;7068:13;7024:63;:::i;:::-;7017:70;;7110:60;7163:6;7110:60;:::i;:::-;7100:70;;6956:224;6943:1;6940;6936:9;6931:14;;6896:284;;;6900:14;7196:3;7189:10;;6597:608;;;6473:732;;;;:::o;7211:373::-;7354:4;7392:2;7381:9;7377:18;7369:26;;7441:9;7435:4;7431:20;7427:1;7416:9;7412:17;7405:47;7469:108;7572:4;7563:6;7469:108;:::i;:::-;7461:116;;7211:373;;;;:::o;7590:619::-;7667:6;7675;7683;7732:2;7720:9;7711:7;7707:23;7703:32;7700:119;;;7738:79;;:::i;:::-;7700:119;7858:1;7883:53;7928:7;7919:6;7908:9;7904:22;7883:53;:::i;:::-;7873:63;;7829:117;7985:2;8011:53;8056:7;8047:6;8036:9;8032:22;8011:53;:::i;:::-;8001:63;;7956:118;8113:2;8139:53;8184:7;8175:6;8164:9;8160:22;8139:53;:::i;:::-;8129:63;;8084:118;7590:619;;;;;:::o;8215:117::-;8324:1;8321;8314:12;8338:117;8447:1;8444;8437:12;8461:117;8570:1;8567;8560:12;8601:568;8674:8;8684:6;8734:3;8727:4;8719:6;8715:17;8711:27;8701:122;;8742:79;;:::i;:::-;8701:122;8855:6;8842:20;8832:30;;8885:18;8877:6;8874:30;8871:117;;;8907:79;;:::i;:::-;8871:117;9021:4;9013:6;9009:17;8997:29;;9075:3;9067:4;9059:6;9055:17;9045:8;9041:32;9038:41;9035:128;;;9082:79;;:::i;:::-;9035:128;8601:568;;;;;:::o;9175:849::-;9279:6;9287;9295;9303;9352:2;9340:9;9331:7;9327:23;9323:32;9320:119;;;9358:79;;:::i;:::-;9320:119;9478:1;9503:53;9548:7;9539:6;9528:9;9524:22;9503:53;:::i;:::-;9493:63;;9449:117;9633:2;9622:9;9618:18;9605:32;9664:18;9656:6;9653:30;9650:117;;;9686:79;;:::i;:::-;9650:117;9799:80;9871:7;9862:6;9851:9;9847:22;9799:80;:::i;:::-;9781:98;;;;9576:313;9928:2;9954:53;9999:7;9990:6;9979:9;9975:22;9954:53;:::i;:::-;9944:63;;9899:118;9175:849;;;;;;;:::o;10044:553::-;10102:8;10112:6;10162:3;10155:4;10147:6;10143:17;10139:27;10129:122;;10170:79;;:::i;:::-;10129:122;10283:6;10270:20;10260:30;;10313:18;10305:6;10302:30;10299:117;;;10335:79;;:::i;:::-;10299:117;10449:4;10441:6;10437:17;10425:29;;10503:3;10495:4;10487:6;10483:17;10473:8;10469:32;10466:41;10463:128;;;10510:79;;:::i;:::-;10463:128;10044:553;;;;;:::o;10603:529::-;10674:6;10682;10731:2;10719:9;10710:7;10706:23;10702:32;10699:119;;;10737:79;;:::i;:::-;10699:119;10885:1;10874:9;10870:17;10857:31;10915:18;10907:6;10904:30;10901:117;;;10937:79;;:::i;:::-;10901:117;11050:65;11107:7;11098:6;11087:9;11083:22;11050:65;:::i;:::-;11032:83;;;;10828:297;10603:529;;;;;:::o;11138:559::-;11224:6;11232;11281:2;11269:9;11260:7;11256:23;11252:32;11249:119;;;11287:79;;:::i;:::-;11249:119;11435:1;11424:9;11420:17;11407:31;11465:18;11457:6;11454:30;11451:117;;;11487:79;;:::i;:::-;11451:117;11600:80;11672:7;11663:6;11652:9;11648:22;11600:80;:::i;:::-;11582:98;;;;11378:312;11138:559;;;;;:::o;11703:146::-;11802:6;11836:5;11830:12;11820:22;;11703:146;;;:::o;11855:216::-;11986:11;12020:6;12015:3;12008:19;12060:4;12055:3;12051:14;12036:29;;11855:216;;;;:::o;12077:164::-;12176:4;12199:3;12191:11;;12229:4;12224:3;12220:14;12212:22;;12077:164;;;:::o;12247:108::-;12324:24;12342:5;12324:24;:::i;:::-;12319:3;12312:37;12247:108;;:::o;12361:101::-;12397:7;12437:18;12430:5;12426:30;12415:41;;12361:101;;;:::o;12468:105::-;12543:23;12560:5;12543:23;:::i;:::-;12538:3;12531:36;12468:105;;:::o;12579:99::-;12650:21;12665:5;12650:21;:::i;:::-;12645:3;12638:34;12579:99;;:::o;12684:91::-;12720:7;12760:8;12753:5;12749:20;12738:31;;12684:91;;;:::o;12781:105::-;12856:23;12873:5;12856:23;:::i;:::-;12851:3;12844:36;12781:105;;:::o;12964:866::-;13115:4;13110:3;13106:14;13202:4;13195:5;13191:16;13185:23;13221:63;13278:4;13273:3;13269:14;13255:12;13221:63;:::i;:::-;13130:164;13386:4;13379:5;13375:16;13369:23;13405:61;13460:4;13455:3;13451:14;13437:12;13405:61;:::i;:::-;13304:172;13560:4;13553:5;13549:16;13543:23;13579:57;13630:4;13625:3;13621:14;13607:12;13579:57;:::i;:::-;13486:160;13733:4;13726:5;13722:16;13716:23;13752:61;13807:4;13802:3;13798:14;13784:12;13752:61;:::i;:::-;13656:167;13084:746;12964:866;;:::o;13836:307::-;13969:10;13990:110;14096:3;14088:6;13990:110;:::i;:::-;14132:4;14127:3;14123:14;14109:28;;13836:307;;;;:::o;14149:145::-;14251:4;14283;14278:3;14274:14;14266:22;;14149:145;;;:::o;14376:988::-;14559:3;14588:86;14668:5;14588:86;:::i;:::-;14690:118;14801:6;14796:3;14690:118;:::i;:::-;14683:125;;14832:88;14914:5;14832:88;:::i;:::-;14943:7;14974:1;14959:380;14984:6;14981:1;14978:13;14959:380;;;15060:6;15054:13;15087:127;15210:3;15195:13;15087:127;:::i;:::-;15080:134;;15237:92;15322:6;15237:92;:::i;:::-;15227:102;;15019:320;15006:1;15003;14999:9;14994:14;;14959:380;;;14963:14;15355:3;15348:10;;14564:800;;;14376:988;;;;:::o;15370:501::-;15577:4;15615:2;15604:9;15600:18;15592:26;;15664:9;15658:4;15654:20;15650:1;15639:9;15635:17;15628:47;15692:172;15859:4;15850:6;15692:172;:::i;:::-;15684:180;;15370:501;;;;:::o;15890:552::-;15947:8;15957:6;16007:3;16000:4;15992:6;15988:17;15984:27;15974:122;;16015:79;;:::i;:::-;15974:122;16128:6;16115:20;16105:30;;16158:18;16150:6;16147:30;16144:117;;;16180:79;;:::i;:::-;16144:117;16294:4;16286:6;16282:17;16270:29;;16348:3;16340:4;16332:6;16328:17;16318:8;16314:32;16311:41;16308:128;;;16355:79;;:::i;:::-;16308:128;15890:552;;;;;:::o;16448:1047::-;16563:6;16571;16579;16587;16595;16644:2;16632:9;16623:7;16619:23;16615:32;16612:119;;;16650:79;;:::i;:::-;16612:119;16770:1;16795:53;16840:7;16831:6;16820:9;16816:22;16795:53;:::i;:::-;16785:63;;16741:117;16925:2;16914:9;16910:18;16897:32;16956:18;16948:6;16945:30;16942:117;;;16978:79;;:::i;:::-;16942:117;17091:80;17163:7;17154:6;17143:9;17139:22;17091:80;:::i;:::-;17073:98;;;;16868:313;17248:2;17237:9;17233:18;17220:32;17279:18;17271:6;17268:30;17265:117;;;17301:79;;:::i;:::-;17265:117;17414:64;17470:7;17461:6;17450:9;17446:22;17414:64;:::i;:::-;17396:82;;;;17191:297;16448:1047;;;;;;;;:::o;17501:619::-;17578:6;17586;17594;17643:2;17631:9;17622:7;17618:23;17614:32;17611:119;;;17649:79;;:::i;:::-;17611:119;17769:1;17794:53;17839:7;17830:6;17819:9;17815:22;17794:53;:::i;:::-;17784:63;;17740:117;17896:2;17922:53;17967:7;17958:6;17947:9;17943:22;17922:53;:::i;:::-;17912:63;;17867:118;18024:2;18050:53;18095:7;18086:6;18075:9;18071:22;18050:53;:::i;:::-;18040:63;;17995:118;17501:619;;;;;:::o;18126:116::-;18196:21;18211:5;18196:21;:::i;:::-;18189:5;18186:32;18176:60;;18232:1;18229;18222:12;18176:60;18126:116;:::o;18248:133::-;18291:5;18329:6;18316:20;18307:29;;18345:30;18369:5;18345:30;:::i;:::-;18248:133;;;;:::o;18387:468::-;18452:6;18460;18509:2;18497:9;18488:7;18484:23;18480:32;18477:119;;;18515:79;;:::i;:::-;18477:119;18635:1;18660:53;18705:7;18696:6;18685:9;18681:22;18660:53;:::i;:::-;18650:63;;18606:117;18762:2;18788:50;18830:7;18821:6;18810:9;18806:22;18788:50;:::i;:::-;18778:60;;18733:115;18387:468;;;;;:::o;18861:117::-;18970:1;18967;18960:12;18984:180;19032:77;19029:1;19022:88;19129:4;19126:1;19119:15;19153:4;19150:1;19143:15;19170:281;19253:27;19275:4;19253:27;:::i;:::-;19245:6;19241:40;19383:6;19371:10;19368:22;19347:18;19335:10;19332:34;19329:62;19326:88;;;19394:18;;:::i;:::-;19326:88;19434:10;19430:2;19423:22;19213:238;19170:281;;:::o;19457:129::-;19491:6;19518:20;;:::i;:::-;19508:30;;19547:33;19575:4;19567:6;19547:33;:::i;:::-;19457:129;;;:::o;19592:307::-;19653:4;19743:18;19735:6;19732:30;19729:56;;;19765:18;;:::i;:::-;19729:56;19803:29;19825:6;19803:29;:::i;:::-;19795:37;;19887:4;19881;19877:15;19869:23;;19592:307;;;:::o;19905:146::-;20002:6;19997:3;19992;19979:30;20043:1;20034:6;20029:3;20025:16;20018:27;19905:146;;;:::o;20057:423::-;20134:5;20159:65;20175:48;20216:6;20175:48;:::i;:::-;20159:65;:::i;:::-;20150:74;;20247:6;20240:5;20233:21;20285:4;20278:5;20274:16;20323:3;20314:6;20309:3;20305:16;20302:25;20299:112;;;20330:79;;:::i;:::-;20299:112;20420:54;20467:6;20462:3;20457;20420:54;:::i;:::-;20140:340;20057:423;;;;;:::o;20499:338::-;20554:5;20603:3;20596:4;20588:6;20584:17;20580:27;20570:122;;20611:79;;:::i;:::-;20570:122;20728:6;20715:20;20753:78;20827:3;20819:6;20812:4;20804:6;20800:17;20753:78;:::i;:::-;20744:87;;20560:277;20499:338;;;;:::o;20843:943::-;20938:6;20946;20954;20962;21011:3;20999:9;20990:7;20986:23;20982:33;20979:120;;;21018:79;;:::i;:::-;20979:120;21138:1;21163:53;21208:7;21199:6;21188:9;21184:22;21163:53;:::i;:::-;21153:63;;21109:117;21265:2;21291:53;21336:7;21327:6;21316:9;21312:22;21291:53;:::i;:::-;21281:63;;21236:118;21393:2;21419:53;21464:7;21455:6;21444:9;21440:22;21419:53;:::i;:::-;21409:63;;21364:118;21549:2;21538:9;21534:18;21521:32;21580:18;21572:6;21569:30;21566:117;;;21602:79;;:::i;:::-;21566:117;21707:62;21761:7;21752:6;21741:9;21737:22;21707:62;:::i;:::-;21697:72;;21492:287;20843:943;;;;;;;:::o;21864:876::-;22025:4;22020:3;22016:14;22112:4;22105:5;22101:16;22095:23;22131:63;22188:4;22183:3;22179:14;22165:12;22131:63;:::i;:::-;22040:164;22296:4;22289:5;22285:16;22279:23;22315:61;22370:4;22365:3;22361:14;22347:12;22315:61;:::i;:::-;22214:172;22470:4;22463:5;22459:16;22453:23;22489:57;22540:4;22535:3;22531:14;22517:12;22489:57;:::i;:::-;22396:160;22643:4;22636:5;22632:16;22626:23;22662:61;22717:4;22712:3;22708:14;22694:12;22662:61;:::i;:::-;22566:167;21994:746;21864:876;;:::o;22746:351::-;22903:4;22941:3;22930:9;22926:19;22918:27;;22955:135;23087:1;23076:9;23072:17;23063:6;22955:135;:::i;:::-;22746:351;;;;:::o;23103:474::-;23171:6;23179;23228:2;23216:9;23207:7;23203:23;23199:32;23196:119;;;23234:79;;:::i;:::-;23196:119;23354:1;23379:53;23424:7;23415:6;23404:9;23400:22;23379:53;:::i;:::-;23369:63;;23325:117;23481:2;23507:53;23552:7;23543:6;23532:9;23528:22;23507:53;:::i;:::-;23497:63;;23452:118;23103:474;;;;;:::o;23583:180::-;23631:77;23628:1;23621:88;23728:4;23725:1;23718:15;23752:4;23749:1;23742:15;23769:320;23813:6;23850:1;23844:4;23840:12;23830:22;;23897:1;23891:4;23887:12;23918:18;23908:81;;23974:4;23966:6;23962:17;23952:27;;23908:81;24036:2;24028:6;24025:14;24005:18;24002:38;23999:84;;24055:18;;:::i;:::-;23999:84;23820:269;23769:320;;;:::o;24095:332::-;24216:4;24254:2;24243:9;24239:18;24231:26;;24267:71;24335:1;24324:9;24320:17;24311:6;24267:71;:::i;:::-;24348:72;24416:2;24405:9;24401:18;24392:6;24348:72;:::i;:::-;24095:332;;;;;:::o;24433:180::-;24481:77;24478:1;24471:88;24578:4;24575:1;24568:15;24602:4;24599:1;24592:15;24619:180;24667:77;24664:1;24657:88;24764:4;24761:1;24754:15;24788:4;24785:1;24778:15;24805:86;24840:7;24880:4;24873:5;24869:16;24858:27;;24805:86;;;:::o;24897:167::-;24934:3;24957:22;24973:5;24957:22;:::i;:::-;24948:31;;25001:4;24994:5;24991:15;24988:41;;25009:18;;:::i;:::-;24988:41;25056:1;25049:5;25045:13;25038:20;;24897:167;;;:::o;25070:225::-;25210:34;25206:1;25198:6;25194:14;25187:58;25279:8;25274:2;25266:6;25262:15;25255:33;25070:225;:::o;25301:366::-;25443:3;25464:67;25528:2;25523:3;25464:67;:::i;:::-;25457:74;;25540:93;25629:3;25540:93;:::i;:::-;25658:2;25653:3;25649:12;25642:19;;25301:366;;;:::o;25673:419::-;25839:4;25877:2;25866:9;25862:18;25854:26;;25926:9;25920:4;25916:20;25912:1;25901:9;25897:17;25890:47;25954:131;26080:4;25954:131;:::i;:::-;25946:139;;25673:419;;;:::o;26098:97::-;26157:6;26185:3;26175:13;;26098:97;;;;:::o;26201:141::-;26250:4;26273:3;26265:11;;26296:3;26293:1;26286:14;26330:4;26327:1;26317:18;26309:26;;26201:141;;;:::o;26348:93::-;26385:6;26432:2;26427;26420:5;26416:14;26412:23;26402:33;;26348:93;;;:::o;26447:107::-;26491:8;26541:5;26535:4;26531:16;26510:37;;26447:107;;;;:::o;26560:393::-;26629:6;26679:1;26667:10;26663:18;26702:97;26732:66;26721:9;26702:97;:::i;:::-;26820:39;26850:8;26839:9;26820:39;:::i;:::-;26808:51;;26892:4;26888:9;26881:5;26877:21;26868:30;;26941:4;26931:8;26927:19;26920:5;26917:30;26907:40;;26636:317;;26560:393;;;;;:::o;26959:60::-;26987:3;27008:5;27001:12;;26959:60;;;:::o;27025:142::-;27075:9;27108:53;27126:34;27135:24;27153:5;27135:24;:::i;:::-;27126:34;:::i;:::-;27108:53;:::i;:::-;27095:66;;27025:142;;;:::o;27173:75::-;27216:3;27237:5;27230:12;;27173:75;;;:::o;27254:269::-;27364:39;27395:7;27364:39;:::i;:::-;27425:91;27474:41;27498:16;27474:41;:::i;:::-;27466:6;27459:4;27453:11;27425:91;:::i;:::-;27419:4;27412:105;27330:193;27254:269;;;:::o;27529:73::-;27574:3;27529:73;:::o;27608:189::-;27685:32;;:::i;:::-;27726:65;27784:6;27776;27770:4;27726:65;:::i;:::-;27661:136;27608:189;;:::o;27803:186::-;27863:120;27880:3;27873:5;27870:14;27863:120;;;27934:39;27971:1;27964:5;27934:39;:::i;:::-;27907:1;27900:5;27896:13;27887:22;;27863:120;;;27803:186;;:::o;27995:543::-;28096:2;28091:3;28088:11;28085:446;;;28130:38;28162:5;28130:38;:::i;:::-;28214:29;28232:10;28214:29;:::i;:::-;28204:8;28200:44;28397:2;28385:10;28382:18;28379:49;;;28418:8;28403:23;;28379:49;28441:80;28497:22;28515:3;28497:22;:::i;:::-;28487:8;28483:37;28470:11;28441:80;:::i;:::-;28100:431;;28085:446;27995:543;;;:::o;28544:117::-;28598:8;28648:5;28642:4;28638:16;28617:37;;28544:117;;;;:::o;28667:169::-;28711:6;28744:51;28792:1;28788:6;28780:5;28777:1;28773:13;28744:51;:::i;:::-;28740:56;28825:4;28819;28815:15;28805:25;;28718:118;28667:169;;;;:::o;28841:295::-;28917:4;29063:29;29088:3;29082:4;29063:29;:::i;:::-;29055:37;;29125:3;29122:1;29118:11;29112:4;29109:21;29101:29;;28841:295;;;;:::o;29141:1403::-;29265:44;29305:3;29300;29265:44;:::i;:::-;29374:18;29366:6;29363:30;29360:56;;;29396:18;;:::i;:::-;29360:56;29440:38;29472:4;29466:11;29440:38;:::i;:::-;29525:67;29585:6;29577;29571:4;29525:67;:::i;:::-;29619:1;29648:2;29640:6;29637:14;29665:1;29660:632;;;;30336:1;30353:6;30350:84;;;30409:9;30404:3;30400:19;30387:33;30378:42;;30350:84;30460:67;30520:6;30513:5;30460:67;:::i;:::-;30454:4;30447:81;30309:229;29630:908;;29660:632;29712:4;29708:9;29700:6;29696:22;29746:37;29778:4;29746:37;:::i;:::-;29805:1;29819:215;29833:7;29830:1;29827:14;29819:215;;;29919:9;29914:3;29910:19;29897:33;29889:6;29882:49;29970:1;29962:6;29958:14;29948:24;;30017:2;30006:9;30002:18;29989:31;;29856:4;29853:1;29849:12;29844:17;;29819:215;;;30062:6;30053:7;30050:19;30047:186;;;30127:9;30122:3;30118:19;30105:33;30170:48;30212:4;30204:6;30200:17;30189:9;30170:48;:::i;:::-;30162:6;30155:64;30070:163;30047:186;30279:1;30275;30267:6;30263:14;30259:22;30253:4;30246:36;29667:625;;;29630:908;;29240:1304;;;29141:1403;;;:::o;30574:317::-;30672:3;30693:71;30757:6;30752:3;30693:71;:::i;:::-;30686:78;;30774:56;30823:6;30818:3;30811:5;30774:56;:::i;:::-;30855:29;30877:6;30855:29;:::i;:::-;30850:3;30846:39;30839:46;;30574:317;;;;;:::o;30897:443::-;31048:4;31086:2;31075:9;31071:18;31063:26;;31099:71;31167:1;31156:9;31152:17;31143:6;31099:71;:::i;:::-;31217:9;31211:4;31207:20;31202:2;31191:9;31187:18;31180:48;31245:88;31328:4;31319:6;31311;31245:88;:::i;:::-;31237:96;;30897:443;;;;;;:::o;31346:332::-;31467:4;31505:2;31494:9;31490:18;31482:26;;31518:71;31586:1;31575:9;31571:17;31562:6;31518:71;:::i;:::-;31599:72;31667:2;31656:9;31652:18;31643:6;31599:72;:::i;:::-;31346:332;;;;;:::o;31684:147::-;31785:11;31822:3;31807:18;;31684:147;;;;:::o;31837:114::-;;:::o;31957:398::-;32116:3;32137:83;32218:1;32213:3;32137:83;:::i;:::-;32130:90;;32229:93;32318:3;32229:93;:::i;:::-;32347:1;32342:3;32338:11;32331:18;;31957:398;;;:::o;32361:379::-;32545:3;32567:147;32710:3;32567:147;:::i;:::-;32560:154;;32731:3;32724:10;;32361:379;;;:::o;32746:148::-;32848:11;32885:3;32870:18;;32746:148;;;;:::o;32924:874::-;33027:3;33064:5;33058:12;33093:36;33119:9;33093:36;:::i;:::-;33145:89;33227:6;33222:3;33145:89;:::i;:::-;33138:96;;33265:1;33254:9;33250:17;33281:1;33276:166;;;;33456:1;33451:341;;;;33243:549;;33276:166;33360:4;33356:9;33345;33341:25;33336:3;33329:38;33422:6;33415:14;33408:22;33400:6;33396:35;33391:3;33387:45;33380:52;;33276:166;;33451:341;33518:38;33550:5;33518:38;:::i;:::-;33578:1;33592:154;33606:6;33603:1;33600:13;33592:154;;;33680:7;33674:14;33670:1;33665:3;33661:11;33654:35;33730:1;33721:7;33717:15;33706:26;;33628:4;33625:1;33621:12;33616:17;;33592:154;;;33775:6;33770:3;33766:16;33759:23;;33458:334;;33243:549;;33031:767;;32924:874;;;;:::o;33804:390::-;33910:3;33938:39;33971:5;33938:39;:::i;:::-;33993:89;34075:6;34070:3;33993:89;:::i;:::-;33986:96;;34091:65;34149:6;34144:3;34137:4;34130:5;34126:16;34091:65;:::i;:::-;34181:6;34176:3;34172:16;34165:23;;33914:280;33804:390;;;;:::o;34200:155::-;34340:7;34336:1;34328:6;34324:14;34317:31;34200:155;:::o;34361:400::-;34521:3;34542:84;34624:1;34619:3;34542:84;:::i;:::-;34535:91;;34635:93;34724:3;34635:93;:::i;:::-;34753:1;34748:3;34744:11;34737:18;;34361:400;;;:::o;34767:695::-;35045:3;35067:92;35155:3;35146:6;35067:92;:::i;:::-;35060:99;;35176:95;35267:3;35258:6;35176:95;:::i;:::-;35169:102;;35288:148;35432:3;35288:148;:::i;:::-;35281:155;;35453:3;35446:10;;34767:695;;;;;:::o;35468:191::-;35508:3;35527:20;35545:1;35527:20;:::i;:::-;35522:25;;35561:20;35579:1;35561:20;:::i;:::-;35556:25;;35604:1;35601;35597:9;35590:16;;35625:3;35622:1;35619:10;35616:36;;;35632:18;;:::i;:::-;35616:36;35468:191;;;;:::o;35665:117::-;35774:1;35771;35764:12;35788:98;35872:6;35867:3;35862;35849:30;35788:98;;;:::o;35922:537::-;36050:3;36071:86;36150:6;36145:3;36071:86;:::i;:::-;36064:93;;36181:66;36173:6;36170:78;36167:165;;;36251:79;;:::i;:::-;36167:165;36363:4;36355:6;36351:17;36341:27;;36378:43;36414:6;36409:3;36402:5;36378:43;:::i;:::-;36446:6;36441:3;36437:16;36430:23;;35922:537;;;;;:::o;36465:503::-;36646:4;36684:2;36673:9;36669:18;36661:26;;36697:71;36765:1;36754:9;36750:17;36741:6;36697:71;:::i;:::-;36815:9;36809:4;36805:20;36800:2;36789:9;36785:18;36778:48;36843:118;36956:4;36947:6;36939;36843:118;:::i;:::-;36835:126;;36465:503;;;;;;:::o;36974:225::-;37114:34;37110:1;37102:6;37098:14;37091:58;37183:8;37178:2;37170:6;37166:15;37159:33;36974:225;:::o;37205:366::-;37347:3;37368:67;37432:2;37427:3;37368:67;:::i;:::-;37361:74;;37444:93;37533:3;37444:93;:::i;:::-;37562:2;37557:3;37553:12;37546:19;;37205:366;;;:::o;37577:419::-;37743:4;37781:2;37770:9;37766:18;37758:26;;37830:9;37824:4;37820:20;37816:1;37805:9;37801:17;37794:47;37858:131;37984:4;37858:131;:::i;:::-;37850:139;;37577:419;;;:::o;38002:182::-;38142:34;38138:1;38130:6;38126:14;38119:58;38002:182;:::o;38190:366::-;38332:3;38353:67;38417:2;38412:3;38353:67;:::i;:::-;38346:74;;38429:93;38518:3;38429:93;:::i;:::-;38547:2;38542:3;38538:12;38531:19;;38190:366;;;:::o;38562:419::-;38728:4;38766:2;38755:9;38751:18;38743:26;;38815:9;38809:4;38805:20;38801:1;38790:9;38786:17;38779:47;38843:131;38969:4;38843:131;:::i;:::-;38835:139;;38562:419;;;:::o;38987:142::-;39037:9;39070:53;39088:34;39097:24;39115:5;39097:24;:::i;:::-;39088:34;:::i;:::-;39070:53;:::i;:::-;39057:66;;38987:142;;;:::o;39135:126::-;39185:9;39218:37;39249:5;39218:37;:::i;:::-;39205:50;;39135:126;;;:::o;39267:147::-;39338:9;39371:37;39402:5;39371:37;:::i;:::-;39358:50;;39267:147;;;:::o;39420:94::-;39453:8;39501:5;39497:2;39493:14;39472:35;;39420:94;;;:::o;39520:::-;39559:7;39588:20;39602:5;39588:20;:::i;:::-;39577:31;;39520:94;;;:::o;39620:100::-;39659:7;39688:26;39708:5;39688:26;:::i;:::-;39677:37;;39620:100;;;:::o;39726:212::-;39852:79;39872:58;39924:5;39872:58;:::i;:::-;39852:79;:::i;:::-;39847:3;39840:92;39726:212;;:::o;39944:157::-;40049:45;40069:24;40087:5;40069:24;:::i;:::-;40049:45;:::i;:::-;40044:3;40037:58;39944:157;;:::o;40107:79::-;40146:7;40175:5;40164:16;;40107:79;;;:::o;40192:157::-;40297:45;40317:24;40335:5;40317:24;:::i;:::-;40297:45;:::i;:::-;40292:3;40285:58;40192:157;;:::o;40355:163::-;40472:11;40509:3;40494:18;;40355:163;;;;:::o;40554:573::-;40700:3;40721:104;40818:6;40813:3;40721:104;:::i;:::-;40714:111;;40849:66;40841:6;40838:78;40835:165;;;40919:79;;:::i;:::-;40835:165;41031:4;41023:6;41019:17;41009:27;;41046:43;41082:6;41077:3;41070:5;41046:43;:::i;:::-;41114:6;41109:3;41105:16;41098:23;;40554:573;;;;;:::o;41133:820::-;41410:3;41425:96;41517:3;41508:6;41425:96;:::i;:::-;41546:2;41541:3;41537:12;41530:19;;41559:75;41630:3;41621:6;41559:75;:::i;:::-;41659:2;41654:3;41650:12;41643:19;;41672:75;41743:3;41734:6;41672:75;:::i;:::-;41772:2;41767:3;41763:12;41756:19;;41792:135;41923:3;41914:6;41906;41792:135;:::i;:::-;41785:142;;41944:3;41937:10;;41133:820;;;;;;;;:::o;41959:214::-;42099:66;42095:1;42087:6;42083:14;42076:90;41959:214;:::o;42179:402::-;42339:3;42360:85;42442:2;42437:3;42360:85;:::i;:::-;42353:92;;42454:93;42543:3;42454:93;:::i;:::-;42572:2;42567:3;42563:12;42556:19;;42179:402;;;:::o;42587:77::-;42624:7;42653:5;42642:16;;42587:77;;;:::o;42670:79::-;42709:7;42738:5;42727:16;;42670:79;;;:::o;42755:157::-;42860:45;42880:24;42898:5;42880:24;:::i;:::-;42860:45;:::i;:::-;42855:3;42848:58;42755:157;;:::o;42918:522::-;43131:3;43153:148;43297:3;43153:148;:::i;:::-;43146:155;;43311:75;43382:3;43373:6;43311:75;:::i;:::-;43411:2;43406:3;43402:12;43395:19;;43431:3;43424:10;;42918:522;;;;:::o;43446:98::-;43497:6;43531:5;43525:12;43515:22;;43446:98;;;:::o;43550:168::-;43633:11;43667:6;43662:3;43655:19;43707:4;43702:3;43698:14;43683:29;;43550:168;;;;:::o;43724:373::-;43810:3;43838:38;43870:5;43838:38;:::i;:::-;43892:70;43955:6;43950:3;43892:70;:::i;:::-;43885:77;;43971:65;44029:6;44024:3;44017:4;44010:5;44006:16;43971:65;:::i;:::-;44061:29;44083:6;44061:29;:::i;:::-;44056:3;44052:39;44045:46;;43814:283;43724:373;;;;:::o;44103:640::-;44298:4;44336:3;44325:9;44321:19;44313:27;;44350:71;44418:1;44407:9;44403:17;44394:6;44350:71;:::i;:::-;44431:72;44499:2;44488:9;44484:18;44475:6;44431:72;:::i;:::-;44513;44581:2;44570:9;44566:18;44557:6;44513:72;:::i;:::-;44632:9;44626:4;44622:20;44617:2;44606:9;44602:18;44595:48;44660:76;44731:4;44722:6;44660:76;:::i;:::-;44652:84;;44103:640;;;;;;;:::o;44749:141::-;44805:5;44836:6;44830:13;44821:22;;44852:32;44878:5;44852:32;:::i;:::-;44749:141;;;;:::o;44896:349::-;44965:6;45014:2;45002:9;44993:7;44989:23;44985:32;44982:119;;;45020:79;;:::i;:::-;44982:119;45140:1;45165:63;45220:7;45211:6;45200:9;45196:22;45165:63;:::i;:::-;45155:73;;45111:127;44896:349;;;;:::o;45251:180::-;45299:77;45296:1;45289:88;45396:4;45393:1;45386:15;45420:4;45417:1;45410:15;45437:233;45476:3;45499:24;45517:5;45499:24;:::i;:::-;45490:33;;45545:66;45538:5;45535:77;45532:103;;45615:18;;:::i;:::-;45532:103;45662:1;45655:5;45651:13;45644:20;;45437:233;;;:::o;45676:180::-;45724:77;45721:1;45714:88;45821:4;45818:1;45811:15;45845:4;45842:1;45835:15;45862:174;46002:26;45998:1;45990:6;45986:14;45979:50;45862:174;:::o;46042:366::-;46184:3;46205:67;46269:2;46264:3;46205:67;:::i;:::-;46198:74;;46281:93;46370:3;46281:93;:::i;:::-;46399:2;46394:3;46390:12;46383:19;;46042:366;;;:::o;46414:419::-;46580:4;46618:2;46607:9;46603:18;46595:26;;46667:9;46661:4;46657:20;46653:1;46642:9;46638:17;46631:47;46695:131;46821:4;46695:131;:::i;:::-;46687:139;;46414:419;;;:::o;46839:181::-;46979:33;46975:1;46967:6;46963:14;46956:57;46839:181;:::o;47026:366::-;47168:3;47189:67;47253:2;47248:3;47189:67;:::i;:::-;47182:74;;47265:93;47354:3;47265:93;:::i;:::-;47383:2;47378:3;47374:12;47367:19;;47026:366;;;:::o;47398:419::-;47564:4;47602:2;47591:9;47587:18;47579:26;;47651:9;47645:4;47641:20;47637:1;47626:9;47622:17;47615:47;47679:131;47805:4;47679:131;:::i;:::-;47671:139;;47398:419;;;:::o;47823:221::-;47963:34;47959:1;47951:6;47947:14;47940:58;48032:4;48027:2;48019:6;48015:15;48008:29;47823:221;:::o;48050:366::-;48192:3;48213:67;48277:2;48272:3;48213:67;:::i;:::-;48206:74;;48289:93;48378:3;48289:93;:::i;:::-;48407:2;48402:3;48398:12;48391:19;;48050:366;;;:::o;48422:419::-;48588:4;48626:2;48615:9;48611:18;48603:26;;48675:9;48669:4;48665:20;48661:1;48650:9;48646:17;48639:47;48703:131;48829:4;48703:131;:::i;:::-;48695:139;;48422:419;;;:::o;48847:118::-;48934:24;48952:5;48934:24;:::i;:::-;48929:3;48922:37;48847:118;;:::o;48971:112::-;49054:22;49070:5;49054:22;:::i;:::-;49049:3;49042:35;48971:112;;:::o;49089:545::-;49262:4;49300:3;49289:9;49285:19;49277:27;;49314:71;49382:1;49371:9;49367:17;49358:6;49314:71;:::i;:::-;49395:68;49459:2;49448:9;49444:18;49435:6;49395:68;:::i;:::-;49473:72;49541:2;49530:9;49526:18;49517:6;49473:72;:::i;:::-;49555;49623:2;49612:9;49608:18;49599:6;49555:72;:::i;:::-;49089:545;;;;;;;:::o

Swarm Source

ipfs://bcce3d2b1ce69c6c28377213a9f06167b386a13dca7a002d10e8e785d91b49d3

[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.

Connect a Wallet
Connect a Wallet

Compiler specific version warnings:

The compiled contract might be susceptible to VerbatimInvalidDeduplication (low-severity), FullInlinerNonExpressionSplitArgumentEvaluationOrder (low-severity), MissingSideEffectsOnSelectorAccess (low-severity) Solidity Compiler Bugs.

testeOptmims (testeOptmims) Token Tracker | OP Sepolia (2024)
Top Articles
Latest Posts
Article information

Author: Madonna Wisozk

Last Updated:

Views: 6162

Rating: 4.8 / 5 (48 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Madonna Wisozk

Birthday: 2001-02-23

Address: 656 Gerhold Summit, Sidneyberg, FL 78179-2512

Phone: +6742282696652

Job: Customer Banking Liaison

Hobby: Flower arranging, Yo-yoing, Tai chi, Rowing, Macrame, Urban exploration, Knife making

Introduction: My name is Madonna Wisozk, I am a attractive, healthy, thoughtful, faithful, open, vivacious, zany person who loves writing and wants to share my knowledge and understanding with you.