ERC-721
Overview
Max Total Supply
18,667 STK
Holders
2,241
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 STKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
StartTicket
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-24 */ //SPDX-License-Identifier: MIT pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_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) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @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); } } pragma solidity ^0.8.7; abstract contract MerkleProof { bytes32 internal _wlMerkleRoot; bytes32 internal _wlPMerkleRoot; function _setWlMerkleRoot(bytes32 merkleRoot_) internal virtual { _wlMerkleRoot = merkleRoot_; } function isWhitelisted( address address_, uint256 wlCount, bytes32[] memory proof_ ) public view returns (bool) { bytes32 _leaf = keccak256(abi.encodePacked(address_, wlCount)); for (uint256 i = 0; i < proof_.length; i++) { _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf)); } return _leaf == _wlMerkleRoot; } // WL function _setPWlMerkleRoot(bytes32 merkleRoot_) internal virtual { _wlPMerkleRoot = merkleRoot_; } function isPWhitelisted(address address_, bytes32[] memory proof_) public view returns (bool) { bytes32 _leaf = keccak256(abi.encodePacked(address_)); for (uint256 i = 0; i < proof_.length; i++) { _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf)); } return _leaf == _wlPMerkleRoot; } } // OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol) pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. * * _Available since v4.5._ */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8( resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))) ) resultPtr := add(resultPtr, 1) // Advance mstore8( resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))) ) resultPtr := add(resultPtr, 1) // Advance mstore8( resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))) ) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @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 have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require( feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice" ); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require( feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice" ); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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; } } // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary 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 { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if (!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract()) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, 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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if ( !_checkContractOnERC721Received( address(0), to, updatedIndex++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @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 {} } // 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 * `onlyOperator`, 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); } } pragma solidity ^0.8.9; abstract contract Operable is Context { mapping(address => bool) _operators; modifier onlyOperator() { _checkOperatorRole(_msgSender()); _; } function isOperator(address _operator) public view returns (bool) { return _operators[_operator]; } function _grantOperatorRole(address _candidate) internal { require( !_operators[_candidate], string( abi.encodePacked( "account ", Strings.toHexString(uint160(_msgSender()), 20), " is already has an operator role" ) ) ); _operators[_candidate] = true; } function _revokeOperatorRole(address _candidate) internal { _checkOperatorRole(_candidate); delete _operators[_candidate]; } function _checkOperatorRole(address _operator) internal view { require( _operators[_operator], string( abi.encodePacked( "account ", Strings.toHexString(uint160(_msgSender()), 20), " is not an operator" ) ) ); } } pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries( address registrant, address registrantToCopy ) external; function unregister(address addr) external; function updateOperator( address registrant, address operator, bool filtered ) external; function updateOperators( address registrant, address[] calldata operators, bool filtered ) external; function updateCodeHash( address registrant, bytes32 codehash, bool filtered ) external; function updateCodeHashes( address registrant, bytes32[] calldata codeHashes, bool filtered ) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); bool public operatorFilteringEnabled = true; IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe( address(this), subscriptionOrRegistrantToCopy ); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries( address(this), subscriptionOrRegistrantToCopy ); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if ( address(OPERATOR_FILTER_REGISTRY).code.length > 0 && operatorFilteringEnabled ) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !OPERATOR_FILTER_REGISTRY.isOperatorAllowed( address(this), msg.sender ) ) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if ( address(OPERATOR_FILTER_REGISTRY).code.length > 0 && operatorFilteringEnabled ) { if ( !OPERATOR_FILTER_REGISTRY.isOperatorAllowed( address(this), operator ) ) { revert OperatorNotAllowed(operator); } } _; } } pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } interface IERC721ANSK is IERC721A { function tokenURI(uint256 _tokenId) external view returns (string memory); function walletOfOwner(address _address) external view returns (uint256[] memory); } pragma solidity ^0.8.7; /* ┏━━┳━━┳━━┳━┳━━┳┳━┳━┳┓┏━━┳━━┳━┳┳┳━┳━━┓ ┃━━╋┓┏┫┏┓┃╋┣┓┏┫┃╋┃┃┃┃┗┓┏┻┃┃┫┏┫┏┫┳┻┓┏┛ ┣━━┃┃┃┃┣┫┃┓┫┃┣┫┃┏┫┃┃┃╋┃┃┏┃┃┫┗┫┗┫┻┓┃┃ ┗━━┛┗┛┗┛┗┻┻┛┗┻━┻┛┗┻━┛╋┗┛┗━━┻━┻┻┻━┛┗┛ STARTJPN Ticket */ contract StartTicket is Ownable, ERC721A, ReentrancyGuard, MerkleProof, ERC2981, DefaultOperatorFilterer, Operable { //Project Settings uint256 public wlMintPrice = 0.0 ether; uint256 public psMintPrice = 0.003 ether; uint256 public maxMintsPerWL = 1; uint256 public maxMintsPerPS = 1; uint256 public maxSupply = 50000; uint256 public mintable = 5000; address payable internal _withdrawWallet; uint256 public maxReq = 50000; uint256 public maxQues = 50000; uint256 public phaseNum = 1; uint256 public phaseNumQ = 1; uint256 public nowCount; uint256 public nowCountQues; uint256 public phaseRequire = 1; address public baseAddress; IERC721ANSK baseContract; //URI string internal hiddenURI; string internal _baseTokenURI; string public _baseExtension = ".json"; //flags bool public isWlSaleEnabled; bool public isPublicSaleEnabled; bool public isPublicMPSaleEnabled; bool public isPublicBOSaleEnabled; bool public revealed = false; bool public burnWriteEnable = false; bool public burnWriteRemoveEnable = false; bool public burnWriteQEnable = false; bool public requireBaseHold = false; address public deployer; //mint records. mapping(address => uint256) internal _wlMinted; mapping(address => uint256) internal _psMinted; uint256[] public _requests; mapping(address => uint256) internal _requestsAddress; mapping(uint256 => uint256) internal _requestedId; uint256[] public _quests; address[] public _questsAddress; mapping(uint256 => uint256) public questRequire; mapping(uint256 => uint256) public requestRequire; mapping(uint256 => uint256) public questMax; mapping(uint256 => mapping(uint256 => uint256)) public questHistory; constructor( address _royaltyReceiver, uint96 _royaltyFraction, address _contractAddress ) ERC721A("STARTJPN Ticket", "STK") { deployer = msg.sender; baseAddress = _contractAddress; // _withdrawWallet = payable(deployer); _grantOperatorRole(msg.sender); _setDefaultRoyalty(_royaltyReceiver, _royaltyFraction); baseContract = IERC721ANSK(_contractAddress); } function setBaseContract(address _contractAddress) public onlyOperator { baseContract = IERC721ANSK(_contractAddress); baseAddress = _contractAddress; } //start from 1.adjust. function _startTokenId() internal view virtual override returns (uint256) { return 1; } //set Default Royalty._feeNumerator 500 = 5% Royalty function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) external virtual onlyOperator { _setDefaultRoyalty(_receiver, _feeNumerator); } //for ERC2981 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } //for ERC2981 Opensea function contractURI() external view virtual returns (string memory) { return _formatContractURI(); } //make contractURI function _formatContractURI() internal view returns (string memory) { (address receiver, uint256 royaltyFraction) = royaltyInfo( 0, _feeDenominator() ); //tokenid=0 return string( abi.encodePacked( "data:application/json;base64,", Base64.encode( bytes( abi.encodePacked( '{"seller_fee_basis_points":', Strings.toString(royaltyFraction), ', "fee_recipient":"', Strings.toHexString( uint256(uint160(receiver)), 20 ), '"}' ) ) ) ) ); } //set owner's wallet.withdraw to this wallet.only owner. function setWithdrawWallet(address _owner) external virtual onlyOperator { _withdrawWallet = payable(_owner); } function setDeployer(address _deployer) external virtual onlyOperator { deployer = _deployer; } //set maxSupply.only owner. function setMaxSupply(uint256 _maxSupply) external virtual onlyOperator { require(totalSupply() <= _maxSupply, "Lower than _currentIndex."); maxSupply = _maxSupply; } //set mintable.only owner. function setMintable(uint256 _mintable) external virtual onlyOperator { require(totalSupply() <= _mintable, "Lower than _currentIndex."); mintable = _mintable; } // SET PRICES. function setWlPrice(uint256 newPrice) external virtual onlyOperator { wlMintPrice = newPrice; } function setPsPrice(uint256 newPrice) external virtual onlyOperator { psMintPrice = newPrice; } //set reveal.only owner. function setReveal(bool newRevealStatus) external virtual onlyOperator { revealed = newRevealStatus; } //return _isRevealed() function _isRevealed() internal view virtual returns (bool) { return revealed; } // GET MINTED COUNT. function wlMinted(address _address) external view virtual returns (uint256) { return _wlMinted[_address]; } function psMinted(address _address) external view virtual returns (uint256) { return _psMinted[_address]; } // SET MAX MINTS. function setWlMaxMints(uint256 _max) external virtual onlyOperator { maxMintsPerWL = _max; } function setPsMaxMints(uint256 _max) external virtual onlyOperator { maxMintsPerPS = _max; } // SET SALES ENABLE. function setWhitelistSaleEnable(bool bool_) external virtual onlyOperator { isWlSaleEnabled = bool_; } function setPublicSaleEnable(bool bool_) external virtual onlyOperator { isPublicSaleEnabled = bool_; } function setPublicMPSaleEnable(bool bool_) external virtual onlyOperator { isPublicMPSaleEnabled = bool_; } function setPublicBOSaleEnable(bool bool_) external virtual onlyOperator { isPublicBOSaleEnabled = bool_; } // SET MERKLE ROOT. function setWlMerkleRoot(bytes32 merkleRoot_) external virtual onlyOperator { _setWlMerkleRoot(merkleRoot_); } // SET MERKLE ROOT. function setPWlMerkleRoot(bytes32 merkleRoot_) external virtual onlyOperator { _setPWlMerkleRoot(merkleRoot_); } //set HiddenBaseURI.only owner. function setHiddenURI(string memory uri_) external virtual onlyOperator { hiddenURI = uri_; } //return _currentIndex function getCurrentIndex() external view virtual returns (uint256) { return _currentIndex; } //set BaseURI at after reveal. only owner. function setBaseURI(string memory uri_) external virtual onlyOperator { _baseTokenURI = uri_; } function setBaseExtension(string memory _newBaseExtension) external onlyOperator { _baseExtension = _newBaseExtension; } //retuen BaseURI.internal. function _currentBaseURI() internal view returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI query for nonexistent token"); if (_isRevealed()) { return string( abi.encodePacked( _currentBaseURI(), Strings.toString(_tokenId), _baseExtension ) ); } return hiddenURI; } //owner mint.transfer to _address.only owner. function ownerMint(uint256 _amount, address _address) external virtual onlyOperator { require((_amount + totalSupply()) <= (maxSupply), "No more NFTs"); _safeMint(_address, _amount); } //WL mint. function whitelistMint( uint256 _amount, uint256 wlcount, bytes32[] memory proof_ ) external payable virtual nonReentrant { require(isWlSaleEnabled, "whitelistMint is Paused"); require( isWhitelisted(msg.sender, wlcount, proof_), "You are not whitelisted!" ); require(wlcount > 0, "You have no WL!"); require(wlcount >= _amount, "whitelistMint: Over max mints per wallet"); require( wlcount >= _wlMinted[msg.sender] + _amount, "You have no whitelistMint left" ); // require(msg.value == wlMintPrice * _amount, "ETH value is not correct"); require((_amount + totalSupply()) <= (mintable), "No more NFTs"); require((_amount + totalSupply()) <= (maxSupply), "No more NFTs"); _wlMinted[msg.sender] += _amount; _safeMint(msg.sender, _amount); } //Public mint. function publicMint(uint256 _amount) external payable virtual nonReentrant { require(isPublicSaleEnabled, "publicMint is Paused"); require( maxMintsPerPS >= _amount, "publicMint: Over max mints per wallet" ); require( maxMintsPerPS >= _psMinted[msg.sender] + _amount, "You have no publicMint left" ); require(msg.value == psMintPrice * _amount, "ETH value is not correct"); require((_amount + totalSupply()) <= (mintable), "No more NFTs"); require((_amount + totalSupply()) <= (maxSupply), "No more NFTs"); _psMinted[msg.sender] += _amount; _safeMint(msg.sender, _amount); } //Public mint. function publicMintMP(uint256 _amount, bytes32[] memory proof_) external payable virtual nonReentrant { require(isPublicMPSaleEnabled, "publicMPMint is Paused"); require(isPWhitelisted(msg.sender, proof_), "You are not whitelisted!"); require( maxMintsPerPS >= _amount, "publicMint: Over max mints per wallet" ); require( maxMintsPerPS >= _psMinted[msg.sender] + _amount, "You have no publicMint left" ); require(msg.value == psMintPrice * _amount, "ETH value is not correct"); require((_amount + totalSupply()) <= (mintable), "No more NFTs"); require((_amount + totalSupply()) <= (maxSupply), "No more NFTs"); _psMinted[msg.sender] += _amount; _safeMint(msg.sender, _amount); } //Public mint. function publicMintBO(uint256 _amount) external payable virtual nonReentrant { require(isPublicBOSaleEnabled, "publicBOMint is Paused"); require( 0 <= baseContract.balanceOf(msg.sender), "you not have Base NFT" ); require( maxMintsPerPS >= _amount, "publicMint: Over max mints per wallet" ); require( maxMintsPerPS >= _psMinted[msg.sender] + _amount, "You have no publicMint left" ); require(msg.value == psMintPrice * _amount, "ETH value is not correct"); require((_amount + totalSupply()) <= (mintable), "No more NFTs"); require((_amount + totalSupply()) <= (maxSupply), "No more NFTs"); _psMinted[msg.sender] += _amount; _safeMint(msg.sender, _amount); } //burn function burn(uint256 tokenId) external virtual { _burn(tokenId, true); } //widraw ETH from this contract.only owner. function withdraw() external payable virtual onlyOperator nonReentrant { // This will payout the owner 100% of the contract balance. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= bool os; if (_withdrawWallet != address(0)) { //if _withdrawWallet has. (os, ) = payable(_withdrawWallet).call{ value: address(this).balance }(""); } else { (os, ) = payable(owner()).call{value: address(this).balance}(""); } require(os); // ============================================================================= } //return wallet owned tokenids. function walletOfOwner(address _address) external view virtual returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_address); uint256[] memory tokenIds = new uint256[](ownerTokenCount); //search from all tonkenid. so spend high gas values.attention. uint256 tokenindex = 0; for (uint256 i = _startTokenId(); i < _currentIndex; i++) { if (_address == this.tryOwnerOf(i)) tokenIds[tokenindex++] = i; } return tokenIds; } //return wallet owned tokenids. function walletOfOwnerBase(address _address) external view virtual returns (uint256[] memory) { return baseContract.walletOfOwner(_address); } function tokenURIBase(uint256 _tokenId) public view virtual returns (string memory) { return baseContract.tokenURI(_tokenId); } function balanceOfBase(address owner) public view returns (uint256) { return baseContract.balanceOf(owner); } //return wallet owned tokenids. function walletOfOwnerByIndex(address _address, uint256 _index) external view virtual returns (uint256) { uint256 tokenId; //search from all tonkenid. so spend high gas values.attention. uint256 tokenindex = 0; for (uint256 i = _startTokenId(); i < _currentIndex; i++) { if (_address == this.tryOwnerOf(i)) { tokenId = i; if (_index == tokenindex) { break; } tokenindex++; } } return tokenId; } //try catch vaersion ownerOf. support burned tokenid. function tryOwnerOf(uint256 tokenId) external view virtual returns (address) { try this.ownerOf(tokenId) returns (address _address) { return (_address); } catch { return (address(0)); //return 0x0 if error. } } //set setBurnWriteEnable.only owner. function setBurnWriteEnable(bool _newbwStatus) external virtual onlyOperator { burnWriteEnable = _newbwStatus; } //set setBurnWriteRemoveEnable.only owner. function setBurnWriteRemoveEnable(bool _newbwStatus) external virtual onlyOperator { burnWriteRemoveEnable = _newbwStatus; } //set setBurnWriteEnable.only owner. function setBurnWriteQEnable(bool _newbwStatus) external virtual onlyOperator { burnWriteQEnable = _newbwStatus; } //set nowNum.only owner. function resetPhase() external virtual onlyOperator { delete _requests; nowCount = 0; phaseNum++; } //set nowNum.only owner. function setMaxReq(uint256 _maxReq) external virtual onlyOperator { maxReq = _maxReq; } //burn.and.write function burnWrite(uint256 _tokenId, uint256 _burnId) external virtual nonReentrant { require(burnWriteEnable, "burnWrite is disabled"); require( msg.sender == baseContract.ownerOf(_tokenId), "you are not owner.Base" ); require(msg.sender == ownerOf(_burnId), "you are not owner.Ticket"); require( _requestedId[_tokenId] != phaseNum || _requestsAddress[msg.sender] != phaseNum, "you have writed in past." ); // require(balanceOf(msg.sender) > 0,"you not have ticket."); require(maxReq > nowCount, "phase exeed."); _setRequest(_tokenId); _burn(_burnId, true); } //burn.and.write function burnWriteMulti(uint256 _tokenId, uint256[] memory _burnIds) external virtual nonReentrant { require(burnWriteEnable, "burnWrite is disabled"); require( msg.sender == baseContract.ownerOf(_tokenId), "you are not owner.Base" ); require( _burnIds.length <= balanceOf(msg.sender), "you not have amount" ); require(hasToken(msg.sender, _burnIds), "you not have tokens"); require( _requestedId[_tokenId] != phaseNum || _requestsAddress[msg.sender] != phaseNum, "you have writed in past." ); require( phaseRequire == _burnIds.length || ((phaseRequire == 0 || phaseRequire == 1) && _burnIds.length == 1), "quantity is wrong" ); require(maxReq > nowCount, "phase exeed."); _setRequest(_tokenId); multiBurn(msg.sender, _burnIds); } //burn.and.write function burnRemoveWrite(uint256 _tokenId) external virtual nonReentrant { require(burnWriteRemoveEnable, "burnWriteRemove is disabled"); require( msg.sender == baseContract.ownerOf(_tokenId), "you are not owner.Base" ); _removeRequest(_tokenId); } function _setRequest(uint256 _tokenId) internal virtual { _requests.push(_tokenId); _requestsAddress[msg.sender] = phaseNum; _requestedId[_tokenId] = phaseNum; nowCount++; } function _removeRequest(uint256 _tokenId) internal virtual { for (uint256 i = 0; i < _requests.length; i++) { if (_tokenId == _requests[i]) { delete _requests[i]; break; } } } function _getRequest() external view virtual returns (uint256[] memory) { return _requests; } //set nowNum.only owner. function resetPhaseQues() external virtual onlyOperator { delete _quests; delete _questsAddress; nowCountQues = 0; phaseNumQ++; } //set nowNum.only owner. function setMaxQues(uint256 _maxQues) external virtual onlyOperator { maxQues = _maxQues; } //set setMaxQuesByUnit.only owner. function setQuestMaxByUnit(uint256 _quesId, uint256 _maxQues) external virtual onlyOperator { questMax[_quesId] = _maxQues; } //set nowNum.only owner. function setQuestRequire(uint256 _questId, uint256 _quantity) external virtual onlyOperator { questRequire[_questId] = _quantity; } //set nowNum.only owner. function setRequestRequire(uint256 _requestId, uint256 _quantity) external virtual onlyOperator { requestRequire[_requestId] = _quantity; } //burn.and.write function burnWriteQues(uint256 _quesId, uint256 burnId) external virtual nonReentrant { require(burnWriteQEnable, "burnWriteQ is disabled"); require(msg.sender == ownerOf(burnId), "you are not owner"); require(maxQues > nowCountQues, "phase exeed."); require( questMax[_quesId] > questHistory[phaseNumQ][_quesId] || questMax[_quesId] == 0, "ques exeed." ); require( requireBaseHold == false || 0 <= baseContract.balanceOf(msg.sender), "you not have Base NFT" ); require( questRequire[_quesId] == 0 || questRequire[_quesId] == 1, "quantity is wrong" ); _setQuest(_quesId); _burn(burnId, true); } //burn.and.write function burnWriteMultiQues(uint256 _quesId, uint256[] memory _burnIds) external virtual nonReentrant { require(burnWriteQEnable, "burnWriteQ is disabled"); require(maxQues > nowCountQues, "phase exeed."); require( _burnIds.length <= balanceOf(msg.sender), "you not have amount" ); require( questMax[_quesId] > questHistory[phaseNumQ][_quesId] || questMax[_quesId] == 0, "ques exeed." ); require( requireBaseHold == false || 0 <= baseContract.balanceOf(msg.sender), "you not have Base NFT" ); require(hasToken(msg.sender, _burnIds), "you not have tokens"); require( questRequire[_quesId] == _burnIds.length || ((questRequire[_quesId] == 0 || questRequire[_quesId] == 1) && _burnIds.length == 1), "quantity is wrong" ); _setQuest(_quesId); multiBurn(msg.sender, _burnIds); } function hasToken(address _address, uint256[] memory _tokenIds) public view returns (bool) { bool has = true; for (uint256 i = 0; i < _tokenIds.length; i++) { if (_address != this.tryOwnerOf(_tokenIds[i])) { has = false; break; } } return has; } //multi.burn function multiBurn(address _address, uint256[] memory _burnIds) internal virtual { //search from all tonkenid. so spend high gas values.attention. uint256 countBurn = 0; for (uint256 i = 0; i < _burnIds.length; i++) { if (_address == this.tryOwnerOf(_burnIds[i])) { _burn(_burnIds[i], true); countBurn++; } } } function _setQuest(uint256 _quesId) internal virtual { _quests.push(_quesId); _questsAddress.push(msg.sender); questHistory[phaseNumQ][_quesId]++; nowCountQues++; } function _getQuest() external view virtual returns (uint256[] memory) { return _quests; } function _getQuestAddress() external view virtual returns (address[] memory) { return _questsAddress; } //return wallet owned questIds. function walletOfQuests(address _address) external view virtual returns (uint256[] memory) { uint256 countindex = 0; for (uint256 i = 0; i < _questsAddress.length; i++) { if (_address == _questsAddress[i]) countindex++; } uint256[] memory questIds = new uint256[](countindex); uint256 questIndex = 0; for (uint256 i = 0; i < _questsAddress.length; i++) { if (_address == _questsAddress[i]) questIds[questIndex++] = _quests[i]; } return questIds; } //return wallet owned questIds. function addressByQuest(uint256 _quesId) external view virtual returns (address[] memory) { uint256 countindex = 0; for (uint256 i = 0; i < _quests.length; i++) { if (_quesId == _quests[i]) countindex++; } address[] memory addressesOfId = new address[](countindex); uint256 questIndex = 0; for (uint256 i = 0; i < _quests.length; i++) { if (_quesId == _quests[i]) addressesOfId[questIndex++] = _questsAddress[i]; } return addressesOfId; } /** * @notice Set the state of the OpenSea operator filter * @param value Flag indicating if the operator filter should be applied to transfers and approvals */ function setOperatorFilteringEnabled(bool value) external onlyOperator { operatorFilteringEnabled = value; } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } /** @dev Operable Role */ function grantOperatorRole(address _candidate) external onlyOwner { _grantOperatorRole(_candidate); } function revokeOperatorRole(address _candidate) external onlyOwner { _revokeOperatorRole(_candidate); } } //CODE.BY.FRICKLIK
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFraction","type":"uint96"},{"internalType":"address","name":"_contractAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":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":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getQuest","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getQuestAddress","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getRequest","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_quests","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_questsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_requests","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quesId","type":"uint256"}],"name":"addressByQuest","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOfBase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burnRemoveWrite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_burnId","type":"uint256"}],"name":"burnWrite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnWriteEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256[]","name":"_burnIds","type":"uint256[]"}],"name":"burnWriteMulti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quesId","type":"uint256"},{"internalType":"uint256[]","name":"_burnIds","type":"uint256[]"}],"name":"burnWriteMultiQues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnWriteQEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quesId","type":"uint256"},{"internalType":"uint256","name":"burnId","type":"uint256"}],"name":"burnWriteQues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnWriteRemoveEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"getCurrentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_candidate","type":"address"}],"name":"grantOperatorRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"hasToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_operator","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isPWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicBOSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMPSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"wlCount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWlSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxQues","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReq","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nowCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nowCountQues","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseNumQ","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseRequire","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"psMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"psMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMintBO","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"publicMintMP","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"questHistory","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"questMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"questRequire","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"requestRequire","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"requireBaseHold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"resetPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetPhaseQues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_candidate","type":"address"}],"name":"revokeOperatorRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"}],"name":"setBaseContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newbwStatus","type":"bool"}],"name":"setBurnWriteEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newbwStatus","type":"bool"}],"name":"setBurnWriteQEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newbwStatus","type":"bool"}],"name":"setBurnWriteRemoveEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_deployer","type":"address"}],"name":"setDeployer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxQues","type":"uint256"}],"name":"setMaxQues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxReq","type":"uint256"}],"name":"setMaxReq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintable","type":"uint256"}],"name":"setMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setPWlMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setPsMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPsPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicBOSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicMPSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quesId","type":"uint256"},{"internalType":"uint256","name":"_maxQues","type":"uint256"}],"name":"setQuestMaxByUnit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_questId","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setQuestRequire","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_requestId","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setRequestRequire","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newRevealStatus","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setWhitelistSaleEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setWithdrawWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setWlMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setWlMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURIBase","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tryOwnerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwnerBase","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"walletOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfQuests","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"wlcount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
600e805460ff191660019081179091556000601055660aa87bee5380006011556012819055601381905561c350601481905561138860155560178190556018556019819055601a819055601d5560c06040526005608090815264173539b7b760d91b60a05260229062000073908262000771565b506023805464ffffffffff60201b191690553480156200009257600080fd5b506040516200697538038062006975833981016040819052620000b5916200085a565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600f81526020016e14d510549512941388151a58dad95d608a1b8152506040518060400160405280600381526020016253544b60e81b8152506200012a620001246200030760201b60201c565b6200030b565b600362000138838262000771565b50600462000147828262000771565b50600180815560095550506daaeb6d7670e522a718067333cd4e3b1562000284578015620001de57604051633e9f1edf60e11b81526daaeb6d7670e522a718067333cd4e90637d3e3dbe90620001a49030908690600401620008b2565b600060405180830381600087803b158015620001bf57600080fd5b505af1158015620001d4573d6000803e3d6000fd5b5050505062000284565b6001600160a01b03821615620002235760405163a0af290360e01b81526daaeb6d7670e522a718067333cd4e9063a0af290390620001a49030908690600401620008b2565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200026a57600080fd5b505af11580156200027f573d6000803e3d6000fd5b505050505b505060238054600160481b600160e81b031916336901000000000000000000810291909117909155601e80546001600160a01b0319166001600160a01b038416179055620002d2906200035b565b620002de838362000409565b601f80546001600160a01b0319166001600160a01b039290921691909117905550620009f69050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381166000908152600f602052604090205460ff161562000399336001600160a01b031660146200050a60201b62003bc71760201c565b604051602001620003ab9190620008f2565b60405160208183030381529060405290620003e45760405162461bcd60e51b8152600401620003db91906200094b565b60405180910390fd5b506001600160a01b03166000908152600f60205260409020805460ff19166001179055565b6127106001600160601b0382161115620004795760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620003db565b6001600160a01b038216620004d15760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620003db565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600c55565b606060006200051b83600262000996565b62000528906002620009b0565b6001600160401b03811115620005425762000542620006cc565b6040519080825280601f01601f1916602001820160405280156200056d576020820181803683370190505b509050600360fc1b816000815181106200058b576200058b620009c6565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620005bd57620005bd620009c6565b60200101906001600160f81b031916908160001a9053506000620005e384600262000996565b620005f0906001620009b0565b90505b600181111562000672576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110620006285762000628620009c6565b1a60f81b828281518110620006415762000641620009c6565b60200101906001600160f81b031916908160001a90535060049490941c936200066a81620009dc565b9050620005f3565b508315620006c35760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401620003db565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006f757607f821691505b6020821081036200071857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200076c57600081815260208120601f850160051c81016020861015620007475750805b601f850160051c820191505b81811015620007685782815560010162000753565b5050505b505050565b81516001600160401b038111156200078d576200078d620006cc565b620007a5816200079e8454620006e2565b846200071e565b602080601f831160018114620007dd5760008415620007c45750858301515b600019600386901b1c1916600185901b17855562000768565b600085815260208120601f198616915b828110156200080e57888601518255948401946001909101908401620007ed565b50858210156200082d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80516001600160a01b03811681146200085557600080fd5b919050565b6000806000606084860312156200087057600080fd5b6200087b846200083d565b60208501519093506001600160601b03811681146200089957600080fd5b9150620008a9604085016200083d565b90509250925092565b6001600160a01b0392831681529116602082015260400190565b60005b83811015620008e9578181015183820152602001620008cf565b50506000910152565b67030b1b1b7bab73a160c51b81526000825162000917816008850160208701620008cc565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b60208152600082518060208401526200096c816040850160208701620008cc565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006c657620006c662000980565b80820180821115620006c657620006c662000980565b634e487b7160e01b600052603260045260246000fd5b600081620009ee57620009ee62000980565b506000190190565b615f6f8062000a066000396000f3fe60806040526004361061050f5760003560e01c806301ffc9a71461051457806304634d8d146105495780630589a4781461056b57806306fdde0314610598578063081812fc146105ba578063095ea7b3146105da57806309e69999146105fa5780630c8066bc1461061a5780630d9005ae14610648578063162c9e701461065d57806318160ddd1461067d578063183b8a051461069257806318949773146106a8578063189f3de1146106c85780631a09cfe2146106e25780631aa5a56b146106f85780631da4943314610725578063200c470c1461074657806321b7b0311461075957806323b872dd1461077957806324af8cad146107995780632672c902146107af57806327ac0c58146107c457806329d64921146107e45780632a3f300c146108045780632a55205a146108245780632c1e1fbf146108635780632c4e9fc6146108905780632db11544146108a65780632e447869146108b95780632ef37025146108d95780633074ff4a146108ec5780633535cf3b1461090c5780633ccfd60b146109225780633db814931461092a5780634009920d1461094057806341f434341461095f57806342454db91461098157806342842e0e1461099757806342966c68146109b7578063438b6300146109d757806344f919f8146109f75780634bf365df14610a0c5780635183022714610a2257806355f804b314610a43578063566889d214610a6357806357b187ab14610a8457806359b4b24d14610aa457806359e4ae7b14610ac45780635dd1d99214610ae6578063612405bc14610b135780636352211e14610b335780636d70f7ae14610b535780636f8b44b014610b8c57806370a0823114610bac578063715018a614610bcc578063719eaef814610be15780637516a20914610c015780637803fb5614610c2257806378a9238014610c42578063812b641214610c78578063813779ef14610c98578063830b3a6414610cb85780638435d22b14610cd85780638ac1e16114610ced5780638c633be714610d0d5780638da5cb5b14610d2d5780638dd07d0f14610d4257806391e4bac814610d625780639373f43214610d82578063942958f414610da257806395d89b4114610dd85780639621473514610ded578063977ec9ca14610e0d5780639970cc2914610e2d5780639a8cbfb114610e435780639d936b8b14610e63578063a22cb46514610e83578063a2a2f64f14610ea3578063a355fd2914610eb8578063a60c99f614610ed8578063b16bc44114610eed578063b219f7d714610f03578063b4cefeaf14610f23578063b7c0b8e814610f43578063b83d8d7414610f63578063b88d4fde14610f83578063bbaac02f14610fa3578063bcbaeeaa14610fc3578063bff60c0f14610fe3578063c3faf72414611003578063c4be5b5914611023578063c59ca7b114611036578063c87b56dd14611057578063d393cf3b14611077578063d3bfa52514611097578063d52c57e0146110b7578063d5abeb01146110d7578063d5f39488146110ed578063d677a2ea14611114578063d78be71c14611134578063d846224514611154578063da3ef23f14611181578063e0881804146111a1578063e2d5e830146111c2578063e8a3d485146111e2578063e985e9c5146111f7578063eaea365014611240578063ef99fa3514611260578063f2fde38b14611280578063f3f98382146112a0578063f5501af1146112b6578063f56c4a2f146112ee578063f826f6011461130e578063faf7a82614611324578063fb796e6c14611344575b600080fd5b34801561052057600080fd5b5061053461052f366004614fb5565b61135e565b60405190151581526020015b60405180910390f35b34801561055557600080fd5b50610569610564366004614fe7565b61136f565b005b34801561057757600080fd5b50601e5461058b906001600160a01b031681565b604051610540919061502c565b3480156105a457600080fd5b506105ad611386565b6040516105409190615090565b3480156105c657600080fd5b5061058b6105d53660046150a3565b611418565b3480156105e657600080fd5b506105696105f53660046150bc565b61145c565b34801561060657600080fd5b506105696106153660046151bc565b61152d565b34801561062657600080fd5b5061063a610635366004615202565b611774565b604051908152602001610540565b34801561065457600080fd5b5060015461063a565b34801561066957600080fd5b5061058b6106783660046150a3565b6117e6565b34801561068957600080fd5b5061063a611810565b34801561069e57600080fd5b5061063a601c5481565b3480156106b457600080fd5b506105696106c33660046150a3565b61181e565b3480156106d457600080fd5b506023546105349060ff1681565b3480156106ee57600080fd5b5061063a60135481565b34801561070457600080fd5b5061063a6107133660046150a3565b602c6020526000908152604090205481565b34801561073157600080fd5b5060235461053490600160301b900460ff1681565b6105696107543660046150a3565b611833565b34801561076557600080fd5b5061056961077436600461521f565b611a46565b34801561078557600080fd5b50610569610794366004615241565b611a61565b3480156107a557600080fd5b5061063a60185481565b3480156107bb57600080fd5b506105ad611b4b565b3480156107d057600080fd5b506105696107df366004615202565b611bd9565b3480156107f057600080fd5b5061063a6107ff3660046150a3565b611bea565b34801561081057600080fd5b5061056961081f366004615290565b611c0b565b34801561083057600080fd5b5061084461083f36600461521f565b611c32565b604080516001600160a01b039093168352602083019190915201610540565b34801561086f57600080fd5b5061088361087e366004615202565b611cde565b60405161054091906152ad565b34801561089c57600080fd5b5061063a60105481565b6105696108b43660046150a3565b611e2c565b3480156108c557600080fd5b506105696108d4366004615290565b611ea1565b6105696108e73660046151bc565b611ec8565b3480156108f857600080fd5b506105ad6109073660046150a3565b612085565b34801561091857600080fd5b5061063a601a5481565b6105696120f7565b34801561093657600080fd5b5061063a601b5481565b34801561094c57600080fd5b5060235461053490610100900460ff1681565b34801561096b57600080fd5b5061058b6daaeb6d7670e522a718067333cd4e81565b34801561098d57600080fd5b5061063a60115481565b3480156109a357600080fd5b506105696109b2366004615241565b6121ff565b3480156109c357600080fd5b506105696109d23660046150a3565b6122de565b3480156109e357600080fd5b506108836109f2366004615202565b6122e9565b348015610a0357600080fd5b50610569612402565b348015610a1857600080fd5b5061063a60155481565b348015610a2e57600080fd5b5060235461053490600160201b900460ff1681565b348015610a4f57600080fd5b50610569610a5e366004615351565b612433565b348015610a6f57600080fd5b50602354610534906301000000900460ff1681565b348015610a9057600080fd5b50610569610a9f36600461521f565b612448565b348015610ab057600080fd5b5061063a610abf3660046150bc565b612670565b348015610ad057600080fd5b50610ad9612723565b6040516105409190615399565b348015610af257600080fd5b5061063a610b013660046150a3565b602b6020526000908152604090205481565b348015610b1f57600080fd5b50610569610b2e3660046150a3565b612784565b348015610b3f57600080fd5b5061058b610b4e3660046150a3565b612792565b348015610b5f57600080fd5b50610534610b6e366004615202565b6001600160a01b03166000908152600f602052604090205460ff1690565b348015610b9857600080fd5b50610569610ba73660046150a3565b6127a4565b348015610bb857600080fd5b5061063a610bc7366004615202565b6127d9565b348015610bd857600080fd5b50610569612827565b348015610bed57600080fd5b50610569610bfc3660046150a3565b61283b565b348015610c0d57600080fd5b5060235461053490600160401b900460ff1681565b348015610c2e57600080fd5b50610569610c3d366004615290565b612849565b348015610c4e57600080fd5b5061063a610c5d366004615202565b6001600160a01b031660009081526024602052604090205490565b348015610c8457600080fd5b50610883610c93366004615202565b61286e565b348015610ca457600080fd5b50610569610cb33660046150a3565b6128e3565b348015610cc457600080fd5b5061058b610cd33660046150a3565b6128f1565b348015610ce457600080fd5b50610883612958565b348015610cf957600080fd5b50610569610d083660046150a3565b6129af565b348015610d1957600080fd5b50610569610d283660046150a3565b6129c1565b348015610d3957600080fd5b5061058b612ae5565b348015610d4e57600080fd5b50610569610d5d3660046150a3565b612af4565b348015610d6e57600080fd5b50610569610d7d3660046150a3565b612b02565b348015610d8e57600080fd5b50610569610d9d366004615202565b612b37565b348015610dae57600080fd5b5061063a610dbd366004615202565b6001600160a01b031660009081526025602052604090205490565b348015610de457600080fd5b506105ad612b62565b348015610df957600080fd5b50610569610e08366004615202565b612b71565b348015610e1957600080fd5b50610569610e2836600461521f565b612ba6565b348015610e3957600080fd5b5061063a60125481565b348015610e4f57600080fd5b50610569610e5e366004615202565b612d6f565b348015610e6f57600080fd5b50610534610e7e3660046153da565b612da4565b348015610e8f57600080fd5b50610569610e9e366004615413565b612eb1565b348015610eaf57600080fd5b50610569612f74565b348015610ec457600080fd5b50610569610ed3366004615290565b612faa565b348015610ee457600080fd5b50610883612fcd565b348015610ef957600080fd5b5061063a601d5481565b348015610f0f57600080fd5b50610569610f1e366004615202565b613023565b348015610f2f57600080fd5b506023546105349062010000900460ff1681565b348015610f4f57600080fd5b50610569610f5e366004615290565b613034565b348015610f6f57600080fd5b50610569610f7e366004615290565b613050565b348015610f8f57600080fd5b50610569610f9e366004615441565b613077565b348015610faf57600080fd5b50610569610fbe366004615351565b613164565b348015610fcf57600080fd5b50610ad9610fde3660046150a3565b613179565b348015610fef57600080fd5b5061063a610ffe3660046150a3565b6132be565b34801561100f57600080fd5b5061056961101e366004615290565b6132ce565b6105696110313660046154c0565b6132ea565b34801561104257600080fd5b5060235461053490600160281b900460ff1681565b34801561106357600080fd5b506105ad6110723660046150a3565b613530565b34801561108357600080fd5b5061056961109236600461521f565b613666565b3480156110a357600080fd5b506105346110b23660046153da565b613681565b3480156110c357600080fd5b506105696110d236600461550f565b613753565b3480156110e357600080fd5b5061063a60145481565b3480156110f957600080fd5b5060235461058b90600160481b90046001600160a01b031681565b34801561112057600080fd5b5061056961112f366004615290565b613799565b34801561114057600080fd5b5061056961114f3660046150a3565b6137c0565b34801561116057600080fd5b5061063a61116f3660046150a3565b602d6020526000908152604090205481565b34801561118d57600080fd5b5061056961119c366004615351565b6137ce565b3480156111ad57600080fd5b5060235461053490600160381b900460ff1681565b3480156111ce57600080fd5b506105696111dd36600461521f565b6137e3565b3480156111ee57600080fd5b506105ad6137fe565b34801561120357600080fd5b50610534611212366004615534565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561124c57600080fd5b5061056961125b3660046150a3565b61380d565b34801561126c57600080fd5b5061056961127b3660046151bc565b61381b565b34801561128c57600080fd5b5061056961129b366004615202565b613a15565b3480156112ac57600080fd5b5061063a60195481565b3480156112c257600080fd5b5061063a6112d136600461521f565b602e60209081526000928352604080842090915290825290205481565b3480156112fa57600080fd5b50610569611309366004615290565b613a8b565b34801561131a57600080fd5b5061063a60175481565b34801561133057600080fd5b5061053461133f366004615562565b613ab2565b34801561135057600080fd5b50600e546105349060ff1681565b600061136982613d69565b92915050565b61137833613d8e565b6113828282613dfc565b5050565b606060038054611395906155a4565b80601f01602080910402602001604051908101604052809291908181526020018280546113c1906155a4565b801561140e5780601f106113e35761010080835404028352916020019161140e565b820191906000526020600020905b8154815290600101906020018083116113f157829003601f168201915b5050505050905090565b600061142382613ef5565b611440576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b1580159061147d5750600e5460ff165b1561151e57604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c6171134906114b590309085906004016155de565b602060405180830381865afa1580156114d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f691906155f8565b61151e5780604051633b79c77360e21b8152600401611515919061502c565b60405180910390fd5b6115288383613f2e565b505050565b60026009540361154f5760405162461bcd60e51b815260040161151590615615565b6002600955602354600160381b900460ff1661157d5760405162461bcd60e51b81526004016115159061564c565b601c54601854116115a05760405162461bcd60e51b81526004016115159061567c565b6115a9336127d9565b815111156115c95760405162461bcd60e51b8152600401611515906156a2565b601a546000908152602e60209081526040808320858452825280832054602d90925290912054118061160757506000828152602d6020526040902054155b6116235760405162461bcd60e51b8152600401611515906156cf565b602354600160401b900460ff1615806116ac5750601f546040516370a0823160e01b81526001600160a01b03909116906370a082319061166790339060040161502c565b602060405180830381865afa158015611684573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a891906156f4565b5060015b6116c85760405162461bcd60e51b81526004016115159061570d565b6116d23382613681565b6116ee5760405162461bcd60e51b81526004016115159061573c565b80516000838152602b6020526040902054148061173c57506000828152602b6020526040902054158061172f57506000828152602b60205260409020546001145b801561173c575080516001145b6117585760405162461bcd60e51b815260040161151590615769565b61176182613faf565b61176b3382614060565b50506001600955565b601f546040516370a0823160e01b81526000916001600160a01b0316906370a08231906117a590859060040161502c565b602060405180830381865afa1580156117c2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136991906156f4565b602a81815481106117f657600080fd5b6000918252602090912001546001600160a01b0316905081565b600254600154036000190190565b61182733613d8e565b61183081600b55565b50565b6002600954036118555760405162461bcd60e51b815260040161151590615615565b60026009556023546301000000900460ff166118ac5760405162461bcd60e51b81526020600482015260166024820152751c1d589b1a58d093d35a5b9d081a5cc814185d5cd95960521b6044820152606401611515565b601f546040516370a0823160e01b81526001600160a01b03909116906370a08231906118dc90339060040161502c565b602060405180830381865afa1580156118f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191d91906156f4565b505b8060135410156119415760405162461bcd60e51b815260040161151590615794565b3360009081526025602052604090205461195c9082906157ef565b601354101561197d5760405162461bcd60e51b815260040161151590615802565b8060115461198b9190615837565b34146119a95760405162461bcd60e51b81526004016115159061584e565b6015546119b4611810565b6119be90836157ef565b11156119dc5760405162461bcd60e51b815260040161151590615880565b6014546119e7611810565b6119f190836157ef565b1115611a0f5760405162461bcd60e51b815260040161151590615880565b3360009081526025602052604081208054839290611a2e9084906157ef565b90915550611a3e90503382614151565b506001600955565b611a4f33613d8e565b6000918252602b602052604090912055565b826daaeb6d7670e522a718067333cd4e3b15801590611a825750600e5460ff165b15611b3a57336001600160a01b03821603611aa757611aa284848461416b565b611b45565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c617113490611ada90309033906004016155de565b602060405180830381865afa158015611af7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1b91906155f8565b611b3a5733604051633b79c77360e21b8152600401611515919061502c565b611b4584848461416b565b50505050565b60228054611b58906155a4565b80601f0160208091040260200160405190810160405280929190818152602001828054611b84906155a4565b8015611bd15780601f10611ba657610100808354040283529160200191611bd1565b820191906000526020600020905b815481529060010190602001808311611bb457829003601f168201915b505050505081565b611be1614176565b611830816141d5565b60298181548110611bfa57600080fd5b600091825260209091200154905081565b611c1433613d8e565b60238054911515600160201b0260ff60201b19909216919091179055565b6000828152600d602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291611ca7575060408051808201909152600c546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090611cc6906001600160601b031687615837565b611cd091906158bc565b915196919550909350505050565b60606000805b602a54811015611d4057602a8181548110611d0157611d016158d0565b6000918252602090912001546001600160a01b0390811690851603611d2e5781611d2a816158e6565b9250505b80611d38816158e6565b915050611ce4565b506000816001600160401b03811115611d5b57611d5b6150e8565b604051908082528060200260200182016040528015611d84578160200160208202803683370190505b5090506000805b602a54811015611e2257602a8181548110611da857611da86158d0565b6000918252602090912001546001600160a01b0390811690871603611e105760298181548110611dda57611dda6158d0565b9060005260206000200154838380611df1906158e6565b945081518110611e0357611e036158d0565b6020026020010181815250505b80611e1a816158e6565b915050611d8b565b5090949350505050565b600260095403611e4e5760405162461bcd60e51b815260040161151590615615565b6002600955602354610100900460ff1661191f5760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b6044820152606401611515565b611eaa33613d8e565b60238054911515600160301b0260ff60301b19909216919091179055565b600260095403611eea5760405162461bcd60e51b815260040161151590615615565b600260095560235462010000900460ff16611f405760405162461bcd60e51b81526020600482015260166024820152751c1d589b1a58d354135a5b9d081a5cc814185d5cd95960521b6044820152606401611515565b611f4a3382612da4565b611f665760405162461bcd60e51b8152600401611515906158ff565b816013541015611f885760405162461bcd60e51b815260040161151590615794565b33600090815260256020526040902054611fa39083906157ef565b6013541015611fc45760405162461bcd60e51b815260040161151590615802565b81601154611fd29190615837565b3414611ff05760405162461bcd60e51b81526004016115159061584e565b601554611ffb611810565b61200590846157ef565b11156120235760405162461bcd60e51b815260040161151590615880565b60145461202e611810565b61203890846157ef565b11156120565760405162461bcd60e51b815260040161151590615880565b33600090815260256020526040812080548492906120759084906157ef565b9091555061176b90503383614151565b601f5460405163c87b56dd60e01b8152600481018390526060916001600160a01b03169063c87b56dd90602401600060405180830381865afa1580156120cf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113699190810190615931565b61210033613d8e565b6002600954036121225760405162461bcd60e51b815260040161151590615615565b60026009556016546000906001600160a01b031615612198576016546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612188576040519150601f19603f3d011682016040523d82523d6000602084013e61218d565b606091505b5050809150506121f5565b6121a0612ae5565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146121ea576040519150601f19603f3d011682016040523d82523d6000602084013e6121ef565b606091505b50909150505b80611a3e57600080fd5b826daaeb6d7670e522a718067333cd4e3b158015906122205750600e5460ff165b156122d357336001600160a01b0382160361224057611aa284848461425d565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c61711349061227390309033906004016155de565b602060405180830381865afa158015612290573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b491906155f8565b6122d35733604051633b79c77360e21b8152600401611515919061502c565b611b4584848461425d565b611830816001614278565b606060006122f6836127d9565b90506000816001600160401b03811115612312576123126150e8565b60405190808252806020026020018201604052801561233b578160200160208202803683370190505b509050600060015b600154811015611e22576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa158015612389573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123ad91906159a7565b6001600160a01b0316866001600160a01b0316036123f0578083836123d1816158e6565b9450815181106123e3576123e36158d0565b6020026020010181815250505b806123fa816158e6565b915050612343565b61240b33613d8e565b61241760266000614f6d565b6000601b819055601980549161242c836158e6565b9190505550565b61243c33613d8e565b60216113828282615a12565b60026009540361246a5760405162461bcd60e51b815260040161151590615615565b6002600955602354600160381b900460ff166124985760405162461bcd60e51b81526004016115159061564c565b6124a181612792565b6001600160a01b0316336001600160a01b0316146124f55760405162461bcd60e51b81526020600482015260116024820152703cb7ba9030b932903737ba1037bbb732b960791b6044820152606401611515565b601c54601854116125185760405162461bcd60e51b81526004016115159061567c565b601a546000908152602e60209081526040808320858452825280832054602d90925290912054118061255657506000828152602d6020526040902054155b6125725760405162461bcd60e51b8152600401611515906156cf565b602354600160401b900460ff1615806125fb5750601f546040516370a0823160e01b81526001600160a01b03909116906370a08231906125b690339060040161502c565b602060405180830381865afa1580156125d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125f791906156f4565b5060015b6126175760405162461bcd60e51b81526004016115159061570d565b6000828152602b6020526040902054158061264057506000828152602b60205260409020546001145b61265c5760405162461bcd60e51b815260040161151590615769565b61266582613faf565b61176b816001614278565b6000808060015b600154811015611e22576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa1580156126bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126e191906159a7565b6001600160a01b0316866001600160a01b03160361271157915081848214611e22578161270d816158e6565b9250505b8061271b816158e6565b915050612677565b6060602a80548060200260200160405190810160405280929190818152602001828054801561140e57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161275d575050505050905090565b61278d33613d8e565b601855565b600061279d82614426565b5192915050565b6127ad33613d8e565b806127b6611810565b11156127d45760405162461bcd60e51b815260040161151590615ad1565b601455565b60006001600160a01b038216612802576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b61282f614176565b6128396000614548565b565b61284433613d8e565b601255565b61285233613d8e565b60238054911515620100000262ff000019909216919091179055565b601f5460405162438b6360e81b81526060916001600160a01b03169063438b63009061289e90859060040161502c565b600060405180830381865afa1580156128bb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113699190810190615b04565b6128ec33613d8e565b601355565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa92505050801561294c575060408051601f3d908101601f19168201909252612949918101906159a7565b60015b61136957506000919050565b6060602680548060200260200160405190810160405280929190818152602001828054801561140e57602002820191906000526020600020905b815481526020019060010190808311612992575050505050905090565b6129b833613d8e565b61183081600a55565b6002600954036129e35760405162461bcd60e51b815260040161151590615615565b6002600955602354600160301b900460ff16612a3f5760405162461bcd60e51b815260206004820152601b60248201527a189d5c9b95dc9a5d1954995b5bdd99481a5cc8191a5cd8589b1959602a1b6044820152606401611515565b601f546040516331a9108f60e11b8152600481018390526001600160a01b0390911690636352211e90602401602060405180830381865afa158015612a88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aac91906159a7565b6001600160a01b0316336001600160a01b031614612adc5760405162461bcd60e51b815260040161151590615b94565b611a3e81614598565b6000546001600160a01b031690565b612afd33613d8e565b601055565b612b0b33613d8e565b80612b14611810565b1115612b325760405162461bcd60e51b815260040161151590615ad1565b601555565b612b4033613d8e565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054611395906155a4565b612b7a33613d8e565b602380546001600160a01b03909216600160481b02600160481b600160e81b0319909216919091179055565b600260095403612bc85760405162461bcd60e51b815260040161151590615615565b6002600955602354600160281b900460ff16612bf65760405162461bcd60e51b815260040161151590615bc4565b601f546040516331a9108f60e11b8152600481018490526001600160a01b0390911690636352211e90602401602060405180830381865afa158015612c3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c6391906159a7565b6001600160a01b0316336001600160a01b031614612c935760405162461bcd60e51b815260040161151590615b94565b612c9c81612792565b6001600160a01b0316336001600160a01b031614612cf75760405162461bcd60e51b81526020600482015260186024820152771e5bdd48185c99481b9bdd081bdddb995c8b951a58dad95d60421b6044820152606401611515565b601954600083815260286020526040902054141580612d2757506019543360009081526027602052604090205414155b612d435760405162461bcd60e51b815260040161151590615bf3565b601b5460175411612d665760405162461bcd60e51b81526004016115159061567c565b612665826145fd565b612d7833613d8e565b601f80546001600160a01b039092166001600160a01b03199283168117909155601e8054909216179055565b6040516001600160601b0319606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b8351811015612ea557838181518110612df957612df96158d0565b60200260200101518210612e4e57838181518110612e1957612e196158d0565b602002602001015182604051602001612e33929190615c25565b60405160208183030381529060405280519060200120612e91565b81848281518110612e6157612e616158d0565b6020026020010151604051602001612e7a929190615c25565b604051602081830303815290604052805190602001205b915080612e9d816158e6565b915050612dde565b50600b54149392505050565b816daaeb6d7670e522a718067333cd4e3b15801590612ed25750600e5460ff165b15612f6a57604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c617113490612f0a90309085906004016155de565b602060405180830381865afa158015612f27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f4b91906155f8565b612f6a5780604051633b79c77360e21b8152600401611515919061502c565b6115288383614661565b612f7d33613d8e565b612f8960296000614f6d565b612f95602a6000614f6d565b6000601c819055601a80549161242c836158e6565b612fb333613d8e565b602380549115156101000261ff0019909216919091179055565b6060602980548060200260200160405190810160405280929190818152602001828054801561140e5760200282019190600052602060002090815481526020019060010190808311612992575050505050905090565b61302b614176565b611830816146f6565b61303d33613d8e565b600e805460ff1916911515919091179055565b61305933613d8e565b6023805491151563010000000263ff00000019909216919091179055565b836daaeb6d7670e522a718067333cd4e3b158015906130985750600e5460ff165b1561315157336001600160a01b038216036130be576130b985858585614720565b61315d565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c6171134906130f190309033906004016155de565b602060405180830381865afa15801561310e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061313291906155f8565b6131515733604051633b79c77360e21b8152600401611515919061502c565b61315d85858585614720565b5050505050565b61316d33613d8e565b60206113828282615a12565b60606000805b6029548110156131cd576029818154811061319c5761319c6158d0565b906000526020600020015484036131bb57816131b7816158e6565b9250505b806131c5816158e6565b91505061317f565b506000816001600160401b038111156131e8576131e86150e8565b604051908082528060200260200182016040528015613211578160200160208202803683370190505b5090506000805b602954811015611e225760298181548110613235576132356158d0565b906000526020600020015486036132ac57602a8181548110613259576132596158d0565b6000918252602090912001546001600160a01b03168383613279816158e6565b94508151811061328b5761328b6158d0565b60200260200101906001600160a01b031690816001600160a01b0316815250505b806132b6816158e6565b915050613218565b60268181548110611bfa57600080fd5b6132d733613d8e565b6023805460ff1916911515919091179055565b60026009540361330c5760405162461bcd60e51b815260040161151590615615565b600260095560235460ff1661335d5760405162461bcd60e51b81526020600482015260176024820152761dda1a5d195b1a5cdd135a5b9d081a5cc814185d5cd959604a1b6044820152606401611515565b613368338383613ab2565b6133845760405162461bcd60e51b8152600401611515906158ff565b600082116133c65760405162461bcd60e51b815260206004820152600f60248201526e596f752068617665206e6f20574c2160881b6044820152606401611515565b828210156134275760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401611515565b336000908152602460205260409020546134429084906157ef565b8210156134915760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401611515565b60155461349c611810565b6134a690856157ef565b11156134c45760405162461bcd60e51b815260040161151590615880565b6014546134cf611810565b6134d990856157ef565b11156134f75760405162461bcd60e51b815260040161151590615880565b33600090815260246020526040812080548592906135169084906157ef565b9091555061352690503384614151565b5050600160095550565b606061353b82613ef5565b6135875760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401611515565b602354600160201b900460ff16156135d4576135a161476b565b6135aa8361477a565b60226040516020016135be93929190615c33565b6040516020818303038152906040529050919050565b602080546135e1906155a4565b80601f016020809104026020016040519081016040528092919081815260200182805461360d906155a4565b801561365a5780601f1061362f5761010080835404028352916020019161365a565b820191906000526020600020905b81548152906001019060200180831161363d57829003601f168201915b50505050509050919050565b61366f33613d8e565b6000918252602d602052604090912055565b60006001815b835181101561374b57306001600160a01b031663830b3a648583815181106136b1576136b16158d0565b60200260200101516040518263ffffffff1660e01b81526004016136d791815260200190565b602060405180830381865afa1580156136f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061371891906159a7565b6001600160a01b0316856001600160a01b031614613739576000915061374b565b80613743816158e6565b915050613687565b509392505050565b61375c33613d8e565b601454613767611810565b61377190846157ef565b111561378f5760405162461bcd60e51b815260040161151590615880565b6113828183614151565b6137a233613d8e565b60238054911515600160381b0260ff60381b19909216919091179055565b6137c933613d8e565b601155565b6137d733613d8e565b60226113828282615a12565b6137ec33613d8e565b6000918252602c602052604090912055565b6060613808614882565b905090565b61381633613d8e565b601755565b60026009540361383d5760405162461bcd60e51b815260040161151590615615565b6002600955602354600160281b900460ff1661386b5760405162461bcd60e51b815260040161151590615bc4565b601f546040516331a9108f60e11b8152600481018490526001600160a01b0390911690636352211e90602401602060405180830381865afa1580156138b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138d891906159a7565b6001600160a01b0316336001600160a01b0316146139085760405162461bcd60e51b815260040161151590615b94565b613911336127d9565b815111156139315760405162461bcd60e51b8152600401611515906156a2565b61393b3382613681565b6139575760405162461bcd60e51b81526004016115159061573c565b60195460008381526028602052604090205414158061398757506019543360009081526027602052604090205414155b6139a35760405162461bcd60e51b815260040161151590615bf3565b8051601d5414806139cd5750601d5415806139c05750601d546001145b80156139cd575080516001145b6139e95760405162461bcd60e51b815260040161151590615769565b601b5460175411613a0c5760405162461bcd60e51b81526004016115159061567c565b611761826145fd565b613a1d614176565b6001600160a01b038116613a825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611515565b61183081614548565b613a9433613d8e565b60238054911515600160281b0260ff60281b19909216919091179055565b6040516001600160601b0319606085901b16602082015260348101839052600090819060540160405160208183030381529060405280519060200120905060005b8351811015613bba57838181518110613b0e57613b0e6158d0565b60200260200101518210613b6357838181518110613b2e57613b2e6158d0565b602002602001015182604051602001613b48929190615c25565b60405160208183030381529060405280519060200120613ba6565b81848281518110613b7657613b766158d0565b6020026020010151604051602001613b8f929190615c25565b604051602081830303815290604052805190602001205b915080613bb2816158e6565b915050613af3565b50600a5414949350505050565b60606000613bd6836002615837565b613be19060026157ef565b6001600160401b03811115613bf857613bf86150e8565b6040519080825280601f01601f191660200182016040528015613c22576020820181803683370190505b509050600360fc1b81600081518110613c3d57613c3d6158d0565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613c6c57613c6c6158d0565b60200101906001600160f81b031916908160001a9053506000613c90846002615837565b613c9b9060016157ef565b90505b6001811115613d13576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613ccf57613ccf6158d0565b1a60f81b828281518110613ce557613ce56158d0565b60200101906001600160f81b031916908160001a90535060049490941c93613d0c81615cd3565b9050613c9e565b508315613d625760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401611515565b9392505050565b60006001600160e01b0319821663152a902d60e11b1480611369575061136982614902565b6001600160a01b0381166000908152600f602052604090205460ff16613dbf335b6001600160a01b03166014613bc7565b604051602001613dcf9190615cea565b604051602081830303815290604052906113825760405162461bcd60e51b81526004016115159190615090565b6127106001600160601b0382161115613e6a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611515565b6001600160a01b038216613ebc5760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401611515565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600c55565b600081600111158015613f09575060015482105b8015611369575050600090815260056020526040902054600160e01b900460ff161590565b6000613f3982612792565b9050806001600160a01b0316836001600160a01b031603613f6d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614613fa457613f878133611212565b613fa4576040516367d9dca160e11b815260040160405180910390fd5b611528838383614952565b6029805460018181019092557fcb7c14ce178f56e2e8d86ab33ebc0ae081ba8556a00cd122038841867181caac01829055602a805491820190557fbeced09521047d05b8960b7e7bcc1d1292cf3e4b2a6b63f48335cbde5f7545d20180546001600160a01b03191633179055601a546000908152602e602090815260408083208484529091528120805491614043836158e6565b9091555050601c8054906000614058836158e6565b919050555050565b6000805b8251811015611b4557306001600160a01b031663830b3a6484838151811061408e5761408e6158d0565b60200260200101516040518263ffffffff1660e01b81526004016140b491815260200190565b602060405180830381865afa1580156140d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140f591906159a7565b6001600160a01b0316846001600160a01b03160361413f57614131838281518110614122576141226158d0565b60200260200101516001614278565b8161413b816158e6565b9250505b80614149816158e6565b915050614064565b6113828282604051806020016040528060008152506149ae565b611528838383614b49565b3361417f612ae5565b6001600160a01b0316146128395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611515565b6001600160a01b0381166000908152600f602052604090205460ff16156141fb33613daf565b60405160200161420b9190615d37565b604051602081830303815290604052906142385760405162461bcd60e51b81526004016115159190615090565b506001600160a01b03166000908152600f60205260409020805460ff19166001179055565b61152883838360405180602001604052806000815250613077565b600061428383614426565b805190915082156142e9576000336001600160a01b03831614806142ac57506142ac8233611212565b806142c75750336142bc86611418565b6001600160a01b0316145b9050806142e757604051632ce44b5f60e11b815260040160405180910390fd5b505b6142f560008583614952565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b038084169190910181166001600160401b0319841681178390048216600190810183169093026001600160401b03600160801b03600160c01b0319909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166143ed5760015482146143ed57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020615f1a833981519152908390a450506002805460010190555050565b6040805160608101825260008082526020820181905291810191909152818060011161452f5760015481101561452f57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061452d5780516001600160a01b0316156144c4579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215614528579392505050565b6144c4565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b60265481101561138257602681815481106145b8576145b86158d0565b906000526020600020015482036145eb57602681815481106145dc576145dc6158d0565b60009182526020822001555050565b806145f5816158e6565b91505061459b565b60268054600181019091557f744a2cf8fd7008e3d53b67916e73460df9fa5214e3ef23dd4259ca09493a3594018190556019543360009081526027602090815260408083208490558483526028909152812091909155601b805491614058836158e6565b336001600160a01b0383160361468a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6146ff81613d8e565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b61472b848484614b49565b61473d836001600160a01b0316614d21565b15611b455761474e84848484614d30565b611b45576040516368d2bf6b60e11b815260040160405180910390fd5b606060218054611395906155a4565b6060816000036147a15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156147cb57806147b5816158e6565b91506147c49050600a836158bc565b91506147a5565b6000816001600160401b038111156147e5576147e56150e8565b6040519080825280601f01601f19166020018201604052801561480f576020820181803683370190505b5090505b841561487a57614824600183615d8e565b9150614831600a86615da1565b61483c9060306157ef565b60f81b818381518110614851576148516158d0565b60200101906001600160f81b031916908160001a905350614873600a866158bc565b9450614813565b949350505050565b606060008061489381612710611c32565b915091506148dc6148a38261477a565b6148b7846001600160a01b03166014613bc7565b6040516020016148c8929190615db5565b604051602081830303815290604052614e1b565b6040516020016148ec9190615e3a565b6040516020818303038152906040529250505090565b60006001600160e01b031982166380ac58cd60e01b148061493357506001600160e01b03198216635b5e139f60e01b145b8061136957506301ffc9a760e01b6001600160e01b0319831614611369565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001546001600160a01b0384166149d757604051622e076360e81b815260040160405180910390fd5b826000036149f85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546001600160801b031981166001600160401b038083168b018116918217600160401b6001600160401b031990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b4290931692909202919091179055819081850190614a9190614d21565b15614b07575b60405182906001600160a01b03881690600090600080516020615f1a833981519152908290a4614ad06000878480600101955087614d30565b614aed576040516368d2bf6b60e11b815260040160405180910390fd5b808210614a97578260015414614b0257600080fd5b614b3a565b5b6040516001830192906001600160a01b03881690600090600080516020615f1a833981519152908290a4808210614b08575b50600155611b45600085838684565b6000614b5482614426565b9050836001600160a01b031681600001516001600160a01b031614614b8b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480614ba95750614ba98533611212565b80614bc4575033614bb984611418565b6001600160a01b0316145b905080614be457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416614c0b57604051633a954ecd60e21b815260040160405180910390fd5b614c1760008487614952565b6001600160a01b03858116600090815260066020908152604080832080546001600160401b03198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116614cea576001548214614cea57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020615f1a83398151915260405160405180910390a461315d565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290614d65903390899088908890600401615e7f565b6020604051808303816000875af1925050508015614da0575060408051601f3d908101601f19168201909252614d9d91810190615ebc565b60015b614dfe573d808015614dce576040519150601f19603f3d011682016040523d82523d6000602084013e614dd3565b606091505b508051600003614df6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608151600003614e3a57505060408051602081019091526000815290565b6000604051806060016040528060408152602001615eda6040913990506000600384516002614e6991906157ef565b614e7391906158bc565b614e7e906004615837565b6001600160401b03811115614e9557614e956150e8565b6040519080825280601f01601f191660200182016040528015614ebf576020820181803683370190505b509050600182016020820185865187015b80821015614f2b576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250614ed0565b5050600386510660018114614f475760028114614f5a57614f62565b603d6001830353603d6002830353614f62565b603d60018303535b509195945050505050565b508054600082559060005260206000209081019061183091905b80821115614f9b5760008155600101614f87565b5090565b6001600160e01b03198116811461183057600080fd5b600060208284031215614fc757600080fd5b8135613d6281614f9f565b6001600160a01b038116811461183057600080fd5b60008060408385031215614ffa57600080fd5b823561500581614fd2565b915060208301356001600160601b038116811461502157600080fd5b809150509250929050565b6001600160a01b0391909116815260200190565b60005b8381101561505b578181015183820152602001615043565b50506000910152565b6000815180845261507c816020860160208601615040565b601f01601f19169290920160200192915050565b602081526000613d626020830184615064565b6000602082840312156150b557600080fd5b5035919050565b600080604083850312156150cf57600080fd5b82356150da81614fd2565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715615126576151266150e8565b604052919050565b60006001600160401b03821115615147576151476150e8565b5060051b60200190565b600082601f83011261516257600080fd5b813560206151776151728361512e565b6150fe565b82815260059290921b8401810191818101908684111561519657600080fd5b8286015b848110156151b1578035835291830191830161519a565b509695505050505050565b600080604083850312156151cf57600080fd5b8235915060208301356001600160401b038111156151ec57600080fd5b6151f885828601615151565b9150509250929050565b60006020828403121561521457600080fd5b8135613d6281614fd2565b6000806040838503121561523257600080fd5b50508035926020909101359150565b60008060006060848603121561525657600080fd5b833561526181614fd2565b9250602084013561527181614fd2565b929592945050506040919091013590565b801515811461183057600080fd5b6000602082840312156152a257600080fd5b8135613d6281615282565b6020808252825182820181905260009190848201906040850190845b818110156152e5578351835292840192918401916001016152c9565b50909695505050505050565b60006001600160401b0382111561530a5761530a6150e8565b50601f01601f191660200190565b6000615326615172846152f1565b905082815283838301111561533a57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561536357600080fd5b81356001600160401b0381111561537957600080fd5b8201601f8101841361538a57600080fd5b61487a84823560208401615318565b6020808252825182820181905260009190848201906040850190845b818110156152e55783516001600160a01b0316835292840192918401916001016153b5565b600080604083850312156153ed57600080fd5b82356153f881614fd2565b915060208301356001600160401b038111156151ec57600080fd5b6000806040838503121561542657600080fd5b823561543181614fd2565b9150602083013561502181615282565b6000806000806080858703121561545757600080fd5b843561546281614fd2565b9350602085013561547281614fd2565b92506040850135915060608501356001600160401b0381111561549457600080fd5b8501601f810187136154a557600080fd5b6154b487823560208401615318565b91505092959194509250565b6000806000606084860312156154d557600080fd5b833592506020840135915060408401356001600160401b038111156154f957600080fd5b61550586828701615151565b9150509250925092565b6000806040838503121561552257600080fd5b82359150602083013561502181614fd2565b6000806040838503121561554757600080fd5b823561555281614fd2565b9150602083013561502181614fd2565b60008060006060848603121561557757600080fd5b833561558281614fd2565b92506020840135915060408401356001600160401b038111156154f957600080fd5b600181811c908216806155b857607f821691505b6020821081036155d857634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b0392831681529116602082015260400190565b60006020828403121561560a57600080fd5b8151613d6281615282565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b602080825260169082015275189d5c9b95dc9a5d1954481a5cc8191a5cd8589b195960521b604082015260600190565b6020808252600c908201526b383430b9b29032bc32b2b21760a11b604082015260600190565b6020808252601390820152721e5bdd481b9bdd081a185d9948185b5bdd5b9d606a1b604082015260600190565b6020808252600b908201526a38bab2b99032bc32b2b21760a91b604082015260600190565b60006020828403121561570657600080fd5b5051919050565b6020808252601590820152741e5bdd481b9bdd081a185d994810985cd948139195605a1b604082015260600190565b602080825260139082015272796f75206e6f74206861766520746f6b656e7360681b604082015260600190565b6020808252601190820152707175616e746974792069732077726f6e6760781b604082015260600190565b60208082526025908201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604082015264185b1b195d60da1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820180821115611369576113696157d9565b6020808252601b908201527a165bdd481a185d99481b9bc81c1d589b1a58d35a5b9d081b19599d602a1b604082015260600190565b8082028115828204841417611369576113696157d9565b602080825260189082015277115512081d985b1d59481a5cc81b9bdd0818dbdc9c9958dd60421b604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b6000826158cb576158cb6158a6565b500490565b634e487b7160e01b600052603260045260246000fd5b6000600182016158f8576158f86157d9565b5060010190565b602080825260189082015277596f7520617265206e6f742077686974656c69737465642160401b604082015260600190565b60006020828403121561594357600080fd5b81516001600160401b0381111561595957600080fd5b8201601f8101841361596a57600080fd5b8051615978615172826152f1565b81815285602083850101111561598d57600080fd5b61599e826020830160208601615040565b95945050505050565b6000602082840312156159b957600080fd5b8151613d6281614fd2565b601f82111561152857600081815260208120601f850160051c810160208610156159eb5750805b601f850160051c820191505b81811015615a0a578281556001016159f7565b505050505050565b81516001600160401b03811115615a2b57615a2b6150e8565b615a3f81615a3984546155a4565b846159c4565b602080601f831160018114615a745760008415615a5c5750858301515b600019600386901b1c1916600185901b178555615a0a565b600085815260208120601f198616915b82811015615aa357888601518255948401946001909101908401615a84565b5085821015615ac15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252601990820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b604082015260600190565b60006020808385031215615b1757600080fd5b82516001600160401b03811115615b2d57600080fd5b8301601f81018513615b3e57600080fd5b8051615b4c6151728261512e565b81815260059190911b82018301908381019087831115615b6b57600080fd5b928401925b82841015615b8957835182529284019290840190615b70565b979650505050505050565b602080825260169082015275796f7520617265206e6f74206f776e65722e4261736560501b604082015260600190565b602080825260159082015274189d5c9b95dc9a5d19481a5cc8191a5cd8589b1959605a1b604082015260600190565b6020808252601890820152773cb7ba903430bb32903bb934ba32b21034b7103830b9ba1760411b604082015260600190565b918252602082015260400190565b600084516020615c468285838a01615040565b855191840191615c598184848a01615040565b8554920191600090615c6a816155a4565b60018281168015615c825760018114615c9757615cc3565b60ff1984168752821515830287019450615cc3565b896000528560002060005b84811015615cbb57815489820152908301908701615ca2565b505082870194505b50929a9950505050505050505050565b600081615ce257615ce26157d9565b506000190190565b67030b1b1b7bab73a160c51b815260008251615d0d816008850160208701615040565b721034b9903737ba1030b71037b832b930ba37b960691b6008939091019283015250601b01919050565b67030b1b1b7bab73a160c51b815260008251615d5a816008850160208701615040565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b81810381811115611369576113696157d9565b600082615db057615db06158a6565b500690565b7a3d9139b2b63632b92fb332b2afb130b9b4b9afb837b4b73a39911d60291b81528251600090615dec81601b850160208801615040565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b918401918201528351615e1f81602e840160208801615040565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251615e7281601d850160208701615040565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615eb290830184615064565b9695505050505050565b600060208284031215615ece57600080fd5b8151613d6281614f9f56fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212208bd4fb046730d804c6ffa80893321a8f29f015dd008681d87c34dd4109b3e51564736f6c63430008110033000000000000000000000000b4250f715995683c6ea5bc7c5e2cdf9b1601ba3f00000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000998715a4ed2c41bbf4c9181120bb5857627816aa
Deployed Bytecode
0x60806040526004361061050f5760003560e01c806301ffc9a71461051457806304634d8d146105495780630589a4781461056b57806306fdde0314610598578063081812fc146105ba578063095ea7b3146105da57806309e69999146105fa5780630c8066bc1461061a5780630d9005ae14610648578063162c9e701461065d57806318160ddd1461067d578063183b8a051461069257806318949773146106a8578063189f3de1146106c85780631a09cfe2146106e25780631aa5a56b146106f85780631da4943314610725578063200c470c1461074657806321b7b0311461075957806323b872dd1461077957806324af8cad146107995780632672c902146107af57806327ac0c58146107c457806329d64921146107e45780632a3f300c146108045780632a55205a146108245780632c1e1fbf146108635780632c4e9fc6146108905780632db11544146108a65780632e447869146108b95780632ef37025146108d95780633074ff4a146108ec5780633535cf3b1461090c5780633ccfd60b146109225780633db814931461092a5780634009920d1461094057806341f434341461095f57806342454db91461098157806342842e0e1461099757806342966c68146109b7578063438b6300146109d757806344f919f8146109f75780634bf365df14610a0c5780635183022714610a2257806355f804b314610a43578063566889d214610a6357806357b187ab14610a8457806359b4b24d14610aa457806359e4ae7b14610ac45780635dd1d99214610ae6578063612405bc14610b135780636352211e14610b335780636d70f7ae14610b535780636f8b44b014610b8c57806370a0823114610bac578063715018a614610bcc578063719eaef814610be15780637516a20914610c015780637803fb5614610c2257806378a9238014610c42578063812b641214610c78578063813779ef14610c98578063830b3a6414610cb85780638435d22b14610cd85780638ac1e16114610ced5780638c633be714610d0d5780638da5cb5b14610d2d5780638dd07d0f14610d4257806391e4bac814610d625780639373f43214610d82578063942958f414610da257806395d89b4114610dd85780639621473514610ded578063977ec9ca14610e0d5780639970cc2914610e2d5780639a8cbfb114610e435780639d936b8b14610e63578063a22cb46514610e83578063a2a2f64f14610ea3578063a355fd2914610eb8578063a60c99f614610ed8578063b16bc44114610eed578063b219f7d714610f03578063b4cefeaf14610f23578063b7c0b8e814610f43578063b83d8d7414610f63578063b88d4fde14610f83578063bbaac02f14610fa3578063bcbaeeaa14610fc3578063bff60c0f14610fe3578063c3faf72414611003578063c4be5b5914611023578063c59ca7b114611036578063c87b56dd14611057578063d393cf3b14611077578063d3bfa52514611097578063d52c57e0146110b7578063d5abeb01146110d7578063d5f39488146110ed578063d677a2ea14611114578063d78be71c14611134578063d846224514611154578063da3ef23f14611181578063e0881804146111a1578063e2d5e830146111c2578063e8a3d485146111e2578063e985e9c5146111f7578063eaea365014611240578063ef99fa3514611260578063f2fde38b14611280578063f3f98382146112a0578063f5501af1146112b6578063f56c4a2f146112ee578063f826f6011461130e578063faf7a82614611324578063fb796e6c14611344575b600080fd5b34801561052057600080fd5b5061053461052f366004614fb5565b61135e565b60405190151581526020015b60405180910390f35b34801561055557600080fd5b50610569610564366004614fe7565b61136f565b005b34801561057757600080fd5b50601e5461058b906001600160a01b031681565b604051610540919061502c565b3480156105a457600080fd5b506105ad611386565b6040516105409190615090565b3480156105c657600080fd5b5061058b6105d53660046150a3565b611418565b3480156105e657600080fd5b506105696105f53660046150bc565b61145c565b34801561060657600080fd5b506105696106153660046151bc565b61152d565b34801561062657600080fd5b5061063a610635366004615202565b611774565b604051908152602001610540565b34801561065457600080fd5b5060015461063a565b34801561066957600080fd5b5061058b6106783660046150a3565b6117e6565b34801561068957600080fd5b5061063a611810565b34801561069e57600080fd5b5061063a601c5481565b3480156106b457600080fd5b506105696106c33660046150a3565b61181e565b3480156106d457600080fd5b506023546105349060ff1681565b3480156106ee57600080fd5b5061063a60135481565b34801561070457600080fd5b5061063a6107133660046150a3565b602c6020526000908152604090205481565b34801561073157600080fd5b5060235461053490600160301b900460ff1681565b6105696107543660046150a3565b611833565b34801561076557600080fd5b5061056961077436600461521f565b611a46565b34801561078557600080fd5b50610569610794366004615241565b611a61565b3480156107a557600080fd5b5061063a60185481565b3480156107bb57600080fd5b506105ad611b4b565b3480156107d057600080fd5b506105696107df366004615202565b611bd9565b3480156107f057600080fd5b5061063a6107ff3660046150a3565b611bea565b34801561081057600080fd5b5061056961081f366004615290565b611c0b565b34801561083057600080fd5b5061084461083f36600461521f565b611c32565b604080516001600160a01b039093168352602083019190915201610540565b34801561086f57600080fd5b5061088361087e366004615202565b611cde565b60405161054091906152ad565b34801561089c57600080fd5b5061063a60105481565b6105696108b43660046150a3565b611e2c565b3480156108c557600080fd5b506105696108d4366004615290565b611ea1565b6105696108e73660046151bc565b611ec8565b3480156108f857600080fd5b506105ad6109073660046150a3565b612085565b34801561091857600080fd5b5061063a601a5481565b6105696120f7565b34801561093657600080fd5b5061063a601b5481565b34801561094c57600080fd5b5060235461053490610100900460ff1681565b34801561096b57600080fd5b5061058b6daaeb6d7670e522a718067333cd4e81565b34801561098d57600080fd5b5061063a60115481565b3480156109a357600080fd5b506105696109b2366004615241565b6121ff565b3480156109c357600080fd5b506105696109d23660046150a3565b6122de565b3480156109e357600080fd5b506108836109f2366004615202565b6122e9565b348015610a0357600080fd5b50610569612402565b348015610a1857600080fd5b5061063a60155481565b348015610a2e57600080fd5b5060235461053490600160201b900460ff1681565b348015610a4f57600080fd5b50610569610a5e366004615351565b612433565b348015610a6f57600080fd5b50602354610534906301000000900460ff1681565b348015610a9057600080fd5b50610569610a9f36600461521f565b612448565b348015610ab057600080fd5b5061063a610abf3660046150bc565b612670565b348015610ad057600080fd5b50610ad9612723565b6040516105409190615399565b348015610af257600080fd5b5061063a610b013660046150a3565b602b6020526000908152604090205481565b348015610b1f57600080fd5b50610569610b2e3660046150a3565b612784565b348015610b3f57600080fd5b5061058b610b4e3660046150a3565b612792565b348015610b5f57600080fd5b50610534610b6e366004615202565b6001600160a01b03166000908152600f602052604090205460ff1690565b348015610b9857600080fd5b50610569610ba73660046150a3565b6127a4565b348015610bb857600080fd5b5061063a610bc7366004615202565b6127d9565b348015610bd857600080fd5b50610569612827565b348015610bed57600080fd5b50610569610bfc3660046150a3565b61283b565b348015610c0d57600080fd5b5060235461053490600160401b900460ff1681565b348015610c2e57600080fd5b50610569610c3d366004615290565b612849565b348015610c4e57600080fd5b5061063a610c5d366004615202565b6001600160a01b031660009081526024602052604090205490565b348015610c8457600080fd5b50610883610c93366004615202565b61286e565b348015610ca457600080fd5b50610569610cb33660046150a3565b6128e3565b348015610cc457600080fd5b5061058b610cd33660046150a3565b6128f1565b348015610ce457600080fd5b50610883612958565b348015610cf957600080fd5b50610569610d083660046150a3565b6129af565b348015610d1957600080fd5b50610569610d283660046150a3565b6129c1565b348015610d3957600080fd5b5061058b612ae5565b348015610d4e57600080fd5b50610569610d5d3660046150a3565b612af4565b348015610d6e57600080fd5b50610569610d7d3660046150a3565b612b02565b348015610d8e57600080fd5b50610569610d9d366004615202565b612b37565b348015610dae57600080fd5b5061063a610dbd366004615202565b6001600160a01b031660009081526025602052604090205490565b348015610de457600080fd5b506105ad612b62565b348015610df957600080fd5b50610569610e08366004615202565b612b71565b348015610e1957600080fd5b50610569610e2836600461521f565b612ba6565b348015610e3957600080fd5b5061063a60125481565b348015610e4f57600080fd5b50610569610e5e366004615202565b612d6f565b348015610e6f57600080fd5b50610534610e7e3660046153da565b612da4565b348015610e8f57600080fd5b50610569610e9e366004615413565b612eb1565b348015610eaf57600080fd5b50610569612f74565b348015610ec457600080fd5b50610569610ed3366004615290565b612faa565b348015610ee457600080fd5b50610883612fcd565b348015610ef957600080fd5b5061063a601d5481565b348015610f0f57600080fd5b50610569610f1e366004615202565b613023565b348015610f2f57600080fd5b506023546105349062010000900460ff1681565b348015610f4f57600080fd5b50610569610f5e366004615290565b613034565b348015610f6f57600080fd5b50610569610f7e366004615290565b613050565b348015610f8f57600080fd5b50610569610f9e366004615441565b613077565b348015610faf57600080fd5b50610569610fbe366004615351565b613164565b348015610fcf57600080fd5b50610ad9610fde3660046150a3565b613179565b348015610fef57600080fd5b5061063a610ffe3660046150a3565b6132be565b34801561100f57600080fd5b5061056961101e366004615290565b6132ce565b6105696110313660046154c0565b6132ea565b34801561104257600080fd5b5060235461053490600160281b900460ff1681565b34801561106357600080fd5b506105ad6110723660046150a3565b613530565b34801561108357600080fd5b5061056961109236600461521f565b613666565b3480156110a357600080fd5b506105346110b23660046153da565b613681565b3480156110c357600080fd5b506105696110d236600461550f565b613753565b3480156110e357600080fd5b5061063a60145481565b3480156110f957600080fd5b5060235461058b90600160481b90046001600160a01b031681565b34801561112057600080fd5b5061056961112f366004615290565b613799565b34801561114057600080fd5b5061056961114f3660046150a3565b6137c0565b34801561116057600080fd5b5061063a61116f3660046150a3565b602d6020526000908152604090205481565b34801561118d57600080fd5b5061056961119c366004615351565b6137ce565b3480156111ad57600080fd5b5060235461053490600160381b900460ff1681565b3480156111ce57600080fd5b506105696111dd36600461521f565b6137e3565b3480156111ee57600080fd5b506105ad6137fe565b34801561120357600080fd5b50610534611212366004615534565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561124c57600080fd5b5061056961125b3660046150a3565b61380d565b34801561126c57600080fd5b5061056961127b3660046151bc565b61381b565b34801561128c57600080fd5b5061056961129b366004615202565b613a15565b3480156112ac57600080fd5b5061063a60195481565b3480156112c257600080fd5b5061063a6112d136600461521f565b602e60209081526000928352604080842090915290825290205481565b3480156112fa57600080fd5b50610569611309366004615290565b613a8b565b34801561131a57600080fd5b5061063a60175481565b34801561133057600080fd5b5061053461133f366004615562565b613ab2565b34801561135057600080fd5b50600e546105349060ff1681565b600061136982613d69565b92915050565b61137833613d8e565b6113828282613dfc565b5050565b606060038054611395906155a4565b80601f01602080910402602001604051908101604052809291908181526020018280546113c1906155a4565b801561140e5780601f106113e35761010080835404028352916020019161140e565b820191906000526020600020905b8154815290600101906020018083116113f157829003601f168201915b5050505050905090565b600061142382613ef5565b611440576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b1580159061147d5750600e5460ff165b1561151e57604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c6171134906114b590309085906004016155de565b602060405180830381865afa1580156114d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f691906155f8565b61151e5780604051633b79c77360e21b8152600401611515919061502c565b60405180910390fd5b6115288383613f2e565b505050565b60026009540361154f5760405162461bcd60e51b815260040161151590615615565b6002600955602354600160381b900460ff1661157d5760405162461bcd60e51b81526004016115159061564c565b601c54601854116115a05760405162461bcd60e51b81526004016115159061567c565b6115a9336127d9565b815111156115c95760405162461bcd60e51b8152600401611515906156a2565b601a546000908152602e60209081526040808320858452825280832054602d90925290912054118061160757506000828152602d6020526040902054155b6116235760405162461bcd60e51b8152600401611515906156cf565b602354600160401b900460ff1615806116ac5750601f546040516370a0823160e01b81526001600160a01b03909116906370a082319061166790339060040161502c565b602060405180830381865afa158015611684573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a891906156f4565b5060015b6116c85760405162461bcd60e51b81526004016115159061570d565b6116d23382613681565b6116ee5760405162461bcd60e51b81526004016115159061573c565b80516000838152602b6020526040902054148061173c57506000828152602b6020526040902054158061172f57506000828152602b60205260409020546001145b801561173c575080516001145b6117585760405162461bcd60e51b815260040161151590615769565b61176182613faf565b61176b3382614060565b50506001600955565b601f546040516370a0823160e01b81526000916001600160a01b0316906370a08231906117a590859060040161502c565b602060405180830381865afa1580156117c2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136991906156f4565b602a81815481106117f657600080fd5b6000918252602090912001546001600160a01b0316905081565b600254600154036000190190565b61182733613d8e565b61183081600b55565b50565b6002600954036118555760405162461bcd60e51b815260040161151590615615565b60026009556023546301000000900460ff166118ac5760405162461bcd60e51b81526020600482015260166024820152751c1d589b1a58d093d35a5b9d081a5cc814185d5cd95960521b6044820152606401611515565b601f546040516370a0823160e01b81526001600160a01b03909116906370a08231906118dc90339060040161502c565b602060405180830381865afa1580156118f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191d91906156f4565b505b8060135410156119415760405162461bcd60e51b815260040161151590615794565b3360009081526025602052604090205461195c9082906157ef565b601354101561197d5760405162461bcd60e51b815260040161151590615802565b8060115461198b9190615837565b34146119a95760405162461bcd60e51b81526004016115159061584e565b6015546119b4611810565b6119be90836157ef565b11156119dc5760405162461bcd60e51b815260040161151590615880565b6014546119e7611810565b6119f190836157ef565b1115611a0f5760405162461bcd60e51b815260040161151590615880565b3360009081526025602052604081208054839290611a2e9084906157ef565b90915550611a3e90503382614151565b506001600955565b611a4f33613d8e565b6000918252602b602052604090912055565b826daaeb6d7670e522a718067333cd4e3b15801590611a825750600e5460ff165b15611b3a57336001600160a01b03821603611aa757611aa284848461416b565b611b45565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c617113490611ada90309033906004016155de565b602060405180830381865afa158015611af7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1b91906155f8565b611b3a5733604051633b79c77360e21b8152600401611515919061502c565b611b4584848461416b565b50505050565b60228054611b58906155a4565b80601f0160208091040260200160405190810160405280929190818152602001828054611b84906155a4565b8015611bd15780601f10611ba657610100808354040283529160200191611bd1565b820191906000526020600020905b815481529060010190602001808311611bb457829003601f168201915b505050505081565b611be1614176565b611830816141d5565b60298181548110611bfa57600080fd5b600091825260209091200154905081565b611c1433613d8e565b60238054911515600160201b0260ff60201b19909216919091179055565b6000828152600d602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291611ca7575060408051808201909152600c546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090611cc6906001600160601b031687615837565b611cd091906158bc565b915196919550909350505050565b60606000805b602a54811015611d4057602a8181548110611d0157611d016158d0565b6000918252602090912001546001600160a01b0390811690851603611d2e5781611d2a816158e6565b9250505b80611d38816158e6565b915050611ce4565b506000816001600160401b03811115611d5b57611d5b6150e8565b604051908082528060200260200182016040528015611d84578160200160208202803683370190505b5090506000805b602a54811015611e2257602a8181548110611da857611da86158d0565b6000918252602090912001546001600160a01b0390811690871603611e105760298181548110611dda57611dda6158d0565b9060005260206000200154838380611df1906158e6565b945081518110611e0357611e036158d0565b6020026020010181815250505b80611e1a816158e6565b915050611d8b565b5090949350505050565b600260095403611e4e5760405162461bcd60e51b815260040161151590615615565b6002600955602354610100900460ff1661191f5760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b6044820152606401611515565b611eaa33613d8e565b60238054911515600160301b0260ff60301b19909216919091179055565b600260095403611eea5760405162461bcd60e51b815260040161151590615615565b600260095560235462010000900460ff16611f405760405162461bcd60e51b81526020600482015260166024820152751c1d589b1a58d354135a5b9d081a5cc814185d5cd95960521b6044820152606401611515565b611f4a3382612da4565b611f665760405162461bcd60e51b8152600401611515906158ff565b816013541015611f885760405162461bcd60e51b815260040161151590615794565b33600090815260256020526040902054611fa39083906157ef565b6013541015611fc45760405162461bcd60e51b815260040161151590615802565b81601154611fd29190615837565b3414611ff05760405162461bcd60e51b81526004016115159061584e565b601554611ffb611810565b61200590846157ef565b11156120235760405162461bcd60e51b815260040161151590615880565b60145461202e611810565b61203890846157ef565b11156120565760405162461bcd60e51b815260040161151590615880565b33600090815260256020526040812080548492906120759084906157ef565b9091555061176b90503383614151565b601f5460405163c87b56dd60e01b8152600481018390526060916001600160a01b03169063c87b56dd90602401600060405180830381865afa1580156120cf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113699190810190615931565b61210033613d8e565b6002600954036121225760405162461bcd60e51b815260040161151590615615565b60026009556016546000906001600160a01b031615612198576016546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612188576040519150601f19603f3d011682016040523d82523d6000602084013e61218d565b606091505b5050809150506121f5565b6121a0612ae5565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146121ea576040519150601f19603f3d011682016040523d82523d6000602084013e6121ef565b606091505b50909150505b80611a3e57600080fd5b826daaeb6d7670e522a718067333cd4e3b158015906122205750600e5460ff165b156122d357336001600160a01b0382160361224057611aa284848461425d565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c61711349061227390309033906004016155de565b602060405180830381865afa158015612290573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b491906155f8565b6122d35733604051633b79c77360e21b8152600401611515919061502c565b611b4584848461425d565b611830816001614278565b606060006122f6836127d9565b90506000816001600160401b03811115612312576123126150e8565b60405190808252806020026020018201604052801561233b578160200160208202803683370190505b509050600060015b600154811015611e22576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa158015612389573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123ad91906159a7565b6001600160a01b0316866001600160a01b0316036123f0578083836123d1816158e6565b9450815181106123e3576123e36158d0565b6020026020010181815250505b806123fa816158e6565b915050612343565b61240b33613d8e565b61241760266000614f6d565b6000601b819055601980549161242c836158e6565b9190505550565b61243c33613d8e565b60216113828282615a12565b60026009540361246a5760405162461bcd60e51b815260040161151590615615565b6002600955602354600160381b900460ff166124985760405162461bcd60e51b81526004016115159061564c565b6124a181612792565b6001600160a01b0316336001600160a01b0316146124f55760405162461bcd60e51b81526020600482015260116024820152703cb7ba9030b932903737ba1037bbb732b960791b6044820152606401611515565b601c54601854116125185760405162461bcd60e51b81526004016115159061567c565b601a546000908152602e60209081526040808320858452825280832054602d90925290912054118061255657506000828152602d6020526040902054155b6125725760405162461bcd60e51b8152600401611515906156cf565b602354600160401b900460ff1615806125fb5750601f546040516370a0823160e01b81526001600160a01b03909116906370a08231906125b690339060040161502c565b602060405180830381865afa1580156125d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125f791906156f4565b5060015b6126175760405162461bcd60e51b81526004016115159061570d565b6000828152602b6020526040902054158061264057506000828152602b60205260409020546001145b61265c5760405162461bcd60e51b815260040161151590615769565b61266582613faf565b61176b816001614278565b6000808060015b600154811015611e22576040516320c2ce9960e21b815260048101829052309063830b3a6490602401602060405180830381865afa1580156126bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126e191906159a7565b6001600160a01b0316866001600160a01b03160361271157915081848214611e22578161270d816158e6565b9250505b8061271b816158e6565b915050612677565b6060602a80548060200260200160405190810160405280929190818152602001828054801561140e57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161275d575050505050905090565b61278d33613d8e565b601855565b600061279d82614426565b5192915050565b6127ad33613d8e565b806127b6611810565b11156127d45760405162461bcd60e51b815260040161151590615ad1565b601455565b60006001600160a01b038216612802576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b61282f614176565b6128396000614548565b565b61284433613d8e565b601255565b61285233613d8e565b60238054911515620100000262ff000019909216919091179055565b601f5460405162438b6360e81b81526060916001600160a01b03169063438b63009061289e90859060040161502c565b600060405180830381865afa1580156128bb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113699190810190615b04565b6128ec33613d8e565b601355565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa92505050801561294c575060408051601f3d908101601f19168201909252612949918101906159a7565b60015b61136957506000919050565b6060602680548060200260200160405190810160405280929190818152602001828054801561140e57602002820191906000526020600020905b815481526020019060010190808311612992575050505050905090565b6129b833613d8e565b61183081600a55565b6002600954036129e35760405162461bcd60e51b815260040161151590615615565b6002600955602354600160301b900460ff16612a3f5760405162461bcd60e51b815260206004820152601b60248201527a189d5c9b95dc9a5d1954995b5bdd99481a5cc8191a5cd8589b1959602a1b6044820152606401611515565b601f546040516331a9108f60e11b8152600481018390526001600160a01b0390911690636352211e90602401602060405180830381865afa158015612a88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aac91906159a7565b6001600160a01b0316336001600160a01b031614612adc5760405162461bcd60e51b815260040161151590615b94565b611a3e81614598565b6000546001600160a01b031690565b612afd33613d8e565b601055565b612b0b33613d8e565b80612b14611810565b1115612b325760405162461bcd60e51b815260040161151590615ad1565b601555565b612b4033613d8e565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054611395906155a4565b612b7a33613d8e565b602380546001600160a01b03909216600160481b02600160481b600160e81b0319909216919091179055565b600260095403612bc85760405162461bcd60e51b815260040161151590615615565b6002600955602354600160281b900460ff16612bf65760405162461bcd60e51b815260040161151590615bc4565b601f546040516331a9108f60e11b8152600481018490526001600160a01b0390911690636352211e90602401602060405180830381865afa158015612c3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c6391906159a7565b6001600160a01b0316336001600160a01b031614612c935760405162461bcd60e51b815260040161151590615b94565b612c9c81612792565b6001600160a01b0316336001600160a01b031614612cf75760405162461bcd60e51b81526020600482015260186024820152771e5bdd48185c99481b9bdd081bdddb995c8b951a58dad95d60421b6044820152606401611515565b601954600083815260286020526040902054141580612d2757506019543360009081526027602052604090205414155b612d435760405162461bcd60e51b815260040161151590615bf3565b601b5460175411612d665760405162461bcd60e51b81526004016115159061567c565b612665826145fd565b612d7833613d8e565b601f80546001600160a01b039092166001600160a01b03199283168117909155601e8054909216179055565b6040516001600160601b0319606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b8351811015612ea557838181518110612df957612df96158d0565b60200260200101518210612e4e57838181518110612e1957612e196158d0565b602002602001015182604051602001612e33929190615c25565b60405160208183030381529060405280519060200120612e91565b81848281518110612e6157612e616158d0565b6020026020010151604051602001612e7a929190615c25565b604051602081830303815290604052805190602001205b915080612e9d816158e6565b915050612dde565b50600b54149392505050565b816daaeb6d7670e522a718067333cd4e3b15801590612ed25750600e5460ff165b15612f6a57604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c617113490612f0a90309085906004016155de565b602060405180830381865afa158015612f27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f4b91906155f8565b612f6a5780604051633b79c77360e21b8152600401611515919061502c565b6115288383614661565b612f7d33613d8e565b612f8960296000614f6d565b612f95602a6000614f6d565b6000601c819055601a80549161242c836158e6565b612fb333613d8e565b602380549115156101000261ff0019909216919091179055565b6060602980548060200260200160405190810160405280929190818152602001828054801561140e5760200282019190600052602060002090815481526020019060010190808311612992575050505050905090565b61302b614176565b611830816146f6565b61303d33613d8e565b600e805460ff1916911515919091179055565b61305933613d8e565b6023805491151563010000000263ff00000019909216919091179055565b836daaeb6d7670e522a718067333cd4e3b158015906130985750600e5460ff165b1561315157336001600160a01b038216036130be576130b985858585614720565b61315d565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c6171134906130f190309033906004016155de565b602060405180830381865afa15801561310e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061313291906155f8565b6131515733604051633b79c77360e21b8152600401611515919061502c565b61315d85858585614720565b5050505050565b61316d33613d8e565b60206113828282615a12565b60606000805b6029548110156131cd576029818154811061319c5761319c6158d0565b906000526020600020015484036131bb57816131b7816158e6565b9250505b806131c5816158e6565b91505061317f565b506000816001600160401b038111156131e8576131e86150e8565b604051908082528060200260200182016040528015613211578160200160208202803683370190505b5090506000805b602954811015611e225760298181548110613235576132356158d0565b906000526020600020015486036132ac57602a8181548110613259576132596158d0565b6000918252602090912001546001600160a01b03168383613279816158e6565b94508151811061328b5761328b6158d0565b60200260200101906001600160a01b031690816001600160a01b0316815250505b806132b6816158e6565b915050613218565b60268181548110611bfa57600080fd5b6132d733613d8e565b6023805460ff1916911515919091179055565b60026009540361330c5760405162461bcd60e51b815260040161151590615615565b600260095560235460ff1661335d5760405162461bcd60e51b81526020600482015260176024820152761dda1a5d195b1a5cdd135a5b9d081a5cc814185d5cd959604a1b6044820152606401611515565b613368338383613ab2565b6133845760405162461bcd60e51b8152600401611515906158ff565b600082116133c65760405162461bcd60e51b815260206004820152600f60248201526e596f752068617665206e6f20574c2160881b6044820152606401611515565b828210156134275760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401611515565b336000908152602460205260409020546134429084906157ef565b8210156134915760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401611515565b60155461349c611810565b6134a690856157ef565b11156134c45760405162461bcd60e51b815260040161151590615880565b6014546134cf611810565b6134d990856157ef565b11156134f75760405162461bcd60e51b815260040161151590615880565b33600090815260246020526040812080548592906135169084906157ef565b9091555061352690503384614151565b5050600160095550565b606061353b82613ef5565b6135875760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401611515565b602354600160201b900460ff16156135d4576135a161476b565b6135aa8361477a565b60226040516020016135be93929190615c33565b6040516020818303038152906040529050919050565b602080546135e1906155a4565b80601f016020809104026020016040519081016040528092919081815260200182805461360d906155a4565b801561365a5780601f1061362f5761010080835404028352916020019161365a565b820191906000526020600020905b81548152906001019060200180831161363d57829003601f168201915b50505050509050919050565b61366f33613d8e565b6000918252602d602052604090912055565b60006001815b835181101561374b57306001600160a01b031663830b3a648583815181106136b1576136b16158d0565b60200260200101516040518263ffffffff1660e01b81526004016136d791815260200190565b602060405180830381865afa1580156136f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061371891906159a7565b6001600160a01b0316856001600160a01b031614613739576000915061374b565b80613743816158e6565b915050613687565b509392505050565b61375c33613d8e565b601454613767611810565b61377190846157ef565b111561378f5760405162461bcd60e51b815260040161151590615880565b6113828183614151565b6137a233613d8e565b60238054911515600160381b0260ff60381b19909216919091179055565b6137c933613d8e565b601155565b6137d733613d8e565b60226113828282615a12565b6137ec33613d8e565b6000918252602c602052604090912055565b6060613808614882565b905090565b61381633613d8e565b601755565b60026009540361383d5760405162461bcd60e51b815260040161151590615615565b6002600955602354600160281b900460ff1661386b5760405162461bcd60e51b815260040161151590615bc4565b601f546040516331a9108f60e11b8152600481018490526001600160a01b0390911690636352211e90602401602060405180830381865afa1580156138b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138d891906159a7565b6001600160a01b0316336001600160a01b0316146139085760405162461bcd60e51b815260040161151590615b94565b613911336127d9565b815111156139315760405162461bcd60e51b8152600401611515906156a2565b61393b3382613681565b6139575760405162461bcd60e51b81526004016115159061573c565b60195460008381526028602052604090205414158061398757506019543360009081526027602052604090205414155b6139a35760405162461bcd60e51b815260040161151590615bf3565b8051601d5414806139cd5750601d5415806139c05750601d546001145b80156139cd575080516001145b6139e95760405162461bcd60e51b815260040161151590615769565b601b5460175411613a0c5760405162461bcd60e51b81526004016115159061567c565b611761826145fd565b613a1d614176565b6001600160a01b038116613a825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611515565b61183081614548565b613a9433613d8e565b60238054911515600160281b0260ff60281b19909216919091179055565b6040516001600160601b0319606085901b16602082015260348101839052600090819060540160405160208183030381529060405280519060200120905060005b8351811015613bba57838181518110613b0e57613b0e6158d0565b60200260200101518210613b6357838181518110613b2e57613b2e6158d0565b602002602001015182604051602001613b48929190615c25565b60405160208183030381529060405280519060200120613ba6565b81848281518110613b7657613b766158d0565b6020026020010151604051602001613b8f929190615c25565b604051602081830303815290604052805190602001205b915080613bb2816158e6565b915050613af3565b50600a5414949350505050565b60606000613bd6836002615837565b613be19060026157ef565b6001600160401b03811115613bf857613bf86150e8565b6040519080825280601f01601f191660200182016040528015613c22576020820181803683370190505b509050600360fc1b81600081518110613c3d57613c3d6158d0565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613c6c57613c6c6158d0565b60200101906001600160f81b031916908160001a9053506000613c90846002615837565b613c9b9060016157ef565b90505b6001811115613d13576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613ccf57613ccf6158d0565b1a60f81b828281518110613ce557613ce56158d0565b60200101906001600160f81b031916908160001a90535060049490941c93613d0c81615cd3565b9050613c9e565b508315613d625760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401611515565b9392505050565b60006001600160e01b0319821663152a902d60e11b1480611369575061136982614902565b6001600160a01b0381166000908152600f602052604090205460ff16613dbf335b6001600160a01b03166014613bc7565b604051602001613dcf9190615cea565b604051602081830303815290604052906113825760405162461bcd60e51b81526004016115159190615090565b6127106001600160601b0382161115613e6a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611515565b6001600160a01b038216613ebc5760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401611515565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600c55565b600081600111158015613f09575060015482105b8015611369575050600090815260056020526040902054600160e01b900460ff161590565b6000613f3982612792565b9050806001600160a01b0316836001600160a01b031603613f6d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614613fa457613f878133611212565b613fa4576040516367d9dca160e11b815260040160405180910390fd5b611528838383614952565b6029805460018181019092557fcb7c14ce178f56e2e8d86ab33ebc0ae081ba8556a00cd122038841867181caac01829055602a805491820190557fbeced09521047d05b8960b7e7bcc1d1292cf3e4b2a6b63f48335cbde5f7545d20180546001600160a01b03191633179055601a546000908152602e602090815260408083208484529091528120805491614043836158e6565b9091555050601c8054906000614058836158e6565b919050555050565b6000805b8251811015611b4557306001600160a01b031663830b3a6484838151811061408e5761408e6158d0565b60200260200101516040518263ffffffff1660e01b81526004016140b491815260200190565b602060405180830381865afa1580156140d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140f591906159a7565b6001600160a01b0316846001600160a01b03160361413f57614131838281518110614122576141226158d0565b60200260200101516001614278565b8161413b816158e6565b9250505b80614149816158e6565b915050614064565b6113828282604051806020016040528060008152506149ae565b611528838383614b49565b3361417f612ae5565b6001600160a01b0316146128395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611515565b6001600160a01b0381166000908152600f602052604090205460ff16156141fb33613daf565b60405160200161420b9190615d37565b604051602081830303815290604052906142385760405162461bcd60e51b81526004016115159190615090565b506001600160a01b03166000908152600f60205260409020805460ff19166001179055565b61152883838360405180602001604052806000815250613077565b600061428383614426565b805190915082156142e9576000336001600160a01b03831614806142ac57506142ac8233611212565b806142c75750336142bc86611418565b6001600160a01b0316145b9050806142e757604051632ce44b5f60e11b815260040160405180910390fd5b505b6142f560008583614952565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b038084169190910181166001600160401b0319841681178390048216600190810183169093026001600160401b03600160801b03600160c01b0319909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166143ed5760015482146143ed57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020615f1a833981519152908390a450506002805460010190555050565b6040805160608101825260008082526020820181905291810191909152818060011161452f5760015481101561452f57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061452d5780516001600160a01b0316156144c4579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215614528579392505050565b6144c4565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b60265481101561138257602681815481106145b8576145b86158d0565b906000526020600020015482036145eb57602681815481106145dc576145dc6158d0565b60009182526020822001555050565b806145f5816158e6565b91505061459b565b60268054600181019091557f744a2cf8fd7008e3d53b67916e73460df9fa5214e3ef23dd4259ca09493a3594018190556019543360009081526027602090815260408083208490558483526028909152812091909155601b805491614058836158e6565b336001600160a01b0383160361468a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6146ff81613d8e565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b61472b848484614b49565b61473d836001600160a01b0316614d21565b15611b455761474e84848484614d30565b611b45576040516368d2bf6b60e11b815260040160405180910390fd5b606060218054611395906155a4565b6060816000036147a15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156147cb57806147b5816158e6565b91506147c49050600a836158bc565b91506147a5565b6000816001600160401b038111156147e5576147e56150e8565b6040519080825280601f01601f19166020018201604052801561480f576020820181803683370190505b5090505b841561487a57614824600183615d8e565b9150614831600a86615da1565b61483c9060306157ef565b60f81b818381518110614851576148516158d0565b60200101906001600160f81b031916908160001a905350614873600a866158bc565b9450614813565b949350505050565b606060008061489381612710611c32565b915091506148dc6148a38261477a565b6148b7846001600160a01b03166014613bc7565b6040516020016148c8929190615db5565b604051602081830303815290604052614e1b565b6040516020016148ec9190615e3a565b6040516020818303038152906040529250505090565b60006001600160e01b031982166380ac58cd60e01b148061493357506001600160e01b03198216635b5e139f60e01b145b8061136957506301ffc9a760e01b6001600160e01b0319831614611369565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001546001600160a01b0384166149d757604051622e076360e81b815260040160405180910390fd5b826000036149f85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546001600160801b031981166001600160401b038083168b018116918217600160401b6001600160401b031990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b4290931692909202919091179055819081850190614a9190614d21565b15614b07575b60405182906001600160a01b03881690600090600080516020615f1a833981519152908290a4614ad06000878480600101955087614d30565b614aed576040516368d2bf6b60e11b815260040160405180910390fd5b808210614a97578260015414614b0257600080fd5b614b3a565b5b6040516001830192906001600160a01b03881690600090600080516020615f1a833981519152908290a4808210614b08575b50600155611b45600085838684565b6000614b5482614426565b9050836001600160a01b031681600001516001600160a01b031614614b8b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480614ba95750614ba98533611212565b80614bc4575033614bb984611418565b6001600160a01b0316145b905080614be457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416614c0b57604051633a954ecd60e21b815260040160405180910390fd5b614c1760008487614952565b6001600160a01b03858116600090815260066020908152604080832080546001600160401b03198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116614cea576001548214614cea57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020615f1a83398151915260405160405180910390a461315d565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290614d65903390899088908890600401615e7f565b6020604051808303816000875af1925050508015614da0575060408051601f3d908101601f19168201909252614d9d91810190615ebc565b60015b614dfe573d808015614dce576040519150601f19603f3d011682016040523d82523d6000602084013e614dd3565b606091505b508051600003614df6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608151600003614e3a57505060408051602081019091526000815290565b6000604051806060016040528060408152602001615eda6040913990506000600384516002614e6991906157ef565b614e7391906158bc565b614e7e906004615837565b6001600160401b03811115614e9557614e956150e8565b6040519080825280601f01601f191660200182016040528015614ebf576020820181803683370190505b509050600182016020820185865187015b80821015614f2b576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250614ed0565b5050600386510660018114614f475760028114614f5a57614f62565b603d6001830353603d6002830353614f62565b603d60018303535b509195945050505050565b508054600082559060005260206000209081019061183091905b80821115614f9b5760008155600101614f87565b5090565b6001600160e01b03198116811461183057600080fd5b600060208284031215614fc757600080fd5b8135613d6281614f9f565b6001600160a01b038116811461183057600080fd5b60008060408385031215614ffa57600080fd5b823561500581614fd2565b915060208301356001600160601b038116811461502157600080fd5b809150509250929050565b6001600160a01b0391909116815260200190565b60005b8381101561505b578181015183820152602001615043565b50506000910152565b6000815180845261507c816020860160208601615040565b601f01601f19169290920160200192915050565b602081526000613d626020830184615064565b6000602082840312156150b557600080fd5b5035919050565b600080604083850312156150cf57600080fd5b82356150da81614fd2565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715615126576151266150e8565b604052919050565b60006001600160401b03821115615147576151476150e8565b5060051b60200190565b600082601f83011261516257600080fd5b813560206151776151728361512e565b6150fe565b82815260059290921b8401810191818101908684111561519657600080fd5b8286015b848110156151b1578035835291830191830161519a565b509695505050505050565b600080604083850312156151cf57600080fd5b8235915060208301356001600160401b038111156151ec57600080fd5b6151f885828601615151565b9150509250929050565b60006020828403121561521457600080fd5b8135613d6281614fd2565b6000806040838503121561523257600080fd5b50508035926020909101359150565b60008060006060848603121561525657600080fd5b833561526181614fd2565b9250602084013561527181614fd2565b929592945050506040919091013590565b801515811461183057600080fd5b6000602082840312156152a257600080fd5b8135613d6281615282565b6020808252825182820181905260009190848201906040850190845b818110156152e5578351835292840192918401916001016152c9565b50909695505050505050565b60006001600160401b0382111561530a5761530a6150e8565b50601f01601f191660200190565b6000615326615172846152f1565b905082815283838301111561533a57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561536357600080fd5b81356001600160401b0381111561537957600080fd5b8201601f8101841361538a57600080fd5b61487a84823560208401615318565b6020808252825182820181905260009190848201906040850190845b818110156152e55783516001600160a01b0316835292840192918401916001016153b5565b600080604083850312156153ed57600080fd5b82356153f881614fd2565b915060208301356001600160401b038111156151ec57600080fd5b6000806040838503121561542657600080fd5b823561543181614fd2565b9150602083013561502181615282565b6000806000806080858703121561545757600080fd5b843561546281614fd2565b9350602085013561547281614fd2565b92506040850135915060608501356001600160401b0381111561549457600080fd5b8501601f810187136154a557600080fd5b6154b487823560208401615318565b91505092959194509250565b6000806000606084860312156154d557600080fd5b833592506020840135915060408401356001600160401b038111156154f957600080fd5b61550586828701615151565b9150509250925092565b6000806040838503121561552257600080fd5b82359150602083013561502181614fd2565b6000806040838503121561554757600080fd5b823561555281614fd2565b9150602083013561502181614fd2565b60008060006060848603121561557757600080fd5b833561558281614fd2565b92506020840135915060408401356001600160401b038111156154f957600080fd5b600181811c908216806155b857607f821691505b6020821081036155d857634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b0392831681529116602082015260400190565b60006020828403121561560a57600080fd5b8151613d6281615282565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b602080825260169082015275189d5c9b95dc9a5d1954481a5cc8191a5cd8589b195960521b604082015260600190565b6020808252600c908201526b383430b9b29032bc32b2b21760a11b604082015260600190565b6020808252601390820152721e5bdd481b9bdd081a185d9948185b5bdd5b9d606a1b604082015260600190565b6020808252600b908201526a38bab2b99032bc32b2b21760a91b604082015260600190565b60006020828403121561570657600080fd5b5051919050565b6020808252601590820152741e5bdd481b9bdd081a185d994810985cd948139195605a1b604082015260600190565b602080825260139082015272796f75206e6f74206861766520746f6b656e7360681b604082015260600190565b6020808252601190820152707175616e746974792069732077726f6e6760781b604082015260600190565b60208082526025908201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604082015264185b1b195d60da1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820180821115611369576113696157d9565b6020808252601b908201527a165bdd481a185d99481b9bc81c1d589b1a58d35a5b9d081b19599d602a1b604082015260600190565b8082028115828204841417611369576113696157d9565b602080825260189082015277115512081d985b1d59481a5cc81b9bdd0818dbdc9c9958dd60421b604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b6000826158cb576158cb6158a6565b500490565b634e487b7160e01b600052603260045260246000fd5b6000600182016158f8576158f86157d9565b5060010190565b602080825260189082015277596f7520617265206e6f742077686974656c69737465642160401b604082015260600190565b60006020828403121561594357600080fd5b81516001600160401b0381111561595957600080fd5b8201601f8101841361596a57600080fd5b8051615978615172826152f1565b81815285602083850101111561598d57600080fd5b61599e826020830160208601615040565b95945050505050565b6000602082840312156159b957600080fd5b8151613d6281614fd2565b601f82111561152857600081815260208120601f850160051c810160208610156159eb5750805b601f850160051c820191505b81811015615a0a578281556001016159f7565b505050505050565b81516001600160401b03811115615a2b57615a2b6150e8565b615a3f81615a3984546155a4565b846159c4565b602080601f831160018114615a745760008415615a5c5750858301515b600019600386901b1c1916600185901b178555615a0a565b600085815260208120601f198616915b82811015615aa357888601518255948401946001909101908401615a84565b5085821015615ac15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252601990820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b604082015260600190565b60006020808385031215615b1757600080fd5b82516001600160401b03811115615b2d57600080fd5b8301601f81018513615b3e57600080fd5b8051615b4c6151728261512e565b81815260059190911b82018301908381019087831115615b6b57600080fd5b928401925b82841015615b8957835182529284019290840190615b70565b979650505050505050565b602080825260169082015275796f7520617265206e6f74206f776e65722e4261736560501b604082015260600190565b602080825260159082015274189d5c9b95dc9a5d19481a5cc8191a5cd8589b1959605a1b604082015260600190565b6020808252601890820152773cb7ba903430bb32903bb934ba32b21034b7103830b9ba1760411b604082015260600190565b918252602082015260400190565b600084516020615c468285838a01615040565b855191840191615c598184848a01615040565b8554920191600090615c6a816155a4565b60018281168015615c825760018114615c9757615cc3565b60ff1984168752821515830287019450615cc3565b896000528560002060005b84811015615cbb57815489820152908301908701615ca2565b505082870194505b50929a9950505050505050505050565b600081615ce257615ce26157d9565b506000190190565b67030b1b1b7bab73a160c51b815260008251615d0d816008850160208701615040565b721034b9903737ba1030b71037b832b930ba37b960691b6008939091019283015250601b01919050565b67030b1b1b7bab73a160c51b815260008251615d5a816008850160208701615040565b7f20697320616c72656164792068617320616e206f70657261746f7220726f6c656008939091019283015250602801919050565b81810381811115611369576113696157d9565b600082615db057615db06158a6565b500690565b7a3d9139b2b63632b92fb332b2afb130b9b4b9afb837b4b73a39911d60291b81528251600090615dec81601b850160208801615040565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b918401918201528351615e1f81602e840160208801615040565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251615e7281601d850160208701615040565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615eb290830184615064565b9695505050505050565b600060208284031215615ece57600080fd5b8151613d6281614f9f56fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212208bd4fb046730d804c6ffa80893321a8f29f015dd008681d87c34dd4109b3e51564736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b4250f715995683c6ea5bc7c5e2cdf9b1601ba3f00000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000998715a4ed2c41bbf4c9181120bb5857627816aa
-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0xB4250F715995683c6EA5BC7c5e2CDF9b1601ba3f
Arg [1] : _royaltyFraction (uint96): 1000
Arg [2] : _contractAddress (address): 0x998715a4ED2C41BBF4C9181120bb5857627816aA
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000b4250f715995683c6ea5bc7c5e2cdf9b1601ba3f
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [2] : 000000000000000000000000998715a4ed2c41bbf4c9181120bb5857627816aa
Deployed Bytecode Sourcemap
69667:26361:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72604:221;;;;;;;;;;-1:-1:-1;72604:221:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;72604:221:0;;;;;;;;72386:193;;;;;;;;;;-1:-1:-1;72386:193:0;;;;;:::i;:::-;;:::i;:::-;;70386:26;;;;;;;;;;-1:-1:-1;70386:26:0;;;;-1:-1:-1;;;;;70386:26:0;;;;;;;;;;:::i;42466:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44081:243::-;;;;;;;;;;-1:-1:-1;44081:243:0;;;;;:::i;:::-;;:::i;94887:189::-;;;;;;;;;;-1:-1:-1;94887:189:0;;;;;:::i;:::-;;:::i;90650:1086::-;;;;;;;;;;-1:-1:-1;90650:1086:0;;;;;:::i;:::-;;:::i;83885:123::-;;;;;;;;;;-1:-1:-1;83885:123:0;;;;;:::i;:::-;;:::i;:::-;;;4715:25:1;;;4703:2;4688:18;83885:123:0;4569:177:1;76982:106:0;;;;;;;;;;-1:-1:-1;77067:13:0;;76982:106;;71286:31;;;;;;;;;;-1:-1:-1;71286:31:0;;;;;:::i;:::-;;:::i;38442:312::-;;;;;;;;;;;;;:::i;70314:27::-;;;;;;;;;;;;;;;;76640:158;;;;;;;;;;-1:-1:-1;76640:158:0;;;;;:::i;:::-;;:::i;70587:27::-;;;;;;;;;;-1:-1:-1;70587:27:0;;;;;;;;69980:32;;;;;;;;;;;;;;;;71378:49;;;;;;;;;;-1:-1:-1;71378:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;70816:41;;;;;;;;;;-1:-1:-1;70816:41:0;;;;-1:-1:-1;;;70816:41:0;;;;;;81041:889;;;;;;:::i;:::-;;:::i;89371:177::-;;;;;;;;;;-1:-1:-1;89371:177:0;;;;;:::i;:::-;;:::i;95082:197::-;;;;;;;;;;-1:-1:-1;95082:197:0;;;;;:::i;:::-;;:::i;70178:30::-;;;;;;;;;;;;;;;;70529:38;;;;;;;;;;;;;:::i;95787:115::-;;;;;;;;;;-1:-1:-1;95787:115:0;;;;;:::i;:::-;;:::i;71255:24::-;;;;;;;;;;-1:-1:-1;71255:24:0;;;;;:::i;:::-;;:::i;75040:116::-;;;;;;;;;;-1:-1:-1;75040:116:0;;;;;:::i;:::-;;:::i;30299:499::-;;;;;;;;;;-1:-1:-1;30299:499:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6211:32:1;;;6193:51;;6275:2;6260:18;;6253:34;;;;6166:18;30299:499:0;6019:274:1;93105:608:0;;;;;;;;;;-1:-1:-1;93105:608:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;69849:38::-;;;;;;;;;;;;;;;;79393:721;;;;;;:::i;:::-;;:::i;85294:170::-;;;;;;;;;;-1:-1:-1;85294:170:0;;;;;:::i;:::-;;:::i;80140:875::-;;;;;;:::i;:::-;;:::i;83697:182::-;;;;;;;;;;-1:-1:-1;83697:182:0;;;;;:::i;:::-;;:::i;70249:28::-;;;;;;;;;;;;;;;;82090:765;;;:::i;70284:23::-;;;;;;;;;;;;;;;;70621:31;;;;;;;;;;-1:-1:-1;70621:31:0;;;;;;;;;;;65830:143;;;;;;;;;;;;65930:42;65830:143;;69894:40;;;;;;;;;;;;;;;;95285:205;;;;;;;;;;-1:-1:-1;95285:205:0;;;;;:::i;:::-;;:::i;81948:87::-;;;;;;;;;;-1:-1:-1;81948:87:0;;;;;:::i;:::-;;:::i;82898:553::-;;;;;;;;;;-1:-1:-1;82898:553:0;;;;;:::i;:::-;;:::i;85708:131::-;;;;;;;;;;;;;:::i;70058:30::-;;;;;;;;;;;;;;;;70739:28;;;;;;;;;;-1:-1:-1;70739:28:0;;;;-1:-1:-1;;;70739:28:0;;;;;;77142:109;;;;;;;;;;-1:-1:-1;77142:109:0;;;;;:::i;:::-;;:::i;70699:33::-;;;;;;;;;;-1:-1:-1;70699:33:0;;;;;;;;;;;89797:825;;;;;;;;;;-1:-1:-1;89797:825:0;;;;;:::i;:::-;;:::i;84051:609::-;;;;;;;;;;-1:-1:-1;84051:609:0;;;;;:::i;:::-;;:::i;92904:158::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;71324:47::-;;;;;;;;;;-1:-1:-1;71324:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;89013:105;;;;;;;;;;-1:-1:-1;89013:105:0;;;;;:::i;:::-;;:::i;42276:125::-;;;;;;;;;;-1:-1:-1;42276:125:0;;;;;:::i;:::-;;:::i;61547:113::-;;;;;;;;;;-1:-1:-1;61547:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;61631:21:0;61607:4;61631:21;;;:10;:21;;;;;;;;;61547:113;74343:189;;;;;;;;;;-1:-1:-1;74343:189:0;;;;;:::i;:::-;;:::i;39615:206::-;;;;;;;;;;-1:-1:-1;39615:206:0;;;;;:::i;:::-;;:::i;60494:103::-;;;;;;;;;;;;;:::i;75675:106::-;;;;;;;;;;-1:-1:-1;75675:106:0;;;;;:::i;:::-;;:::i;70907:35::-;;;;;;;;;;-1:-1:-1;70907:35:0;;;;-1:-1:-1;;;70907:35:0;;;;;;76170:121;;;;;;;;;;-1:-1:-1;76170:121:0;;;;;:::i;:::-;;:::i;75316:162::-;;;;;;;;;;-1:-1:-1;75316:162:0;;;;;:::i;:::-;-1:-1:-1;;;;;75451:19:0;75419:7;75451:19;;;:9;:19;;;;;;;75316:162;83494:197;;;;;;;;;;-1:-1:-1;83494:197:0;;;;;:::i;:::-;;:::i;75787:106::-;;;;;;;;;;-1:-1:-1;75787:106:0;;;;;:::i;:::-;;:::i;84725:309::-;;;;;;;;;;-1:-1:-1;84725:309:0;;;;;:::i;:::-;;:::i;88664:107::-;;;;;;;;;;;;;:::i;76449:156::-;;;;;;;;;;-1:-1:-1;76449:156:0;;;;;:::i;:::-;;:::i;87859:315::-;;;;;;;;;;-1:-1:-1;87859:315:0;;;;;:::i;:::-;;:::i;59850:87::-;;;;;;;;;;;;;:::i;74780:109::-;;;;;;;;;;-1:-1:-1;74780:109:0;;;;;:::i;:::-;;:::i;74570:184::-;;;;;;;;;;-1:-1:-1;74570:184:0;;;;;:::i;:::-;;:::i;74064:125::-;;;;;;;;;;-1:-1:-1;74064:125:0;;;;;:::i;:::-;;:::i;75484:162::-;;;;;;;;;;-1:-1:-1;75484:162:0;;;;;:::i;:::-;-1:-1:-1;;;;;75619:19:0;75587:7;75619:19;;;:9;:19;;;;;;;75484:162;42633:104;;;;;;;;;;;;;:::i;74195:109::-;;;;;;;;;;-1:-1:-1;74195:109:0;;;;;:::i;:::-;;:::i;86004:756::-;;;;;;;;;;-1:-1:-1;86004:756:0;;;;;:::i;:::-;;:::i;69941:32::-;;;;;;;;;;;;;;;;72012:175;;;;;;;;;;-1:-1:-1;72012:175:0;;;;;:::i;:::-;;:::i;13214:475::-;;;;;;;;;;-1:-1:-1;13214:475:0;;;;;:::i;:::-;;:::i;94673:208::-;;;;;;;;;;-1:-1:-1;94673:208:0;;;;;:::i;:::-;;:::i;88807:170::-;;;;;;;;;;;;;:::i;76047:117::-;;;;;;;;;;-1:-1:-1;76047:117:0;;;;;:::i;:::-;;:::i;92795:103::-;;;;;;;;;;;;;:::i;70348:31::-;;;;;;;;;;;;;;;;95908:117;;;;;;;;;;-1:-1:-1;95908:117:0;;;;;:::i;:::-;;:::i;70659:33::-;;;;;;;;;;-1:-1:-1;70659:33:0;;;;;;;;;;;94545:122;;;;;;;;;;-1:-1:-1;94545:122:0;;;;;:::i;:::-;;:::i;76297:121::-;;;;;;;;;;-1:-1:-1;76297:121:0;;;;;:::i;:::-;;:::i;95496:239::-;;;;;;;;;;-1:-1:-1;95496:239:0;;;;;:::i;:::-;;:::i;76841:107::-;;;;;;;;;;-1:-1:-1;76841:107:0;;;;;:::i;:::-;;:::i;93756:599::-;;;;;;;;;;-1:-1:-1;93756:599:0;;;;;:::i;:::-;;:::i;71106:26::-;;;;;;;;;;-1:-1:-1;71106:26:0;;;;;:::i;:::-;;:::i;75925:116::-;;;;;;;;;;-1:-1:-1;75925:116:0;;;;;:::i;:::-;;:::i;78431:936::-;;;;;;:::i;:::-;;:::i;70774:35::-;;;;;;;;;;-1:-1:-1;70774:35:0;;;;-1:-1:-1;;;70774:35:0;;;;;;77562:551;;;;;;;;;;-1:-1:-1;77562:551:0;;;;;:::i;:::-;;:::i;89164:171::-;;;;;;;;;;-1:-1:-1;89164:171:0;;;;;:::i;:::-;;:::i;91742:378::-;;;;;;;;;;-1:-1:-1;91742:378:0;;;;;:::i;:::-;;:::i;78170:239::-;;;;;;;;;;-1:-1:-1;78170:239:0;;;;;:::i;:::-;;:::i;70019:32::-;;;;;;;;;;;;;;;;70949:23;;;;;;;;;;-1:-1:-1;70949:23:0;;;;-1:-1:-1;;;70949:23:0;;-1:-1:-1;;;;;70949:23:0;;;85512:160;;;;;;;;;;-1:-1:-1;85512:160:0;;;;;:::i;:::-;;:::i;74895:109::-;;;;;;;;;;-1:-1:-1;74895:109:0;;;;;:::i;:::-;;:::i;71434:43::-;;;;;;;;;;-1:-1:-1;71434:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;77257:157;;;;;;;;;;-1:-1:-1;77257:157:0;;;;;:::i;:::-;;:::i;70864:36::-;;;;;;;;;;-1:-1:-1;70864:36:0;;;;-1:-1:-1;;;70864:36:0;;;;;;89584:185;;;;;;;;;;-1:-1:-1;89584:185:0;;;;;:::i;:::-;;:::i;72858:115::-;;;;;;;;;;;;;:::i;44780:214::-;;;;;;;;;;-1:-1:-1;44780:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;44951:25:0;;;44922:4;44951:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44780:214;85875:101;;;;;;;;;;-1:-1:-1;85875:101:0;;;;;:::i;:::-;;:::i;86788:1043::-;;;;;;;;;;-1:-1:-1;86788:1043:0;;;;;:::i;:::-;;:::i;60750:238::-;;;;;;;;;;-1:-1:-1;60750:238:0;;;;;:::i;:::-;;:::i;70215:27::-;;;;;;;;;;;;;;;;71484:67;;;;;;;;;;-1:-1:-1;71484:67:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;85082:158;;;;;;;;;;-1:-1:-1;85082:158:0;;;;;:::i;:::-;;:::i;70142:29::-;;;;;;;;;;;;;;;;12578:501;;;;;;;;;;-1:-1:-1;12578:501:0;;;;;:::i;:::-;;:::i;65780:43::-;;;;;;;;;;-1:-1:-1;65780:43:0;;;;;;;;72604:221;72752:4;72781:36;72805:11;72781:23;:36::i;:::-;72774:43;72604:221;-1:-1:-1;;72604:221:0:o;72386:193::-;61489:32;36305:10;61489:18;:32::i;:::-;72527:44:::1;72546:9;72557:13;72527:18;:44::i;:::-;72386:193:::0;;:::o;42466:100::-;42520:13;42553:5;42546:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42466:100;:::o;44081:243::-;44185:7;44215:16;44223:7;44215;:16::i;:::-;44210:64;;44240:34;;-1:-1:-1;;;44240:34:0;;;;;;;;;;;44210:64;-1:-1:-1;44292:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44292:24:0;;44081:243::o;94887:189::-;95010:8;65930:42;68124:45;:49;;;;:90;;-1:-1:-1;68190:24:0;;;;68124:90;68106:383;;;68264:128;;-1:-1:-1;;;68264:128:0;;65930:42;;68264;;:128;;68337:4;;68365:8;;68264:128;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68241:237;;68453:8;68434:28;;-1:-1:-1;;;68434:28:0;;;;;;;;:::i;:::-;;;;;;;;68241:237;95036:32:::1;95050:8;95060:7;95036:13;:32::i;:::-;94887:189:::0;;;:::o;90650:1086::-;34673:1;35265:7;;:19;35257:63;;;;-1:-1:-1;;;35257:63:0;;;;;;;:::i;:::-;34673:1;35396:7;:18;90803:16:::1;::::0;-1:-1:-1;;;90803:16:0;::::1;;;90795:51;;;;-1:-1:-1::0;;;90795:51:0::1;;;;;;;:::i;:::-;90875:12;;90865:7;;:22;90857:47;;;;-1:-1:-1::0;;;90857:47:0::1;;;;;;;:::i;:::-;90956:21;90966:10;90956:9;:21::i;:::-;90937:8;:15;:40;;90915:109;;;;-1:-1:-1::0;;;90915:109:0::1;;;;;;;:::i;:::-;91090:9;::::0;91077:23:::1;::::0;;;:12:::1;:23;::::0;;;;;;;:32;;;;;;;;;91057:8:::1;:17:::0;;;;;;;:52:::1;::::0;:95:::1;;-1:-1:-1::0;91130:17:0::1;::::0;;;:8:::1;:17;::::0;;;;;:22;91057:95:::1;91035:156;;;;-1:-1:-1::0;;;91035:156:0::1;;;;;;;:::i;:::-;91224:15;::::0;-1:-1:-1;;;91224:15:0;::::1;;;:24;::::0;:67:::1;;-1:-1:-1::0;91257:12:0::1;::::0;:34:::1;::::0;-1:-1:-1;;;91257:34:0;;-1:-1:-1;;;;;91257:12:0;;::::1;::::0;:22:::1;::::0;:34:::1;::::0;91280:10:::1;::::0;91257:34:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;91252:39:0;91224:67:::1;91202:138;;;;-1:-1:-1::0;;;91202:138:0::1;;;;;;;:::i;:::-;91359:30;91368:10;91380:8;91359;:30::i;:::-;91351:62;;;;-1:-1:-1::0;;;91351:62:0::1;;;;;;;:::i;:::-;91471:15:::0;;91446:21:::1;::::0;;;:12:::1;:21;::::0;;;;;:40:::1;::::0;:166:::1;;-1:-1:-1::0;91509:21:0::1;::::0;;;:12:::1;:21;::::0;;;;;:26;;:56:::1;;-1:-1:-1::0;91539:21:0::1;::::0;;;:12:::1;:21;::::0;;;;;91564:1:::1;91539:26;91509:56;91508:103;;;;;91591:8;:15;91610:1;91591:20;91508:103;91424:233;;;;-1:-1:-1::0;;;91424:233:0::1;;;;;;;:::i;:::-;91668:18;91678:7;91668:9;:18::i;:::-;91697:31;91707:10;91719:8;91697:9;:31::i;:::-;-1:-1:-1::0;;34629:1:0;35571:7;:22;90650:1086::o;83885:123::-;83971:12;;:29;;-1:-1:-1;;;83971:29:0;;83944:7;;-1:-1:-1;;;;;83971:12:0;;:22;;:29;;83994:5;;83971:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;71286:31::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;71286:31:0;;-1:-1:-1;71286:31:0;:::o;38442:312::-;38705:12;;72313:1;38689:13;:28;-1:-1:-1;;38689:46:0;;38442:312::o;76640:158::-;61489:32;36305:10;61489:18;:32::i;:::-;76760:30:::1;76778:11;13172:14:::0;:28;13096:112;76760:30:::1;76640:158:::0;:::o;81041:889::-;34673:1;35265:7;;:19;35257:63;;;;-1:-1:-1;;;35257:63:0;;;;;;;:::i;:::-;34673:1;35396:7;:18;81178:21:::1;::::0;;;::::1;;;81170:56;;;::::0;-1:-1:-1;;;81170:56:0;;17290:2:1;81170:56:0::1;::::0;::::1;17272:21:1::0;17329:2;17309:18;;;17302:30;-1:-1:-1;;;17348:18:1;;;17341:52;17410:18;;81170:56:0::1;17088:346:1::0;81170:56:0::1;81264:12;::::0;:34:::1;::::0;-1:-1:-1;;;81264:34:0;;-1:-1:-1;;;;;81264:12:0;;::::1;::::0;:22:::1;::::0;:34:::1;::::0;81287:10:::1;::::0;81264:34:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;81237:110:0::1;81397:7;81380:13;;:24;;81358:111;;;;-1:-1:-1::0;;;81358:111:0::1;;;;;;;:::i;:::-;81529:10;81519:21;::::0;;;:9:::1;:21;::::0;;;;;:31:::1;::::0;81543:7;;81519:31:::1;:::i;:::-;81502:13;;:48;;81480:125;;;;-1:-1:-1::0;;;81480:125:0::1;;;;;;;:::i;:::-;81651:7;81637:11;;:21;;;;:::i;:::-;81624:9;:34;81616:71;;;;-1:-1:-1::0;;;81616:71:0::1;;;;;;;:::i;:::-;81736:8;;81717:13;:11;:13::i;:::-;81707:23;::::0;:7;:23:::1;:::i;:::-;81706:39;;81698:64;;;;-1:-1:-1::0;;;81698:64:0::1;;;;;;;:::i;:::-;81811:9;;81792:13;:11;:13::i;:::-;81782:23;::::0;:7;:23:::1;:::i;:::-;81781:40;;81773:65;;;;-1:-1:-1::0;;;81773:65:0::1;;;;;;;:::i;:::-;81859:10;81849:21;::::0;;;:9:::1;:21;::::0;;;;:32;;81874:7;;81849:21;:32:::1;::::0;81874:7;;81849:32:::1;:::i;:::-;::::0;;;-1:-1:-1;81892:30:0::1;::::0;-1:-1:-1;81902:10:0::1;81914:7:::0;81892:9:::1;:30::i;:::-;-1:-1:-1::0;34629:1:0;35571:7;:22;81041:889::o;89371:177::-;61489:32;36305:10;61489:18;:32::i;:::-;89506:22:::1;::::0;;;:12:::1;:22;::::0;;;;;:34;89371:177::o;95082:197::-;95217:4;65930:42;67222:45;:49;;;;:90;;-1:-1:-1;67288:24:0;;;;67222:90;67204:697;;;67562:10;-1:-1:-1;;;;;67554:18:0;;;67550:85;;95234:37:::1;95253:4;95259:2;95263:7;95234:18;:37::i;:::-;67613:7:::0;;67550:85;67672:130;;-1:-1:-1;;;67672:130:0;;65930:42;;67672;;:130;;67745:4;;67773:10;;67672:130;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67649:241;;67863:10;67844:30;;-1:-1:-1;;;67844:30:0;;;;;;;;:::i;67649:241::-;95234:37:::1;95253:4;95259:2;95263:7;95234:18;:37::i;:::-;95082:197:::0;;;;:::o;70529:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;95787:115::-;59738:13;:11;:13::i;:::-;95864:30:::1;95883:10;95864:18;:30::i;71255:24::-:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71255:24:0;:::o;75040:116::-;61489:32;36305:10;61489:18;:32::i;:::-;75122:8:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;75122:26:0::1;-1:-1:-1::0;;;;75122:26:0;;::::1;::::0;;;::::1;::::0;;75040:116::o;30299:499::-;30441:7;30504:27;;;:17;:27;;;;;;;;30475:56;;;;;;;;;-1:-1:-1;;;;;30475:56:0;;;;;-1:-1:-1;;;30475:56:0;;;-1:-1:-1;;;;;30475:56:0;;;;;;;;30441:7;;30542:92;;-1:-1:-1;30593:29:0;;;;;;;;;30603:19;30593:29;-1:-1:-1;;;;;30593:29:0;;;;-1:-1:-1;;;30593:29:0;;-1:-1:-1;;;;;30593:29:0;;;;;30542:92;30682:23;;;;30644:21;;31162:5;;30669:36;;-1:-1:-1;;;;;30669:36:0;:10;:36;:::i;:::-;30668:71;;;;:::i;:::-;30758:16;;;;;-1:-1:-1;30299:499:0;;-1:-1:-1;;;;30299:499:0:o;93105:608::-;93214:16;93248:18;93286:9;93281:126;93305:14;:21;93301:25;;93281:126;;;93364:14;93379:1;93364:17;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;93364:17:0;;;93352:29;;;;93348:47;;93383:12;;;;:::i;:::-;;;;93348:47;93328:3;;;;:::i;:::-;;;;93281:126;;;;93417:25;93459:10;-1:-1:-1;;;;;93445:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;93445:25:0;;93417:53;;93481:18;93519:9;93514:166;93538:14;:21;93534:25;;93514:166;;;93597:14;93612:1;93597:17;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;93597:17:0;;;93585:29;;;;93581:87;;93658:7;93666:1;93658:10;;;;;;;;:::i;:::-;;;;;;;;;93633:8;93642:12;;;;;:::i;:::-;;;93633:22;;;;;;;;:::i;:::-;;;;;;:35;;;;;93581:87;93561:3;;;;:::i;:::-;;;;93514:166;;;-1:-1:-1;93697:8:0;;93105:608;-1:-1:-1;;;;93105:608:0:o;79393:721::-;34673:1;35265:7;;:19;35257:63;;;;-1:-1:-1;;;35257:63:0;;;;;;;:::i;:::-;34673:1;35396:7;:18;79487:19:::1;::::0;::::1;::::0;::::1;;;79479:52;;;::::0;-1:-1:-1;;;79479:52:0;;20061:2:1;79479:52:0::1;::::0;::::1;20043:21:1::0;20100:2;20080:18;;;20073:30;-1:-1:-1;;;20119:18:1;;;20112:50;20179:18;;79479:52:0::1;19859:344:1::0;85294:170:0;61489:32;36305:10;61489:18;:32::i;:::-;85420:21:::1;:36:::0;;;::::1;;-1:-1:-1::0;;;85420:36:0::1;-1:-1:-1::0;;;;85420:36:0;;::::1;::::0;;;::::1;::::0;;85294:170::o;80140:875::-;34673:1;35265:7;;:19;35257:63;;;;-1:-1:-1;;;35257:63:0;;;;;;;:::i;:::-;34673:1;35396:7;:18;80302:21:::1;::::0;;;::::1;;;80294:56;;;::::0;-1:-1:-1;;;80294:56:0;;20410:2:1;80294:56:0::1;::::0;::::1;20392:21:1::0;20449:2;20429:18;;;20422:30;-1:-1:-1;;;20468:18:1;;;20461:52;20530:18;;80294:56:0::1;20208:346:1::0;80294:56:0::1;80369:34;80384:10;80396:6;80369:14;:34::i;:::-;80361:71;;;;-1:-1:-1::0;;;80361:71:0::1;;;;;;;:::i;:::-;80482:7;80465:13;;:24;;80443:111;;;;-1:-1:-1::0;;;80443:111:0::1;;;;;;;:::i;:::-;80614:10;80604:21;::::0;;;:9:::1;:21;::::0;;;;;:31:::1;::::0;80628:7;;80604:31:::1;:::i;:::-;80587:13;;:48;;80565:125;;;;-1:-1:-1::0;;;80565:125:0::1;;;;;;;:::i;:::-;80736:7;80722:11;;:21;;;;:::i;:::-;80709:9;:34;80701:71;;;;-1:-1:-1::0;;;80701:71:0::1;;;;;;;:::i;:::-;80821:8;;80802:13;:11;:13::i;:::-;80792:23;::::0;:7;:23:::1;:::i;:::-;80791:39;;80783:64;;;;-1:-1:-1::0;;;80783:64:0::1;;;;;;;:::i;:::-;80896:9;;80877:13;:11;:13::i;:::-;80867:23;::::0;:7;:23:::1;:::i;:::-;80866:40;;80858:65;;;;-1:-1:-1::0;;;80858:65:0::1;;;;;;;:::i;:::-;80944:10;80934:21;::::0;;;:9:::1;:21;::::0;;;;:32;;80959:7;;80934:21;:32:::1;::::0;80959:7;;80934:32:::1;:::i;:::-;::::0;;;-1:-1:-1;80977:30:0::1;::::0;-1:-1:-1;80987:10:0::1;80999:7:::0;80977:9:::1;:30::i;83697:182::-:0;83840:12;;:31;;-1:-1:-1;;;83840:31:0;;;;;4715:25:1;;;83802:13:0;;-1:-1:-1;;;;;83840:12:0;;:21;;4688:18:1;;83840:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;83840:31:0;;;;;;;;;;;;:::i;82090:765::-;61489:32;36305:10;61489:18;:32::i;:::-;34673:1:::1;35265:7;;:19:::0;35257:63:::1;;;;-1:-1:-1::0;;;35257:63:0::1;;;;;;;:::i;:::-;34673:1;35396:7;:18:::0;82438:15:::2;::::0;82416:7:::2;::::0;-1:-1:-1;;;;;82438:15:0::2;:29:::0;82434:302:::2;;82540:15;::::0;82532:95:::2;::::0;-1:-1:-1;;;;;82540:15:0;;::::2;::::0;82587:21:::2;::::0;82532:95:::2;::::0;;;82587:21;82540:15;82532:95:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82523:104;;;;;82434:302;;;82677:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;82669:21:0::2;82698;82669:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;82660:64:0;;-1:-1:-1;;82434:302:0::2;82754:2;82746:11;;;::::0;::::2;95285:205:::0;95424:4;65930:42;67222:45;:49;;;;:90;;-1:-1:-1;67288:24:0;;;;67222:90;67204:697;;;67562:10;-1:-1:-1;;;;;67554:18:0;;;67550:85;;95441:41:::1;95464:4;95470:2;95474:7;95441:22;:41::i;67550:85::-:0;67672:130;;-1:-1:-1;;;67672:130:0;;65930:42;;67672;;:130;;67745:4;;67773:10;;67672:130;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67649:241;;67863:10;67844:30;;-1:-1:-1;;;67844:30:0;;;;;;;;:::i;67649:241::-;95441:41:::1;95464:4;95470:2;95474:7;95441:22;:41::i;81948:87::-:0;82007:20;82013:7;82022:4;82007:5;:20::i;82898:553::-;83006:16;83040:23;83066:19;83076:8;83066:9;:19::i;:::-;83040:45;;83096:25;83138:15;-1:-1:-1;;;;;83124:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;83124:30:0;-1:-1:-1;83096:58:0;-1:-1:-1;83238:18:0;72313:1;83271:147;83309:13;;83305:1;:17;83271:147;;;83360:18;;-1:-1:-1;;;83360:18:0;;;;;4715:25:1;;;83360:4:0;;:15;;4688:18:1;;83360::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;83348:30:0;:8;-1:-1:-1;;;;;83348:30:0;;83344:62;;83405:1;83380:8;83389:12;;;;:::i;:::-;;;83380:22;;;;;;;;:::i;:::-;;;;;;:26;;;;;83344:62;83324:3;;;;:::i;:::-;;;;83271:147;;85708:131;61489:32;36305:10;61489:18;:32::i;:::-;85771:16:::1;85778:9;;85771:16;:::i;:::-;85809:1;85798:8;:12:::0;;;85821:8:::1;:10:::0;;;::::1;::::0;::::1;:::i;:::-;;;;;;85708:131::o:0;77142:109::-;61489:32;36305:10;61489:18;:32::i;:::-;77223:13:::1;:20;77239:4:::0;77223:13;:20:::1;:::i;89797:825::-:0;34673:1;35265:7;;:19;35257:63;;;;-1:-1:-1;;;35257:63:0;;;;;;;:::i;:::-;34673:1;35396:7;:18;89934:16:::1;::::0;-1:-1:-1;;;89934:16:0;::::1;;;89926:51;;;;-1:-1:-1::0;;;89926:51:0::1;;;;;;;:::i;:::-;90010:15;90018:6;90010:7;:15::i;:::-;-1:-1:-1::0;;;;;89996:29:0::1;:10;-1:-1:-1::0;;;;;89996:29:0::1;;89988:59;;;::::0;-1:-1:-1;;;89988:59:0;;24438:2:1;89988:59:0::1;::::0;::::1;24420:21:1::0;24477:2;24457:18;;;24450:30;-1:-1:-1;;;24496:18:1;;;24489:47;24553:18;;89988:59:0::1;24236:341:1::0;89988:59:0::1;90076:12;;90066:7;;:22;90058:47;;;;-1:-1:-1::0;;;90058:47:0::1;;;;;;;:::i;:::-;90171:9;::::0;90158:23:::1;::::0;;;:12:::1;:23;::::0;;;;;;;:32;;;;;;;;;90138:8:::1;:17:::0;;;;;;;:52:::1;::::0;:95:::1;;-1:-1:-1::0;90211:17:0::1;::::0;;;:8:::1;:17;::::0;;;;;:22;90138:95:::1;90116:156;;;;-1:-1:-1::0;;;90116:156:0::1;;;;;;;:::i;:::-;90305:15;::::0;-1:-1:-1;;;90305:15:0;::::1;;;:24;::::0;:67:::1;;-1:-1:-1::0;90338:12:0::1;::::0;:34:::1;::::0;-1:-1:-1;;;90338:34:0;;-1:-1:-1;;;;;90338:12:0;;::::1;::::0;:22:::1;::::0;:34:::1;::::0;90361:10:::1;::::0;90338:34:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;90333:39:0;90305:67:::1;90283:138;;;;-1:-1:-1::0;;;90283:138:0::1;;;;;;;:::i;:::-;90454:21;::::0;;;:12:::1;:21;::::0;;;;;:26;;:56:::1;;-1:-1:-1::0;90484:21:0::1;::::0;;;:12:::1;:21;::::0;;;;;90509:1:::1;90484:26;90454:56;90432:123;;;;-1:-1:-1::0;;;90432:123:0::1;;;;;;;:::i;:::-;90566:18;90576:7;90566:9;:18::i;:::-;90595:19;90601:6;90609:4;90595:5;:19::i;84051:609::-:0;84182:7;;;72313:1;84339:289;84377:13;;84373:1;:17;84339:289;;;84428:18;;-1:-1:-1;;;84428:18:0;;;;;4715:25:1;;;84428:4:0;;:15;;4688:18:1;;84428::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;84416:30:0;:8;-1:-1:-1;;;;;84416:30:0;;84412:205;;84477:1;-1:-1:-1;84477:1:0;84497:74;;;84546:5;84497:74;84589:12;;;;:::i;:::-;;;;84412:205;84392:3;;;;:::i;:::-;;;;84339:289;;92904:158;92999:16;93040:14;93033:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;93033:21:0;;;;;;;;;;;;;;;;;;;;;;92904:158;:::o;89013:105::-;61489:32;36305:10;61489:18;:32::i;:::-;89092:7:::1;:18:::0;89013:105::o;42276:125::-;42340:7;42367:21;42380:7;42367:12;:21::i;:::-;:26;;42276:125;-1:-1:-1;;42276:125:0:o;74343:189::-;61489:32;36305:10;61489:18;:32::i;:::-;74451:10:::1;74434:13;:11;:13::i;:::-;:27;;74426:65;;;;-1:-1:-1::0;;;74426:65:0::1;;;;;;;:::i;:::-;74502:9;:22:::0;74343:189::o;39615:206::-;39679:7;-1:-1:-1;;;;;39703:19:0;;39699:60;;39731:28;;-1:-1:-1;;;39731:28:0;;;;;;;;;;;39699:60;-1:-1:-1;;;;;;39785:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;39785:27:0;;39615:206::o;60494:103::-;59738:13;:11;:13::i;:::-;60559:30:::1;60586:1;60559:18;:30::i;:::-;60494:103::o:0;75675:106::-;61489:32;36305:10;61489:18;:32::i;:::-;75753:13:::1;:20:::0;75675:106::o;76170:121::-;61489:32;36305:10;61489:18;:32::i;:::-;76254:21:::1;:29:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;76254:29:0;;::::1;::::0;;;::::1;::::0;;76170:121::o;83494:197::-;83647:12;;:36;;-1:-1:-1;;;83647:36:0;;83606:16;;-1:-1:-1;;;;;83647:12:0;;:26;;:36;;83674:8;;83647:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;83647:36:0;;;;;;;;;;;;:::i;75787:106::-;61489:32;36305:10;61489:18;:32::i;:::-;75865:13:::1;:20:::0;75787:106::o;84725:309::-;84858:21;;-1:-1:-1;;;84858:21:0;;;;;4715:25:1;;;84829:7:0;;84858:4;;:12;;4688:18:1;;84858:21:0;;;;;;;;;;;;;;;;;;-1:-1:-1;84858:21:0;;;;;;;;-1:-1:-1;;84858:21:0;;;;;;;;;;;;:::i;:::-;;;84854:173;;-1:-1:-1;84989:1:0;;84725:309;-1:-1:-1;84725:309:0:o;88664:107::-;88718:16;88754:9;88747:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88664:107;:::o;76449:156::-;61489:32;36305:10;61489:18;:32::i;:::-;76568:29:::1;76585:11;12537:13:::0;:27;12462:110;87859:315;34673:1;35265:7;;:19;35257:63;;;;-1:-1:-1;;;35257:63:0;;;;;;;:::i;:::-;34673:1;35396:7;:18;87951:21:::1;::::0;-1:-1:-1;;;87951:21:0;::::1;;;87943:61;;;::::0;-1:-1:-1;;;87943:61:0;;26024:2:1;87943:61:0::1;::::0;::::1;26006:21:1::0;26063:2;26043:18;;;26036:30;-1:-1:-1;;;26082:18:1;;;26075:57;26149:18;;87943:61:0::1;25822:351:1::0;87943:61:0::1;88051:12;::::0;:30:::1;::::0;-1:-1:-1;;;88051:30:0;;::::1;::::0;::::1;4715:25:1::0;;;-1:-1:-1;;;;;88051:12:0;;::::1;::::0;:20:::1;::::0;4688:18:1;;88051:30:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;88037:44:0::1;:10;-1:-1:-1::0;;;;;88037:44:0::1;;88015:116;;;;-1:-1:-1::0;;;88015:116:0::1;;;;;;;:::i;:::-;88142:24;88157:8;88142:14;:24::i;59850:87::-:0;59896:7;59923:6;-1:-1:-1;;;;;59923:6:0;;59850:87::o;74780:109::-;61489:32;36305:10;61489:18;:32::i;:::-;74859:11:::1;:22:::0;74780:109::o;74570:184::-;61489:32;36305:10;61489:18;:32::i;:::-;74676:9:::1;74659:13;:11;:13::i;:::-;:26;;74651:64;;;;-1:-1:-1::0;;;74651:64:0::1;;;;;;;:::i;:::-;74726:8;:20:::0;74570:184::o;74064:125::-;61489:32;36305:10;61489:18;:32::i;:::-;74148:15:::1;:33:::0;;-1:-1:-1;;;;;;74148:33:0::1;-1:-1:-1::0;;;;;74148:33:0;;;::::1;::::0;;;::::1;::::0;;74064:125::o;42633:104::-;42689:13;42722:7;42715:14;;;;;:::i;74195:109::-;61489:32;36305:10;61489:18;:32::i;:::-;74276:8:::1;:20:::0;;-1:-1:-1;;;;;74276:20:0;;::::1;-1:-1:-1::0;;;74276:20:0::1;-1:-1:-1::0;;;;;;;;74276:20:0;;::::1;::::0;;;::::1;::::0;;74195:109::o;86004:756::-;34673:1;35265:7;;:19;35257:63;;;;-1:-1:-1;;;35257:63:0;;;;;;;:::i;:::-;34673:1;35396:7;:18;86139:15:::1;::::0;-1:-1:-1;;;86139:15:0;::::1;;;86131:49;;;;-1:-1:-1::0;;;86131:49:0::1;;;;;;;:::i;:::-;86227:12;::::0;:30:::1;::::0;-1:-1:-1;;;86227:30:0;;::::1;::::0;::::1;4715:25:1::0;;;-1:-1:-1;;;;;86227:12:0;;::::1;::::0;:20:::1;::::0;4688:18:1;;86227:30:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;86213:44:0::1;:10;-1:-1:-1::0;;;;;86213:44:0::1;;86191:116;;;;-1:-1:-1::0;;;86191:116:0::1;;;;;;;:::i;:::-;86340:16;86348:7;86340;:16::i;:::-;-1:-1:-1::0;;;;;86326:30:0::1;:10;-1:-1:-1::0;;;;;86326:30:0::1;;86318:67;;;::::0;-1:-1:-1;;;86318:67:0;;27081:2:1;86318:67:0::1;::::0;::::1;27063:21:1::0;27120:2;27100:18;;;27093:30;-1:-1:-1;;;27139:18:1;;;27132:54;27203:18;;86318:67:0::1;26879:348:1::0;86318:67:0::1;86444:8;::::0;86418:22:::1;::::0;;;:12:::1;:22;::::0;;;;;:34:::1;;::::0;:95:::1;;-1:-1:-1::0;86505:8:0::1;::::0;86490:10:::1;86473:28;::::0;;;:16:::1;:28;::::0;;;;;:40:::1;;86418:95;86396:169;;;;-1:-1:-1::0;;;86396:169:0::1;;;;;;;:::i;:::-;86664:8;;86655:6;;:17;86647:42;;;;-1:-1:-1::0;;;86647:42:0::1;;;;;;;:::i;:::-;86700:21;86712:8;86700:11;:21::i;72012:175::-:0;61489:32;36305:10;61489:18;:32::i;:::-;72094:12:::1;:44:::0;;-1:-1:-1;;;;;72094:44:0;;::::1;-1:-1:-1::0;;;;;;72094:44:0;;::::1;::::0;::::1;::::0;;;72149:11:::1;:30:::0;;;;::::1;;::::0;;72012:175::o;13214:475::-;13377:26;;-1:-1:-1;;;;;;27759:2:1;27730:15;;;27726:45;13377:26:0;;;27714:58:1;13329:4:0;;;;27788:12:1;;13377:26:0;;;;;;;;;;;;13367:37;;;;;;13351:53;;13420:9;13415:226;13439:6;:13;13435:1;:17;13415:226;;;13490:6;13497:1;13490:9;;;;;;;;:::i;:::-;;;;;;;13482:5;:17;:147;;13611:6;13618:1;13611:9;;;;;;;;:::i;:::-;;;;;;;13622:5;13594:34;;;;;;;;;:::i;:::-;;;;;;;;;;;;;13584:45;;;;;;13482:147;;;13546:5;13553:6;13560:1;13553:9;;;;;;;;:::i;:::-;;;;;;;13529:34;;;;;;;;;:::i;:::-;;;;;;;;;;;;;13519:45;;;;;;13482:147;13474:155;-1:-1:-1;13454:3:0;;;;:::i;:::-;;;;13415:226;;;-1:-1:-1;13667:14:0;;13658:23;;13214:475;-1:-1:-1;;;13214:475:0:o;94673:208::-;94804:8;65930:42;68124:45;:49;;;;:90;;-1:-1:-1;68190:24:0;;;;68124:90;68106:383;;;68264:128;;-1:-1:-1;;;68264:128:0;;65930:42;;68264;;:128;;68337:4;;68365:8;;68264:128;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68241:237;;68453:8;68434:28;;-1:-1:-1;;;68434:28:0;;;;;;;;:::i;68241:237::-;94830:43:::1;94854:8;94864;94830:23;:43::i;88807:170::-:0;61489:32;36305:10;61489:18;:32::i;:::-;88874:14:::1;88881:7;;88874:14;:::i;:::-;88899:21;88906:14;;88899:21;:::i;:::-;88946:1;88931:12;:16:::0;;;88958:9:::1;:11:::0;;;::::1;::::0;::::1;:::i;76047:117::-:0;61489:32;36305:10;61489:18;:32::i;:::-;76129:19:::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;76129:27:0;;::::1;::::0;;;::::1;::::0;;76047:117::o;92795:103::-;92847:16;92883:7;92876:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92795:103;:::o;95908:117::-;59738:13;:11;:13::i;:::-;95986:31:::1;96006:10;95986:19;:31::i;94545:122::-:0;61489:32;36305:10;61489:18;:32::i;:::-;94627:24:::1;:32:::0;;-1:-1:-1;;94627:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;94545:122::o;76297:121::-;61489:32;36305:10;61489:18;:32::i;:::-;76381:21:::1;:29:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;76381:29:0;;::::1;::::0;;;::::1;::::0;;76297:121::o;95496:239::-;95663:4;65930:42;67222:45;:49;;;;:90;;-1:-1:-1;67288:24:0;;;;67222:90;67204:697;;;67562:10;-1:-1:-1;;;;;67554:18:0;;;67550:85;;95680:47:::1;95703:4;95709:2;95713:7;95722:4;95680:22;:47::i;:::-;67613:7:::0;;67550:85;67672:130;;-1:-1:-1;;;67672:130:0;;65930:42;;67672;;:130;;67745:4;;67773:10;;67672:130;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67649:241;;67863:10;67844:30;;-1:-1:-1;;;67844:30:0;;;;;;;;:::i;67649:241::-;95680:47:::1;95703:4;95709:2;95713:7;95722:4;95680:22;:47::i;:::-;95496:239:::0;;;;;:::o;76841:107::-;61489:32;36305:10;61489:18;:32::i;:::-;76924:9:::1;:16;76936:4:::0;76924:9;:16:::1;:::i;93756:599::-:0;93864:16;93898:18;93936:9;93931:111;93955:7;:14;93951:18;;93931:111;;;94006:7;94014:1;94006:10;;;;;;;;:::i;:::-;;;;;;;;;93995:7;:21;93991:39;;94018:12;;;;:::i;:::-;;;;93991:39;93971:3;;;;:::i;:::-;;;;93931:111;;;;94052:30;94099:10;-1:-1:-1;;;;;94085:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;94085:25:0;;94052:58;;94121:18;94159:9;94154:163;94178:7;:14;94174:18;;94154:163;;;94229:7;94237:1;94229:10;;;;;;;;:::i;:::-;;;;;;;;;94218:7;:21;94214:91;;94288:14;94303:1;94288:17;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;94288:17:0;94258:13;94272:12;;;;:::i;:::-;;;94258:27;;;;;;;;:::i;:::-;;;;;;:47;-1:-1:-1;;;;;94258:47:0;;;-1:-1:-1;;;;;94258:47:0;;;;;94214:91;94194:3;;;;:::i;:::-;;;;94154:163;;71106:26;;;;;;;;;;;;75925:116;61489:32;36305:10;61489:18;:32::i;:::-;76010:15:::1;:23:::0;;-1:-1:-1;;76010:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;75925:116::o;78431:936::-;34673:1;35265:7;;:19;35257:63;;;;-1:-1:-1;;;35257:63:0;;;;;;;:::i;:::-;34673:1;35396:7;:18;78604:15:::1;::::0;::::1;;78596:51;;;::::0;-1:-1:-1;;;78596:51:0;;28265:2:1;78596:51:0::1;::::0;::::1;28247:21:1::0;28304:2;28284:18;;;28277:30;-1:-1:-1;;;28323:18:1;;;28316:53;28386:18;;78596:51:0::1;28063:347:1::0;78596:51:0::1;78680:42;78694:10;78706:7;78715:6;78680:13;:42::i;:::-;78658:116;;;;-1:-1:-1::0;;;78658:116:0::1;;;;;;;:::i;:::-;78803:1;78793:7;:11;78785:39;;;::::0;-1:-1:-1;;;78785:39:0;;28617:2:1;78785:39:0::1;::::0;::::1;28599:21:1::0;28656:2;28636:18;;;28629:30;-1:-1:-1;;;28675:18:1;;;28668:45;28730:18;;78785:39:0::1;28415:339:1::0;78785:39:0::1;78854:7;78843;:18;;78835:71;;;::::0;-1:-1:-1;;;78835:71:0;;28961:2:1;78835:71:0::1;::::0;::::1;28943:21:1::0;29000:2;28980:18;;;28973:30;29039:34;29019:18;;;29012:62;-1:-1:-1;;;29090:18:1;;;29083:38;29138:19;;78835:71:0::1;28759:404:1::0;78835:71:0::1;78960:10;78950:21;::::0;;;:9:::1;:21;::::0;;;;;:31:::1;::::0;78974:7;;78950:31:::1;:::i;:::-;78939:7;:42;;78917:122;;;::::0;-1:-1:-1;;;78917:122:0;;29370:2:1;78917:122:0::1;::::0;::::1;29352:21:1::0;29409:2;29389:18;;;29382:30;29448:32;29428:18;;;29421:60;29498:18;;78917:122:0::1;29168:354:1::0;78917:122:0::1;79173:8;;79154:13;:11;:13::i;:::-;79144:23;::::0;:7;:23:::1;:::i;:::-;79143:39;;79135:64;;;;-1:-1:-1::0;;;79135:64:0::1;;;;;;;:::i;:::-;79248:9;;79229:13;:11;:13::i;:::-;79219:23;::::0;:7;:23:::1;:::i;:::-;79218:40;;79210:65;;;;-1:-1:-1::0;;;79210:65:0::1;;;;;;;:::i;:::-;79296:10;79286:21;::::0;;;:9:::1;:21;::::0;;;;:32;;79311:7;;79286:21;:32:::1;::::0;79311:7;;79286:32:::1;:::i;:::-;::::0;;;-1:-1:-1;79329:30:0::1;::::0;-1:-1:-1;79339:10:0::1;79351:7:::0;79329:9:::1;:30::i;:::-;-1:-1:-1::0;;34629:1:0;35571:7;:22;-1:-1:-1;78431:936:0:o;77562:551::-;77681:13;77720:17;77728:8;77720:7;:17::i;:::-;77712:61;;;;-1:-1:-1;;;77712:61:0;;29729:2:1;77712:61:0;;;29711:21:1;29768:2;29748:18;;;29741:30;29807:33;29787:18;;;29780:61;29858:18;;77712:61:0;29527:355:1;77712:61:0;75268:8;;-1:-1:-1;;;75268:8:0;;;;77784:295;;;77914:17;:15;:17::i;:::-;77958:26;77975:8;77958:16;:26::i;:::-;78011:14;77871:177;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77818:249;;77562:551;;;:::o;77784:295::-;78096:9;78089:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77562:551;;;:::o;89164:171::-;61489:32;36305:10;61489:18;:32::i;:::-;89299:17:::1;::::0;;;:8:::1;:17;::::0;;;;;:28;89164:171::o;91742:378::-;91854:4;91887;91854;91902:190;91926:9;:16;91922:1;:20;91902:190;;;91980:4;-1:-1:-1;;;;;91980:15:0;;91996:9;92006:1;91996:12;;;;;;;;:::i;:::-;;;;;;;91980:29;;;;;;;;;;;;;4715:25:1;;4703:2;4688:18;;4569:177;91980:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;91968:41:0;:8;-1:-1:-1;;;;;91968:41:0;;91964:117;;92036:5;92030:11;;92060:5;;91964:117;91944:3;;;;:::i;:::-;;;;91902:190;;;-1:-1:-1;92109:3:0;91742:378;-1:-1:-1;;;91742:378:0:o;78170:239::-;61489:32;36305:10;61489:18;:32::i;:::-;78335:9:::1;;78316:13;:11;:13::i;:::-;78306:23;::::0;:7;:23:::1;:::i;:::-;78305:40;;78297:65;;;;-1:-1:-1::0;;;78297:65:0::1;;;;;;;:::i;:::-;78373:28;78383:8;78393:7;78373:9;:28::i;85512:160::-:0;61489:32;36305:10;61489:18;:32::i;:::-;85633:16:::1;:31:::0;;;::::1;;-1:-1:-1::0;;;85633:31:0::1;-1:-1:-1::0;;;;85633:31:0;;::::1;::::0;;;::::1;::::0;;85512:160::o;74895:109::-;61489:32;36305:10;61489:18;:32::i;:::-;74974:11:::1;:22:::0;74895:109::o;77257:157::-;61489:32;36305:10;61489:18;:32::i;:::-;77372:14:::1;:34;77389:17:::0;77372:14;:34:::1;:::i;89584:185::-:0;61489:32;36305:10;61489:18;:32::i;:::-;89723:26:::1;::::0;;;:14:::1;:26;::::0;;;;;:38;89584:185::o;72858:115::-;72912:13;72945:20;:18;:20::i;:::-;72938:27;;72858:115;:::o;85875:101::-;61489:32;36305:10;61489:18;:32::i;:::-;85952:6:::1;:16:::0;85875:101::o;86788:1043::-;34673:1;35265:7;;:19;35257:63;;;;-1:-1:-1;;;35257:63:0;;;;;;;:::i;:::-;34673:1;35396:7;:18;86938:15:::1;::::0;-1:-1:-1;;;86938:15:0;::::1;;;86930:49;;;;-1:-1:-1::0;;;86930:49:0::1;;;;;;;:::i;:::-;87026:12;::::0;:30:::1;::::0;-1:-1:-1;;;87026:30:0;;::::1;::::0;::::1;4715:25:1::0;;;-1:-1:-1;;;;;87026:12:0;;::::1;::::0;:20:::1;::::0;4688:18:1;;87026:30:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;87012:44:0::1;:10;-1:-1:-1::0;;;;;87012:44:0::1;;86990:116;;;;-1:-1:-1::0;;;86990:116:0::1;;;;;;;:::i;:::-;87158:21;87168:10;87158:9;:21::i;:::-;87139:8;:15;:40;;87117:109;;;;-1:-1:-1::0;;;87117:109:0::1;;;;;;;:::i;:::-;87245:30;87254:10;87266:8;87245;:30::i;:::-;87237:62;;;;-1:-1:-1::0;;;87237:62:0::1;;;;;;;:::i;:::-;87358:8;::::0;87332:22:::1;::::0;;;:12:::1;:22;::::0;;;;;:34:::1;;::::0;:95:::1;;-1:-1:-1::0;87419:8:0::1;::::0;87404:10:::1;87387:28;::::0;;;:16:::1;:28;::::0;;;;;:40:::1;;87332:95;87310:169;;;;-1:-1:-1::0;;;87310:169:0::1;;;;;;;:::i;:::-;87528:8;:15;87512:12;;:31;:139;;;-1:-1:-1::0;87566:12:0::1;::::0;:17;;:38:::1;;;87587:12;;87603:1;87587:17;87566:38;87565:85;;;;;87630:8;:15;87649:1;87630:20;87565:85;87490:206;;;;-1:-1:-1::0;;;87490:206:0::1;;;;;;;:::i;:::-;87724:8;;87715:6;;:17;87707:42;;;;-1:-1:-1::0;;;87707:42:0::1;;;;;;;:::i;:::-;87760:21;87772:8;87760:11;:21::i;60750:238::-:0;59738:13;:11;:13::i;:::-;-1:-1:-1;;;;;60853:22:0;::::1;60831:110;;;::::0;-1:-1:-1;;;60831:110:0;;31350:2:1;60831:110:0::1;::::0;::::1;31332:21:1::0;31389:2;31369:18;;;31362:30;31428:34;31408:18;;;31401:62;-1:-1:-1;;;31479:18:1;;;31472:36;31525:19;;60831:110:0::1;31148:402:1::0;60831:110:0::1;60952:28;60971:8;60952:18;:28::i;85082:158::-:0;61489:32;36305:10;61489:18;:32::i;:::-;85202:15:::1;:30:::0;;;::::1;;-1:-1:-1::0;;;85202:30:0::1;-1:-1:-1::0;;;;85202:30:0;;::::1;::::0;;;::::1;::::0;;85082:158::o;12578:501::-;12759:35;;-1:-1:-1;;;;;;31757:2:1;31728:15;;;31724:45;12759:35:0;;;31712:58:1;31786:12;;;31779:28;;;12716:4:0;;;;31823:12:1;;12759:35:0;;;;;;;;;;;;12749:46;;;;;;12733:62;;12811:9;12806:226;12830:6;:13;12826:1;:17;12806:226;;;12881:6;12888:1;12881:9;;;;;;;;:::i;:::-;;;;;;;12873:5;:17;:147;;13002:6;13009:1;13002:9;;;;;;;;:::i;:::-;;;;;;;13013:5;12985:34;;;;;;;;;:::i;:::-;;;;;;;;;;;;;12975:45;;;;;;12873:147;;;12937:5;12944:6;12951:1;12944:9;;;;;;;;:::i;:::-;;;;;;;12920:34;;;;;;;;;:::i;:::-;;;;;;;;;;;;;12910:45;;;;;;12873:147;12865:155;-1:-1:-1;12845:3:0;;;;:::i;:::-;;;;12806:226;;;-1:-1:-1;13058:13:0;;13049:22;;12578:501;-1:-1:-1;;;;12578:501:0:o;11531:483::-;11633:13;11664:19;11696:10;11700:6;11696:1;:10;:::i;:::-;:14;;11709:1;11696:14;:::i;:::-;-1:-1:-1;;;;;11686:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11686:25:0;;11664:47;;-1:-1:-1;;;11722:6:0;11729:1;11722:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;11722:15:0;;;;;;;;;-1:-1:-1;;;11748:6:0;11755:1;11748:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;11748:15:0;;;;;;;;-1:-1:-1;11779:9:0;11791:10;11795:6;11791:1;:10;:::i;:::-;:14;;11804:1;11791:14;:::i;:::-;11779:26;;11774:135;11811:1;11807;:5;11774:135;;;-1:-1:-1;;;11859:5:0;11867:3;11859:11;11846:25;;;;;;;:::i;:::-;;;;11834:6;11841:1;11834:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;11834:37:0;;;;;;;;-1:-1:-1;11896:1:0;11886:11;;;;;11814:3;;;:::i;:::-;;;11774:135;;;-1:-1:-1;11927:10:0;;11919:55;;;;-1:-1:-1;;;11919:55:0;;32189:2:1;11919:55:0;;;32171:21:1;;;32208:18;;;32201:30;32267:34;32247:18;;;32240:62;32319:18;;11919:55:0;31987:356:1;11919:55:0;11999:6;11531:483;-1:-1:-1;;;11531:483:0:o;29955:291::-;30102:4;-1:-1:-1;;;;;;30144:41:0;;-1:-1:-1;;;30144:41:0;;:94;;;30202:36;30226:11;30202:23;:36::i;62246:370::-;-1:-1:-1;;;;;62340:21:0;;;;;;:10;:21;;;;;;;;62473:46;36305:10;62501:12;-1:-1:-1;;;;;62473:46:0;62516:2;62473:19;:46::i;:::-;62401:181;;;;;;;;:::i;:::-;;;;;;;;;;;;;62318:290;;;;;-1:-1:-1;;;62318:290:0;;;;;;;;:::i;31444:390::-;31162:5;-1:-1:-1;;;;;31584:33:0;;;;31562:125;;;;-1:-1:-1;;;31562:125:0;;33166:2:1;31562:125:0;;;33148:21:1;33205:2;33185:18;;;33178:30;33244:34;33224:18;;;33217:62;-1:-1:-1;;;33295:18:1;;;33288:40;33345:19;;31562:125:0;32964:406:1;31562:125:0;-1:-1:-1;;;;;31706:22:0;;31698:60;;;;-1:-1:-1;;;31698:60:0;;33577:2:1;31698:60:0;;;33559:21:1;33616:2;33596:18;;;33589:30;-1:-1:-1;;;33635:18:1;;;33628:55;33700:18;;31698:60:0;33375:349:1;31698:60:0;31791:35;;;;;;;;;-1:-1:-1;;;;;31791:35:0;;;;;;-1:-1:-1;;;;;31791:35:0;;;;;;;;;;-1:-1:-1;;;31769:57:0;;;;:19;:57;31444:390::o;46197:213::-;46254:4;46310:7;72313:1;46291:26;;:66;;;;;46344:13;;46334:7;:23;46291:66;:111;;;;-1:-1:-1;;46375:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;46375:27:0;;;;46374:28;;46197:213::o;43619:398::-;43700:13;43716:24;43732:7;43716:15;:24::i;:::-;43700:40;;43761:5;-1:-1:-1;;;;;43755:11:0;:2;-1:-1:-1;;;;;43755:11:0;;43751:48;;43775:24;;-1:-1:-1;;;43775:24:0;;;;;;;;;;;43751:48;36305:10;-1:-1:-1;;;;;43814:21:0;;;43810:161;;43855:37;43872:5;36305:10;44780:214;:::i;43855:37::-;43850:121;;43920:35;;-1:-1:-1;;;43920:35:0;;;;;;;;;;;43850:121;43981:28;43990:2;43994:7;44003:5;43981:8;:28::i;92584:205::-;92648:7;:21;;;;;;;;;;;;;;92680:14;:31;;;;;;;;;;;-1:-1:-1;;;;;;92680:31:0;92700:10;92680:31;;;92735:9;;-1:-1:-1;92722:23:0;;;:12;92648:21;92722:23;;;;;;;:32;;;;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;;92767:12:0;:14;;;:12;:14;;;:::i;:::-;;;;;;92584:205;:::o;92144:434::-;92332:17;92369:9;92364:207;92388:8;:15;92384:1;:19;92364:207;;;92441:4;-1:-1:-1;;;;;92441:15:0;;92457:8;92466:1;92457:11;;;;;;;;:::i;:::-;;;;;;;92441:28;;;;;;;;;;;;;4715:25:1;;4703:2;4688:18;;4569:177;92441:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;92429:40:0;:8;-1:-1:-1;;;;;92429:40:0;;92425:135;;92490:24;92496:8;92505:1;92496:11;;;;;;;;:::i;:::-;;;;;;;92509:4;92490:5;:24::i;:::-;92533:11;;;;:::i;:::-;;;;92425:135;92405:3;;;;:::i;:::-;;;;92364:207;;46492:104;46561:27;46571:2;46575:8;46561:27;;;;;;;;;;;;:9;:27::i;45059:170::-;45193:28;45203:4;45209:2;45213:7;45193:9;:28::i;60013:132::-;36305:10;60077:7;:5;:7::i;:::-;-1:-1:-1;;;;;60077:23:0;;60069:68;;;;-1:-1:-1;;;60069:68:0;;33931:2:1;60069:68:0;;;33913:21:1;;;33950:18;;;33943:30;34009:34;33989:18;;;33982:62;34061:18;;60069:68:0;33729:356:1;61666:421:0;-1:-1:-1;;;;;61757:22:0;;;;;;:10;:22;;;;;;;;61756:23;61891:46;36305:10;61919:12;36225:98;61891:46;61819:194;;;;;;;;:::i;:::-;;;;;;;;;;;;;61734:305;;;;;-1:-1:-1;;;61734:305:0;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;62050:22:0;;;;;:10;:22;;;;;:29;;-1:-1:-1;;62050:29:0;62075:4;62050:29;;;61666:421::o;45298:185::-;45436:39;45453:4;45459:2;45463:7;45436:39;;;;;;;;;;;;:16;:39::i;53071:2388::-;53151:35;53189:21;53202:7;53189:12;:21::i;:::-;53236:18;;53151:59;;-1:-1:-1;53265:288:0;;;;53299:22;36305:10;-1:-1:-1;;;;;53325:20:0;;;;:77;;-1:-1:-1;53366:36:0;53383:4;36305:10;44780:214;:::i;53366:36::-;53325:134;;;-1:-1:-1;36305:10:0;53423:20;53435:7;53423:11;:20::i;:::-;-1:-1:-1;;;;;53423:36:0;;53325:134;53299:161;;53480:17;53475:66;;53506:35;;-1:-1:-1;;;53506:35:0;;;;;;;;;;;53475:66;53284:269;53265:288;53677:35;53694:1;53698:7;53707:4;53677:8;:35::i;:::-;-1:-1:-1;;;;;54040:18:0;;;54006:31;54040:18;;;:12;:18;;;;;;;;54073:24;;-1:-1:-1;;;;;;;;;;54073:24:0;;;;;;;;;-1:-1:-1;;;;;;54073:24:0;;;;54112:29;;;;;54096:1;54112:29;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;54112:29:0;;;;;;;;;;54272:20;;;:11;:20;;;;;;54307;;-1:-1:-1;;;;54375:15:0;54342:49;;;-1:-1:-1;;;54342:49:0;-1:-1:-1;;;;;;54342:49:0;;;;;;;;;;54406:22;-1:-1:-1;;;54406:22:0;;;54696:11;;;54756:24;;;;;54799:13;;54040:18;;54756:24;;54799:13;54795:384;;55009:13;;54994:11;:28;54990:174;;55047:20;;55116:28;;;;-1:-1:-1;;;;;55090:54:0;-1:-1:-1;;;55090:54:0;-1:-1:-1;;;;;;55090:54:0;;;-1:-1:-1;;;;;55047:20:0;;55090:54;;;;54990:174;-1:-1:-1;;55205:35:0;;55232:7;;-1:-1:-1;55228:1:0;;-1:-1:-1;;;;;;55205:35:0;;;-1:-1:-1;;;;;;;;;;;55205:35:0;55228:1;;55205:35;-1:-1:-1;;55426:12:0;:14;;;;;;-1:-1:-1;;53071:2388:0:o;40986:1230::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;41129:7:0;;72313:1;41176:23;41172:977;;41229:13;;41222:4;:20;41218:931;;;41267:31;41301:17;;;:11;:17;;;;;;;;;41267:51;;;;;;;;;-1:-1:-1;;;;;41267:51:0;;;;-1:-1:-1;;;41267:51:0;;-1:-1:-1;;;;;41267:51:0;;;;;;;;-1:-1:-1;;;41267:51:0;;;;;;;;;;;;;;41341:789;;41395:14;;-1:-1:-1;;;;;41395:28:0;;41391:109;;41463:9;40986:1230;-1:-1:-1;;;40986:1230:0:o;41391:109::-;-1:-1:-1;;;41866:6:0;41915:17;;;;:11;:17;;;;;;;;;41903:29;;;;;;;;;-1:-1:-1;;;;;41903:29:0;;;;;-1:-1:-1;;;41903:29:0;;-1:-1:-1;;;;;41903:29:0;;;;;;;;-1:-1:-1;;;41903:29:0;;;;;;;;;;;;;41967:28;41963:117;;42039:9;40986:1230;-1:-1:-1;;;40986:1230:0:o;41963:117::-;41822:285;;;41244:905;41218:931;42177:31;;-1:-1:-1;;;42177:31:0;;;;;;;;;;;61146:191;61220:16;61239:6;;-1:-1:-1;;;;;61256:17:0;;;-1:-1:-1;;;;;;61256:17:0;;;;;;61289:40;;61239:6;;;;;;;61289:40;;61220:16;61289:40;61209:128;61146:191;:::o;88400:258::-;88475:9;88470:181;88494:9;:16;88490:20;;88470:181;;;88548:9;88558:1;88548:12;;;;;;;;:::i;:::-;;;;;;;;;88536:8;:24;88532:108;;88588:9;88598:1;88588:12;;;;;;;;:::i;:::-;;;;;;;;;88581:19;72386:193;;:::o;88532:108::-;88512:3;;;;:::i;:::-;;;;88470:181;;88180:214;88247:9;:24;;;;;;;;;;;;;88313:8;;88299:10;-1:-1:-1;88282:28:0;;;:16;88247:24;88282:28;;;;;;;:39;;;88332:22;;;:12;:22;;;;;:33;;;;88376:8;:10;;;;;;:::i;44394:317::-;36305:10;-1:-1:-1;;;;;44525:24:0;;;44521:54;;44558:17;;-1:-1:-1;;;44558:17:0;;;;;;;;;;;44521:54;36305:10;44586:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44586:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44586:53:0;;;;;;;;;;44655:48;;540:41:1;;;44586:42:0;;36305:10;44655:48;;513:18:1;44655:48:0;;;;;;;44394:317;;:::o;62093:147::-;62162:30;62181:10;62162:18;:30::i;:::-;-1:-1:-1;;;;;62210:22:0;;;;;:10;:22;;;;;62203:29;;-1:-1:-1;;62203:29:0;;;62093:147::o;45552:392::-;45719:28;45729:4;45735:2;45739:7;45719:9;:28::i;:::-;45762:15;:2;-1:-1:-1;;;;;45762:13:0;;:15::i;:::-;45758:179;;;45797:56;45828:4;45834:2;45838:7;45847:5;45797:30;:56::i;:::-;45792:145;;45881:40;;-1:-1:-1;;;45881:40:0;;;;;;;;;;;77452:104;77502:13;77535;77528:20;;;;;:::i;10236:721::-;10292:13;10511:5;10520:1;10511:10;10507:53;;-1:-1:-1;;10538:10:0;;;;;;;;;;;;-1:-1:-1;;;10538:10:0;;;;;10236:721::o;10507:53::-;10585:5;10570:12;10626:78;10633:9;;10626:78;;10659:8;;;;:::i;:::-;;-1:-1:-1;10682:10:0;;-1:-1:-1;10690:2:0;10682:10;;:::i;:::-;;;10626:78;;;10714:19;10746:6;-1:-1:-1;;;;;10736:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10736:17:0;;10714:39;;10764:154;10771:10;;10764:154;;10798:11;10808:1;10798:11;;:::i;:::-;;-1:-1:-1;10867:10:0;10875:2;10867:5;:10;:::i;:::-;10854:24;;:2;:24;:::i;:::-;10841:39;;10824:6;10831;10824:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10824:56:0;;;;;;;;-1:-1:-1;10895:11:0;10904:2;10895:11;;:::i;:::-;;;10764:154;;;10942:6;10236:721;-1:-1:-1;;;;10236:721:0:o;73003:993::-;73056:13;73083:16;;73128:70;73083:16;31162:5;73128:11;:70::i;:::-;73082:116;;;;73359:595;73550:33;73567:15;73550:16;:33::i;:::-;73674:160;73748:8;-1:-1:-1;;;;;73732:26:0;73797:2;73674:19;:160::i;:::-;73435:469;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73359:13;:595::i;:::-;73266:707;;;;;;;;:::i;:::-;;;;;;;;;;;;;73221:767;;;;73003:993;:::o;39198:355::-;39345:4;-1:-1:-1;;;;;;39387:40:0;;-1:-1:-1;;;39387:40:0;;:105;;-1:-1:-1;;;;;;;39444:48:0;;-1:-1:-1;;;39444:48:0;39387:105;:158;;;-1:-1:-1;;;;;;;;;;27763:40:0;;;39509:36;27604:207;55575:196;55690:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;55690:29:0;-1:-1:-1;;;;;55690:29:0;;;;;;;;;55735:28;;55690:24;;55735:28;;;;;;;55575:196;;;:::o;46967:1930::-;47113:13;;-1:-1:-1;;;;;47141:16:0;;47137:48;;47166:19;;-1:-1:-1;;;47166:19:0;;;;;;;;;;;47137:48;47200:8;47212:1;47200:13;47196:44;;47222:18;;-1:-1:-1;;;47222:18:0;;;;;;;;;;;47196:44;-1:-1:-1;;;;;47587:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;47646:49:0;;-1:-1:-1;;;;;47587:44:0;;;;;;;47646:49;;;-1:-1:-1;;;;;;;;;47587:44:0;;;;;;47646:49;;;;;;;;;;;;;;;;47710:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;47760:66:0;;;-1:-1:-1;;;47810:15:0;47760:66;;;;;;;;;;;;;47710:25;;47905:23;;;;47947:15;;:13;:15::i;:::-;47943:822;;;47983:504;48014:38;;48039:12;;-1:-1:-1;;;;;48014:38:0;;;48031:1;;-1:-1:-1;;;;;;;;;;;48014:38:0;48031:1;;48014:38;48106:212;48175:1;48208:2;48241:14;;;;;;48286:5;48106:30;:212::i;:::-;48075:365;;48376:40;;-1:-1:-1;;;48376:40:0;;;;;;;;;;;48075:365;48482:3;48467:12;:18;47983:504;;48568:12;48551:13;;:29;48547:43;;48582:8;;;48547:43;47943:822;;;48631:119;48662:40;;48687:14;;;;;-1:-1:-1;;;;;48662:40:0;;;48679:1;;-1:-1:-1;;;;;;;;;;;48662:40:0;48679:1;;48662:40;48745:3;48730:12;:18;48631:119;;47943:822;-1:-1:-1;48779:13:0;:28;48829:60;48858:1;48862:2;48866:12;48880:8;48829:60;:::i;50567:2112::-;50682:35;50720:21;50733:7;50720:12;:21::i;:::-;50682:59;;50778:4;-1:-1:-1;;;;;50756:26:0;:13;:18;;;-1:-1:-1;;;;;50756:26:0;;50752:67;;50791:28;;-1:-1:-1;;;50791:28:0;;;;;;;;;;;50752:67;50830:22;36305:10;-1:-1:-1;;;;;50856:20:0;;;;:73;;-1:-1:-1;50893:36:0;50910:4;36305:10;44780:214;:::i;50893:36::-;50856:126;;;-1:-1:-1;36305:10:0;50946:20;50958:7;50946:11;:20::i;:::-;-1:-1:-1;;;;;50946:36:0;;50856:126;50830:153;;50999:17;50994:66;;51025:35;;-1:-1:-1;;;51025:35:0;;;;;;;;;;;50994:66;-1:-1:-1;;;;;51075:16:0;;51071:52;;51100:23;;-1:-1:-1;;;51100:23:0;;;;;;;;;;;51071:52;51240:35;51257:1;51261:7;51270:4;51240:8;:35::i;:::-;-1:-1:-1;;;;;51569:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;51569:31:0;;;-1:-1:-1;;;;;51569:31:0;;;-1:-1:-1;;51569:31:0;;;;;;;51615:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;51615:29:0;;;;;;;;;;;51693:20;;;:11;:20;;;;;;51728:18;;-1:-1:-1;;;;;;51761:49:0;;;;-1:-1:-1;;;51794:15:0;51761:49;;;;;;;;;;52082:11;;52142:24;;;;;52185:13;;51693:20;;52142:24;;52185:13;52181:384;;52395:13;;52380:11;:28;52376:174;;52433:20;;52502:28;;;;-1:-1:-1;;;;;52476:54:0;-1:-1:-1;;;52476:54:0;-1:-1:-1;;;;;;52476:54:0;;;-1:-1:-1;;;;;52433:20:0;;52476:54;;;;52376:174;51544:1032;;;52610:7;52606:2;-1:-1:-1;;;;;52591:27:0;52600:4;-1:-1:-1;;;;;52591:27:0;-1:-1:-1;;;;;;;;;;;52591:27:0;;;;;;;;;52629:42;95082:197;1136:324;-1:-1:-1;;;;;1429:19:0;;:23;;;1136:324::o;56261:772::-;56458:155;;-1:-1:-1;;;56458:155:0;;56424:4;;-1:-1:-1;;;;;56458:36:0;;;;;:155;;36305:10;;56544:4;;56567:7;;56593:5;;56458:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56458:155:0;;;;;;;;-1:-1:-1;;56458:155:0;;;;;;;;;;;;:::i;:::-;;;56441:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56784:6;:13;56801:1;56784:18;56780:235;;56830:40;;-1:-1:-1;;;56830:40:0;;;;;;;;;;;56780:235;56973:6;56967:13;56958:6;56954:2;56950:15;56943:38;56441:585;-1:-1:-1;;;;;;56669:55:0;-1:-1:-1;;;56669:55:0;;-1:-1:-1;56261:772:0;;;;;;:::o;14188:3254::-;14246:13;14483:4;:11;14498:1;14483:16;14479:31;;-1:-1:-1;;14501:9:0;;;;;;;;;-1:-1:-1;14501:9:0;;;14188:3254::o;14479:31::-;14561:19;14583:6;;;;;;;;;;;;;;;;;14561:28;;14998:20;15057:1;15038:4;:11;15052:1;15038:15;;;;:::i;:::-;15037:21;;;;:::i;:::-;15032:27;;:1;:27;:::i;:::-;-1:-1:-1;;;;;15021:39:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15021:39:0;;14998:62;;15238:1;15231:5;15227:13;15340:2;15332:6;15328:15;15449:4;15501;15495:11;15489:4;15485:22;15411:1603;15535:6;15526:7;15523:19;15411:1603;;;15639:1;15630:7;15626:15;15615:26;;15678:7;15672:14;16370:4;16362:5;16358:2;16354:14;16350:25;16340:8;16336:40;16330:47;16298:9;16268:128;16442:1;16431:9;16427:17;16414:30;;16575:4;16567:5;16563:2;16559:14;16555:25;16545:8;16541:40;16535:47;16503:9;16473:128;16647:1;16636:9;16632:17;16619:30;;16779:4;16771:5;16768:1;16764:13;16760:24;16750:8;16746:39;16740:46;16708:9;16678:127;16851:1;16840:9;16836:17;16823:30;;16932:4;16925:5;16921:16;16911:8;16907:31;16901:38;16890:9;16882:58;;16986:1;16975:9;16971:17;16958:30;;15411:1603;;;15415:107;;17174:1;17167:4;17161:11;17157:19;17195:1;17190:123;;;;17332:1;17327:73;;;;17150:250;;17190:123;17243:4;17239:1;17228:9;17224:17;17216:32;17293:4;17289:1;17278:9;17274:17;17266:32;17190:123;;17327:73;17380:4;17376:1;17365:9;17361:17;17353:32;17150:250;-1:-1:-1;17428:6:0;;14188:3254;-1:-1:-1;;;;;14188:3254:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:131::-;-1:-1:-1;;;;;667:31:1;;657:42;;647:70;;713:1;710;703:12;728:427;795:6;803;856:2;844:9;835:7;831:23;827:32;824:52;;;872:1;869;862:12;824:52;911:9;898:23;930:31;955:5;930:31;:::i;:::-;980:5;-1:-1:-1;1037:2:1;1022:18;;1009:32;-1:-1:-1;;;;;1072:32:1;;1060:45;;1050:73;;1119:1;1116;1109:12;1050:73;1142:7;1132:17;;;728:427;;;;;:::o;1160:203::-;-1:-1:-1;;;;;1324:32:1;;;;1306:51;;1294:2;1279:18;;1160:203::o;1368:250::-;1453:1;1463:113;1477:6;1474:1;1471:13;1463:113;;;1553:11;;;1547:18;1534:11;;;1527:39;1499:2;1492:10;1463:113;;;-1:-1:-1;;1610:1:1;1592:16;;1585:27;1368:250::o;1623:271::-;1665:3;1703:5;1697:12;1730:6;1725:3;1718:19;1746:76;1815:6;1808:4;1803:3;1799:14;1792:4;1785:5;1781:16;1746:76;:::i;:::-;1876:2;1855:15;-1:-1:-1;;1851:29:1;1842:39;;;;1883:4;1838:50;;1623:271;-1:-1:-1;;1623:271:1:o;1899:220::-;2048:2;2037:9;2030:21;2011:4;2068:45;2109:2;2098:9;2094:18;2086:6;2068:45;:::i;2124:180::-;2183:6;2236:2;2224:9;2215:7;2211:23;2207:32;2204:52;;;2252:1;2249;2242:12;2204:52;-1:-1:-1;2275:23:1;;2124:180;-1:-1:-1;2124:180:1:o;2309:315::-;2377:6;2385;2438:2;2426:9;2417:7;2413:23;2409:32;2406:52;;;2454:1;2451;2444:12;2406:52;2493:9;2480:23;2512:31;2537:5;2512:31;:::i;:::-;2562:5;2614:2;2599:18;;;;2586:32;;-1:-1:-1;;;2309:315:1:o;2629:127::-;2690:10;2685:3;2681:20;2678:1;2671:31;2721:4;2718:1;2711:15;2745:4;2742:1;2735:15;2761:275;2832:2;2826:9;2897:2;2878:13;;-1:-1:-1;;2874:27:1;2862:40;;-1:-1:-1;;;;;2917:34:1;;2953:22;;;2914:62;2911:88;;;2979:18;;:::i;:::-;3015:2;3008:22;2761:275;;-1:-1:-1;2761:275:1:o;3041:183::-;3101:4;-1:-1:-1;;;;;3123:30:1;;3120:56;;;3156:18;;:::i;:::-;-1:-1:-1;3201:1:1;3197:14;3213:4;3193:25;;3041:183::o;3229:662::-;3283:5;3336:3;3329:4;3321:6;3317:17;3313:27;3303:55;;3354:1;3351;3344:12;3303:55;3390:6;3377:20;3416:4;3440:60;3456:43;3496:2;3456:43;:::i;:::-;3440:60;:::i;:::-;3534:15;;;3620:1;3616:10;;;;3604:23;;3600:32;;;3565:12;;;;3644:15;;;3641:35;;;3672:1;3669;3662:12;3641:35;3708:2;3700:6;3696:15;3720:142;3736:6;3731:3;3728:15;3720:142;;;3802:17;;3790:30;;3840:12;;;;3753;;3720:142;;;-1:-1:-1;3880:5:1;3229:662;-1:-1:-1;;;;;;3229:662:1:o;3896:416::-;3989:6;3997;4050:2;4038:9;4029:7;4025:23;4021:32;4018:52;;;4066:1;4063;4056:12;4018:52;4089:23;;;-1:-1:-1;4163:2:1;4148:18;;4135:32;-1:-1:-1;;;;;4179:30:1;;4176:50;;;4222:1;4219;4212:12;4176:50;4245:61;4298:7;4289:6;4278:9;4274:22;4245:61;:::i;:::-;4235:71;;;3896:416;;;;;:::o;4317:247::-;4376:6;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4484:9;4471:23;4503:31;4528:5;4503:31;:::i;4936:248::-;5004:6;5012;5065:2;5053:9;5044:7;5040:23;5036:32;5033:52;;;5081:1;5078;5071:12;5033:52;-1:-1:-1;;5104:23:1;;;5174:2;5159:18;;;5146:32;;-1:-1:-1;4936:248:1:o;5189:456::-;5266:6;5274;5282;5335:2;5323:9;5314:7;5310:23;5306:32;5303:52;;;5351:1;5348;5341:12;5303:52;5390:9;5377:23;5409:31;5434:5;5409:31;:::i;:::-;5459:5;-1:-1:-1;5516:2:1;5501:18;;5488:32;5529:33;5488:32;5529:33;:::i;:::-;5189:456;;5581:7;;-1:-1:-1;;;5635:2:1;5620:18;;;;5607:32;;5189:456::o;5650:118::-;5736:5;5729:13;5722:21;5715:5;5712:32;5702:60;;5758:1;5755;5748:12;5773:241;5829:6;5882:2;5870:9;5861:7;5857:23;5853:32;5850:52;;;5898:1;5895;5888:12;5850:52;5937:9;5924:23;5956:28;5978:5;5956:28;:::i;6298:632::-;6469:2;6521:21;;;6591:13;;6494:18;;;6613:22;;;6440:4;;6469:2;6692:15;;;;6666:2;6651:18;;;6440:4;6735:169;6749:6;6746:1;6743:13;6735:169;;;6810:13;;6798:26;;6879:15;;;;6844:12;;;;6771:1;6764:9;6735:169;;;-1:-1:-1;6921:3:1;;6298:632;-1:-1:-1;;;;;;6298:632:1:o;7596:187::-;7645:4;-1:-1:-1;;;;;7667:30:1;;7664:56;;;7700:18;;:::i;:::-;-1:-1:-1;7766:2:1;7745:15;-1:-1:-1;;7741:29:1;7772:4;7737:40;;7596:187::o;7788:338::-;7853:5;7882:53;7898:36;7927:6;7898:36;:::i;7882:53::-;7873:62;;7958:6;7951:5;7944:21;7998:3;7989:6;7984:3;7980:16;7977:25;7974:45;;;8015:1;8012;8005:12;7974:45;8064:6;8059:3;8052:4;8045:5;8041:16;8028:43;8118:1;8111:4;8102:6;8095:5;8091:18;8087:29;8080:40;7788:338;;;;;:::o;8131:451::-;8200:6;8253:2;8241:9;8232:7;8228:23;8224:32;8221:52;;;8269:1;8266;8259:12;8221:52;8296:23;;-1:-1:-1;;;;;8331:30:1;;8328:50;;;8374:1;8371;8364:12;8328:50;8397:22;;8450:4;8442:13;;8438:27;-1:-1:-1;8428:55:1;;8479:1;8476;8469:12;8428:55;8502:74;8568:7;8563:2;8550:16;8545:2;8541;8537:11;8502:74;:::i;8587:658::-;8758:2;8810:21;;;8880:13;;8783:18;;;8902:22;;;8729:4;;8758:2;8981:15;;;;8955:2;8940:18;;;8729:4;9024:195;9038:6;9035:1;9032:13;9024:195;;;9103:13;;-1:-1:-1;;;;;9099:39:1;9087:52;;9194:15;;;;9159:12;;;;9135:1;9053:9;9024:195;;9250:483;9343:6;9351;9404:2;9392:9;9383:7;9379:23;9375:32;9372:52;;;9420:1;9417;9410:12;9372:52;9459:9;9446:23;9478:31;9503:5;9478:31;:::i;:::-;9528:5;-1:-1:-1;9584:2:1;9569:18;;9556:32;-1:-1:-1;;;;;9600:30:1;;9597:50;;;9643:1;9640;9633:12;9738:382;9803:6;9811;9864:2;9852:9;9843:7;9839:23;9835:32;9832:52;;;9880:1;9877;9870:12;9832:52;9919:9;9906:23;9938:31;9963:5;9938:31;:::i;:::-;9988:5;-1:-1:-1;10045:2:1;10030:18;;10017:32;10058:30;10017:32;10058:30;:::i;10125:795::-;10220:6;10228;10236;10244;10297:3;10285:9;10276:7;10272:23;10268:33;10265:53;;;10314:1;10311;10304:12;10265:53;10353:9;10340:23;10372:31;10397:5;10372:31;:::i;:::-;10422:5;-1:-1:-1;10479:2:1;10464:18;;10451:32;10492:33;10451:32;10492:33;:::i;:::-;10544:7;-1:-1:-1;10598:2:1;10583:18;;10570:32;;-1:-1:-1;10653:2:1;10638:18;;10625:32;-1:-1:-1;;;;;10669:30:1;;10666:50;;;10712:1;10709;10702:12;10666:50;10735:22;;10788:4;10780:13;;10776:27;-1:-1:-1;10766:55:1;;10817:1;10814;10807:12;10766:55;10840:74;10906:7;10901:2;10888:16;10883:2;10879;10875:11;10840:74;:::i;:::-;10830:84;;;10125:795;;;;;;;:::o;10925:484::-;11027:6;11035;11043;11096:2;11084:9;11075:7;11071:23;11067:32;11064:52;;;11112:1;11109;11102:12;11064:52;11135:23;;;-1:-1:-1;11205:2:1;11190:18;;11177:32;;-1:-1:-1;11260:2:1;11245:18;;11232:32;-1:-1:-1;;;;;11276:30:1;;11273:50;;;11319:1;11316;11309:12;11273:50;11342:61;11395:7;11386:6;11375:9;11371:22;11342:61;:::i;:::-;11332:71;;;10925:484;;;;;:::o;11902:315::-;11970:6;11978;12031:2;12019:9;12010:7;12006:23;12002:32;11999:52;;;12047:1;12044;12037:12;11999:52;12083:9;12070:23;12060:33;;12143:2;12132:9;12128:18;12115:32;12156:31;12181:5;12156:31;:::i;12222:388::-;12290:6;12298;12351:2;12339:9;12330:7;12326:23;12322:32;12319:52;;;12367:1;12364;12357:12;12319:52;12406:9;12393:23;12425:31;12450:5;12425:31;:::i;:::-;12475:5;-1:-1:-1;12532:2:1;12517:18;;12504:32;12545:33;12504:32;12545:33;:::i;12615:551::-;12717:6;12725;12733;12786:2;12774:9;12765:7;12761:23;12757:32;12754:52;;;12802:1;12799;12792:12;12754:52;12841:9;12828:23;12860:31;12885:5;12860:31;:::i;:::-;12910:5;-1:-1:-1;12962:2:1;12947:18;;12934:32;;-1:-1:-1;13017:2:1;13002:18;;12989:32;-1:-1:-1;;;;;13033:30:1;;13030:50;;;13076:1;13073;13066:12;13171:380;13250:1;13246:12;;;;13293;;;13314:61;;13368:4;13360:6;13356:17;13346:27;;13314:61;13421:2;13413:6;13410:14;13390:18;13387:38;13384:161;;13467:10;13462:3;13458:20;13455:1;13448:31;13502:4;13499:1;13492:15;13530:4;13527:1;13520:15;13384:161;;13171:380;;;:::o;13556:304::-;-1:-1:-1;;;;;13786:15:1;;;13768:34;;13838:15;;13833:2;13818:18;;13811:43;13718:2;13703:18;;13556:304::o;13865:245::-;13932:6;13985:2;13973:9;13964:7;13960:23;13956:32;13953:52;;;14001:1;13998;13991:12;13953:52;14033:9;14027:16;14052:28;14074:5;14052:28;:::i;14115:355::-;14317:2;14299:21;;;14356:2;14336:18;;;14329:30;14395:33;14390:2;14375:18;;14368:61;14461:2;14446:18;;14115:355::o;14475:346::-;14677:2;14659:21;;;14716:2;14696:18;;;14689:30;-1:-1:-1;;;14750:2:1;14735:18;;14728:52;14812:2;14797:18;;14475:346::o;14826:336::-;15028:2;15010:21;;;15067:2;15047:18;;;15040:30;-1:-1:-1;;;15101:2:1;15086:18;;15079:42;15153:2;15138:18;;14826:336::o;15167:343::-;15369:2;15351:21;;;15408:2;15388:18;;;15381:30;-1:-1:-1;;;15442:2:1;15427:18;;15420:49;15501:2;15486:18;;15167:343::o;15515:335::-;15717:2;15699:21;;;15756:2;15736:18;;;15729:30;-1:-1:-1;;;15790:2:1;15775:18;;15768:41;15841:2;15826:18;;15515:335::o;15855:184::-;15925:6;15978:2;15966:9;15957:7;15953:23;15949:32;15946:52;;;15994:1;15991;15984:12;15946:52;-1:-1:-1;16017:16:1;;15855:184;-1:-1:-1;15855:184:1:o;16044:345::-;16246:2;16228:21;;;16285:2;16265:18;;;16258:30;-1:-1:-1;;;16319:2:1;16304:18;;16297:51;16380:2;16365:18;;16044:345::o;16394:343::-;16596:2;16578:21;;;16635:2;16615:18;;;16608:30;-1:-1:-1;;;16669:2:1;16654:18;;16647:49;16728:2;16713:18;;16394:343::o;16742:341::-;16944:2;16926:21;;;16983:2;16963:18;;;16956:30;-1:-1:-1;;;17017:2:1;17002:18;;16995:47;17074:2;17059:18;;16742:341::o;17439:401::-;17641:2;17623:21;;;17680:2;17660:18;;;17653:30;17719:34;17714:2;17699:18;;17692:62;-1:-1:-1;;;17785:2:1;17770:18;;17763:35;17830:3;17815:19;;17439:401::o;17845:127::-;17906:10;17901:3;17897:20;17894:1;17887:31;17937:4;17934:1;17927:15;17961:4;17958:1;17951:15;17977:125;18042:9;;;18063:10;;;18060:36;;;18076:18;;:::i;18107:351::-;18309:2;18291:21;;;18348:2;18328:18;;;18321:30;-1:-1:-1;;;18382:2:1;18367:18;;18360:57;18449:2;18434:18;;18107:351::o;18463:168::-;18536:9;;;18567;;18584:15;;;18578:22;;18564:37;18554:71;;18605:18;;:::i;18636:348::-;18838:2;18820:21;;;18877:2;18857:18;;;18850:30;-1:-1:-1;;;18911:2:1;18896:18;;18889:54;18975:2;18960:18;;18636:348::o;18989:336::-;19191:2;19173:21;;;19230:2;19210:18;;;19203:30;-1:-1:-1;;;19264:2:1;19249:18;;19242:42;19316:2;19301:18;;18989:336::o;19330:127::-;19391:10;19386:3;19382:20;19379:1;19372:31;19422:4;19419:1;19412:15;19446:4;19443:1;19436:15;19462:120;19502:1;19528;19518:35;;19533:18;;:::i;:::-;-1:-1:-1;19567:9:1;;19462:120::o;19587:127::-;19648:10;19643:3;19639:20;19636:1;19629:31;19679:4;19676:1;19669:15;19703:4;19700:1;19693:15;19719:135;19758:3;19779:17;;;19776:43;;19799:18;;:::i;:::-;-1:-1:-1;19846:1:1;19835:13;;19719:135::o;20559:348::-;20761:2;20743:21;;;20800:2;20780:18;;;20773:30;-1:-1:-1;;;20834:2:1;20819:18;;20812:54;20898:2;20883:18;;20559:348::o;20912:649::-;20992:6;21045:2;21033:9;21024:7;21020:23;21016:32;21013:52;;;21061:1;21058;21051:12;21013:52;21088:16;;-1:-1:-1;;;;;21116:30:1;;21113:50;;;21159:1;21156;21149:12;21113:50;21182:22;;21235:4;21227:13;;21223:27;-1:-1:-1;21213:55:1;;21264:1;21261;21254:12;21213:55;21293:2;21287:9;21318:49;21334:32;21363:2;21334:32;:::i;21318:49::-;21390:2;21383:5;21376:17;21430:7;21425:2;21420;21416;21412:11;21408:20;21405:33;21402:53;;;21451:1;21448;21441:12;21402:53;21464:67;21528:2;21523;21516:5;21512:14;21507:2;21503;21499:11;21464:67;:::i;:::-;21550:5;20912:649;-1:-1:-1;;;;;20912:649:1:o;21776:251::-;21846:6;21899:2;21887:9;21878:7;21874:23;21870:32;21867:52;;;21915:1;21912;21905:12;21867:52;21947:9;21941:16;21966:31;21991:5;21966:31;:::i;22158:545::-;22260:2;22255:3;22252:11;22249:448;;;22296:1;22321:5;22317:2;22310:17;22366:4;22362:2;22352:19;22436:2;22424:10;22420:19;22417:1;22413:27;22407:4;22403:38;22472:4;22460:10;22457:20;22454:47;;;-1:-1:-1;22495:4:1;22454:47;22550:2;22545:3;22541:12;22538:1;22534:20;22528:4;22524:31;22514:41;;22605:82;22623:2;22616:5;22613:13;22605:82;;;22668:17;;;22649:1;22638:13;22605:82;;;22609:3;;;22158:545;;;:::o;22879:1352::-;22999:10;;-1:-1:-1;;;;;23021:30:1;;23018:56;;;23054:18;;:::i;:::-;23083:97;23173:6;23133:38;23165:4;23159:11;23133:38;:::i;:::-;23127:4;23083:97;:::i;:::-;23235:4;;23299:2;23288:14;;23316:1;23311:663;;;;24018:1;24035:6;24032:89;;;-1:-1:-1;24087:19:1;;;24081:26;24032:89;-1:-1:-1;;22836:1:1;22832:11;;;22828:24;22824:29;22814:40;22860:1;22856:11;;;22811:57;24134:81;;23281:944;;23311:663;22105:1;22098:14;;;22142:4;22129:18;;-1:-1:-1;;23347:20:1;;;23465:236;23479:7;23476:1;23473:14;23465:236;;;23568:19;;;23562:26;23547:42;;23660:27;;;;23628:1;23616:14;;;;23495:19;;23465:236;;;23469:3;23729:6;23720:7;23717:19;23714:201;;;23790:19;;;23784:26;-1:-1:-1;;23873:1:1;23869:14;;;23885:3;23865:24;23861:37;23857:42;23842:58;23827:74;;23714:201;-1:-1:-1;;;;;23961:1:1;23945:14;;;23941:22;23928:36;;-1:-1:-1;22879:1352:1:o;24582:349::-;24784:2;24766:21;;;24823:2;24803:18;;;24796:30;-1:-1:-1;;;24857:2:1;24842:18;;24835:55;24922:2;24907:18;;24582:349::o;24936:881::-;25031:6;25062:2;25105;25093:9;25084:7;25080:23;25076:32;25073:52;;;25121:1;25118;25111:12;25073:52;25148:16;;-1:-1:-1;;;;;25176:30:1;;25173:50;;;25219:1;25216;25209:12;25173:50;25242:22;;25295:4;25287:13;;25283:27;-1:-1:-1;25273:55:1;;25324:1;25321;25314:12;25273:55;25353:2;25347:9;25376:60;25392:43;25432:2;25392:43;:::i;25376:60::-;25470:15;;;25552:1;25548:10;;;;25540:19;;25536:28;;;25501:12;;;;25576:19;;;25573:39;;;25608:1;25605;25598:12;25573:39;25632:11;;;;25652:135;25668:6;25663:3;25660:15;25652:135;;;25734:10;;25722:23;;25685:12;;;;25765;;;;25652:135;;;25806:5;24936:881;-1:-1:-1;;;;;;;24936:881:1:o;26178:346::-;26380:2;26362:21;;;26419:2;26399:18;;;26392:30;-1:-1:-1;;;26453:2:1;26438:18;;26431:52;26515:2;26500:18;;26178:346::o;26529:345::-;26731:2;26713:21;;;26770:2;26750:18;;;26743:30;-1:-1:-1;;;26804:2:1;26789:18;;26782:51;26865:2;26850:18;;26529:345::o;27232:348::-;27434:2;27416:21;;;27473:2;27453:18;;;27446:30;-1:-1:-1;;;27507:2:1;27492:18;;27485:54;27571:2;27556:18;;27232:348::o;27811:247::-;27968:19;;;28012:2;28003:12;;27996:28;28049:2;28040:12;;27811:247::o;29887:1256::-;30111:3;30149:6;30143:13;30175:4;30188:64;30245:6;30240:3;30235:2;30227:6;30223:15;30188:64;:::i;:::-;30315:13;;30274:16;;;;30337:68;30315:13;30274:16;30372:15;;;30337:68;:::i;:::-;30494:13;;30427:20;;;30467:1;;30532:36;30494:13;30532:36;:::i;:::-;30587:1;30604:18;;;30631:141;;;;30786:1;30781:337;;;;30597:521;;30631:141;-1:-1:-1;;30666:24:1;;30652:39;;30743:16;;30736:24;30722:39;;30711:51;;;-1:-1:-1;30631:141:1;;30781:337;30812:6;30809:1;30802:17;30860:2;30857:1;30847:16;30885:1;30899:169;30913:8;30910:1;30907:15;30899:169;;;30995:14;;30980:13;;;30973:37;31038:16;;;;30930:10;;30899:169;;;30903:3;;31099:8;31092:5;31088:20;31081:27;;30597:521;-1:-1:-1;31134:3:1;;29887:1256;-1:-1:-1;;;;;;;;;;29887:1256:1:o;31846:136::-;31885:3;31913:5;31903:39;;31922:18;;:::i;:::-;-1:-1:-1;;;31958:18:1;;31846:136::o;32348:611::-;-1:-1:-1;;;32706:3:1;32699:23;32681:3;32751:6;32745:13;32767:74;32834:6;32830:1;32825:3;32821:11;32814:4;32806:6;32802:17;32767:74;:::i;:::-;-1:-1:-1;;;32900:1:1;32860:16;;;;32892:10;;;32885:41;-1:-1:-1;32950:2:1;32942:11;;32348:611;-1:-1:-1;32348:611:1:o;34090:624::-;-1:-1:-1;;;34448:3:1;34441:23;34423:3;34493:6;34487:13;34509:74;34576:6;34572:1;34567:3;34563:11;34556:4;34548:6;34544:17;34509:74;:::i;:::-;34646:34;34642:1;34602:16;;;;34634:10;;;34627:54;-1:-1:-1;34705:2:1;34697:11;;34090:624;-1:-1:-1;34090:624:1:o;34719:128::-;34786:9;;;34807:11;;;34804:37;;;34821:18;;:::i;34852:112::-;34884:1;34910;34900:35;;34915:18;;:::i;:::-;-1:-1:-1;34949:9:1;;34852:112::o;34969:1049::-;-1:-1:-1;;;35469:78:1;;35570:13;;35451:3;;35592:75;35570:13;35655:2;35646:12;;35639:4;35627:17;;35592:75;:::i;:::-;-1:-1:-1;;;35726:2:1;35686:16;;;35718:11;;;35711:71;35807:13;;35829:76;35807:13;35891:2;35883:11;;35876:4;35864:17;;35829:76;:::i;:::-;-1:-1:-1;;;35965:2:1;35924:17;;;;35957:11;;;35950:35;36009:2;36001:11;;34969:1049;-1:-1:-1;;;;34969:1049:1:o;36023:461::-;36285:31;36280:3;36273:44;36255:3;36346:6;36340:13;36362:75;36430:6;36425:2;36420:3;36416:12;36409:4;36401:6;36397:17;36362:75;:::i;:::-;36457:16;;;;36475:2;36453:25;;36023:461;-1:-1:-1;;36023:461:1:o;36489:489::-;-1:-1:-1;;;;;36758:15:1;;;36740:34;;36810:15;;36805:2;36790:18;;36783:43;36857:2;36842:18;;36835:34;;;36905:3;36900:2;36885:18;;36878:31;;;36683:4;;36926:46;;36952:19;;36944:6;36926:46;:::i;:::-;36918:54;36489:489;-1:-1:-1;;;;;;36489:489:1:o;36983:249::-;37052:6;37105:2;37093:9;37084:7;37080:23;37076:32;37073:52;;;37121:1;37118;37111:12;37073:52;37153:9;37147:16;37172:30;37196:5;37172:30;:::i
Swarm Source
ipfs://8bd4fb046730d804c6ffa80893321a8f29f015dd008681d87c34dd4109b3e515
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.