Polygon Sponsored slots available. Book your slot here!
Contract Overview
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
DegeneratePigs
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-11-27 */ /** * OpenZepplin contracts contained within are licensed under an MIT License. * * The MIT License (MIT) * * Copyright (c) 2016-2021 zOS Global Limited * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * * Chainlink contracts contained within are licensed under an MIT License. * * The MIT License (MIT) * * Copyright (c) 2018-2021 SmartContract ChainLink, Ltd. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ // SPDX-License-Identifier: MIT // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.3.2 (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; } } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.3.2 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/utils/Context.sol // OpenZeppelin Contracts v4.3.2 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/utils/Address.sol // OpenZeppelin Contracts v4.3.2 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.3.2 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.3.2 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.3.2 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.3.2 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.3.2 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: https://raw.githubusercontent.com/smartcontractkit/chainlink/develop/contracts/src/v0.8/VRFRequestIDBase.sol pragma solidity ^0.8.0; contract VRFRequestIDBase { /** * @notice returns the seed which is actually input to the VRF coordinator * * @dev To prevent repetition of VRF output due to repetition of the * @dev user-supplied seed, that seed is combined in a hash with the * @dev user-specific nonce, and the address of the consuming contract. The * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in * @dev the final seed, but the nonce does protect against repetition in * @dev requests which are included in a single block. * * @param _userSeed VRF seed input provided by user * @param _requester Address of the requesting contract * @param _nonce User-specific nonce at the time of the request */ function makeVRFInputSeed( bytes32 _keyHash, uint256 _userSeed, address _requester, uint256 _nonce ) internal pure returns (uint256) { return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce))); } /** * @notice Returns the id for this request * @param _keyHash The serviceAgreement ID to be used for this request * @param _vRFInputSeed The seed to be passed directly to the VRF * @return The id for this request * * @dev Note that _vRFInputSeed is not the seed passed by the consuming * @dev contract, but the one generated by makeVRFInputSeed */ function makeRequestId(bytes32 _keyHash, uint256 _vRFInputSeed) internal pure returns (bytes32) { return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed)); } } // File: https://raw.githubusercontent.com/smartcontractkit/chainlink/develop/contracts/src/v0.8/interfaces/LinkTokenInterface.sol pragma solidity ^0.8.0; interface LinkTokenInterface { function allowance(address owner, address spender) external view returns (uint256 remaining); function approve(address spender, uint256 value) external returns (bool success); function balanceOf(address owner) external view returns (uint256 balance); function decimals() external view returns (uint8 decimalPlaces); function decreaseApproval(address spender, uint256 addedValue) external returns (bool success); function increaseApproval(address spender, uint256 subtractedValue) external; function name() external view returns (string memory tokenName); function symbol() external view returns (string memory tokenSymbol); function totalSupply() external view returns (uint256 totalTokensIssued); function transfer(address to, uint256 value) external returns (bool success); function transferAndCall( address to, uint256 value, bytes calldata data ) external returns (bool success); function transferFrom( address from, address to, uint256 value ) external returns (bool success); } // File: https://raw.githubusercontent.com/smartcontractkit/chainlink/develop/contracts/src/v0.8/VRFConsumerBase.sol pragma solidity ^0.8.0; /** **************************************************************************** * @notice Interface for contracts using VRF randomness * ***************************************************************************** * @dev PURPOSE * * @dev Reggie the Random Oracle (not his real job) wants to provide randomness * @dev to Vera the verifier in such a way that Vera can be sure he's not * @dev making his output up to suit himself. Reggie provides Vera a public key * @dev to which he knows the secret key. Each time Vera provides a seed to * @dev Reggie, he gives back a value which is computed completely * @dev deterministically from the seed and the secret key. * * @dev Reggie provides a proof by which Vera can verify that the output was * @dev correctly computed once Reggie tells it to her, but without that proof, * @dev the output is indistinguishable to her from a uniform random sample * @dev from the output space. * * @dev The purpose of this contract is to make it easy for unrelated contracts * @dev to talk to Vera the verifier about the work Reggie is doing, to provide * @dev simple access to a verifiable source of randomness. * ***************************************************************************** * @dev USAGE * * @dev Calling contracts must inherit from VRFConsumerBase, and can * @dev initialize VRFConsumerBase's attributes in their constructor as * @dev shown: * * @dev contract VRFConsumer { * @dev constuctor(<other arguments>, address _vrfCoordinator, address _link) * @dev VRFConsumerBase(_vrfCoordinator, _link) public { * @dev <initialization with other arguments goes here> * @dev } * @dev } * * @dev The oracle will have given you an ID for the VRF keypair they have * @dev committed to (let's call it keyHash), and have told you the minimum LINK * @dev price for VRF service. Make sure your contract has sufficient LINK, and * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you * @dev want to generate randomness from. * * @dev Once the VRFCoordinator has received and validated the oracle's response * @dev to your request, it will call your contract's fulfillRandomness method. * * @dev The randomness argument to fulfillRandomness is the actual random value * @dev generated from your seed. * * @dev The requestId argument is generated from the keyHash and the seed by * @dev makeRequestId(keyHash, seed). If your contract could have concurrent * @dev requests open, you can use the requestId to track which seed is * @dev associated with which randomness. See VRFRequestIDBase.sol for more * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind, * @dev if your contract could have multiple requests in flight simultaneously.) * * @dev Colliding `requestId`s are cryptographically impossible as long as seeds * @dev differ. (Which is critical to making unpredictable randomness! See the * @dev next section.) * * ***************************************************************************** * @dev SECURITY CONSIDERATIONS * * @dev A method with the ability to call your fulfillRandomness method directly * @dev could spoof a VRF response with any random value, so it's critical that * @dev it cannot be directly called by anything other than this base contract * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method). * * @dev For your users to trust that your contract's random behavior is free * @dev from malicious interference, it's best if you can write it so that all * @dev behaviors implied by a VRF response are executed *during* your * @dev fulfillRandomness method. If your contract must store the response (or * @dev anything derived from it) and use it later, you must ensure that any * @dev user-significant behavior which depends on that stored value cannot be * @dev manipulated by a subsequent VRF request. * * @dev Similarly, both miners and the VRF oracle itself have some influence * @dev over the order in which VRF responses appear on the blockchain, so if * @dev your contract could have multiple VRF requests in flight simultaneously, * @dev you must ensure that the order in which the VRF responses arrive cannot * @dev be used to manipulate your contract's user-significant behavior. * * @dev Since the ultimate input to the VRF is mixed with the block hash of the * @dev block in which the request is made, user-provided seeds have no impact * @dev on its economic security properties. They are only included for API * @dev compatability with previous versions of this contract. * * @dev Since the block hash of the block which contains the requestRandomness * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful * @dev miner could, in principle, fork the blockchain to evict the block * @dev containing the request, forcing the request to be included in a * @dev different block with a different hash, and therefore a different input * @dev to the VRF. However, such an attack would incur a substantial economic * @dev cost. This cost scales with the number of blocks the VRF oracle waits * @dev until it calls responds to a request. */ abstract contract VRFConsumerBase is VRFRequestIDBase { /** * @notice fulfillRandomness handles the VRF response. Your contract must * @notice implement it. See "SECURITY CONSIDERATIONS" above for important * @notice principles to keep in mind when implementing your fulfillRandomness * @notice method. * * @dev VRFConsumerBase expects its subcontracts to have a method with this * @dev signature, and will call it once it has verified the proof * @dev associated with the randomness. (It is triggered via a call to * @dev rawFulfillRandomness, below.) * * @param requestId The Id initially returned by requestRandomness * @param randomness the VRF output */ function fulfillRandomness(bytes32 requestId, uint256 randomness) internal virtual; /** * @dev In order to keep backwards compatibility we have kept the user * seed field around. We remove the use of it because given that the blockhash * enters later, it overrides whatever randomness the used seed provides. * Given that it adds no security, and can easily lead to misunderstandings, * we have removed it from usage and can now provide a simpler API. */ uint256 private constant USER_SEED_PLACEHOLDER = 0; /** * @notice requestRandomness initiates a request for VRF output given _seed * * @dev The fulfillRandomness method receives the output, once it's provided * @dev by the Oracle, and verified by the vrfCoordinator. * * @dev The _keyHash must already be registered with the VRFCoordinator, and * @dev the _fee must exceed the fee specified during registration of the * @dev _keyHash. * * @dev The _seed parameter is vestigial, and is kept only for API * @dev compatibility with older versions. It can't *hurt* to mix in some of * @dev your own randomness, here, but it's not necessary because the VRF * @dev oracle will mix the hash of the block containing your request into the * @dev VRF seed it ultimately uses. * * @param _keyHash ID of public key against which randomness is generated * @param _fee The amount of LINK to send with the request * * @return requestId unique ID for this request * * @dev The returned requestId can be used to distinguish responses to * @dev concurrent requests. It is passed as the first argument to * @dev fulfillRandomness. */ function requestRandomness(bytes32 _keyHash, uint256 _fee) internal returns (bytes32 requestId) { LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER)); // This is the seed passed to VRFCoordinator. The oracle will mix this with // the hash of the block containing this request to obtain the seed/input // which is finally passed to the VRF cryptographic machinery. uint256 vRFSeed = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]); // nonces[_keyHash] must stay in sync with // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest). // This provides protection against the user repeating their input seed, // which would result in a predictable/duplicate output, if multiple such // requests appeared in the same block. nonces[_keyHash] = nonces[_keyHash] + 1; return makeRequestId(_keyHash, vRFSeed); } LinkTokenInterface internal immutable LINK; address private immutable vrfCoordinator; // Nonces for each VRF key from which randomness has been requested. // // Must stay in sync with VRFCoordinator[_keyHash][this] mapping(bytes32 => uint256) /* keyHash */ /* nonce */ private nonces; /** * @param _vrfCoordinator address of VRFCoordinator contract * @param _link address of LINK token contract * * @dev https://docs.chain.link/docs/link-token-contracts */ constructor(address _vrfCoordinator, address _link) { vrfCoordinator = _vrfCoordinator; LINK = LinkTokenInterface(_link); } // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF // proof. rawFulfillRandomness then calls fulfillRandomness, after validating // the origin of the call function rawFulfillRandomness(bytes32 requestId, uint256 randomness) external { require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill"); fulfillRandomness(requestId, randomness); } } // File: DegenerateFarm.sol /** * OpenZepplin contracts contained within are licensed under an MIT License. * * The MIT License (MIT) * * Copyright (c) 2016-2021 zOS Global Limited * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * * Chainlink contracts contained within are licensed under an MIT License. * * The MIT License (MIT) * * Copyright (c) 2018-2021 SmartContract ChainLink, Ltd. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name = "DegenerateFarm.io"; // Token symbol string private _symbol = "PIG"; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Token URI for fetching metadata string internal baseURI; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked(baseURI, tokenId.toString())); } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not owned"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } //How many deer does it take to build a space shuttle? -Nadia Khuzina contract DegeneratePigs is VRFConsumerBase, ERC721, ReentrancyGuard { address public contractOwner; bytes32 internal keyHash = 0xf86195cf7690c55907b2b611ebb7343a6f649bff128701cc542f0569e2c549da; address internal vrfCoordinator = 0x3d2341ADb2D31f1c5530cDC622016af293177AE0; address internal linkTokenAddress = 0xb0897686c545045aFc77CF20eC7A532E3120E0F1; uint256 internal fee; address payable public receiverAccount; uint256 public price; uint256 public upgradePrice; uint256 internal totalNFTs; uint256 internal mintRequests; uint256 public totalHandsDealt; bool public forSale; bool public permanentlyStop; bool public upgradeable; bool public permanentlyStopUpgrades; struct tokenHistory { uint256 chipStack; uint256 plaqueStack; uint256 totalAces; uint256 matchingAces; uint256 diamondAces; uint256 lastLeftCard; uint256 lastRightCard; } //Track the hands for statistical analysis or frontend purposes. event HandDealt(uint256 indexed tokenID, uint256 leftCard, uint256 rightCard, bool isMint); mapping(bytes32 => address) internal minterAddress; mapping(bytes32 => uint256) internal tokenToUpgrade; mapping(uint256 => uint256) public lookupFullTokenID; mapping(uint256 => uint256) public upgradeCount; mapping(uint256 => tokenHistory[]) public lookupTokenHistory; mapping(uint256 => uint256) internal chipStack; mapping(uint256 => uint256) internal plaqueStack; mapping(uint256 => uint256) internal totalAces; mapping(uint256 => uint256) internal matchingAces; mapping(uint256 => uint256) internal diamondAces; mapping(uint256 => uint256) internal lastLeftCard; mapping(uint256 => uint256) internal lastRightCard; constructor() VRFConsumerBase( vrfCoordinator, linkTokenAddress ) { contractOwner = msg.sender; receiverAccount = payable(msg.sender); fee = 0.0001 * 10 ** 18; price = 25 * 10 ** 18; upgradePrice = 2 * 10 ** 18; baseURI = "https://wwww.degeneratefarm.io/metadata/"; mintRequests = 0; } //Reduces require() statements that would increase verbosity. modifier onlyOwner() { require(msg.sender == contractOwner); _; } //We need separate mappings for mints and upgrades to differentiate them in the fulfillRandomness function. function getRandomNumberForMint() internal returns(bytes32 requestId) { require(LINK.balanceOf(address(this)) >= fee, "Not enough LINK. Topup the contract with LINK."); requestId = requestRandomness(keyHash, fee); minterAddress[requestId] = msg.sender; return requestId; } //We need separate mappings for mints and upgrades to differentiate them in the fulfillRandomness function. function getRandomNumberForUpgrade(uint256 tokenID) internal returns(bytes32 requestId) { require(LINK.balanceOf(address(this)) >= fee, "Not enough LINK. Topup the contract with LINK."); requestId = requestRandomness(keyHash, fee); tokenToUpgrade[requestId] = tokenID; return requestId; } //The VRF Coordinator only calls the function named fulfillRandomness. It doesn't know whether it is providing a random number for a mint or an upgrade. The contract must interpret this from the requestID by checking which mapping it is a part of. function fulfillRandomness(bytes32 requestId, uint256 randomNumber) internal override { require(msg.sender == vrfCoordinator, "Only the VRF Coordinator may call this function."); if (tokenToUpgrade[requestId] != 0) { upgradePig(tokenToUpgrade[requestId], randomNumber); } else { mintPig(minterAddress[requestId], randomNumber); } } //While the mint function starts here, it is the VRF Coordinator who actually mints the NFTs. function mint() external payable nonReentrant { require(permanentlyStop == false, "Minting has been permanently disabled."); require(forSale == true, "Minting has been paused."); require(mintRequests < 1024, "No pigs left to mint, sorry. :-("); require(msg.value == price, "Wrong amount for mint."); //If the correct amount is sent, then request a VRF number. getRandomNumberForMint(); //Limit the number of pigs minted to 1024 by tracking this variable. mintRequests++; (bool mintPaymentSent, ) = payable(receiverAccount).call { value: msg.value }(""); require(mintPaymentSent, "Failed to send Ether for minting."); } //Some frontends may look for this optional ERC721 implementation. function totalSupply() public view returns(uint256) { return totalNFTs; } //Returns all the mapping data in one call. function getUpgrades(uint256 tokenID) public view returns(uint256, uint256, uint256, uint256, uint256, uint256, uint256) { return (chipStack[tokenID], plaqueStack[tokenID], totalAces[tokenID], matchingAces[tokenID], diamondAces[tokenID], lastLeftCard[tokenID], lastRightCard[tokenID]); } //This is a lookup table to make the background rarity non-linear. function backgroundLookup(uint256 index) internal pure returns(uint256) { if (index <= 40) return 0; else if (index <= 50) return 1; else if (index <= 60) return 2; else if (index <= 70) return 3; else if (index <= 80) return 4; else if (index <= 85) return 5; else if (index <= 90) return 6; else if (index <= 95) return 7; else if (index < 99) return 8; return 9; } //Called from fulfillRandomness. function mintPig(address minter, uint256 randomNumberFromChainlink) internal { //Change to public for Remix testing. You can directly input numbers this way. //Increment the total of minted NFTs. This is used for tracking the chronological order, and compatibility with existing ERC721 patterns. totalNFTs++; //The backgrounds are a non-linear feature of the pig. It is a 1 in 100 chance to get the rarest Level 10 background. It returns only a single digit for purposes of sprite mapping. uint256 background = backgroundLookup(randomNumberFromChainlink % 10 ** 11 / 10 ** 9); //The token ID is made up of the chronological number that is prepended, the background number, and a straight crop of the last 9 numbers of the VRF returned random number. Each of these number represents a sprite. uint256 tokenID = ((totalNFTs * 10 ** 10) + (background * 10 ** 9)) + randomNumberFromChainlink % 10 ** 9; //Mint the pig. _mint(minter, tokenID); //Take the chronological number of each pig and use it as a key to find the full token ID. This is useful for Web3 operations. lookupFullTokenID[totalNFTs] = tokenID; //Crop out six digit pieces of the returned VRF number. This in effect makes a 1 million card shoe for each card and renders modulo bias moot. uint256 leftCard = (((randomNumberFromChainlink % 10 ** 22 / 10 ** 16) + 52) % 52) + 1; uint256 rightCard = (((randomNumberFromChainlink % 10 ** 16 / 10 ** 10) + 52) % 52) + 1; //This saves the cards to a mapping so the lookup function can fetch the last cards dealt for display on the pig. lastLeftCard[tokenID] = leftCard; lastRightCard[tokenID] = rightCard; //Initialize the chip stack with a single 1000 chip. chipStack[tokenID] = 1; //If the first hand dealt is aces, add it to the total. if ((leftCard == 1 || leftCard == 14 || leftCard == 27 || leftCard == 40) && (rightCard == 1 || rightCard == 14 || rightCard == 27 || rightCard == 40)) { totalAces[tokenID] = 1; //Add a plaque plaqueStack[tokenID] = 1; //Check if they are matching aces. if (leftCard == rightCard) { matchingAces[tokenID] = 1; //If they are matching aces, then check to see if they are matching diamond aces. if (leftCard == 14 && rightCard == 14) { diamondAces[tokenID] = 1; } } } //It's a mint, but also deals a hand. We track this for frontend purposes. totalHandsDealt++; //It's also considered an upgrade since the hand and chip added goes to upgrade totals. upgradeCount[tokenID] += 1; //We use this mapping to easily find the history of VRF results, such as the last five hands dealt, or when aces were hit. lookupTokenHistory[tokenID].push(tokenHistory(chipStack[tokenID], plaqueStack[tokenID], totalAces[tokenID], matchingAces[tokenID], diamondAces[tokenID], lastLeftCard[tokenID], lastRightCard[tokenID])); //isMint is true because this is a mint event. emit HandDealt(tokenID, leftCard, rightCard, true); } //While the upgrade function starts here, it is the VRF Coordinator who actually mints the NFTs. function upgrade(uint256 tokenID) external payable { require(msg.sender == ownerOf(tokenID)); require(msg.value == upgradePrice, "Wrong amount for upgrade."); //If the correct amount is sent, then request a VRF number. getRandomNumberForUpgrade(tokenID); (bool upgradePaymentSent, ) = payable(receiverAccount).call { value: msg.value }(""); require(upgradePaymentSent, "Failed to send Ether for upgrade."); } //Called from fulfillRandomness. function upgradePig(uint256 tokenID, uint256 randomNumberFromChainlink) internal { //Change to public for Remix testing. You can directly input numbers this way. //The maximum number of chips is 200. If there are already 200 chips, then this is ignored, and only new plaques can be earned. if (chipStack[tokenID] < 200) { chipStack[tokenID] += 1; } //Crop out six digit pieces of the returned VRF number. This in effect makes a 1 million card shoe for each card and renders modulo bias moot. uint256 leftCard = (((randomNumberFromChainlink % 10 ** 12 / 10 ** 6) + 52) % 52) + 1; uint256 rightCard = (((randomNumberFromChainlink % 10 ** 6) + 52) % 52) + 1; //This saves the cards to a mapping so the lookup function can fetch the last cards dealt for display on the pig. lastLeftCard[tokenID] = leftCard; lastRightCard[tokenID] = rightCard; //Evaluate the hand to check if it is aces, and then what type of aces. if (plaqueStack[tokenID] < 3) { if ((leftCard == 1 || leftCard == 14 || leftCard == 27 || leftCard == 40) && (rightCard == 1 || rightCard == 14 || rightCard == 27 || rightCard == 40)) { totalAces[tokenID] += 1; //Add a plaque plaqueStack[tokenID] += 1; //Check if they are matching aces. if (leftCard == rightCard) { matchingAces[tokenID] += 1; //If they are matching aces, then check to see if they are matching diamond aces. if (leftCard == 14 && rightCard == 14) { diamondAces[tokenID] += 1; } } } } else if (plaqueStack[tokenID] < 7) { if ((leftCard == 1 || leftCard == 14 || leftCard == 27 || leftCard == 40) && (rightCard == 1 || rightCard == 14 || rightCard == 27 || rightCard == 40)) { totalAces[tokenID] += 1; //Check if they are matching aces. if (leftCard == rightCard) { //Add a plaque plaqueStack[tokenID] += 1; matchingAces[tokenID] += 1; //If they are matching aces, then check to see if they are matching diamond aces. if (leftCard == 14 && rightCard == 14) { diamondAces[tokenID] += 1; } } } } else { if ((leftCard == 1 || leftCard == 14 || leftCard == 27 || leftCard == 40) && (rightCard == 1 || rightCard == 14 || rightCard == 27 || rightCard == 40)) { totalAces[tokenID] += 1; //Add a plaque if (leftCard == rightCard) { matchingAces[tokenID] += 1; //If they are matching aces, then check to see if they are matching diamond aces. if (leftCard == 14 && rightCard == 14) { if (plaqueStack[tokenID] < 10) { //Add a plaque plaqueStack[tokenID] += 1; } diamondAces[tokenID] += 1; } } } } //Add to the total hands dealt total. totalHandsDealt++; //Add to the total upgrades of the pig. This can exceed the cap on chips, so we need to save for statistical purposes. upgradeCount[tokenID] += 1; //We use this mapping to easily find the history of VRF results, such as the last five hands dealt, or when aces were hit. lookupTokenHistory[tokenID].push(tokenHistory(chipStack[tokenID], plaqueStack[tokenID], totalAces[tokenID], matchingAces[tokenID], diamondAces[tokenID], lastLeftCard[tokenID], lastRightCard[tokenID])); //isMint is false because this is an upgrade event. emit HandDealt(tokenID, leftCard, rightCard, false); } //Start or pause the minting functionality in the contract. function changeSaleState() external onlyOwner { forSale = !forSale; } //Permanently stops minting. This cannot be reverted. Only can be triggered when forSale is false. function permanentlyStopMinting() external onlyOwner { require(forSale == false, "You must switch off mints before permanently disabling them manually."); require(permanentlyStop == false, "Minting has already been permanently disabled."); permanentlyStop = true; } //Start or pause the upgrade functionality in the contract. function changeUpgradeState() external onlyOwner { upgradeable = !upgradeable; } //Permanently stops upgrades. This cannot be reverted. Only can be triggered when permanentlyStopUpgrades is false. function permanentlyStopUpgrading() external onlyOwner { require(upgradeable == false, "You must switch off upgrades before permanently disabling them manually."); require(permanentlyStopUpgrades == false, "Upgrading has already been permanently disabled."); permanentlyStopUpgrades = true; } //Change the price of upgrading. function changeUpgradePrice(uint256 newUpgradePrice) external onlyOwner { upgradePrice = newUpgradePrice; } //Change the price of minting. function changePrice(uint256 newPrice) external onlyOwner { price = newPrice; } //Set the receiving account. function changeReceivingAccount(address payable newReceivingAddress) external onlyOwner { receiverAccount = newReceivingAddress; } //Change the owner of the contract. function changeContractOwner(address payable newcontractOwner) external onlyOwner { contractOwner = newcontractOwner; } //Get the total stack of a particular pig. function totalStack(uint256 tokenID) external view returns(uint256) { uint256 totalChipStack = chipLookup(chipStack[tokenID]) + plaqueLookup(plaqueStack[tokenID]); return totalChipStack; } //Calculates the total chip stack exclusive of plaques. function chipLookup(uint256 chips) internal pure returns(uint256) { if (chips <= 100) { return 1000 * chips; } return (5000 * (chips - 100)) + 100000; } //Calculates the total plaque stack exclusive of chips. function plaqueLookup(uint256 plaques) internal pure returns(uint256) { if (plaques > 0) return 25000 * plaques; else return 0; } //This function allows the metadata to be updated, and the location of it to be changed to decentralized file services after minting. function _setTokenUri(string memory newuri) public onlyOwner { baseURI = newuri; } //Withdraw all of the LINK from the contract. Probably not necessary since we know the total amount of pigs that can be minted, but you never know. function withdrawLink() external onlyOwner { LinkTokenInterface link = LinkTokenInterface(linkTokenAddress); require(link.transfer(receiverAccount, link.balanceOf(address(this))), "Unable to transfer"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"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":"uint256","name":"tokenID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"leftCard","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rightCard","type":"uint256"},{"indexed":false,"internalType":"bool","name":"isMint","type":"bool"}],"name":"HandDealt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"_setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newcontractOwner","type":"address"}],"name":"changeContractOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newReceivingAddress","type":"address"}],"name":"changeReceivingAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newUpgradePrice","type":"uint256"}],"name":"changeUpgradePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeUpgradeState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"forSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"getUpgrades","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lookupFullTokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"lookupTokenHistory","outputs":[{"internalType":"uint256","name":"chipStack","type":"uint256"},{"internalType":"uint256","name":"plaqueStack","type":"uint256"},{"internalType":"uint256","name":"totalAces","type":"uint256"},{"internalType":"uint256","name":"matchingAces","type":"uint256"},{"internalType":"uint256","name":"diamondAces","type":"uint256"},{"internalType":"uint256","name":"lastLeftCard","type":"uint256"},{"internalType":"uint256","name":"lastRightCard","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"permanentlyStop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"permanentlyStopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"permanentlyStopUpgrades","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"permanentlyStopUpgrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"receiverAccount","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalHandsDealt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"totalStack","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"upgrade","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"upgradeCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"upgradePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"upgradeable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawLink","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526040518060400160405280601181526020017f446567656e65726174654661726d2e696f000000000000000000000000000000815250600190805190602001906200005192919062000325565b506040518060400160405280600381526020017f5049470000000000000000000000000000000000000000000000000000000000815250600290805190602001906200009f92919062000325565b507ff86195cf7690c55907b2b611ebb7343a6f649bff128701cc542f0569e2c549da60001b600a55733d2341adb2d31f1c5530cdc622016af293177ae0600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b0897686c545045afc77cf20ec7a532e3120e0f1600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200017e57600080fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505050600160088190555033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550655af3107a4000600d8190555068015af1d78b58c40000600f81905550671bc16d674ec800006010819055506040518060600160405280602881526020016200602860289139600790805190602001906200031692919062000325565b5060006012819055506200043a565b828054620003339062000404565b90600052602060002090601f016020900481019282620003575760008555620003a3565b82601f106200037257805160ff1916838001178555620003a3565b82800160010185558215620003a3579182015b82811115620003a257825182559160200191906001019062000385565b5b509050620003b29190620003b6565b5090565b5b80821115620003d1576000816000905550600101620003b7565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200041d57607f821691505b60208210811415620004345762000433620003d5565b5b50919050565b60805160a051615bb36200047560003960008181611a670152612b1c0152600081816121f5015281816126830152612ae00152615bb36000f3fe6080604052600436106102465760003560e01c806361017b0011610139578063ac9db410116100b6578063ce606ee01161007a578063ce606ee01461083e578063d083d3a914610869578063d8f86040146108ac578063dd9c1f23146108d7578063e985e9c5146108ee578063f95b15621461092b57610246565b8063ac9db41014610733578063ae59cdcf14610770578063b88d4fde1461079b578063c4b9837b146107c4578063c87b56dd1461080157610246565b806394985ddd116100fd57806394985ddd1461066257806395d89b411461068b578063a035b1fe146106b6578063a22cb465146106e1578063a2b40d191461070a57610246565b806361017b001461056b5780636352211e1461059457806370a08231146105d15780638dc654a21461060e5780638e5c679b1461062557610246565b806329c63032116101c757806342842e0e1161018b57806342842e0e146104cd57806345977d03146104f6578063466ccac01461051257806352ed9c901461053d5780635d0948421461055457610246565b806329c63032146103f45780633c8880061461040b5780633cbb10fa1461044e5780633ead67b51461047957806341c20c8e146104a257610246565b806317f0edca1161020e57806317f0edca1461032357806318160ddd1461034c57806323b872dd1461037757806327154ad7146103a0578063287ad39f146103c957610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780631249c58b14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613c90565b610956565b60405161027f9190613cd8565b60405180910390f35b34801561029457600080fd5b5061029d610a38565b6040516102aa9190613d8c565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613de4565b610aca565b6040516102e79190613e52565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613e99565b610b4f565b005b610321610c67565b005b34801561032f57600080fd5b5061034a60048036038101906103459190613de4565b610ee5565b005b34801561035857600080fd5b50610361610f49565b60405161036e9190613ee8565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613f03565b610f53565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061408b565b610fb3565b005b3480156103d557600080fd5b506103de611027565b6040516103eb9190613ee8565b60405180910390f35b34801561040057600080fd5b5061040961102d565b005b34801561041757600080fd5b50610432600480360381019061042d9190613de4565b6110b3565b60405161044597969594939291906140d4565b60405180910390f35b34801561045a57600080fd5b50610463611163565b6040516104709190614164565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b91906141ab565b611189565b005b3480156104ae57600080fd5b506104b7611227565b6040516104c49190613cd8565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190613f03565b61123a565b005b610510600480360381019061050b9190613de4565b61125a565b005b34801561051e57600080fd5b506105276113ba565b6040516105349190613cd8565b60405180910390f35b34801561054957600080fd5b506105526113cd565b005b34801561056057600080fd5b506105696114f0565b005b34801561057757600080fd5b50610592600480360381019061058d91906141ab565b611613565b005b3480156105a057600080fd5b506105bb60048036038101906105b69190613de4565b6116b1565b6040516105c89190613e52565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f391906141d8565b611763565b6040516106059190613ee8565b60405180910390f35b34801561061a57600080fd5b5061062361181b565b005b34801561063157600080fd5b5061064c60048036038101906106479190613de4565b611a15565b6040516106599190613ee8565b60405180910390f35b34801561066e57600080fd5b506106896004803603810190610684919061423b565b611a65565b005b34801561069757600080fd5b506106a0611b01565b6040516106ad9190613d8c565b60405180910390f35b3480156106c257600080fd5b506106cb611b93565b6040516106d89190613ee8565b60405180910390f35b3480156106ed57600080fd5b50610708600480360381019061070391906142a7565b611b99565b005b34801561071657600080fd5b50610731600480360381019061072c9190613de4565b611d1a565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613de4565b611d7e565b6040516107679190613ee8565b60405180910390f35b34801561077c57600080fd5b50610785611d96565b6040516107929190613cd8565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190614388565b611da9565b005b3480156107d057600080fd5b506107eb60048036038101906107e69190613de4565b611e0b565b6040516107f89190613ee8565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190613de4565b611e23565b6040516108359190613d8c565b60405180910390f35b34801561084a57600080fd5b50610853611e9f565b6040516108609190613e52565b60405180910390f35b34801561087557600080fd5b50610890600480360381019061088b919061440b565b611ec5565b6040516108a397969594939291906140d4565b60405180910390f35b3480156108b857600080fd5b506108c1611f24565b6040516108ce9190613cd8565b60405180910390f35b3480156108e357600080fd5b506108ec611f37565b005b3480156108fa57600080fd5b506109156004803603810190610910919061444b565b611fbd565b6040516109229190613cd8565b60405180910390f35b34801561093757600080fd5b50610940612051565b60405161094d9190613ee8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a315750610a3082612057565b5b9050919050565b606060018054610a47906144ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610a73906144ba565b8015610ac05780601f10610a9557610100808354040283529160200191610ac0565b820191906000526020600020905b815481529060010190602001808311610aa357829003601f168201915b5050505050905090565b6000610ad5826120c1565b610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b9061455e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5a826116b1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc2906145f0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bea61212d565b73ffffffffffffffffffffffffffffffffffffffff161480610c195750610c1881610c1361212d565b611fbd565b5b610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90614682565b60405180910390fd5b610c628383612135565b505050565b60026008541415610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca4906146ee565b60405180910390fd5b600260088190555060001515601460019054906101000a900460ff16151514610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290614780565b60405180910390fd5b60011515601460009054906101000a900460ff16151514610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d58906147ec565b60405180910390fd5b61040060125410610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90614858565b60405180910390fd5b600f543414610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de2906148c4565b60405180910390fd5b610df36121ee565b5060126000815480929190610e0790614913565b91905055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1634604051610e549061498d565b60006040518083038185875af1925050503d8060008114610e91576040519150601f19603f3d011682016040523d82523d6000602084013e610e96565b606091505b5050905080610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190614a14565b60405180910390fd5b506001600881905550565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f3f57600080fd5b8060108190555050565b6000601154905090565b610f64610f5e61212d565b82612342565b610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90614aa6565b60405180910390fd5b610fae838383612420565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461100d57600080fd5b8060079080519060200190611023929190613b81565b5050565b60105481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461108757600080fd5b601460029054906101000a900460ff1615601460026101000a81548160ff021916908315150217905550565b6000806000806000806000601a600089815260200190815260200160002054601b60008a815260200190815260200160002054601c60008b815260200190815260200160002054601d60008c815260200190815260200160002054601e60008d815260200190815260200160002054601f60008e815260200190815260200160002054602060008f8152602001908152602001600020549650965096509650965096509650919395979092949650565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111e357600080fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601460029054906101000a900460ff1681565b61125583838360405180602001604052806000815250611da9565b505050565b611263816116b1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461129a57600080fd5b60105434146112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590614b12565b60405180910390fd5b6112e78161267c565b506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16346040516113309061498d565b60006040518083038185875af1925050503d806000811461136d576040519150601f19603f3d011682016040523d82523d6000602084013e611372565b606091505b50509050806113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90614ba4565b60405180910390fd5b5050565b601460009054906101000a900460ff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461142757600080fd5b60001515601460029054906101000a900460ff1615151461147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490614c5c565b60405180910390fd5b60001515601460039054906101000a900460ff161515146114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90614cee565b60405180910390fd5b6001601460036101000a81548160ff021916908315150217905550565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461154a57600080fd5b60001515601460009054906101000a900460ff161515146115a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159790614da6565b60405180910390fd5b60001515601460019054906101000a900460ff161515146115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90614e38565b60405180910390fd5b6001601460016101000a81548160ff021916908315150217905550565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461166d57600080fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190614eca565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90614f5c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461187557600080fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016119149190613e52565b60206040518083038186803b15801561192c57600080fd5b505afa158015611940573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119649190614f91565b6040518363ffffffff1660e01b815260040161198192919061501d565b602060405180830381600087803b15801561199b57600080fd5b505af11580156119af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d3919061505b565b611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a09906150d4565b60405180910390fd5b50565b600080611a34601b600085815260200190815260200160002054612798565b611a50601a6000868152602001908152602001600020546127c1565b611a5a91906150f4565b905080915050919050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea90615196565b60405180910390fd5b611afd8282612810565b5050565b606060028054611b10906144ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3c906144ba565b8015611b895780601f10611b5e57610100808354040283529160200191611b89565b820191906000526020600020905b815481529060010190602001808311611b6c57829003601f168201915b5050505050905090565b600f5481565b611ba161212d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0690615202565b60405180910390fd5b8060066000611c1c61212d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cc961212d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d0e9190613cd8565b60405180910390a35050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d7457600080fd5b80600f8190555050565b60186020528060005260406000206000915090505481565b601460039054906101000a900460ff1681565b611dba611db461212d565b83612342565b611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090614aa6565b60405180910390fd5b611e058484848461291f565b50505050565b60176020528060005260406000206000915090505481565b6060611e2e826120c1565b611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490615294565b60405180910390fd5b6007611e788361297b565b604051602001611e89929190615384565b6040516020818303038152906040529050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60196020528160005260406000208181548110611ee157600080fd5b9060005260206000209060070201600091509150508060000154908060010154908060020154908060030154908060040154908060050154908060060154905087565b601460019054906101000a900460ff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f9157600080fd5b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60135481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121a8836116b1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600d547f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161224c9190613e52565b60206040518083038186803b15801561226457600080fd5b505afa158015612278573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229c9190614f91565b10156122dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d49061541a565b60405180910390fd5b6122eb600a54600d54612adc565b9050336015600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090565b600061234d826120c1565b61238c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612383906154ac565b60405180910390fd5b6000612397836116b1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061240657508373ffffffffffffffffffffffffffffffffffffffff166123ee84610aca565b73ffffffffffffffffffffffffffffffffffffffff16145b8061241757506124168185611fbd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612440826116b1565b73ffffffffffffffffffffffffffffffffffffffff1614612496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d9061553e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd906155d0565b60405180910390fd5b612511838383612c3b565b61251c600082612135565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461256c91906155f0565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c391906150f4565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600d547f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016126da9190613e52565b60206040518083038186803b1580156126f257600080fd5b505afa158015612706573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061272a9190614f91565b101561276b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127629061541a565b60405180910390fd5b612779600a54600d54612adc565b9050816016600083815260200190815260200160002081905550919050565b6000808211156127b757816161a86127b09190615624565b90506127bc565b600090505b919050565b6000606482116127e057816103e86127d99190615624565b905061280b565b620186a06064836127f191906155f0565b6113886127fe9190615624565b61280891906150f4565b90505b919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146128a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612897906156f0565b60405180910390fd5b60006016600084815260200190815260200160002054146128dd576128d8601660008481526020019081526020016000205482612c40565b61291b565b61291a6015600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826132c0565b5b5050565b61292a848484612420565b612936848484846136f4565b612975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296c90615782565b60405180910390fd5b50505050565b606060008214156129c3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ad7565b600082905060005b600082146129f55780806129de90614913565b915050600a826129ee91906157d1565b91506129cb565b60008167ffffffffffffffff811115612a1157612a10613f60565b5b6040519080825280601f01601f191660200182016040528015612a435781602001600182028036833780820191505090505b5090505b60008514612ad057600182612a5c91906155f0565b9150600a85612a6b9190615802565b6030612a7791906150f4565b60f81b818381518110612a8d57612a8c615833565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ac991906157d1565b9450612a47565b8093505050505b919050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16634000aea07f000000000000000000000000000000000000000000000000000000000000000084866000604051602001612b50929190615871565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401612b7d939291906158ef565b602060405180830381600087803b158015612b9757600080fd5b505af1158015612bab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bcf919061505b565b506000612bf1846000306000808981526020019081526020016000205461388b565b9050600160008086815260200190815260200160002054612c1291906150f4565b60008086815260200190815260200160002081905550612c3284826138c7565b91505092915050565b505050565b60c8601a6000848152602001908152602001600020541015612c88576001601a60008481526020019081526020016000206000828254612c8091906150f4565b925050819055505b60006001603480620f424064e8d4a5100086612ca49190615802565b612cae91906157d1565b612cb891906150f4565b612cc29190615802565b612ccc91906150f4565b905060006001603480620f424086612ce49190615802565b612cee91906150f4565b612cf89190615802565b612d0291906150f4565b905081601f6000868152602001908152602001600020819055508060206000868152602001908152602001600020819055506003601b6000868152602001908152602001600020541015612e78576001821480612d5f5750600e82145b80612d6a5750601b82145b80612d755750602882145b8015612da257506001811480612d8b5750600e81145b80612d965750601b81145b80612da15750602881145b5b15612e73576001601c60008681526020019081526020016000206000828254612dcb91906150f4565b925050819055506001601b60008681526020019081526020016000206000828254612df691906150f4565b9250508190555080821415612e72576001601d60008681526020019081526020016000206000828254612e2991906150f4565b92505081905550600e82148015612e405750600e81145b15612e71576001601e60008681526020019081526020016000206000828254612e6991906150f4565b925050819055505b5b5b6130fe565b6007601b6000868152602001908152602001600020541015612fbc576001821480612ea35750600e82145b80612eae5750601b82145b80612eb95750602882145b8015612ee657506001811480612ecf5750600e81145b80612eda5750601b81145b80612ee55750602881145b5b15612fb7576001601c60008681526020019081526020016000206000828254612f0f91906150f4565b9250508190555080821415612fb6576001601b60008681526020019081526020016000206000828254612f4291906150f4565b925050819055506001601d60008681526020019081526020016000206000828254612f6d91906150f4565b92505081905550600e82148015612f845750600e81145b15612fb5576001601e60008681526020019081526020016000206000828254612fad91906150f4565b925050819055505b5b5b6130fd565b6001821480612fcb5750600e82145b80612fd65750601b82145b80612fe15750602882145b801561300e57506001811480612ff75750600e81145b806130025750601b81145b8061300d5750602881145b5b156130fc576001601c6000868152602001908152602001600020600082825461303791906150f4565b92505081905550808214156130fb576001601d6000868152602001908152602001600020600082825461306a91906150f4565b92505081905550600e821480156130815750600e81145b156130fa57600a601b60008681526020019081526020016000205410156130ce576001601b600086815260200190815260200160002060008282546130c691906150f4565b925050819055505b6001601e600086815260200190815260200160002060008282546130f291906150f4565b925050819055505b5b5b5b5b6013600081548092919061311190614913565b9190505550600160186000868152602001908152602001600020600082825461313a91906150f4565b92505081905550601960008581526020019081526020016000206040518060e00160405280601a6000888152602001908152602001600020548152602001601b6000888152602001908152602001600020548152602001601c6000888152602001908152602001600020548152602001601d6000888152602001908152602001600020548152602001601e6000888152602001908152602001600020548152602001601f600088815260200190815260200160002054815260200160206000888152602001908152602001600020548152509080600181540180825580915050600190039060005260206000209060070201600090919091909150600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c082015181600601555050837fc65836e751bb3368219035dc4f7cef531f4d4bc6e75d085c8b16d6a7b2f3e1b1838360006040516132b29392919061592d565b60405180910390a250505050565b601160008154809291906132d390614913565b91905055506000613302633b9aca0064174876e800846132f39190615802565b6132fd91906157d1565b6138fa565b90506000633b9aca00836133169190615802565b633b9aca00836133269190615624565b6402540be4006011546133399190615624565b61334391906150f4565b61334d91906150f4565b905061335984826139a0565b806017600060115481526020019081526020016000208190555060006001603480662386f26fc1000069021e19e0c9bab2400000886133989190615802565b6133a291906157d1565b6133ac91906150f4565b6133b69190615802565b6133c091906150f4565b9050600060016034806402540be400662386f26fc10000896133e29190615802565b6133ec91906157d1565b6133f691906150f4565b6134009190615802565b61340a91906150f4565b905081601f6000858152602001908152602001600020819055508060206000858152602001908152602001600020819055506001601a60008581526020019081526020016000208190555060018214806134645750600e82145b8061346f5750601b82145b8061347a5750602882145b80156134a7575060018114806134905750600e81145b8061349b5750601b81145b806134a65750602881145b5b15613530576001601c6000858152602001908152602001600020819055506001601b6000858152602001908152602001600020819055508082141561352f576001601d600085815260200190815260200160002081905550600e8214801561350f5750600e81145b1561352e576001601e6000858152602001908152602001600020819055505b5b5b6013600081548092919061354390614913565b9190505550600160186000858152602001908152602001600020600082825461356c91906150f4565b92505081905550601960008481526020019081526020016000206040518060e00160405280601a6000878152602001908152602001600020548152602001601b6000878152602001908152602001600020548152602001601c6000878152602001908152602001600020548152602001601d6000878152602001908152602001600020548152602001601e6000878152602001908152602001600020548152602001601f600087815260200190815260200160002054815260200160206000878152602001908152602001600020548152509080600181540180825580915050600190039060005260206000209060070201600090919091909150600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c082015181600601555050827fc65836e751bb3368219035dc4f7cef531f4d4bc6e75d085c8b16d6a7b2f3e1b1838360016040516136e49392919061592d565b60405180910390a2505050505050565b60006137158473ffffffffffffffffffffffffffffffffffffffff16613b6e565b1561387e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261373e61212d565b8786866040518563ffffffff1660e01b81526004016137609493929190615964565b602060405180830381600087803b15801561377a57600080fd5b505af19250505080156137ab57506040513d601f19601f820116820180604052508101906137a891906159c5565b60015b61382e573d80600081146137db576040519150601f19603f3d011682016040523d82523d6000602084013e6137e0565b606091505b50600081511415613826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161381d90615782565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613883565b600190505b949350505050565b6000848484846040516020016138a494939291906159f2565b6040516020818303038152906040528051906020012060001c9050949350505050565b600082826040516020016138dc929190615a79565b60405160208183030381529060405280519060200120905092915050565b60006028821161390d576000905061399b565b6032821161391e576001905061399b565b603c821161392f576002905061399b565b60468211613940576003905061399b565b60508211613951576004905061399b565b60558211613962576005905061399b565b605a8211613973576006905061399b565b605f8211613984576007905061399b565b6063821015613996576008905061399b565b600990505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a0790615af1565b60405180910390fd5b613a19816120c1565b15613a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5090615b5d565b60405180910390fd5b613a6560008383612c3b565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ab591906150f4565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613b8d906144ba565b90600052602060002090601f016020900481019282613baf5760008555613bf6565b82601f10613bc857805160ff1916838001178555613bf6565b82800160010185558215613bf6579182015b82811115613bf5578251825591602001919060010190613bda565b5b509050613c039190613c07565b5090565b5b80821115613c20576000816000905550600101613c08565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c6d81613c38565b8114613c7857600080fd5b50565b600081359050613c8a81613c64565b92915050565b600060208284031215613ca657613ca5613c2e565b5b6000613cb484828501613c7b565b91505092915050565b60008115159050919050565b613cd281613cbd565b82525050565b6000602082019050613ced6000830184613cc9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d2d578082015181840152602081019050613d12565b83811115613d3c576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d5e82613cf3565b613d688185613cfe565b9350613d78818560208601613d0f565b613d8181613d42565b840191505092915050565b60006020820190508181036000830152613da68184613d53565b905092915050565b6000819050919050565b613dc181613dae565b8114613dcc57600080fd5b50565b600081359050613dde81613db8565b92915050565b600060208284031215613dfa57613df9613c2e565b5b6000613e0884828501613dcf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e3c82613e11565b9050919050565b613e4c81613e31565b82525050565b6000602082019050613e676000830184613e43565b92915050565b613e7681613e31565b8114613e8157600080fd5b50565b600081359050613e9381613e6d565b92915050565b60008060408385031215613eb057613eaf613c2e565b5b6000613ebe85828601613e84565b9250506020613ecf85828601613dcf565b9150509250929050565b613ee281613dae565b82525050565b6000602082019050613efd6000830184613ed9565b92915050565b600080600060608486031215613f1c57613f1b613c2e565b5b6000613f2a86828701613e84565b9350506020613f3b86828701613e84565b9250506040613f4c86828701613dcf565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f9882613d42565b810181811067ffffffffffffffff82111715613fb757613fb6613f60565b5b80604052505050565b6000613fca613c24565b9050613fd68282613f8f565b919050565b600067ffffffffffffffff821115613ff657613ff5613f60565b5b613fff82613d42565b9050602081019050919050565b82818337600083830152505050565b600061402e61402984613fdb565b613fc0565b90508281526020810184848401111561404a57614049613f5b565b5b61405584828561400c565b509392505050565b600082601f83011261407257614071613f56565b5b813561408284826020860161401b565b91505092915050565b6000602082840312156140a1576140a0613c2e565b5b600082013567ffffffffffffffff8111156140bf576140be613c33565b5b6140cb8482850161405d565b91505092915050565b600060e0820190506140e9600083018a613ed9565b6140f66020830189613ed9565b6141036040830188613ed9565b6141106060830187613ed9565b61411d6080830186613ed9565b61412a60a0830185613ed9565b61413760c0830184613ed9565b98975050505050505050565b600061414e82613e11565b9050919050565b61415e81614143565b82525050565b60006020820190506141796000830184614155565b92915050565b61418881614143565b811461419357600080fd5b50565b6000813590506141a58161417f565b92915050565b6000602082840312156141c1576141c0613c2e565b5b60006141cf84828501614196565b91505092915050565b6000602082840312156141ee576141ed613c2e565b5b60006141fc84828501613e84565b91505092915050565b6000819050919050565b61421881614205565b811461422357600080fd5b50565b6000813590506142358161420f565b92915050565b6000806040838503121561425257614251613c2e565b5b600061426085828601614226565b925050602061427185828601613dcf565b9150509250929050565b61428481613cbd565b811461428f57600080fd5b50565b6000813590506142a18161427b565b92915050565b600080604083850312156142be576142bd613c2e565b5b60006142cc85828601613e84565b92505060206142dd85828601614292565b9150509250929050565b600067ffffffffffffffff82111561430257614301613f60565b5b61430b82613d42565b9050602081019050919050565b600061432b614326846142e7565b613fc0565b90508281526020810184848401111561434757614346613f5b565b5b61435284828561400c565b509392505050565b600082601f83011261436f5761436e613f56565b5b813561437f848260208601614318565b91505092915050565b600080600080608085870312156143a2576143a1613c2e565b5b60006143b087828801613e84565b94505060206143c187828801613e84565b93505060406143d287828801613dcf565b925050606085013567ffffffffffffffff8111156143f3576143f2613c33565b5b6143ff8782880161435a565b91505092959194509250565b6000806040838503121561442257614421613c2e565b5b600061443085828601613dcf565b925050602061444185828601613dcf565b9150509250929050565b6000806040838503121561446257614461613c2e565b5b600061447085828601613e84565b925050602061448185828601613e84565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144d257607f821691505b602082108114156144e6576144e561448b565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614548602c83613cfe565b9150614553826144ec565b604082019050919050565b600060208201905081810360008301526145778161453b565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006145da602183613cfe565b91506145e58261457e565b604082019050919050565b60006020820190508181036000830152614609816145cd565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061466c603883613cfe565b915061467782614610565b604082019050919050565b6000602082019050818103600083015261469b8161465f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006146d8601f83613cfe565b91506146e3826146a2565b602082019050919050565b60006020820190508181036000830152614707816146cb565b9050919050565b7f4d696e74696e6720686173206265656e207065726d616e656e746c792064697360008201527f61626c65642e0000000000000000000000000000000000000000000000000000602082015250565b600061476a602683613cfe565b91506147758261470e565b604082019050919050565b600060208201905081810360008301526147998161475d565b9050919050565b7f4d696e74696e6720686173206265656e207061757365642e0000000000000000600082015250565b60006147d6601883613cfe565b91506147e1826147a0565b602082019050919050565b60006020820190508181036000830152614805816147c9565b9050919050565b7f4e6f2070696773206c65667420746f206d696e742c20736f7272792e203a2d28600082015250565b6000614842602083613cfe565b915061484d8261480c565b602082019050919050565b6000602082019050818103600083015261487181614835565b9050919050565b7f57726f6e6720616d6f756e7420666f72206d696e742e00000000000000000000600082015250565b60006148ae601683613cfe565b91506148b982614878565b602082019050919050565b600060208201905081810360008301526148dd816148a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061491e82613dae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614951576149506148e4565b5b600182019050919050565b600081905092915050565b50565b600061497760008361495c565b915061498282614967565b600082019050919050565b60006149988261496a565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220666f72206d696e74696e6760008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006149fe602183613cfe565b9150614a09826149a2565b604082019050919050565b60006020820190508181036000830152614a2d816149f1565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614a90603183613cfe565b9150614a9b82614a34565b604082019050919050565b60006020820190508181036000830152614abf81614a83565b9050919050565b7f57726f6e6720616d6f756e7420666f7220757067726164652e00000000000000600082015250565b6000614afc601983613cfe565b9150614b0782614ac6565b602082019050919050565b60006020820190508181036000830152614b2b81614aef565b9050919050565b7f4661696c656420746f2073656e6420457468657220666f72207570677261646560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b8e602183613cfe565b9150614b9982614b32565b604082019050919050565b60006020820190508181036000830152614bbd81614b81565b9050919050565b7f596f75206d75737420737769746368206f66662075706772616465732062656660008201527f6f7265207065726d616e656e746c792064697361626c696e67207468656d206d60208201527f616e75616c6c792e000000000000000000000000000000000000000000000000604082015250565b6000614c46604883613cfe565b9150614c5182614bc4565b606082019050919050565b60006020820190508181036000830152614c7581614c39565b9050919050565b7f557067726164696e672068617320616c7265616479206265656e207065726d6160008201527f6e656e746c792064697361626c65642e00000000000000000000000000000000602082015250565b6000614cd8603083613cfe565b9150614ce382614c7c565b604082019050919050565b60006020820190508181036000830152614d0781614ccb565b9050919050565b7f596f75206d75737420737769746368206f6666206d696e7473206265666f726560008201527f207065726d616e656e746c792064697361626c696e67207468656d206d616e7560208201527f616c6c792e000000000000000000000000000000000000000000000000000000604082015250565b6000614d90604583613cfe565b9150614d9b82614d0e565b606082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f4d696e74696e672068617320616c7265616479206265656e207065726d616e6560008201527f6e746c792064697361626c65642e000000000000000000000000000000000000602082015250565b6000614e22602e83613cfe565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614eb4602983613cfe565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614f46602a83613cfe565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b600081519050614f8b81613db8565b92915050565b600060208284031215614fa757614fa6613c2e565b5b6000614fb584828501614f7c565b91505092915050565b6000819050919050565b6000614fe3614fde614fd984613e11565b614fbe565b613e11565b9050919050565b6000614ff582614fc8565b9050919050565b600061500782614fea565b9050919050565b61501781614ffc565b82525050565b6000604082019050615032600083018561500e565b61503f6020830184613ed9565b9392505050565b6000815190506150558161427b565b92915050565b60006020828403121561507157615070613c2e565b5b600061507f84828501615046565b91505092915050565b7f556e61626c6520746f207472616e736665720000000000000000000000000000600082015250565b60006150be601283613cfe565b91506150c982615088565b602082019050919050565b600060208201905081810360008301526150ed816150b1565b9050919050565b60006150ff82613dae565b915061510a83613dae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561513f5761513e6148e4565b5b828201905092915050565b7f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c00600082015250565b6000615180601f83613cfe565b915061518b8261514a565b602082019050919050565b600060208201905081810360008301526151af81615173565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006151ec601983613cfe565b91506151f7826151b6565b602082019050919050565b6000602082019050818103600083015261521b816151df565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061527e602f83613cfe565b915061528982615222565b604082019050919050565b600060208201905081810360008301526152ad81615271565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546152e1816144ba565b6152eb81866152b4565b9450600182166000811461530657600181146153175761534a565b60ff1983168652818601935061534a565b615320856152bf565b60005b8381101561534257815481890152600182019150602081019050615323565b838801955050505b50505092915050565b600061535e82613cf3565b61536881856152b4565b9350615378818560208601613d0f565b80840191505092915050565b600061539082856152d4565b915061539c8284615353565b91508190509392505050565b7f4e6f7420656e6f756768204c494e4b2e20546f7075702074686520636f6e747260008201527f6163742077697468204c494e4b2e000000000000000000000000000000000000602082015250565b6000615404602e83613cfe565b915061540f826153a8565b604082019050919050565b60006020820190508181036000830152615433816153f7565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615496602c83613cfe565b91506154a18261543a565b604082019050919050565b600060208201905081810360008301526154c581615489565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e6564000000000000000000000000000000000000000000602082015250565b6000615528602b83613cfe565b9150615533826154cc565b604082019050919050565b600060208201905081810360008301526155578161551b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006155ba602483613cfe565b91506155c58261555e565b604082019050919050565b600060208201905081810360008301526155e9816155ad565b9050919050565b60006155fb82613dae565b915061560683613dae565b925082821015615619576156186148e4565b5b828203905092915050565b600061562f82613dae565b915061563a83613dae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615673576156726148e4565b5b828202905092915050565b7f4f6e6c79207468652056524620436f6f7264696e61746f72206d61792063616c60008201527f6c20746869732066756e6374696f6e2e00000000000000000000000000000000602082015250565b60006156da603083613cfe565b91506156e58261567e565b604082019050919050565b60006020820190508181036000830152615709816156cd565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061576c603283613cfe565b915061577782615710565b604082019050919050565b6000602082019050818103600083015261579b8161575f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006157dc82613dae565b91506157e783613dae565b9250826157f7576157f66157a2565b5b828204905092915050565b600061580d82613dae565b915061581883613dae565b925082615828576158276157a2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b61586b81614205565b82525050565b60006040820190506158866000830185615862565b6158936020830184613ed9565b9392505050565b600081519050919050565b600082825260208201905092915050565b60006158c18261589a565b6158cb81856158a5565b93506158db818560208601613d0f565b6158e481613d42565b840191505092915050565b60006060820190506159046000830186613e43565b6159116020830185613ed9565b818103604083015261592381846158b6565b9050949350505050565b60006060820190506159426000830186613ed9565b61594f6020830185613ed9565b61595c6040830184613cc9565b949350505050565b60006080820190506159796000830187613e43565b6159866020830186613e43565b6159936040830185613ed9565b81810360608301526159a581846158b6565b905095945050505050565b6000815190506159bf81613c64565b92915050565b6000602082840312156159db576159da613c2e565b5b60006159e9848285016159b0565b91505092915050565b6000608082019050615a076000830187615862565b615a146020830186613ed9565b615a216040830185613e43565b615a2e6060830184613ed9565b95945050505050565b6000819050919050565b615a52615a4d82614205565b615a37565b82525050565b6000819050919050565b615a73615a6e82613dae565b615a58565b82525050565b6000615a858285615a41565b602082019150615a958284615a62565b6020820191508190509392505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615adb602083613cfe565b9150615ae682615aa5565b602082019050919050565b60006020820190508181036000830152615b0a81615ace565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615b47601c83613cfe565b9150615b5282615b11565b602082019050919050565b60006020820190508181036000830152615b7681615b3a565b905091905056fea2646970667358221220f175d2e77f222a47478680d5604a4f665e1f20c53111b0b9940703d0ef265f7e64736f6c6343000809003368747470733a2f2f777777772e646567656e65726174656661726d2e696f2f6d657461646174612f
Deployed ByteCode Sourcemap
54204:17078:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42428:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43373:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44512:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44035:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58246:713;;;:::i;:::-;;69268:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59039:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45402:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70795:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54681:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68675:94;;;;;;;;;;;;;:::i;:::-;;59183:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;54609:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69761:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54881:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45812:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63460:469;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54821:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68898:324;;;;;;;;;;;;;:::i;:::-;;68305:297;;;;;;;;;;;;;:::i;:::-;;69568:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43067:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42797:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71052:227;;;;;;;;;;;;;:::i;:::-;;69950:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38491:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43542:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54654:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44805:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69433:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55544:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54911:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46068:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55485:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43717:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54279:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55598:60;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;54847:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68110:83;;;;;;;;;;;;;:::i;:::-;;45171:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54784:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42428:305;42530:4;42582:25;42567:40;;;:11;:40;;;;:105;;;;42639:33;42624:48;;;:11;:48;;;;42567:105;:158;;;;42689:36;42713:11;42689:23;:36::i;:::-;42567:158;42547:178;;42428:305;;;:::o;43373:100::-;43427:13;43460:5;43453:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43373:100;:::o;44512:221::-;44588:7;44616:16;44624:7;44616;:16::i;:::-;44608:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44701:15;:24;44717:7;44701:24;;;;;;;;;;;;;;;;;;;;;44694:31;;44512:221;;;:::o;44035:411::-;44116:13;44132:23;44147:7;44132:14;:23::i;:::-;44116:39;;44180:5;44174:11;;:2;:11;;;;44166:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44274:5;44258:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;44283:37;44300:5;44307:12;:10;:12::i;:::-;44283:16;:37::i;:::-;44258:62;44236:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;44417:21;44426:2;44430:7;44417:8;:21::i;:::-;44105:341;44035:411;;:::o;58246:713::-;4454:1;5052:7;;:19;;5044:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4454:1;5185:7;:18;;;;58330:5:::1;58311:24;;:15;;;;;;;;;;;:24;;;58303:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;58408:4;58397:15;;:7;;;;;;;;;;;:15;;;58389:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;58475:4;58460:12;;:19;58452:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;58548:5;;58535:9;:18;58527:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;58660:24;:22;:24::i;:::-;;58773:12;;:14;;;;;;;;;:::i;:::-;;;;;;58799:20;58833:15;;;;;;;;;;;58825:29;;58864:9;58825:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58798:81;;;58898:15;58890:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;58292:667;4410:1:::0;5364:7;:22;;;;58246:713::o;69268:121::-;56562:13;;;;;;;;;;;56548:27;;:10;:27;;;56540:36;;;;;;69366:15:::1;69351:12;:30;;;;69268:121:::0;:::o;59039:87::-;59082:7;59109:9;;59102:16;;59039:87;:::o;45402:339::-;45597:41;45616:12;:10;:12::i;:::-;45630:7;45597:18;:41::i;:::-;45589:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;45705:28;45715:4;45721:2;45725:7;45705:9;:28::i;:::-;45402:339;;;:::o;70795:96::-;56562:13;;;;;;;;;;;56548:27;;:10;:27;;;56540:36;;;;;;70877:6:::1;70867:7;:16;;;;;;;;;;;;:::i;:::-;;70795:96:::0;:::o;54681:27::-;;;;:::o;68675:94::-;56562:13;;;;;;;;;;;56548:27;;:10;:27;;;56540:36;;;;;;68750:11:::1;;;;;;;;;;;68749:12;68735:11;;:26;;;;;;;;;;;;;;;;;;68675:94::o:0;59183:301::-;59241:7;59250;59259;59268;59277;59286;59295;59323:9;:18;59333:7;59323:18;;;;;;;;;;;;59343:11;:20;59355:7;59343:20;;;;;;;;;;;;59365:9;:18;59375:7;59365:18;;;;;;;;;;;;59385:12;:21;59398:7;59385:21;;;;;;;;;;;;59408:11;:20;59420:7;59408:20;;;;;;;;;;;;59430:12;:21;59443:7;59430:21;;;;;;;;;;;;59453:13;:22;59467:7;59453:22;;;;;;;;;;;;59315:161;;;;;;;;;;;;;;59183:301;;;;;;;;;:::o;54609:38::-;;;;;;;;;;;;;:::o;69761:133::-;56562:13;;;;;;;;;;;56548:27;;:10;:27;;;56540:36;;;;;;69870:16:::1;69854:13;;:32;;;;;;;;;;;;;;;;;;69761:133:::0;:::o;54881:23::-;;;;;;;;;;;;;:::o;45812:185::-;45950:39;45967:4;45973:2;45977:7;45950:39;;;;;;;;;;;;:16;:39::i;:::-;45812:185;;;:::o;63460:469::-;63544:16;63552:7;63544;:16::i;:::-;63530:30;;:10;:30;;;63522:39;;;;;;63593:12;;63580:9;:25;63572:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;63717:34;63743:7;63717:25;:34::i;:::-;;63763:23;63800:15;;;;;;;;;;;63792:29;;63831:9;63792:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63762:84;;;63865:18;63857:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;63511:418;63460:469;:::o;54821:19::-;;;;;;;;;;;;;:::o;68898:324::-;56562:13;;;;;;;;;;;56548:27;;:10;:27;;;56540:36;;;;;;68987:5:::1;68972:20;;:11;;;;;;;;;;;:20;;;68964:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;69115:5;69088:32;;:23;;;;;;;;;;;:32;;;69080:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;69210:4;69184:23;;:30;;;;;;;;;;;;;;;;;;68898:324::o:0;68305:297::-;56562:13;;;;;;;;;;;56548:27;;:10;:27;;;56540:36;;;;;;68388:5:::1;68377:16;;:7;;;;;;;;;;;:16;;;68369:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;68505:5;68486:24;;:15;;;;;;;;;;;:24;;;68478:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;68590:4;68572:15;;:22;;;;;;;;;;;;;;;;;;68305:297::o:0;69568:144::-;56562:13;;;;;;;;;;;56548:27;;:10;:27;;;56540:36;;;;;;69685:19:::1;69667:15;;:37;;;;;;;;;;;;;;;;;;69568:144:::0;:::o;43067:239::-;43139:7;43159:13;43175:7;:16;43183:7;43175:16;;;;;;;;;;;;;;;;;;;;;43159:32;;43227:1;43210:19;;:5;:19;;;;43202:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43293:5;43286:12;;;43067:239;;;:::o;42797:208::-;42869:7;42914:1;42897:19;;:5;:19;;;;42889:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42981:9;:16;42991:5;42981:16;;;;;;;;;;;;;;;;42974:23;;42797:208;;;:::o;71052:227::-;56562:13;;;;;;;;;;;56548:27;;:10;:27;;;56540:36;;;;;;71106:23:::1;71151:16;;;;;;;;;;;71106:62;;71187:4;:13;;;71201:15;;;;;;;;;;;71218:4;:14;;;71241:4;71218:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71187:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71179:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;71095:184;71052:227::o:0;69950:211::-;70009:7;70029:22;70087:34;70100:11;:20;70112:7;70100:20;;;;;;;;;;;;70087:12;:34::i;:::-;70054:30;70065:9;:18;70075:7;70065:18;;;;;;;;;;;;70054:10;:30::i;:::-;:67;;;;:::i;:::-;70029:92;;70139:14;70132:21;;;69950:211;;;:::o;38491:210::-;38598:14;38584:28;;:10;:28;;;38576:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;38655:40;38673:9;38684:10;38655:17;:40::i;:::-;38491:210;;:::o;43542:104::-;43598:13;43631:7;43624:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43542:104;:::o;54654:20::-;;;;:::o;44805:295::-;44920:12;:10;:12::i;:::-;44908:24;;:8;:24;;;;44900:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45020:8;44975:18;:32;44994:12;:10;:12::i;:::-;44975:32;;;;;;;;;;;;;;;:42;45008:8;44975:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;45073:8;45044:48;;45059:12;:10;:12::i;:::-;45044:48;;;45083:8;45044:48;;;;;;:::i;:::-;;;;;;;;44805:295;;:::o;69433:93::-;56562:13;;;;;;;;;;;56548:27;;:10;:27;;;56540:36;;;;;;69510:8:::1;69502:5;:16;;;;69433:93:::0;:::o;55544:47::-;;;;;;;;;;;;;;;;;:::o;54911:35::-;;;;;;;;;;;;;:::o;46068:328::-;46243:41;46262:12;:10;:12::i;:::-;46276:7;46243:18;:41::i;:::-;46235:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;46349:39;46363:4;46369:2;46373:7;46382:5;46349:13;:39::i;:::-;46068:328;;;;:::o;55485:52::-;;;;;;;;;;;;;;;;;:::o;43717:254::-;43790:13;43824:16;43832:7;43824;:16::i;:::-;43816:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43934:7;43943:18;:7;:16;:18::i;:::-;43917:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43903:60;;43717:254;;;:::o;54279:28::-;;;;;;;;;;;;;:::o;55598:60::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54847:27::-;;;;;;;;;;;;;:::o;68110:83::-;56562:13;;;;;;;;;;;56548:27;;:10;:27;;;56540:36;;;;;;68178:7:::1;;;;;;;;;;;68177:8;68167:7;;:18;;;;;;;;;;;;;;;;;;68110:83::o:0;45171:164::-;45268:4;45292:18;:25;45311:5;45292:25;;;;;;;;;;;;;;;:35;45318:8;45292:35;;;;;;;;;;;;;;;;;;;;;;;;;45285:42;;45171:164;;;;:::o;54784:30::-;;;;:::o;19760:157::-;19845:4;19884:25;19869:40;;;:11;:40;;;;19862:47;;19760:157;;;:::o;47906:127::-;47971:4;48023:1;47995:30;;:7;:16;48003:7;47995:16;;;;;;;;;;;;;;;;;;;;;:30;;;;47988:37;;47906:127;;;:::o;8330:98::-;8383:7;8410:10;8403:17;;8330:98;:::o;51890:174::-;51992:2;51965:15;:24;51981:7;51965:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52048:7;52044:2;52010:46;;52019:23;52034:7;52019:14;:23::i;:::-;52010:46;;;;;;;;;;;;51890:174;;:::o;56717:313::-;56768:17;56839:3;;56806:4;:14;;;56829:4;56806:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;56798:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;56916:31;56934:7;;56943:3;;56916:17;:31::i;:::-;56904:43;;56985:10;56958:13;:24;56972:9;56958:24;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;56717:313;:::o;48200:348::-;48293:4;48318:16;48326:7;48318;:16::i;:::-;48310:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48394:13;48410:23;48425:7;48410:14;:23::i;:::-;48394:39;;48463:5;48452:16;;:7;:16;;;:51;;;;48496:7;48472:31;;:20;48484:7;48472:11;:20::i;:::-;:31;;;48452:51;:87;;;;48507:32;48524:5;48531:7;48507:16;:32::i;:::-;48452:87;48444:96;;;48200:348;;;;:::o;51192:580::-;51351:4;51324:31;;:23;51339:7;51324:14;:23::i;:::-;:31;;;51316:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;51436:1;51422:16;;:2;:16;;;;51414:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51492:39;51513:4;51519:2;51523:7;51492:20;:39::i;:::-;51596:29;51613:1;51617:7;51596:8;:29::i;:::-;51657:1;51638:9;:15;51648:4;51638:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;51686:1;51669:9;:13;51679:2;51669:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;51717:2;51698:7;:16;51706:7;51698:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;51756:7;51752:2;51737:27;;51746:4;51737:27;;;;;;;;;;;;51192:580;;;:::o;57151:329::-;57220:17;57291:3;;57258:4;:14;;;57281:4;57258:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;57250:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;57368:31;57386:7;;57395:3;;57368:17;:31::i;:::-;57356:43;;57438:7;57410:14;:25;57425:9;57410:25;;;;;;;;;;;:35;;;;57151:329;;;:::o;70496:152::-;70557:7;70591:1;70581:7;:11;70577:63;;;70609:7;70601:5;:15;;;;:::i;:::-;70594:22;;;;70577:63;70639:1;70632:8;;70496:152;;;;:::o;70230:197::-;70287:7;70320:3;70311:5;:12;70307:64;;70354:5;70347:4;:12;;;;:::i;:::-;70340:19;;;;70307:64;70413:6;70405:3;70397:5;:11;;;;:::i;:::-;70389:4;:20;;;;:::i;:::-;70388:31;;;;:::i;:::-;70381:38;;70230:197;;;;:::o;57741:398::-;57860:14;;;;;;;;;;;57846:28;;:10;:28;;;57838:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;57971:1;57942:14;:25;57957:9;57942:25;;;;;;;;;;;;:30;57938:194;;57989:51;58000:14;:25;58015:9;58000:25;;;;;;;;;;;;58027:12;57989:10;:51::i;:::-;57938:194;;;58073:47;58081:13;:24;58095:9;58081:24;;;;;;;;;;;;;;;;;;;;;58107:12;58073:7;:47::i;:::-;57938:194;57741:398;;:::o;47278:315::-;47435:28;47445:4;47451:2;47455:7;47435:9;:28::i;:::-;47482:48;47505:4;47511:2;47515:7;47524:5;47482:22;:48::i;:::-;47474:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;47278:315;;;;:::o;5829:723::-;5885:13;6115:1;6106:5;:10;6102:53;;;6133:10;;;;;;;;;;;;;;;;;;;;;6102:53;6165:12;6180:5;6165:20;;6196:14;6221:78;6236:1;6228:4;:9;6221:78;;6254:8;;;;;:::i;:::-;;;;6285:2;6277:10;;;;;:::i;:::-;;;6221:78;;;6309:19;6341:6;6331:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6309:39;;6359:154;6375:1;6366:5;:10;6359:154;;6403:1;6393:11;;;;;:::i;:::-;;;6470:2;6462:5;:10;;;;:::i;:::-;6449:2;:24;;;;:::i;:::-;6436:39;;6419:6;6426;6419:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6499:2;6490:11;;;;;:::i;:::-;;;6359:154;;;6537:6;6523:21;;;;;5829:723;;;;:::o;36608:1034::-;36685:17;36711:4;:20;;;36732:14;36748:4;36765:8;35438:1;36754:43;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36711:87;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37033:15;37051:82;37068:8;35438:1;37109:4;37116:6;:16;37123:8;37116:16;;;;;;;;;;;;37051;:82::i;:::-;37033:100;;37589:1;37570:6;:16;37577:8;37570:16;;;;;;;;;;;;:20;;;;:::i;:::-;37551:6;:16;37558:8;37551:16;;;;;;;;;;;:39;;;;37604:32;37618:8;37628:7;37604:13;:32::i;:::-;37597:39;;;36608:1034;;;;:::o;54000:126::-;;;;:::o;63975:4062::-;64308:3;64287:9;:18;64297:7;64287:18;;;;;;;;;;;;:24;64283:80;;;64350:1;64328:9;:18;64338:7;64328:18;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;64283:80;64525:16;64609:1;64603:2;64597;64586:7;64575:8;64547:25;:36;;;;:::i;:::-;:46;;;;:::i;:::-;64546:53;;;;:::i;:::-;64545:60;;;;:::i;:::-;64544:66;;;;:::i;:::-;64525:85;;64621:17;64695:1;64689:2;64683;64672:7;64644:25;:35;;;;:::i;:::-;64643:42;;;;:::i;:::-;64642:49;;;;:::i;:::-;64641:55;;;;:::i;:::-;64621:75;;64854:8;64830:12;:21;64843:7;64830:21;;;;;;;;;;;:32;;;;64898:9;64873:13;:22;64887:7;64873:22;;;;;;;;;;;:34;;;;65026:1;65003:11;:20;65015:7;65003:20;;;;;;;;;;;;:24;64999:2323;;;65061:1;65049:8;:13;:31;;;;65078:2;65066:8;:14;65049:31;:49;;;;65096:2;65084:8;:14;65049:49;:67;;;;65114:2;65102:8;:14;65049:67;65048:146;;;;;65135:1;65122:9;:14;:33;;;;65153:2;65140:9;:15;65122:33;:52;;;;65172:2;65159:9;:15;65122:52;:71;;;;65191:2;65178:9;:15;65122:71;65048:146;65044:692;;;65237:1;65215:9;:18;65225:7;65215:18;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;65313:1;65289:11;:20;65301:7;65289:20;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;65401:9;65389:8;:21;65385:336;;;65460:1;65435:12;:21;65448:7;65435:21;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;65603:2;65591:8;:14;:33;;;;;65622:2;65609:9;:15;65591:33;65587:115;;;65677:1;65653:11;:20;65665:7;65653:20;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;65587:115;65385:336;65044:692;64999:2323;;;65780:1;65757:11;:20;65769:7;65757:20;;;;;;;;;;;;:24;65753:1569;;;65815:1;65803:8;:13;:31;;;;65832:2;65820:8;:14;65803:31;:49;;;;65850:2;65838:8;:14;65803:49;:67;;;;65868:2;65856:8;:14;65803:67;65802:146;;;;;65889:1;65876:9;:14;:33;;;;65907:2;65894:9;:15;65876:33;:52;;;;65926:2;65913:9;:15;65876:52;:71;;;;65945:2;65932:9;:15;65876:71;65802:146;65798:700;;;65991:1;65969:9;:18;65979:7;65969:18;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;66079:9;66067:8;:21;66063:420;;;66173:1;66149:11;:20;66161:7;66149:20;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;66222:1;66197:12;:21;66210:7;66197:21;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;66365:2;66353:8;:14;:33;;;;;66384:2;66371:9;:15;66353:33;66349:115;;;66439:1;66415:11;:20;66427:7;66415:20;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;66349:115;66063:420;65798:700;65753:1569;;;66547:1;66535:8;:13;:31;;;;66564:2;66552:8;:14;66535:31;:49;;;;66582:2;66570:8;:14;66535:49;:67;;;;66600:2;66588:8;:14;66535:67;66534:146;;;;;66621:1;66608:9;:14;:33;;;;66639:2;66626:9;:15;66608:33;:52;;;;66658:2;66645:9;:15;66608:52;:71;;;;66677:2;66664:9;:15;66608:71;66534:146;66530:781;;;66723:1;66701:9;:18;66711:7;66701:18;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;66791:9;66779:8;:21;66775:521;;;66850:1;66825:12;:21;66838:7;66825:21;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;66993:2;66981:8;:14;:33;;;;;67012:2;66999:9;:15;66981:33;66977:300;;;67070:2;67047:11;:20;67059:7;67047:20;;;;;;;;;;;;:25;67043:159;;;67173:1;67149:11;:20;67161:7;67149:20;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;67043:159;67252:1;67228:11;:20;67240:7;67228:20;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;66977:300;66775:521;66530:781;65753:1569;64999:2323;67381:15;;:17;;;;;;;;;:::i;:::-;;;;;;67562:1;67537:12;:21;67550:7;67537:21;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;67706:18;:27;67725:7;67706:27;;;;;;;;;;;67739:166;;;;;;;;67752:9;:18;67762:7;67752:18;;;;;;;;;;;;67739:166;;;;67772:11;:20;67784:7;67772:20;;;;;;;;;;;;67739:166;;;;67794:9;:18;67804:7;67794:18;;;;;;;;;;;;67739:166;;;;67814:12;:21;67827:7;67814:21;;;;;;;;;;;;67739:166;;;;67837:11;:20;67849:7;67837:20;;;;;;;;;;;;67739:166;;;;67859:12;:21;67872:7;67859:21;;;;;;;;;;;;67739:166;;;;67882:13;:22;67896:7;67882:22;;;;;;;;;;;;67739:166;;;67706:200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67993:7;67983:46;68002:8;68012:9;68023:5;67983:46;;;;;;;;:::i;:::-;;;;;;;;64056:3981;;63975:4062;;:::o;60072:3278::-;60386:9;;:11;;;;;;;;;:::i;:::-;;;;;;60598:18;60619:64;60675:7;60664:8;60636:25;:36;;;;:::i;:::-;:46;;;;:::i;:::-;60619:16;:64::i;:::-;60598:85;;60918:15;61016:7;60988:25;:35;;;;:::i;:::-;60976:7;60963:10;:20;;;;:::i;:::-;60950:8;60938:9;;:20;;;;:::i;:::-;60937:47;;;;:::i;:::-;60936:87;;;;:::i;:::-;60918:105;;61059:22;61065:6;61073:7;61059:5;:22::i;:::-;61259:7;61228:17;:28;61246:9;;61228:28;;;;;;;;;;;:38;;;;61429:16;61514:1;61508:2;61502;61490:8;61479;61451:25;:36;;;;:::i;:::-;:47;;;;:::i;:::-;61450:54;;;;:::i;:::-;61449:61;;;;:::i;:::-;61448:67;;;;:::i;:::-;61429:86;;61526:17;61612:1;61606:2;61600;61588:8;61577;61549:25;:36;;;;:::i;:::-;:47;;;;:::i;:::-;61548:54;;;;:::i;:::-;61547:61;;;;:::i;:::-;61546:67;;;;:::i;:::-;61526:87;;61771:8;61747:12;:21;61760:7;61747:21;;;;;;;;;;;:32;;;;61815:9;61790:13;:22;61804:7;61790:22;;;;;;;;;;;:34;;;;61918:1;61897:9;:18;61907:7;61897:18;;;;;;;;;;;:22;;;;62012:1;62000:8;:13;:31;;;;62029:2;62017:8;:14;62000:31;:49;;;;62047:2;62035:8;:14;62000:49;:67;;;;62065:2;62053:8;:14;62000:67;61999:146;;;;;62086:1;62073:9;:14;:33;;;;62104:2;62091:9;:15;62073:33;:52;;;;62123:2;62110:9;:15;62073:52;:71;;;;62142:2;62129:9;:15;62073:71;61999:146;61995:640;;;62183:1;62162:9;:18;62172:7;62162:18;;;;;;;;;;;:22;;;;62250:1;62227:11;:20;62239:7;62227:20;;;;;;;;;;;:24;;;;62330:9;62318:8;:21;62314:310;;;62384:1;62360:12;:21;62373:7;62360:21;;;;;;;;;;;:25;;;;62519:2;62507:8;:14;:33;;;;;62538:2;62525:9;:15;62507:33;62503:106;;;62588:1;62565:11;:20;62577:7;62565:20;;;;;;;;;;;:24;;;;62503:106;62314:310;61995:640;62731:15;;:17;;;;;;;;;:::i;:::-;;;;;;62881:1;62856:12;:21;62869:7;62856:21;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;63025:18;:27;63044:7;63025:27;;;;;;;;;;;63058:166;;;;;;;;63071:9;:18;63081:7;63071:18;;;;;;;;;;;;63058:166;;;;63091:11;:20;63103:7;63091:20;;;;;;;;;;;;63058:166;;;;63113:9;:18;63123:7;63113:18;;;;;;;;;;;;63058:166;;;;63133:12;:21;63146:7;63133:21;;;;;;;;;;;;63058:166;;;;63156:11;:20;63168:7;63156:20;;;;;;;;;;;;63058:166;;;;63178:12;:21;63191:7;63178:21;;;;;;;;;;;;63058:166;;;;63201:13;:22;63215:7;63201:22;;;;;;;;;;;;63058:166;;;63025:200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63307:7;63297:45;63316:8;63326:9;63337:4;63297:45;;;;;;;;:::i;:::-;;;;;;;;60149:3201;;;;60072:3278;;:::o;52629:799::-;52784:4;52805:15;:2;:13;;;:15::i;:::-;52801:620;;;52857:2;52841:36;;;52878:12;:10;:12::i;:::-;52892:4;52898:7;52907:5;52841:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52837:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53100:1;53083:6;:13;:18;53079:272;;;53126:60;;;;;;;;;;:::i;:::-;;;;;;;;53079:272;53301:6;53295:13;53286:6;53282:2;53278:15;53271:38;52837:529;52974:41;;;52964:51;;;:6;:51;;;;52957:58;;;;;52801:620;53405:4;53398:11;;52629:799;;;;;;;:::o;26629:247::-;26776:7;26828:8;26838:9;26849:10;26861:6;26817:51;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26807:62;;;;;;26799:71;;26792:78;;26629:247;;;;;;:::o;27267:168::-;27354:7;27404:8;27414:13;27387:41;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27377:52;;;;;;27370:59;;27267:168;;;;:::o;59564:462::-;59627:7;59660:2;59651:5;:11;59647:352;;59671:1;59664:8;;;;59647:352;59701:2;59692:5;:11;59688:311;;59712:1;59705:8;;;;59688:311;59742:2;59733:5;:11;59729:270;;59753:1;59746:8;;;;59729:270;59783:2;59774:5;:11;59770:229;;59794:1;59787:8;;;;59770:229;59824:2;59815:5;:11;59811:188;;59835:1;59828:8;;;;59811:188;59865:2;59856:5;:11;59852:147;;59876:1;59869:8;;;;59852:147;59906:2;59897:5;:11;59893:106;;59917:1;59910:8;;;;59893:106;59947:2;59938:5;:11;59934:65;;59958:1;59951:8;;;;59934:65;59987:2;59979:5;:10;59975:24;;;59998:1;59991:8;;;;59975:24;60017:1;60010:8;;59564:462;;;;:::o;49884:382::-;49978:1;49964:16;;:2;:16;;;;49956:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;50037:16;50045:7;50037;:16::i;:::-;50036:17;50028:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50099:45;50128:1;50132:2;50136:7;50099:20;:45::i;:::-;50174:1;50157:9;:13;50167:2;50157:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;50205:2;50186:7;:16;50194:7;50186:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;50250:7;50246:2;50225:33;;50242:1;50225:33;;;;;;;;;;;;49884:382;;:::o;9427:387::-;9487:4;9695:12;9762:7;9750:20;9742:28;;9805:1;9798:4;:8;9791:15;;;9427:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:886::-;8797:4;8835:3;8824:9;8820:19;8812:27;;8849:71;8917:1;8906:9;8902:17;8893:6;8849:71;:::i;:::-;8930:72;8998:2;8987:9;8983:18;8974:6;8930:72;:::i;:::-;9012;9080:2;9069:9;9065:18;9056:6;9012:72;:::i;:::-;9094;9162:2;9151:9;9147:18;9138:6;9094:72;:::i;:::-;9176:73;9244:3;9233:9;9229:19;9220:6;9176:73;:::i;:::-;9259;9327:3;9316:9;9312:19;9303:6;9259:73;:::i;:::-;9342;9410:3;9399:9;9395:19;9386:6;9342:73;:::i;:::-;8536:886;;;;;;;;;;:::o;9428:104::-;9473:7;9502:24;9520:5;9502:24;:::i;:::-;9491:35;;9428:104;;;:::o;9538:142::-;9641:32;9667:5;9641:32;:::i;:::-;9636:3;9629:45;9538:142;;:::o;9686:254::-;9795:4;9833:2;9822:9;9818:18;9810:26;;9846:87;9930:1;9919:9;9915:17;9906:6;9846:87;:::i;:::-;9686:254;;;;:::o;9946:138::-;10027:32;10053:5;10027:32;:::i;:::-;10020:5;10017:43;10007:71;;10074:1;10071;10064:12;10007:71;9946:138;:::o;10090:155::-;10144:5;10182:6;10169:20;10160:29;;10198:41;10233:5;10198:41;:::i;:::-;10090:155;;;;:::o;10251:345::-;10318:6;10367:2;10355:9;10346:7;10342:23;10338:32;10335:119;;;10373:79;;:::i;:::-;10335:119;10493:1;10518:61;10571:7;10562:6;10551:9;10547:22;10518:61;:::i;:::-;10508:71;;10464:125;10251:345;;;;:::o;10602:329::-;10661:6;10710:2;10698:9;10689:7;10685:23;10681:32;10678:119;;;10716:79;;:::i;:::-;10678:119;10836:1;10861:53;10906:7;10897:6;10886:9;10882:22;10861:53;:::i;:::-;10851:63;;10807:117;10602:329;;;;:::o;10937:77::-;10974:7;11003:5;10992:16;;10937:77;;;:::o;11020:122::-;11093:24;11111:5;11093:24;:::i;:::-;11086:5;11083:35;11073:63;;11132:1;11129;11122:12;11073:63;11020:122;:::o;11148:139::-;11194:5;11232:6;11219:20;11210:29;;11248:33;11275:5;11248:33;:::i;:::-;11148:139;;;;:::o;11293:474::-;11361:6;11369;11418:2;11406:9;11397:7;11393:23;11389:32;11386:119;;;11424:79;;:::i;:::-;11386:119;11544:1;11569:53;11614:7;11605:6;11594:9;11590:22;11569:53;:::i;:::-;11559:63;;11515:117;11671:2;11697:53;11742:7;11733:6;11722:9;11718:22;11697:53;:::i;:::-;11687:63;;11642:118;11293:474;;;;;:::o;11773:116::-;11843:21;11858:5;11843:21;:::i;:::-;11836:5;11833:32;11823:60;;11879:1;11876;11869:12;11823:60;11773:116;:::o;11895:133::-;11938:5;11976:6;11963:20;11954:29;;11992:30;12016:5;11992:30;:::i;:::-;11895:133;;;;:::o;12034:468::-;12099:6;12107;12156:2;12144:9;12135:7;12131:23;12127:32;12124:119;;;12162:79;;:::i;:::-;12124:119;12282:1;12307:53;12352:7;12343:6;12332:9;12328:22;12307:53;:::i;:::-;12297:63;;12253:117;12409:2;12435:50;12477:7;12468:6;12457:9;12453:22;12435:50;:::i;:::-;12425:60;;12380:115;12034:468;;;;;:::o;12508:307::-;12569:4;12659:18;12651:6;12648:30;12645:56;;;12681:18;;:::i;:::-;12645:56;12719:29;12741:6;12719:29;:::i;:::-;12711:37;;12803:4;12797;12793:15;12785:23;;12508:307;;;:::o;12821:410::-;12898:5;12923:65;12939:48;12980:6;12939:48;:::i;:::-;12923:65;:::i;:::-;12914:74;;13011:6;13004:5;12997:21;13049:4;13042:5;13038:16;13087:3;13078:6;13073:3;13069:16;13066:25;13063:112;;;13094:79;;:::i;:::-;13063:112;13184:41;13218:6;13213:3;13208;13184:41;:::i;:::-;12904:327;12821:410;;;;;:::o;13250:338::-;13305:5;13354:3;13347:4;13339:6;13335:17;13331:27;13321:122;;13362:79;;:::i;:::-;13321:122;13479:6;13466:20;13504:78;13578:3;13570:6;13563:4;13555:6;13551:17;13504:78;:::i;:::-;13495:87;;13311:277;13250:338;;;;:::o;13594:943::-;13689:6;13697;13705;13713;13762:3;13750:9;13741:7;13737:23;13733:33;13730:120;;;13769:79;;:::i;:::-;13730:120;13889:1;13914:53;13959:7;13950:6;13939:9;13935:22;13914:53;:::i;:::-;13904:63;;13860:117;14016:2;14042:53;14087:7;14078:6;14067:9;14063:22;14042:53;:::i;:::-;14032:63;;13987:118;14144:2;14170:53;14215:7;14206:6;14195:9;14191:22;14170:53;:::i;:::-;14160:63;;14115:118;14300:2;14289:9;14285:18;14272:32;14331:18;14323:6;14320:30;14317:117;;;14353:79;;:::i;:::-;14317:117;14458:62;14512:7;14503:6;14492:9;14488:22;14458:62;:::i;:::-;14448:72;;14243:287;13594:943;;;;;;;:::o;14543:474::-;14611:6;14619;14668:2;14656:9;14647:7;14643:23;14639:32;14636:119;;;14674:79;;:::i;:::-;14636:119;14794:1;14819:53;14864:7;14855:6;14844:9;14840:22;14819:53;:::i;:::-;14809:63;;14765:117;14921:2;14947:53;14992:7;14983:6;14972:9;14968:22;14947:53;:::i;:::-;14937:63;;14892:118;14543:474;;;;;:::o;15023:::-;15091:6;15099;15148:2;15136:9;15127:7;15123:23;15119:32;15116:119;;;15154:79;;:::i;:::-;15116:119;15274:1;15299:53;15344:7;15335:6;15324:9;15320:22;15299:53;:::i;:::-;15289:63;;15245:117;15401:2;15427:53;15472:7;15463:6;15452:9;15448:22;15427:53;:::i;:::-;15417:63;;15372:118;15023:474;;;;;:::o;15503:180::-;15551:77;15548:1;15541:88;15648:4;15645:1;15638:15;15672:4;15669:1;15662:15;15689:320;15733:6;15770:1;15764:4;15760:12;15750:22;;15817:1;15811:4;15807:12;15838:18;15828:81;;15894:4;15886:6;15882:17;15872:27;;15828:81;15956:2;15948:6;15945:14;15925:18;15922:38;15919:84;;;15975:18;;:::i;:::-;15919:84;15740:269;15689:320;;;:::o;16015:231::-;16155:34;16151:1;16143:6;16139:14;16132:58;16224:14;16219:2;16211:6;16207:15;16200:39;16015:231;:::o;16252:366::-;16394:3;16415:67;16479:2;16474:3;16415:67;:::i;:::-;16408:74;;16491:93;16580:3;16491:93;:::i;:::-;16609:2;16604:3;16600:12;16593:19;;16252:366;;;:::o;16624:419::-;16790:4;16828:2;16817:9;16813:18;16805:26;;16877:9;16871:4;16867:20;16863:1;16852:9;16848:17;16841:47;16905:131;17031:4;16905:131;:::i;:::-;16897:139;;16624:419;;;:::o;17049:220::-;17189:34;17185:1;17177:6;17173:14;17166:58;17258:3;17253:2;17245:6;17241:15;17234:28;17049:220;:::o;17275:366::-;17417:3;17438:67;17502:2;17497:3;17438:67;:::i;:::-;17431:74;;17514:93;17603:3;17514:93;:::i;:::-;17632:2;17627:3;17623:12;17616:19;;17275:366;;;:::o;17647:419::-;17813:4;17851:2;17840:9;17836:18;17828:26;;17900:9;17894:4;17890:20;17886:1;17875:9;17871:17;17864:47;17928:131;18054:4;17928:131;:::i;:::-;17920:139;;17647:419;;;:::o;18072:243::-;18212:34;18208:1;18200:6;18196:14;18189:58;18281:26;18276:2;18268:6;18264:15;18257:51;18072:243;:::o;18321:366::-;18463:3;18484:67;18548:2;18543:3;18484:67;:::i;:::-;18477:74;;18560:93;18649:3;18560:93;:::i;:::-;18678:2;18673:3;18669:12;18662:19;;18321:366;;;:::o;18693:419::-;18859:4;18897:2;18886:9;18882:18;18874:26;;18946:9;18940:4;18936:20;18932:1;18921:9;18917:17;18910:47;18974:131;19100:4;18974:131;:::i;:::-;18966:139;;18693:419;;;:::o;19118:181::-;19258:33;19254:1;19246:6;19242:14;19235:57;19118:181;:::o;19305:366::-;19447:3;19468:67;19532:2;19527:3;19468:67;:::i;:::-;19461:74;;19544:93;19633:3;19544:93;:::i;:::-;19662:2;19657:3;19653:12;19646:19;;19305:366;;;:::o;19677:419::-;19843:4;19881:2;19870:9;19866:18;19858:26;;19930:9;19924:4;19920:20;19916:1;19905:9;19901:17;19894:47;19958:131;20084:4;19958:131;:::i;:::-;19950:139;;19677:419;;;:::o;20102:225::-;20242:34;20238:1;20230:6;20226:14;20219:58;20311:8;20306:2;20298:6;20294:15;20287:33;20102:225;:::o;20333:366::-;20475:3;20496:67;20560:2;20555:3;20496:67;:::i;:::-;20489:74;;20572:93;20661:3;20572:93;:::i;:::-;20690:2;20685:3;20681:12;20674:19;;20333:366;;;:::o;20705:419::-;20871:4;20909:2;20898:9;20894:18;20886:26;;20958:9;20952:4;20948:20;20944:1;20933:9;20929:17;20922:47;20986:131;21112:4;20986:131;:::i;:::-;20978:139;;20705:419;;;:::o;21130:174::-;21270:26;21266:1;21258:6;21254:14;21247:50;21130:174;:::o;21310:366::-;21452:3;21473:67;21537:2;21532:3;21473:67;:::i;:::-;21466:74;;21549:93;21638:3;21549:93;:::i;:::-;21667:2;21662:3;21658:12;21651:19;;21310:366;;;:::o;21682:419::-;21848:4;21886:2;21875:9;21871:18;21863:26;;21935:9;21929:4;21925:20;21921:1;21910:9;21906:17;21899:47;21963:131;22089:4;21963:131;:::i;:::-;21955:139;;21682:419;;;:::o;22107:186::-;22247:34;22243:1;22235:6;22231:14;22224:58;22107:186;:::o;22303:382::-;22445:3;22470:67;22534:2;22529:3;22470:67;:::i;:::-;22463:74;;22550:93;22639:3;22550:93;:::i;:::-;22672:2;22667:3;22663:12;22656:19;;22303:382;;;:::o;22695:435::-;22861:4;22903:2;22892:9;22888:18;22880:26;;22956:9;22950:4;22946:20;22942:1;22931:9;22927:17;22920:47;22988:131;23114:4;22988:131;:::i;:::-;22980:139;;22695:435;;;:::o;23140:180::-;23284:24;23280:1;23272:6;23268:14;23261:48;23140:180;:::o;23330:382::-;23472:3;23497:67;23561:2;23556:3;23497:67;:::i;:::-;23490:74;;23577:93;23666:3;23577:93;:::i;:::-;23699:2;23694:3;23690:12;23683:19;;23330:382;;;:::o;23722:435::-;23888:4;23930:2;23919:9;23915:18;23907:26;;23983:9;23977:4;23973:20;23969:1;23958:9;23954:17;23947:47;24015:131;24141:4;24015:131;:::i;:::-;24007:139;;23722:435;;;:::o;24167:196::-;24219:77;24216:1;24209:88;24320:4;24317:1;24310:15;24348:4;24345:1;24338:15;24373:249;24412:3;24439:24;24457:5;24439:24;:::i;:::-;24430:33;;24489:66;24482:5;24479:77;24476:103;;;24559:18;;:::i;:::-;24476:103;24610:1;24603:5;24599:13;24592:20;;24373:249;;;:::o;24632:155::-;24733:11;24774:3;24759:18;;24632:155;;;;:::o;24797:118::-;;:::o;24925:414::-;25084:3;25109:83;25190:1;25185:3;25109:83;:::i;:::-;25102:90;;25205:93;25294:3;25205:93;:::i;:::-;25327:1;25322:3;25318:11;25311:18;;24925:414;;;:::o;25349:391::-;25533:3;25559:147;25702:3;25559:147;:::i;:::-;25552:154;;25727:3;25720:10;;25349:391;;;:::o;25750:232::-;25894:34;25890:1;25882:6;25878:14;25871:58;25967:3;25962:2;25954:6;25950:15;25943:28;25750:232;:::o;25992:382::-;26134:3;26159:67;26223:2;26218:3;26159:67;:::i;:::-;26152:74;;26239:93;26328:3;26239:93;:::i;:::-;26361:2;26356:3;26352:12;26345:19;;25992:382;;;:::o;26384:435::-;26550:4;26592:2;26581:9;26577:18;26569:26;;26645:9;26639:4;26635:20;26631:1;26620:9;26616:17;26609:47;26677:131;26803:4;26677:131;:::i;:::-;26669:139;;26384:435;;;:::o;26829:248::-;26973:34;26969:1;26961:6;26957:14;26950:58;27046:19;27041:2;27033:6;27029:15;27022:44;26829:248;:::o;27087:382::-;27229:3;27254:67;27318:2;27313:3;27254:67;:::i;:::-;27247:74;;27334:93;27423:3;27334:93;:::i;:::-;27456:2;27451:3;27447:12;27440:19;;27087:382;;;:::o;27479:435::-;27645:4;27687:2;27676:9;27672:18;27664:26;;27740:9;27734:4;27730:20;27726:1;27715:9;27711:17;27704:47;27772:131;27898:4;27772:131;:::i;:::-;27764:139;;27479:435;;;:::o;27924:183::-;28068:27;28064:1;28056:6;28052:14;28045:51;27924:183;:::o;28117:382::-;28259:3;28284:67;28348:2;28343:3;28284:67;:::i;:::-;28277:74;;28364:93;28453:3;28364:93;:::i;:::-;28486:2;28481:3;28477:12;28470:19;;28117:382;;;:::o;28509:435::-;28675:4;28717:2;28706:9;28702:18;28694:26;;28770:9;28764:4;28760:20;28756:1;28745:9;28741:17;28734:47;28802:131;28928:4;28802:131;:::i;:::-;28794:139;;28509:435;;;:::o;28954:232::-;29098:34;29094:1;29086:6;29082:14;29075:58;29171:3;29166:2;29158:6;29154:15;29147:28;28954:232;:::o;29196:382::-;29338:3;29363:67;29427:2;29422:3;29363:67;:::i;:::-;29356:74;;29443:93;29532:3;29443:93;:::i;:::-;29565:2;29560:3;29556:12;29549:19;;29196:382;;;:::o;29588:435::-;29754:4;29796:2;29785:9;29781:18;29773:26;;29849:9;29843:4;29839:20;29835:1;29824:9;29820:17;29813:47;29881:131;30007:4;29881:131;:::i;:::-;29873:139;;29588:435;;;:::o;30033:312::-;30177:34;30173:1;30165:6;30161:14;30154:58;30250:34;30245:2;30237:6;30233:15;30226:59;30323:10;30318:2;30310:6;30306:15;30299:35;30033:312;:::o;30355:382::-;30497:3;30522:67;30586:2;30581:3;30522:67;:::i;:::-;30515:74;;30602:93;30691:3;30602:93;:::i;:::-;30724:2;30719:3;30715:12;30708:19;;30355:382;;;:::o;30747:435::-;30913:4;30955:2;30944:9;30940:18;30932:26;;31008:9;31002:4;30998:20;30994:1;30983:9;30979:17;30972:47;31040:131;31166:4;31040:131;:::i;:::-;31032:139;;30747:435;;;:::o;31192:247::-;31336:34;31332:1;31324:6;31320:14;31313:58;31409:18;31404:2;31396:6;31392:15;31385:43;31192:247;:::o;31449:382::-;31591:3;31616:67;31680:2;31675:3;31616:67;:::i;:::-;31609:74;;31696:93;31785:3;31696:93;:::i;:::-;31818:2;31813:3;31809:12;31802:19;;31449:382;;;:::o;31841:435::-;32007:4;32049:2;32038:9;32034:18;32026:26;;32102:9;32096:4;32092:20;32088:1;32077:9;32073:17;32066:47;32134:131;32260:4;32134:131;:::i;:::-;32126:139;;31841:435;;;:::o;32286:309::-;32430:34;32426:1;32418:6;32414:14;32407:58;32503:34;32498:2;32490:6;32486:15;32479:59;32576:7;32571:2;32563:6;32559:15;32552:32;32286:309;:::o;32605:382::-;32747:3;32772:67;32836:2;32831:3;32772:67;:::i;:::-;32765:74;;32852:93;32941:3;32852:93;:::i;:::-;32974:2;32969:3;32965:12;32958:19;;32605:382;;;:::o;32997:435::-;33163:4;33205:2;33194:9;33190:18;33182:26;;33258:9;33252:4;33248:20;33244:1;33233:9;33229:17;33222:47;33290:131;33416:4;33290:131;:::i;:::-;33282:139;;32997:435;;;:::o;33442:245::-;33586:34;33582:1;33574:6;33570:14;33563:58;33659:16;33654:2;33646:6;33642:15;33635:41;33442:245;:::o;33697:382::-;33839:3;33864:67;33928:2;33923:3;33864:67;:::i;:::-;33857:74;;33944:93;34033:3;33944:93;:::i;:::-;34066:2;34061:3;34057:12;34050:19;;33697:382;;;:::o;34089:435::-;34255:4;34297:2;34286:9;34282:18;34274:26;;34350:9;34344:4;34340:20;34336:1;34325:9;34321:17;34314:47;34382:131;34508:4;34382:131;:::i;:::-;34374:139;;34089:435;;;:::o;34534:240::-;34678:34;34674:1;34666:6;34662:14;34655:58;34751:11;34746:2;34738:6;34734:15;34727:36;34534:240;:::o;34784:382::-;34926:3;34951:67;35015:2;35010:3;34951:67;:::i;:::-;34944:74;;35031:93;35120:3;35031:93;:::i;:::-;35153:2;35148:3;35144:12;35137:19;;34784:382;;;:::o;35176:435::-;35342:4;35384:2;35373:9;35369:18;35361:26;;35437:9;35431:4;35427:20;35423:1;35412:9;35408:17;35401:47;35469:131;35595:4;35469:131;:::i;:::-;35461:139;;35176:435;;;:::o;35621:241::-;35765:34;35761:1;35753:6;35749:14;35742:58;35838:12;35833:2;35825:6;35821:15;35814:37;35621:241;:::o;35872:382::-;36014:3;36039:67;36103:2;36098:3;36039:67;:::i;:::-;36032:74;;36119:93;36208:3;36119:93;:::i;:::-;36241:2;36236:3;36232:12;36225:19;;35872:382;;;:::o;36264:435::-;36430:4;36472:2;36461:9;36457:18;36449:26;;36525:9;36519:4;36515:20;36511:1;36500:9;36496:17;36489:47;36557:131;36683:4;36557:131;:::i;:::-;36549:139;;36264:435;;;:::o;36709:155::-;36766:5;36801:6;36795:13;36786:22;;36821:33;36848:5;36821:33;:::i;:::-;36709:155;;;;:::o;36874:375::-;36944:6;36997:2;36985:9;36976:7;36972:23;36968:32;36965:119;;;37003:79;;:::i;:::-;36965:119;37131:1;37160:64;37216:7;37207:6;37196:9;37192:22;37160:64;:::i;:::-;37150:74;;37098:140;36874:375;;;;:::o;37259:68::-;37287:3;37312:5;37305:12;;37259:68;;;:::o;37337:150::-;37387:9;37424:53;37442:34;37451:24;37469:5;37451:24;:::i;:::-;37442:34;:::i;:::-;37424:53;:::i;:::-;37411:66;;37337:150;;;:::o;37497:134::-;37547:9;37584:37;37615:5;37584:37;:::i;:::-;37571:50;;37497:134;;;:::o;37641:142::-;37699:9;37736:37;37767:5;37736:37;:::i;:::-;37723:50;;37641:142;;;:::o;37793:155::-;37892:45;37931:5;37892:45;:::i;:::-;37887:3;37880:58;37793:155;;:::o;37958:364::-;38087:4;38129:2;38118:9;38114:18;38106:26;;38146:79;38222:1;38211:9;38207:17;38198:6;38146:79;:::i;:::-;38239:72;38307:2;38296:9;38292:18;38283:6;38239:72;:::i;:::-;37958:364;;;;;:::o;38332:149::-;38386:5;38421:6;38415:13;38406:22;;38441:30;38465:5;38441:30;:::i;:::-;38332:149;;;;:::o;38491:369::-;38558:6;38611:2;38599:9;38590:7;38586:23;38582:32;38579:119;;;38617:79;;:::i;:::-;38579:119;38745:1;38774:61;38827:7;38818:6;38807:9;38803:22;38774:61;:::i;:::-;38764:71;;38712:137;38491:369;;;;:::o;38870:176::-;39014:20;39010:1;39002:6;38998:14;38991:44;38870:176;:::o;39056:382::-;39198:3;39223:67;39287:2;39282:3;39223:67;:::i;:::-;39216:74;;39303:93;39392:3;39303:93;:::i;:::-;39425:2;39420:3;39416:12;39409:19;;39056:382;;;:::o;39448:435::-;39614:4;39656:2;39645:9;39641:18;39633:26;;39709:9;39703:4;39699:20;39695:1;39684:9;39680:17;39673:47;39741:131;39867:4;39741:131;:::i;:::-;39733:139;;39448:435;;;:::o;39893:329::-;39933:3;39956:20;39974:1;39956:20;:::i;:::-;39951:25;;39994:20;40012:1;39994:20;:::i;:::-;39989:25;;40156:1;40088:66;40084:74;40081:1;40078:81;40075:107;;;40162:18;;:::i;:::-;40075:107;40210:1;40207;40203:9;40196:16;;39893:329;;;;:::o;40232:189::-;40376:33;40372:1;40364:6;40360:14;40353:57;40232:189;:::o;40431:382::-;40573:3;40598:67;40662:2;40657:3;40598:67;:::i;:::-;40591:74;;40678:93;40767:3;40678:93;:::i;:::-;40800:2;40795:3;40791:12;40784:19;;40431:382;;;:::o;40823:435::-;40989:4;41031:2;41020:9;41016:18;41008:26;;41084:9;41078:4;41074:20;41070:1;41059:9;41055:17;41048:47;41116:131;41242:4;41116:131;:::i;:::-;41108:139;;40823:435;;;:::o;41268:183::-;41412:27;41408:1;41400:6;41396:14;41389:51;41268:183;:::o;41461:382::-;41603:3;41628:67;41692:2;41687:3;41628:67;:::i;:::-;41621:74;;41708:93;41797:3;41708:93;:::i;:::-;41830:2;41825:3;41821:12;41814:19;;41461:382;;;:::o;41853:435::-;42019:4;42061:2;42050:9;42046:18;42038:26;;42114:9;42108:4;42104:20;42100:1;42089:9;42085:17;42078:47;42146:131;42272:4;42146:131;:::i;:::-;42138:139;;41853:435;;;:::o;42298:246::-;42442:34;42438:1;42430:6;42426:14;42419:58;42515:17;42510:2;42502:6;42498:15;42491:42;42298:246;:::o;42554:382::-;42696:3;42721:67;42785:2;42780:3;42721:67;:::i;:::-;42714:74;;42801:93;42890:3;42801:93;:::i;:::-;42923:2;42918:3;42914:12;42907:19;;42554:382;;;:::o;42946:435::-;43112:4;43154:2;43143:9;43139:18;43131:26;;43207:9;43201:4;43197:20;43193:1;43182:9;43178:17;43171:47;43239:131;43365:4;43239:131;:::i;:::-;43231:139;;42946:435;;;:::o;43391:156::-;43493:11;43534:3;43519:18;;43391:156;;;;:::o;43557:157::-;43606:4;43633:3;43625:11;;43660:3;43657:1;43650:14;43698:4;43695:1;43685:18;43677:26;;43557:157;;;:::o;43752:925::-;43855:3;43896:5;43890:12;43929:36;43955:9;43929:36;:::i;:::-;43985:89;44067:6;44062:3;43985:89;:::i;:::-;43978:96;;44109:1;44098:9;44094:17;44129:1;44124:153;;;;44295:1;44290:377;;;;44087:580;;44124:153;44216:4;44212:9;44201;44197:25;44192:3;44185:38;44256:6;44251:3;44247:16;44240:23;;44124:153;;44290:377;44365:38;44397:5;44365:38;:::i;:::-;44429:1;44447:166;44461:6;44458:1;44455:13;44447:166;;;44539:7;44533:14;44529:1;44524:3;44520:11;44513:35;44593:1;44584:7;44580:15;44569:26;;44483:4;44480:1;44476:12;44471:17;;44447:166;;;44646:6;44641:3;44637:16;44630:23;;44297:370;;44087:580;;43859:818;;43752:925;;;;:::o;44687:397::-;44793:3;44825:39;44858:5;44825:39;:::i;:::-;44884:89;44966:6;44961:3;44884:89;:::i;:::-;44877:96;;44986:52;45031:6;45026:3;45019:4;45012:5;45008:16;44986:52;:::i;:::-;45067:6;45062:3;45058:16;45051:23;;44797:287;44687:397;;;;:::o;45094:445::-;45271:3;45297:92;45385:3;45376:6;45297:92;:::i;:::-;45290:99;;45410:95;45501:3;45492:6;45410:95;:::i;:::-;45403:102;;45526:3;45519:10;;45094:445;;;;;:::o;45549:245::-;45693:34;45689:1;45681:6;45677:14;45670:58;45766:16;45761:2;45753:6;45749:15;45742:41;45549:245;:::o;45804:382::-;45946:3;45971:67;46035:2;46030:3;45971:67;:::i;:::-;45964:74;;46051:93;46140:3;46051:93;:::i;:::-;46173:2;46168:3;46164:12;46157:19;;45804:382;;;:::o;46196:435::-;46362:4;46404:2;46393:9;46389:18;46381:26;;46457:9;46451:4;46447:20;46443:1;46432:9;46428:17;46421:47;46489:131;46615:4;46489:131;:::i;:::-;46481:139;;46196:435;;;:::o;46641:243::-;46785:34;46781:1;46773:6;46769:14;46762:58;46858:14;46853:2;46845:6;46841:15;46834:39;46641:243;:::o;46894:382::-;47036:3;47061:67;47125:2;47120:3;47061:67;:::i;:::-;47054:74;;47141:93;47230:3;47141:93;:::i;:::-;47263:2;47258:3;47254:12;47247:19;;46894:382;;;:::o;47286:435::-;47452:4;47494:2;47483:9;47479:18;47471:26;;47547:9;47541:4;47537:20;47533:1;47522:9;47518:17;47511:47;47579:131;47705:4;47579:131;:::i;:::-;47571:139;;47286:435;;;:::o;47731:242::-;47875:34;47871:1;47863:6;47859:14;47852:58;47948:13;47943:2;47935:6;47931:15;47924:38;47731:242;:::o;47983:382::-;48125:3;48150:67;48214:2;48209:3;48150:67;:::i;:::-;48143:74;;48230:93;48319:3;48230:93;:::i;:::-;48352:2;48347:3;48343:12;48336:19;;47983:382;;;:::o;48375:435::-;48541:4;48583:2;48572:9;48568:18;48560:26;;48636:9;48630:4;48626:20;48622:1;48611:9;48607:17;48600:47;48668:131;48794:4;48668:131;:::i;:::-;48660:139;;48375:435;;;:::o;48820:235::-;48964:34;48960:1;48952:6;48948:14;48941:58;49037:6;49032:2;49024:6;49020:15;49013:31;48820:235;:::o;49065:382::-;49207:3;49232:67;49296:2;49291:3;49232:67;:::i;:::-;49225:74;;49312:93;49401:3;49312:93;:::i;:::-;49434:2;49429:3;49425:12;49418:19;;49065:382;;;:::o;49457:435::-;49623:4;49665:2;49654:9;49650:18;49642:26;;49718:9;49712:4;49708:20;49704:1;49693:9;49689:17;49682:47;49750:131;49876:4;49750:131;:::i;:::-;49742:139;;49457:435;;;:::o;49902:211::-;49942:4;49966:20;49984:1;49966:20;:::i;:::-;49961:25;;50004:20;50022:1;50004:20;:::i;:::-;49999:25;;50047:1;50044;50041:8;50038:34;;;50052:18;;:::i;:::-;50038:34;50101:1;50098;50094:9;50086:17;;49902:211;;;;:::o;50123:372::-;50163:7;50190:20;50208:1;50190:20;:::i;:::-;50185:25;;50228:20;50246:1;50228:20;:::i;:::-;50223:25;;50424:1;50356:66;50352:74;50349:1;50346:81;50341:1;50334:9;50327:17;50323:105;50320:131;;;50431:18;;:::i;:::-;50320:131;50483:1;50480;50476:9;50465:20;;50123:372;;;;:::o;50505:247::-;50649:34;50645:1;50637:6;50633:14;50626:58;50722:18;50717:2;50709:6;50705:15;50698:43;50505:247;:::o;50762:382::-;50904:3;50929:67;50993:2;50988:3;50929:67;:::i;:::-;50922:74;;51009:93;51098:3;51009:93;:::i;:::-;51131:2;51126:3;51122:12;51115:19;;50762:382;;;:::o;51154:435::-;51320:4;51362:2;51351:9;51347:18;51339:26;;51415:9;51409:4;51405:20;51401:1;51390:9;51386:17;51379:47;51447:131;51573:4;51447:131;:::i;:::-;51439:139;;51154:435;;;:::o;51599:249::-;51743:34;51739:1;51731:6;51727:14;51720:58;51816:20;51811:2;51803:6;51799:15;51792:45;51599:249;:::o;51858:382::-;52000:3;52025:67;52089:2;52084:3;52025:67;:::i;:::-;52018:74;;52105:93;52194:3;52105:93;:::i;:::-;52227:2;52222:3;52218:12;52211:19;;51858:382;;;:::o;52250:435::-;52416:4;52458:2;52447:9;52443:18;52435:26;;52511:9;52505:4;52501:20;52497:1;52486:9;52482:17;52475:47;52543:131;52669:4;52543:131;:::i;:::-;52535:139;;52250:435;;;:::o;52695:196::-;52747:77;52744:1;52737:88;52848:4;52845:1;52838:15;52876:4;52873:1;52866:15;52901:205;52941:1;52962:20;52980:1;52962:20;:::i;:::-;52957:25;;53000:20;53018:1;53000:20;:::i;:::-;52995:25;;53043:1;53033:35;;53048:18;;:::i;:::-;53033:35;53094:1;53091;53087:9;53082:14;;52901:205;;;;:::o;53116:196::-;53148:1;53169:20;53187:1;53169:20;:::i;:::-;53164:25;;53207:20;53225:1;53207:20;:::i;:::-;53202:25;;53250:1;53240:35;;53255:18;;:::i;:::-;53240:35;53300:1;53297;53293:9;53288:14;;53116:196;;;;:::o;53322:::-;53374:77;53371:1;53364:88;53475:4;53472:1;53465:15;53503:4;53500:1;53493:15;53528:126;53619:24;53637:5;53619:24;:::i;:::-;53614:3;53607:37;53528:126;;:::o;53664:348::-;53785:4;53827:2;53816:9;53812:18;53804:26;;53844:71;53912:1;53901:9;53897:17;53888:6;53844:71;:::i;:::-;53929:72;53997:2;53986:9;53982:18;53973:6;53929:72;:::i;:::-;53664:348;;;;;:::o;54022:106::-;54073:6;54111:5;54105:12;54095:22;;54022:106;;;:::o;54138:180::-;54221:11;54259:6;54254:3;54247:19;54303:4;54298:3;54294:14;54279:29;;54138:180;;;;:::o;54328:380::-;54414:3;54446:38;54478:5;54446:38;:::i;:::-;54504:70;54567:6;54562:3;54504:70;:::i;:::-;54497:77;;54587:52;54632:6;54627:3;54620:4;54613:5;54609:16;54587:52;:::i;:::-;54668:29;54690:6;54668:29;:::i;:::-;54663:3;54659:39;54652:46;;54418:290;54328:380;;;;:::o;54718:553::-;54885:4;54927:2;54916:9;54912:18;54904:26;;54944:71;55012:1;55001:9;54997:17;54988:6;54944:71;:::i;:::-;55029:72;55097:2;55086:9;55082:18;55073:6;55029:72;:::i;:::-;55152:9;55146:4;55142:20;55137:2;55126:9;55122:18;55115:48;55184:76;55255:4;55246:6;55184:76;:::i;:::-;55176:84;;54718:553;;;;;;:::o;55281:450::-;55424:4;55466:2;55455:9;55451:18;55443:26;;55483:71;55551:1;55540:9;55536:17;55527:6;55483:71;:::i;:::-;55568:72;55636:2;55625:9;55621:18;55612:6;55568:72;:::i;:::-;55654:66;55716:2;55705:9;55701:18;55692:6;55654:66;:::i;:::-;55281:450;;;;;;:::o;55741:668::-;55936:4;55978:3;55967:9;55963:19;55955:27;;55996:71;56064:1;56053:9;56049:17;56040:6;55996:71;:::i;:::-;56081:72;56149:2;56138:9;56134:18;56125:6;56081:72;:::i;:::-;56167;56235:2;56224:9;56220:18;56211:6;56167:72;:::i;:::-;56290:9;56284:4;56280:20;56275:2;56264:9;56260:18;56253:48;56322:76;56393:4;56384:6;56322:76;:::i;:::-;56314:84;;55741:668;;;;;;;:::o;56419:153::-;56475:5;56510:6;56504:13;56495:22;;56530:32;56556:5;56530:32;:::i;:::-;56419:153;;;;:::o;56582:373::-;56651:6;56704:2;56692:9;56683:7;56679:23;56675:32;56672:119;;;56710:79;;:::i;:::-;56672:119;56838:1;56867:63;56922:7;56913:6;56902:9;56898:22;56867:63;:::i;:::-;56857:73;;56805:139;56582:373;;;;:::o;56965:577::-;57142:4;57184:3;57173:9;57169:19;57161:27;;57202:71;57270:1;57259:9;57255:17;57246:6;57202:71;:::i;:::-;57287:72;57355:2;57344:9;57340:18;57331:6;57287:72;:::i;:::-;57373;57441:2;57430:9;57426:18;57417:6;57373:72;:::i;:::-;57459;57527:2;57516:9;57512:18;57503:6;57459:72;:::i;:::-;56965:577;;;;;;;:::o;57552:87::-;57591:7;57624:5;57613:16;;57552:87;;;:::o;57649:165::-;57758:45;57778:24;57796:5;57778:24;:::i;:::-;57758:45;:::i;:::-;57753:3;57746:58;57649:165;;:::o;57824:87::-;57863:7;57896:5;57885:16;;57824:87;;;:::o;57921:165::-;58030:45;58050:24;58068:5;58050:24;:::i;:::-;58030:45;:::i;:::-;58025:3;58018:58;57921:165;;:::o;58096:421::-;58236:3;58255:75;58326:3;58317:6;58255:75;:::i;:::-;58359:2;58354:3;58350:12;58343:19;;58376:75;58447:3;58438:6;58376:75;:::i;:::-;58480:2;58475:3;58471:12;58464:19;;58504:3;58497:10;;58096:421;;;;;:::o;58527:190::-;58671:34;58667:1;58659:6;58655:14;58648:58;58527:190;:::o;58727:382::-;58869:3;58894:67;58958:2;58953:3;58894:67;:::i;:::-;58887:74;;58974:93;59063:3;58974:93;:::i;:::-;59096:2;59091:3;59087:12;59080:19;;58727:382;;;:::o;59119:435::-;59285:4;59327:2;59316:9;59312:18;59304:26;;59380:9;59374:4;59370:20;59366:1;59355:9;59351:17;59344:47;59412:131;59538:4;59412:131;:::i;:::-;59404:139;;59119:435;;;:::o;59564:186::-;59708:30;59704:1;59696:6;59692:14;59685:54;59564:186;:::o;59760:382::-;59902:3;59927:67;59991:2;59986:3;59927:67;:::i;:::-;59920:74;;60007:93;60096:3;60007:93;:::i;:::-;60129:2;60124:3;60120:12;60113:19;;59760:382;;;:::o;60152:435::-;60318:4;60360:2;60349:9;60345:18;60337:26;;60413:9;60407:4;60403:20;60399:1;60388:9;60384:17;60377:47;60445:131;60571:4;60445:131;:::i;:::-;60437:139;;60152:435;;;:::o
Swarm Source
ipfs://f175d2e77f222a47478680d5604a4f665e1f20c53111b0b9940703d0ef265f7e
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.