Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,013 FHAPE
Holders
248
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
50 FHAPELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FHAPEPRIME
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-07 */ /** *Submitted for verification at Etherscan.io on 2022-01-20 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: contracts/ERC721A.sol // Creators: locationtba.eth, 2pmflow.eth pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: 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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/but_dao.sol pragma solidity ^0.8.0; contract FHAPEPRIME is ERC721A, Ownable { uint256 public NFT_PRICE = 0.019 ether; uint256 public MAX_SUPPLY = 8191; uint256 public MAX_MINTS = 10; uint256 public MAX_MINTS_RESERVED = 10; uint256 public freeTokens = 3000; string public projName = "FHAPE PRIME"; string public projSym = "FHAPE"; bool public DROP_ACTIVE = false; string public baseURI = "https://ipfs.io/ipfs/QmSph3k6T2qqoKuKNWyVR5Rhrwx6FY7yPhnhEtTvZvTZg5/"; mapping(address => uint) addressToReservedMints; constructor() ERC721A(projName, projSym, MAX_MINTS, MAX_SUPPLY) {} function mint(uint256 numTokens) public payable { require(DROP_ACTIVE, "Sale not started"); require( numTokens > 0 && numTokens <= MAX_MINTS, "Must mint between 1 and 10 tokens" ); require(totalSupply() + numTokens <= MAX_SUPPLY, "Sold Out"); require( msg.value >= NFT_PRICE * numTokens, "Amount of ether sent is not enough" ); _safeMint(msg.sender, numTokens); } function freeMint(uint256 numTokens) public { require(DROP_ACTIVE, "Sale not started"); require( numTokens > 0 && numTokens <= MAX_MINTS_RESERVED, "Must mint between 1 and 5 tokens" ); require(totalSupply() + numTokens <= MAX_SUPPLY, "Sold Out"); require( totalSupply() + numTokens <= freeTokens, "There are no free mints left" ); addressToReservedMints[msg.sender] += numTokens; _safeMint(msg.sender, numTokens); } function flipDropState() public onlyOwner { DROP_ACTIVE = !DROP_ACTIVE; } function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } function setPrice(uint256 newPrice) public onlyOwner { NFT_PRICE = newPrice; } function setMaxMints(uint256 newMax) public onlyOwner { MAX_MINTS = newMax; } function setSupply(uint256 newSupply) public onlyOwner { MAX_SUPPLY = newSupply; } function setFreeTokens(uint256 newReserve) public onlyOwner { freeTokens = newReserve; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function reservedMintedBy() external view returns (uint256) { return addressToReservedMints[msg.sender]; } function withdraw() public onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DROP_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipDropState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projSym","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintedBy","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":"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":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newReserve","type":"uint256"}],"name":"setFreeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052600080556000600755664380663abb8000600955611fff600a55600a600b55600a600c55610bb8600d556040518060400160405280600b81526020017f4648415045205052494d45000000000000000000000000000000000000000000815250600e90805190602001906200007b92919062000417565b506040518060400160405280600581526020017f4648415045000000000000000000000000000000000000000000000000000000815250600f9080519060200190620000c992919062000417565b506000601060006101000a81548160ff0219169083151502179055506040518060800160405280604481526020016200518660449139601190805190602001906200011692919062000417565b503480156200012457600080fd5b50600e805462000134906200056a565b80601f016020809104026020016040519081016040528092919081815260200182805462000162906200056a565b8015620001b35780601f106200018757610100808354040283529160200191620001b3565b820191906000526020600020905b8154815290600101906020018083116200019557829003601f168201915b5050505050600f8054620001c7906200056a565b80601f0160208091040260200160405190810160405280929190818152602001828054620001f5906200056a565b8015620002465780601f106200021a5761010080835404028352916020019162000246565b820191906000526020600020905b8154815290600101906020018083116200022857829003601f168201915b5050505050600b54600a546000811162000297576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028e9062000537565b60405180910390fd5b60008211620002dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d49062000515565b60405180910390fd5b8360019080519060200190620002f592919062000417565b5082600290805190602001906200030e92919062000417565b508160a0818152505080608081815250505050505062000343620003376200034960201b60201c565b6200035160201b60201c565b6200066d565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000425906200056a565b90600052602060002090601f01602090048101928262000449576000855562000495565b82601f106200046457805160ff191683800117855562000495565b8280016001018555821562000495579182015b828111156200049457825182559160200191906001019062000477565b5b509050620004a49190620004a8565b5090565b5b80821115620004c3576000816000905550600101620004a9565b5090565b6000620004d660278362000559565b9150620004e382620005cf565b604082019050919050565b6000620004fd602e8362000559565b91506200050a826200061e565b604082019050919050565b600060208201905081810360008301526200053081620004c7565b9050919050565b600060208201905081810360008301526200055281620004ee565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200058357607f821691505b602082108114156200059a5762000599620005a0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051614ae86200069e600039600081816125c3015281816125ec0152612cad015260005050614ae86000f3fe6080604052600436106102305760003560e01c806379c9cb7b1161012e578063b88d4fde116100ab578063e03c69e81161006f578063e03c69e81461080a578063e985e9c514610835578063f2fde38b14610872578063f7cd09c71461089b578063fb19ba2d146108c657610230565b8063b88d4fde14610723578063c87b56dd1461074c578063cce132d114610789578063d7224ba0146107b4578063da241d06146107df57610230565b806396f8f6dd116100f257806396f8f6dd14610671578063a0712d6814610688578063a22cb465146106a4578063a7b8cd4d146106cd578063b875e2ce146106f857610230565b806379c9cb7b146105a05780637c928fe9146105c95780638da5cb5b146105f257806391b7f5ed1461061d57806395d89b411461064657610230565b80633ccfd60b116101bc578063676dd56311610180578063676dd563146104cb5780636c0360eb146104f65780636fe8f9c51461052157806370a082311461054c578063715018a61461058957610230565b80633ccfd60b146103e857806342842e0e146103ff5780634f6ccce71461042857806355f804b3146104655780636352211e1461048e57610230565b806318160ddd1161020357806318160ddd1461030357806323b872dd1461032e5780632f745c591461035757806332cb6b0c146103945780633b4c4b25146103bf57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906134c7565b6108ef565b6040516102699190613a80565b60405180910390f35b34801561027e57600080fd5b50610287610a39565b6040516102949190613a9b565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061356a565b610acb565b6040516102d19190613a19565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613487565b610b50565b005b34801561030f57600080fd5b50610318610c69565b6040516103259190613dfd565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613371565b610c72565b005b34801561036357600080fd5b5061037e60048036038101906103799190613487565b610c82565b60405161038b9190613dfd565b60405180910390f35b3480156103a057600080fd5b506103a9610e80565b6040516103b69190613dfd565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e1919061356a565b610e86565b005b3480156103f457600080fd5b506103fd610f0c565b005b34801561040b57600080fd5b5061042660048036038101906104219190613371565b610fc8565b005b34801561043457600080fd5b5061044f600480360381019061044a919061356a565b610fe8565b60405161045c9190613dfd565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190613521565b61103b565b005b34801561049a57600080fd5b506104b560048036038101906104b0919061356a565b6110d1565b6040516104c29190613a19565b60405180910390f35b3480156104d757600080fd5b506104e06110e7565b6040516104ed9190613dfd565b60405180910390f35b34801561050257600080fd5b5061050b6110ed565b6040516105189190613a9b565b60405180910390f35b34801561052d57600080fd5b5061053661117b565b6040516105439190613dfd565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190613304565b611181565b6040516105809190613dfd565b60405180910390f35b34801561059557600080fd5b5061059e61126a565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061356a565b6112f2565b005b3480156105d557600080fd5b506105f060048036038101906105eb919061356a565b611378565b005b3480156105fe57600080fd5b50610607611529565b6040516106149190613a19565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f919061356a565b611553565b005b34801561065257600080fd5b5061065b6115d9565b6040516106689190613a9b565b60405180910390f35b34801561067d57600080fd5b5061068661166b565b005b6106a2600480360381019061069d919061356a565b611713565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190613447565b611867565b005b3480156106d957600080fd5b506106e26119e8565b6040516106ef9190613dfd565b60405180910390f35b34801561070457600080fd5b5061070d611a2f565b60405161071a9190613dfd565b60405180910390f35b34801561072f57600080fd5b5061074a600480360381019061074591906133c4565b611a35565b005b34801561075857600080fd5b50610773600480360381019061076e919061356a565b611a91565b6040516107809190613a9b565b60405180910390f35b34801561079557600080fd5b5061079e611b38565b6040516107ab9190613dfd565b60405180910390f35b3480156107c057600080fd5b506107c9611b3e565b6040516107d69190613dfd565b60405180910390f35b3480156107eb57600080fd5b506107f4611b44565b6040516108019190613a9b565b60405180910390f35b34801561081657600080fd5b5061081f611bd2565b60405161082c9190613a9b565b60405180910390f35b34801561084157600080fd5b5061085c60048036038101906108579190613331565b611c60565b6040516108699190613a80565b60405180910390f35b34801561087e57600080fd5b5061089960048036038101906108949190613304565b611cf4565b005b3480156108a757600080fd5b506108b0611dec565b6040516108bd9190613a80565b60405180910390f35b3480156108d257600080fd5b506108ed60048036038101906108e8919061356a565b611dff565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a325750610a3182611e85565b5b9050919050565b606060018054610a489061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a749061416d565b8015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b5050505050905090565b6000610ad682611eef565b610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90613dbd565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5b826110d1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390613cfd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610beb611efc565b73ffffffffffffffffffffffffffffffffffffffff161480610c1a5750610c1981610c14611efc565b611c60565b5b610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5090613bdd565b60405180910390fd5b610c64838383611f04565b505050565b60008054905090565b610c7d838383611fb6565b505050565b6000610c8d83611181565b8210610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590613abd565b60405180910390fd5b6000610cd8610c69565b905060008060005b83811015610e3e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dd257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2a5786841415610e1b578195505050505050610e7a565b8380610e26906141d0565b9450505b508080610e36906141d0565b915050610ce0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190613d7d565b60405180910390fd5b92915050565b600a5481565b610e8e611efc565b73ffffffffffffffffffffffffffffffffffffffff16610eac611529565b73ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990613c5d565b60405180910390fd5b80600a8190555050565b610f14611efc565b73ffffffffffffffffffffffffffffffffffffffff16610f32611529565b73ffffffffffffffffffffffffffffffffffffffff1614610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613c5d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610fc657600080fd5b565b610fe383838360405180602001604052806000815250611a35565b505050565b6000610ff2610c69565b8210611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613b3d565b60405180910390fd5b819050919050565b611043611efc565b73ffffffffffffffffffffffffffffffffffffffff16611061611529565b73ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90613c5d565b60405180910390fd5b80601190805190602001906110cd9291906130de565b5050565b60006110dc8261256f565b600001519050919050565b60095481565b601180546110fa9061416d565b80601f01602080910402602001604051908101604052809291908181526020018280546111269061416d565b80156111735780601f1061114857610100808354040283529160200191611173565b820191906000526020600020905b81548152906001019060200180831161115657829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990613c1d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611272611efc565b73ffffffffffffffffffffffffffffffffffffffff16611290611529565b73ffffffffffffffffffffffffffffffffffffffff16146112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd90613c5d565b60405180910390fd5b6112f06000612772565b565b6112fa611efc565b73ffffffffffffffffffffffffffffffffffffffff16611318611529565b73ffffffffffffffffffffffffffffffffffffffff161461136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136590613c5d565b60405180910390fd5b80600b8190555050565b601060009054906101000a900460ff166113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90613bbd565b60405180910390fd5b6000811180156113d95750600c548111155b611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90613bfd565b60405180910390fd5b600a5481611424610c69565b61142e9190613f28565b111561146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690613add565b60405180910390fd5b600d548161147b610c69565b6114859190613f28565b11156114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd90613b7d565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115159190613f28565b925050819055506115263382612838565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61155b611efc565b73ffffffffffffffffffffffffffffffffffffffff16611579611529565b73ffffffffffffffffffffffffffffffffffffffff16146115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613c5d565b60405180910390fd5b8060098190555050565b6060600280546115e89061416d565b80601f01602080910402602001604051908101604052809291908181526020018280546116149061416d565b80156116615780601f1061163657610100808354040283529160200191611661565b820191906000526020600020905b81548152906001019060200180831161164457829003601f168201915b5050505050905090565b611673611efc565b73ffffffffffffffffffffffffffffffffffffffff16611691611529565b73ffffffffffffffffffffffffffffffffffffffff16146116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de90613c5d565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b601060009054906101000a900460ff16611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613bbd565b60405180910390fd5b6000811180156117745750600b548111155b6117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90613cdd565b60405180910390fd5b600a54816117bf610c69565b6117c99190613f28565b111561180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190613add565b60405180910390fd5b806009546118189190613faf565b34101561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190613b9d565b60405180910390fd5b6118643382612838565b50565b61186f611efc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d490613c9d565b60405180910390fd5b80600660006118ea611efc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611997611efc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119dc9190613a80565b60405180910390a35050565b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600c5481565b611a40848484611fb6565b611a4c84848484612856565b611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290613d1d565b60405180910390fd5b50505050565b6060611a9c82611eef565b611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad290613c7d565b60405180910390fd5b6000611ae56129ed565b90506000815111611b055760405180602001604052806000815250611b30565b80611b0f84612a7f565b604051602001611b209291906139f5565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b600f8054611b519061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7d9061416d565b8015611bca5780601f10611b9f57610100808354040283529160200191611bca565b820191906000526020600020905b815481529060010190602001808311611bad57829003601f168201915b505050505081565b600e8054611bdf9061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0b9061416d565b8015611c585780601f10611c2d57610100808354040283529160200191611c58565b820191906000526020600020905b815481529060010190602001808311611c3b57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cfc611efc565b73ffffffffffffffffffffffffffffffffffffffff16611d1a611529565b73ffffffffffffffffffffffffffffffffffffffff1614611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790613c5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd790613afd565b60405180910390fd5b611de981612772565b50565b601060009054906101000a900460ff1681565b611e07611efc565b73ffffffffffffffffffffffffffffffffffffffff16611e25611529565b73ffffffffffffffffffffffffffffffffffffffff1614611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290613c5d565b60405180910390fd5b80600d8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fc18261256f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fe8611efc565b73ffffffffffffffffffffffffffffffffffffffff161480612044575061200d611efc565b73ffffffffffffffffffffffffffffffffffffffff1661202c84610acb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612060575061205f826000015161205a611efc565b611c60565b5b9050806120a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209990613cbd565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b90613c3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217b90613b5d565b60405180910390fd5b6121918585856001612be0565b6121a16000848460000151611f04565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661220f9190614009565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122b39190613ee2565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123b99190613f28565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124ff5761242f81611eef565b156124fe576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125678686866001612be6565b505050505050565b612577613164565b61258082611eef565b6125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b690613b1d565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106126235760017f000000000000000000000000000000000000000000000000000000000000000084612616919061403d565b6126209190613f28565b90505b60008390505b818110612731576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461271d5780935050505061276d565b50808061272990614143565b915050612629565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276490613d9d565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612852828260405180602001604052806000815250612bec565b5050565b60006128778473ffffffffffffffffffffffffffffffffffffffff166130cb565b156129e0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128a0611efc565b8786866040518563ffffffff1660e01b81526004016128c29493929190613a34565b602060405180830381600087803b1580156128dc57600080fd5b505af192505050801561290d57506040513d601f19601f8201168201806040525081019061290a91906134f4565b60015b612990573d806000811461293d576040519150601f19603f3d011682016040523d82523d6000602084013e612942565b606091505b50600081511415612988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297f90613d1d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129e5565b600190505b949350505050565b6060601180546129fc9061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054612a289061416d565b8015612a755780601f10612a4a57610100808354040283529160200191612a75565b820191906000526020600020905b815481529060010190602001808311612a5857829003601f168201915b5050505050905090565b60606000821415612ac7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bdb565b600082905060005b60008214612af9578080612ae2906141d0565b915050600a82612af29190613f7e565b9150612acf565b60008167ffffffffffffffff811115612b1557612b14614306565b5b6040519080825280601f01601f191660200182016040528015612b475781602001600182028036833780820191505090505b5090505b60008514612bd457600182612b60919061403d565b9150600a85612b6f9190614219565b6030612b7b9190613f28565b60f81b818381518110612b9157612b906142d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bcd9190613f7e565b9450612b4b565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5990613d5d565b60405180910390fd5b612c6b81611eef565b15612cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca290613d3d565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0590613ddd565b60405180910390fd5b612d1b6000858386612be0565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612e189190613ee2565b6fffffffffffffffffffffffffffffffff168152602001858360200151612e3f9190613ee2565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156130ae57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461304e6000888488612856565b61308d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308490613d1d565b60405180910390fd5b8180613098906141d0565b92505080806130a6906141d0565b915050612fdd565b50806000819055506130c36000878588612be6565b505050505050565b600080823b905060008111915050919050565b8280546130ea9061416d565b90600052602060002090601f01602090048101928261310c5760008555613153565b82601f1061312557805160ff1916838001178555613153565b82800160010185558215613153579182015b82811115613152578251825591602001919060010190613137565b5b509050613160919061319e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131b757600081600090555060010161319f565b5090565b60006131ce6131c984613e3d565b613e18565b9050828152602081018484840111156131ea576131e961433a565b5b6131f5848285614101565b509392505050565b600061321061320b84613e6e565b613e18565b90508281526020810184848401111561322c5761322b61433a565b5b613237848285614101565b509392505050565b60008135905061324e81614a56565b92915050565b60008135905061326381614a6d565b92915050565b60008135905061327881614a84565b92915050565b60008151905061328d81614a84565b92915050565b600082601f8301126132a8576132a7614335565b5b81356132b88482602086016131bb565b91505092915050565b600082601f8301126132d6576132d5614335565b5b81356132e68482602086016131fd565b91505092915050565b6000813590506132fe81614a9b565b92915050565b60006020828403121561331a57613319614344565b5b60006133288482850161323f565b91505092915050565b6000806040838503121561334857613347614344565b5b60006133568582860161323f565b92505060206133678582860161323f565b9150509250929050565b60008060006060848603121561338a57613389614344565b5b60006133988682870161323f565b93505060206133a98682870161323f565b92505060406133ba868287016132ef565b9150509250925092565b600080600080608085870312156133de576133dd614344565b5b60006133ec8782880161323f565b94505060206133fd8782880161323f565b935050604061340e878288016132ef565b925050606085013567ffffffffffffffff81111561342f5761342e61433f565b5b61343b87828801613293565b91505092959194509250565b6000806040838503121561345e5761345d614344565b5b600061346c8582860161323f565b925050602061347d85828601613254565b9150509250929050565b6000806040838503121561349e5761349d614344565b5b60006134ac8582860161323f565b92505060206134bd858286016132ef565b9150509250929050565b6000602082840312156134dd576134dc614344565b5b60006134eb84828501613269565b91505092915050565b60006020828403121561350a57613509614344565b5b60006135188482850161327e565b91505092915050565b60006020828403121561353757613536614344565b5b600082013567ffffffffffffffff8111156135555761355461433f565b5b613561848285016132c1565b91505092915050565b6000602082840312156135805761357f614344565b5b600061358e848285016132ef565b91505092915050565b6135a081614071565b82525050565b6135af81614083565b82525050565b60006135c082613e9f565b6135ca8185613eb5565b93506135da818560208601614110565b6135e381614349565b840191505092915050565b60006135f982613eaa565b6136038185613ec6565b9350613613818560208601614110565b61361c81614349565b840191505092915050565b600061363282613eaa565b61363c8185613ed7565b935061364c818560208601614110565b80840191505092915050565b6000613665602283613ec6565b91506136708261435a565b604082019050919050565b6000613688600883613ec6565b9150613693826143a9565b602082019050919050565b60006136ab602683613ec6565b91506136b6826143d2565b604082019050919050565b60006136ce602a83613ec6565b91506136d982614421565b604082019050919050565b60006136f1602383613ec6565b91506136fc82614470565b604082019050919050565b6000613714602583613ec6565b915061371f826144bf565b604082019050919050565b6000613737601c83613ec6565b91506137428261450e565b602082019050919050565b600061375a602283613ec6565b915061376582614537565b604082019050919050565b600061377d601083613ec6565b915061378882614586565b602082019050919050565b60006137a0603983613ec6565b91506137ab826145af565b604082019050919050565b60006137c3602083613ec6565b91506137ce826145fe565b602082019050919050565b60006137e6602b83613ec6565b91506137f182614627565b604082019050919050565b6000613809602683613ec6565b915061381482614676565b604082019050919050565b600061382c602083613ec6565b9150613837826146c5565b602082019050919050565b600061384f602f83613ec6565b915061385a826146ee565b604082019050919050565b6000613872601a83613ec6565b915061387d8261473d565b602082019050919050565b6000613895603283613ec6565b91506138a082614766565b604082019050919050565b60006138b8602183613ec6565b91506138c3826147b5565b604082019050919050565b60006138db602283613ec6565b91506138e682614804565b604082019050919050565b60006138fe603383613ec6565b915061390982614853565b604082019050919050565b6000613921601d83613ec6565b915061392c826148a2565b602082019050919050565b6000613944602183613ec6565b915061394f826148cb565b604082019050919050565b6000613967602e83613ec6565b91506139728261491a565b604082019050919050565b600061398a602f83613ec6565b915061399582614969565b604082019050919050565b60006139ad602d83613ec6565b91506139b8826149b8565b604082019050919050565b60006139d0602283613ec6565b91506139db82614a07565b604082019050919050565b6139ef816140f7565b82525050565b6000613a018285613627565b9150613a0d8284613627565b91508190509392505050565b6000602082019050613a2e6000830184613597565b92915050565b6000608082019050613a496000830187613597565b613a566020830186613597565b613a6360408301856139e6565b8181036060830152613a7581846135b5565b905095945050505050565b6000602082019050613a9560008301846135a6565b92915050565b60006020820190508181036000830152613ab581846135ee565b905092915050565b60006020820190508181036000830152613ad681613658565b9050919050565b60006020820190508181036000830152613af68161367b565b9050919050565b60006020820190508181036000830152613b168161369e565b9050919050565b60006020820190508181036000830152613b36816136c1565b9050919050565b60006020820190508181036000830152613b56816136e4565b9050919050565b60006020820190508181036000830152613b7681613707565b9050919050565b60006020820190508181036000830152613b968161372a565b9050919050565b60006020820190508181036000830152613bb68161374d565b9050919050565b60006020820190508181036000830152613bd681613770565b9050919050565b60006020820190508181036000830152613bf681613793565b9050919050565b60006020820190508181036000830152613c16816137b6565b9050919050565b60006020820190508181036000830152613c36816137d9565b9050919050565b60006020820190508181036000830152613c56816137fc565b9050919050565b60006020820190508181036000830152613c768161381f565b9050919050565b60006020820190508181036000830152613c9681613842565b9050919050565b60006020820190508181036000830152613cb681613865565b9050919050565b60006020820190508181036000830152613cd681613888565b9050919050565b60006020820190508181036000830152613cf6816138ab565b9050919050565b60006020820190508181036000830152613d16816138ce565b9050919050565b60006020820190508181036000830152613d36816138f1565b9050919050565b60006020820190508181036000830152613d5681613914565b9050919050565b60006020820190508181036000830152613d7681613937565b9050919050565b60006020820190508181036000830152613d968161395a565b9050919050565b60006020820190508181036000830152613db68161397d565b9050919050565b60006020820190508181036000830152613dd6816139a0565b9050919050565b60006020820190508181036000830152613df6816139c3565b9050919050565b6000602082019050613e1260008301846139e6565b92915050565b6000613e22613e33565b9050613e2e828261419f565b919050565b6000604051905090565b600067ffffffffffffffff821115613e5857613e57614306565b5b613e6182614349565b9050602081019050919050565b600067ffffffffffffffff821115613e8957613e88614306565b5b613e9282614349565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613eed826140bb565b9150613ef8836140bb565b9250826fffffffffffffffffffffffffffffffff03821115613f1d57613f1c61424a565b5b828201905092915050565b6000613f33826140f7565b9150613f3e836140f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7357613f7261424a565b5b828201905092915050565b6000613f89826140f7565b9150613f94836140f7565b925082613fa457613fa3614279565b5b828204905092915050565b6000613fba826140f7565b9150613fc5836140f7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ffe57613ffd61424a565b5b828202905092915050565b6000614014826140bb565b915061401f836140bb565b9250828210156140325761403161424a565b5b828203905092915050565b6000614048826140f7565b9150614053836140f7565b9250828210156140665761406561424a565b5b828203905092915050565b600061407c826140d7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561412e578082015181840152602081019050614113565b8381111561413d576000848401525b50505050565b600061414e826140f7565b915060008214156141625761416161424a565b5b600182039050919050565b6000600282049050600182168061418557607f821691505b60208210811415614199576141986142a8565b5b50919050565b6141a882614349565b810181811067ffffffffffffffff821117156141c7576141c6614306565b5b80604052505050565b60006141db826140f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561420e5761420d61424a565b5b600182019050919050565b6000614224826140f7565b915061422f836140f7565b92508261423f5761423e614279565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f546865726520617265206e6f2066726565206d696e7473206c65667400000000600082015250565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e64203520746f6b656e73600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e6420313020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614a5f81614071565b8114614a6a57600080fd5b50565b614a7681614083565b8114614a8157600080fd5b50565b614a8d8161408f565b8114614a9857600080fd5b50565b614aa4816140f7565b8114614aaf57600080fd5b5056fea26469706673582212203ca54ca87abb7ec42924624b7d253010c313858f2246b6ddcc5ddfb550e7213a64736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d537068336b36543271716f4b754b4e57795652355268727778364659377950686e68457454765a76545a67352f
Deployed Bytecode
0x6080604052600436106102305760003560e01c806379c9cb7b1161012e578063b88d4fde116100ab578063e03c69e81161006f578063e03c69e81461080a578063e985e9c514610835578063f2fde38b14610872578063f7cd09c71461089b578063fb19ba2d146108c657610230565b8063b88d4fde14610723578063c87b56dd1461074c578063cce132d114610789578063d7224ba0146107b4578063da241d06146107df57610230565b806396f8f6dd116100f257806396f8f6dd14610671578063a0712d6814610688578063a22cb465146106a4578063a7b8cd4d146106cd578063b875e2ce146106f857610230565b806379c9cb7b146105a05780637c928fe9146105c95780638da5cb5b146105f257806391b7f5ed1461061d57806395d89b411461064657610230565b80633ccfd60b116101bc578063676dd56311610180578063676dd563146104cb5780636c0360eb146104f65780636fe8f9c51461052157806370a082311461054c578063715018a61461058957610230565b80633ccfd60b146103e857806342842e0e146103ff5780634f6ccce71461042857806355f804b3146104655780636352211e1461048e57610230565b806318160ddd1161020357806318160ddd1461030357806323b872dd1461032e5780632f745c591461035757806332cb6b0c146103945780633b4c4b25146103bf57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906134c7565b6108ef565b6040516102699190613a80565b60405180910390f35b34801561027e57600080fd5b50610287610a39565b6040516102949190613a9b565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061356a565b610acb565b6040516102d19190613a19565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613487565b610b50565b005b34801561030f57600080fd5b50610318610c69565b6040516103259190613dfd565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613371565b610c72565b005b34801561036357600080fd5b5061037e60048036038101906103799190613487565b610c82565b60405161038b9190613dfd565b60405180910390f35b3480156103a057600080fd5b506103a9610e80565b6040516103b69190613dfd565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e1919061356a565b610e86565b005b3480156103f457600080fd5b506103fd610f0c565b005b34801561040b57600080fd5b5061042660048036038101906104219190613371565b610fc8565b005b34801561043457600080fd5b5061044f600480360381019061044a919061356a565b610fe8565b60405161045c9190613dfd565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190613521565b61103b565b005b34801561049a57600080fd5b506104b560048036038101906104b0919061356a565b6110d1565b6040516104c29190613a19565b60405180910390f35b3480156104d757600080fd5b506104e06110e7565b6040516104ed9190613dfd565b60405180910390f35b34801561050257600080fd5b5061050b6110ed565b6040516105189190613a9b565b60405180910390f35b34801561052d57600080fd5b5061053661117b565b6040516105439190613dfd565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190613304565b611181565b6040516105809190613dfd565b60405180910390f35b34801561059557600080fd5b5061059e61126a565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061356a565b6112f2565b005b3480156105d557600080fd5b506105f060048036038101906105eb919061356a565b611378565b005b3480156105fe57600080fd5b50610607611529565b6040516106149190613a19565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f919061356a565b611553565b005b34801561065257600080fd5b5061065b6115d9565b6040516106689190613a9b565b60405180910390f35b34801561067d57600080fd5b5061068661166b565b005b6106a2600480360381019061069d919061356a565b611713565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190613447565b611867565b005b3480156106d957600080fd5b506106e26119e8565b6040516106ef9190613dfd565b60405180910390f35b34801561070457600080fd5b5061070d611a2f565b60405161071a9190613dfd565b60405180910390f35b34801561072f57600080fd5b5061074a600480360381019061074591906133c4565b611a35565b005b34801561075857600080fd5b50610773600480360381019061076e919061356a565b611a91565b6040516107809190613a9b565b60405180910390f35b34801561079557600080fd5b5061079e611b38565b6040516107ab9190613dfd565b60405180910390f35b3480156107c057600080fd5b506107c9611b3e565b6040516107d69190613dfd565b60405180910390f35b3480156107eb57600080fd5b506107f4611b44565b6040516108019190613a9b565b60405180910390f35b34801561081657600080fd5b5061081f611bd2565b60405161082c9190613a9b565b60405180910390f35b34801561084157600080fd5b5061085c60048036038101906108579190613331565b611c60565b6040516108699190613a80565b60405180910390f35b34801561087e57600080fd5b5061089960048036038101906108949190613304565b611cf4565b005b3480156108a757600080fd5b506108b0611dec565b6040516108bd9190613a80565b60405180910390f35b3480156108d257600080fd5b506108ed60048036038101906108e8919061356a565b611dff565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a325750610a3182611e85565b5b9050919050565b606060018054610a489061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a749061416d565b8015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b5050505050905090565b6000610ad682611eef565b610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90613dbd565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5b826110d1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390613cfd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610beb611efc565b73ffffffffffffffffffffffffffffffffffffffff161480610c1a5750610c1981610c14611efc565b611c60565b5b610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5090613bdd565b60405180910390fd5b610c64838383611f04565b505050565b60008054905090565b610c7d838383611fb6565b505050565b6000610c8d83611181565b8210610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590613abd565b60405180910390fd5b6000610cd8610c69565b905060008060005b83811015610e3e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dd257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2a5786841415610e1b578195505050505050610e7a565b8380610e26906141d0565b9450505b508080610e36906141d0565b915050610ce0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190613d7d565b60405180910390fd5b92915050565b600a5481565b610e8e611efc565b73ffffffffffffffffffffffffffffffffffffffff16610eac611529565b73ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990613c5d565b60405180910390fd5b80600a8190555050565b610f14611efc565b73ffffffffffffffffffffffffffffffffffffffff16610f32611529565b73ffffffffffffffffffffffffffffffffffffffff1614610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613c5d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610fc657600080fd5b565b610fe383838360405180602001604052806000815250611a35565b505050565b6000610ff2610c69565b8210611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613b3d565b60405180910390fd5b819050919050565b611043611efc565b73ffffffffffffffffffffffffffffffffffffffff16611061611529565b73ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90613c5d565b60405180910390fd5b80601190805190602001906110cd9291906130de565b5050565b60006110dc8261256f565b600001519050919050565b60095481565b601180546110fa9061416d565b80601f01602080910402602001604051908101604052809291908181526020018280546111269061416d565b80156111735780601f1061114857610100808354040283529160200191611173565b820191906000526020600020905b81548152906001019060200180831161115657829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990613c1d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611272611efc565b73ffffffffffffffffffffffffffffffffffffffff16611290611529565b73ffffffffffffffffffffffffffffffffffffffff16146112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd90613c5d565b60405180910390fd5b6112f06000612772565b565b6112fa611efc565b73ffffffffffffffffffffffffffffffffffffffff16611318611529565b73ffffffffffffffffffffffffffffffffffffffff161461136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136590613c5d565b60405180910390fd5b80600b8190555050565b601060009054906101000a900460ff166113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90613bbd565b60405180910390fd5b6000811180156113d95750600c548111155b611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90613bfd565b60405180910390fd5b600a5481611424610c69565b61142e9190613f28565b111561146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690613add565b60405180910390fd5b600d548161147b610c69565b6114859190613f28565b11156114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd90613b7d565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115159190613f28565b925050819055506115263382612838565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61155b611efc565b73ffffffffffffffffffffffffffffffffffffffff16611579611529565b73ffffffffffffffffffffffffffffffffffffffff16146115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613c5d565b60405180910390fd5b8060098190555050565b6060600280546115e89061416d565b80601f01602080910402602001604051908101604052809291908181526020018280546116149061416d565b80156116615780601f1061163657610100808354040283529160200191611661565b820191906000526020600020905b81548152906001019060200180831161164457829003601f168201915b5050505050905090565b611673611efc565b73ffffffffffffffffffffffffffffffffffffffff16611691611529565b73ffffffffffffffffffffffffffffffffffffffff16146116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de90613c5d565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b601060009054906101000a900460ff16611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613bbd565b60405180910390fd5b6000811180156117745750600b548111155b6117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90613cdd565b60405180910390fd5b600a54816117bf610c69565b6117c99190613f28565b111561180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190613add565b60405180910390fd5b806009546118189190613faf565b34101561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190613b9d565b60405180910390fd5b6118643382612838565b50565b61186f611efc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d490613c9d565b60405180910390fd5b80600660006118ea611efc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611997611efc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119dc9190613a80565b60405180910390a35050565b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600c5481565b611a40848484611fb6565b611a4c84848484612856565b611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290613d1d565b60405180910390fd5b50505050565b6060611a9c82611eef565b611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad290613c7d565b60405180910390fd5b6000611ae56129ed565b90506000815111611b055760405180602001604052806000815250611b30565b80611b0f84612a7f565b604051602001611b209291906139f5565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b600f8054611b519061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7d9061416d565b8015611bca5780601f10611b9f57610100808354040283529160200191611bca565b820191906000526020600020905b815481529060010190602001808311611bad57829003601f168201915b505050505081565b600e8054611bdf9061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0b9061416d565b8015611c585780601f10611c2d57610100808354040283529160200191611c58565b820191906000526020600020905b815481529060010190602001808311611c3b57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cfc611efc565b73ffffffffffffffffffffffffffffffffffffffff16611d1a611529565b73ffffffffffffffffffffffffffffffffffffffff1614611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790613c5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd790613afd565b60405180910390fd5b611de981612772565b50565b601060009054906101000a900460ff1681565b611e07611efc565b73ffffffffffffffffffffffffffffffffffffffff16611e25611529565b73ffffffffffffffffffffffffffffffffffffffff1614611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290613c5d565b60405180910390fd5b80600d8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fc18261256f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fe8611efc565b73ffffffffffffffffffffffffffffffffffffffff161480612044575061200d611efc565b73ffffffffffffffffffffffffffffffffffffffff1661202c84610acb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612060575061205f826000015161205a611efc565b611c60565b5b9050806120a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209990613cbd565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b90613c3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217b90613b5d565b60405180910390fd5b6121918585856001612be0565b6121a16000848460000151611f04565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661220f9190614009565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122b39190613ee2565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123b99190613f28565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124ff5761242f81611eef565b156124fe576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125678686866001612be6565b505050505050565b612577613164565b61258082611eef565b6125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b690613b1d565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106126235760017f000000000000000000000000000000000000000000000000000000000000000a84612616919061403d565b6126209190613f28565b90505b60008390505b818110612731576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461271d5780935050505061276d565b50808061272990614143565b915050612629565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276490613d9d565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612852828260405180602001604052806000815250612bec565b5050565b60006128778473ffffffffffffffffffffffffffffffffffffffff166130cb565b156129e0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128a0611efc565b8786866040518563ffffffff1660e01b81526004016128c29493929190613a34565b602060405180830381600087803b1580156128dc57600080fd5b505af192505050801561290d57506040513d601f19601f8201168201806040525081019061290a91906134f4565b60015b612990573d806000811461293d576040519150601f19603f3d011682016040523d82523d6000602084013e612942565b606091505b50600081511415612988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297f90613d1d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129e5565b600190505b949350505050565b6060601180546129fc9061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054612a289061416d565b8015612a755780601f10612a4a57610100808354040283529160200191612a75565b820191906000526020600020905b815481529060010190602001808311612a5857829003601f168201915b5050505050905090565b60606000821415612ac7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bdb565b600082905060005b60008214612af9578080612ae2906141d0565b915050600a82612af29190613f7e565b9150612acf565b60008167ffffffffffffffff811115612b1557612b14614306565b5b6040519080825280601f01601f191660200182016040528015612b475781602001600182028036833780820191505090505b5090505b60008514612bd457600182612b60919061403d565b9150600a85612b6f9190614219565b6030612b7b9190613f28565b60f81b818381518110612b9157612b906142d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bcd9190613f7e565b9450612b4b565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5990613d5d565b60405180910390fd5b612c6b81611eef565b15612cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca290613d3d565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115612d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0590613ddd565b60405180910390fd5b612d1b6000858386612be0565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612e189190613ee2565b6fffffffffffffffffffffffffffffffff168152602001858360200151612e3f9190613ee2565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156130ae57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461304e6000888488612856565b61308d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308490613d1d565b60405180910390fd5b8180613098906141d0565b92505080806130a6906141d0565b915050612fdd565b50806000819055506130c36000878588612be6565b505050505050565b600080823b905060008111915050919050565b8280546130ea9061416d565b90600052602060002090601f01602090048101928261310c5760008555613153565b82601f1061312557805160ff1916838001178555613153565b82800160010185558215613153579182015b82811115613152578251825591602001919060010190613137565b5b509050613160919061319e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131b757600081600090555060010161319f565b5090565b60006131ce6131c984613e3d565b613e18565b9050828152602081018484840111156131ea576131e961433a565b5b6131f5848285614101565b509392505050565b600061321061320b84613e6e565b613e18565b90508281526020810184848401111561322c5761322b61433a565b5b613237848285614101565b509392505050565b60008135905061324e81614a56565b92915050565b60008135905061326381614a6d565b92915050565b60008135905061327881614a84565b92915050565b60008151905061328d81614a84565b92915050565b600082601f8301126132a8576132a7614335565b5b81356132b88482602086016131bb565b91505092915050565b600082601f8301126132d6576132d5614335565b5b81356132e68482602086016131fd565b91505092915050565b6000813590506132fe81614a9b565b92915050565b60006020828403121561331a57613319614344565b5b60006133288482850161323f565b91505092915050565b6000806040838503121561334857613347614344565b5b60006133568582860161323f565b92505060206133678582860161323f565b9150509250929050565b60008060006060848603121561338a57613389614344565b5b60006133988682870161323f565b93505060206133a98682870161323f565b92505060406133ba868287016132ef565b9150509250925092565b600080600080608085870312156133de576133dd614344565b5b60006133ec8782880161323f565b94505060206133fd8782880161323f565b935050604061340e878288016132ef565b925050606085013567ffffffffffffffff81111561342f5761342e61433f565b5b61343b87828801613293565b91505092959194509250565b6000806040838503121561345e5761345d614344565b5b600061346c8582860161323f565b925050602061347d85828601613254565b9150509250929050565b6000806040838503121561349e5761349d614344565b5b60006134ac8582860161323f565b92505060206134bd858286016132ef565b9150509250929050565b6000602082840312156134dd576134dc614344565b5b60006134eb84828501613269565b91505092915050565b60006020828403121561350a57613509614344565b5b60006135188482850161327e565b91505092915050565b60006020828403121561353757613536614344565b5b600082013567ffffffffffffffff8111156135555761355461433f565b5b613561848285016132c1565b91505092915050565b6000602082840312156135805761357f614344565b5b600061358e848285016132ef565b91505092915050565b6135a081614071565b82525050565b6135af81614083565b82525050565b60006135c082613e9f565b6135ca8185613eb5565b93506135da818560208601614110565b6135e381614349565b840191505092915050565b60006135f982613eaa565b6136038185613ec6565b9350613613818560208601614110565b61361c81614349565b840191505092915050565b600061363282613eaa565b61363c8185613ed7565b935061364c818560208601614110565b80840191505092915050565b6000613665602283613ec6565b91506136708261435a565b604082019050919050565b6000613688600883613ec6565b9150613693826143a9565b602082019050919050565b60006136ab602683613ec6565b91506136b6826143d2565b604082019050919050565b60006136ce602a83613ec6565b91506136d982614421565b604082019050919050565b60006136f1602383613ec6565b91506136fc82614470565b604082019050919050565b6000613714602583613ec6565b915061371f826144bf565b604082019050919050565b6000613737601c83613ec6565b91506137428261450e565b602082019050919050565b600061375a602283613ec6565b915061376582614537565b604082019050919050565b600061377d601083613ec6565b915061378882614586565b602082019050919050565b60006137a0603983613ec6565b91506137ab826145af565b604082019050919050565b60006137c3602083613ec6565b91506137ce826145fe565b602082019050919050565b60006137e6602b83613ec6565b91506137f182614627565b604082019050919050565b6000613809602683613ec6565b915061381482614676565b604082019050919050565b600061382c602083613ec6565b9150613837826146c5565b602082019050919050565b600061384f602f83613ec6565b915061385a826146ee565b604082019050919050565b6000613872601a83613ec6565b915061387d8261473d565b602082019050919050565b6000613895603283613ec6565b91506138a082614766565b604082019050919050565b60006138b8602183613ec6565b91506138c3826147b5565b604082019050919050565b60006138db602283613ec6565b91506138e682614804565b604082019050919050565b60006138fe603383613ec6565b915061390982614853565b604082019050919050565b6000613921601d83613ec6565b915061392c826148a2565b602082019050919050565b6000613944602183613ec6565b915061394f826148cb565b604082019050919050565b6000613967602e83613ec6565b91506139728261491a565b604082019050919050565b600061398a602f83613ec6565b915061399582614969565b604082019050919050565b60006139ad602d83613ec6565b91506139b8826149b8565b604082019050919050565b60006139d0602283613ec6565b91506139db82614a07565b604082019050919050565b6139ef816140f7565b82525050565b6000613a018285613627565b9150613a0d8284613627565b91508190509392505050565b6000602082019050613a2e6000830184613597565b92915050565b6000608082019050613a496000830187613597565b613a566020830186613597565b613a6360408301856139e6565b8181036060830152613a7581846135b5565b905095945050505050565b6000602082019050613a9560008301846135a6565b92915050565b60006020820190508181036000830152613ab581846135ee565b905092915050565b60006020820190508181036000830152613ad681613658565b9050919050565b60006020820190508181036000830152613af68161367b565b9050919050565b60006020820190508181036000830152613b168161369e565b9050919050565b60006020820190508181036000830152613b36816136c1565b9050919050565b60006020820190508181036000830152613b56816136e4565b9050919050565b60006020820190508181036000830152613b7681613707565b9050919050565b60006020820190508181036000830152613b968161372a565b9050919050565b60006020820190508181036000830152613bb68161374d565b9050919050565b60006020820190508181036000830152613bd681613770565b9050919050565b60006020820190508181036000830152613bf681613793565b9050919050565b60006020820190508181036000830152613c16816137b6565b9050919050565b60006020820190508181036000830152613c36816137d9565b9050919050565b60006020820190508181036000830152613c56816137fc565b9050919050565b60006020820190508181036000830152613c768161381f565b9050919050565b60006020820190508181036000830152613c9681613842565b9050919050565b60006020820190508181036000830152613cb681613865565b9050919050565b60006020820190508181036000830152613cd681613888565b9050919050565b60006020820190508181036000830152613cf6816138ab565b9050919050565b60006020820190508181036000830152613d16816138ce565b9050919050565b60006020820190508181036000830152613d36816138f1565b9050919050565b60006020820190508181036000830152613d5681613914565b9050919050565b60006020820190508181036000830152613d7681613937565b9050919050565b60006020820190508181036000830152613d968161395a565b9050919050565b60006020820190508181036000830152613db68161397d565b9050919050565b60006020820190508181036000830152613dd6816139a0565b9050919050565b60006020820190508181036000830152613df6816139c3565b9050919050565b6000602082019050613e1260008301846139e6565b92915050565b6000613e22613e33565b9050613e2e828261419f565b919050565b6000604051905090565b600067ffffffffffffffff821115613e5857613e57614306565b5b613e6182614349565b9050602081019050919050565b600067ffffffffffffffff821115613e8957613e88614306565b5b613e9282614349565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613eed826140bb565b9150613ef8836140bb565b9250826fffffffffffffffffffffffffffffffff03821115613f1d57613f1c61424a565b5b828201905092915050565b6000613f33826140f7565b9150613f3e836140f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7357613f7261424a565b5b828201905092915050565b6000613f89826140f7565b9150613f94836140f7565b925082613fa457613fa3614279565b5b828204905092915050565b6000613fba826140f7565b9150613fc5836140f7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ffe57613ffd61424a565b5b828202905092915050565b6000614014826140bb565b915061401f836140bb565b9250828210156140325761403161424a565b5b828203905092915050565b6000614048826140f7565b9150614053836140f7565b9250828210156140665761406561424a565b5b828203905092915050565b600061407c826140d7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561412e578082015181840152602081019050614113565b8381111561413d576000848401525b50505050565b600061414e826140f7565b915060008214156141625761416161424a565b5b600182039050919050565b6000600282049050600182168061418557607f821691505b60208210811415614199576141986142a8565b5b50919050565b6141a882614349565b810181811067ffffffffffffffff821117156141c7576141c6614306565b5b80604052505050565b60006141db826140f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561420e5761420d61424a565b5b600182019050919050565b6000614224826140f7565b915061422f836140f7565b92508261423f5761423e614279565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f546865726520617265206e6f2066726565206d696e7473206c65667400000000600082015250565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e64203520746f6b656e73600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e6420313020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614a5f81614071565b8114614a6a57600080fd5b50565b614a7681614083565b8114614a8157600080fd5b50565b614a8d8161408f565b8114614a9857600080fd5b50565b614aa4816140f7565b8114614aaf57600080fd5b5056fea26469706673582212203ca54ca87abb7ec42924624b7d253010c313858f2246b6ddcc5ddfb550e7213a64736f6c63430008070033
Deployed Bytecode Sourcemap
42167:2639:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27348:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29074:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30599:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30162:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25912:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31449:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26540:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42259:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44229:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44691:112;;;;;;;;;;;;;:::i;:::-;;31654:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26075:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43920:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28897:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42214:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42543:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42379:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27774:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41277:103;;;;;;;;;;;;;:::i;:::-;;44130:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43271:546;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40626:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44030:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29229:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43825:87;;;;;;;;;;;;;:::i;:::-;;42778:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30867:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44563:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42334:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31874:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29390:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42298:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36205:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42463:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42418:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31204:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41535:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42503:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44333:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27348:370;27475:4;27520:25;27505:40;;;:11;:40;;;;:99;;;;27571:33;27556:48;;;:11;:48;;;;27505:99;:160;;;;27630:35;27615:50;;;:11;:50;;;;27505:160;:207;;;;27676:36;27700:11;27676:23;:36::i;:::-;27505:207;27491:221;;27348:370;;;:::o;29074:94::-;29128:13;29157:5;29150:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29074:94;:::o;30599:204::-;30667:7;30691:16;30699:7;30691;:16::i;:::-;30683:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30773:15;:24;30789:7;30773:24;;;;;;;;;;;;;;;;;;;;;30766:31;;30599:204;;;:::o;30162:379::-;30231:13;30247:24;30263:7;30247:15;:24::i;:::-;30231:40;;30292:5;30286:11;;:2;:11;;;;30278:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30377:5;30361:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30386:37;30403:5;30410:12;:10;:12::i;:::-;30386:16;:37::i;:::-;30361:62;30345:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;30507:28;30516:2;30520:7;30529:5;30507:8;:28::i;:::-;30224:317;30162:379;;:::o;25912:94::-;25965:7;25988:12;;25981:19;;25912:94;:::o;31449:142::-;31557:28;31567:4;31573:2;31577:7;31557:9;:28::i;:::-;31449:142;;;:::o;26540:744::-;26649:7;26684:16;26694:5;26684:9;:16::i;:::-;26676:5;:24;26668:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26746:22;26771:13;:11;:13::i;:::-;26746:38;;26791:19;26821:25;26871:9;26866:350;26890:14;26886:1;:18;26866:350;;;26920:31;26954:11;:14;26966:1;26954:14;;;;;;;;;;;26920:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27007:1;26981:28;;:9;:14;;;:28;;;26977:89;;27042:9;:14;;;27022:34;;26977:89;27099:5;27078:26;;:17;:26;;;27074:135;;;27136:5;27121:11;:20;27117:59;;;27163:1;27156:8;;;;;;;;;27117:59;27186:13;;;;;:::i;:::-;;;;27074:135;26911:305;26906:3;;;;;:::i;:::-;;;;26866:350;;;;27222:56;;;;;;;;;;:::i;:::-;;;;;;;;26540:744;;;;;:::o;42259:32::-;;;;:::o;44229:96::-;40857:12;:10;:12::i;:::-;40846:23;;:7;:5;:7::i;:::-;:23;;;40838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44308:9:::1;44295:10;:22;;;;44229:96:::0;:::o;44691:112::-;40857:12;:10;:12::i;:::-;40846:23;;:7;:5;:7::i;:::-;:23;;;40838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44755:10:::1;44747:24;;:47;44772:21;44747:47;;;;;;;;;;;;;;;;;;;;;;;44739:56;;;::::0;::::1;;44691:112::o:0;31654:157::-;31766:39;31783:4;31789:2;31793:7;31766:39;;;;;;;;;;;;:16;:39::i;:::-;31654:157;;;:::o;26075:177::-;26142:7;26174:13;:11;:13::i;:::-;26166:5;:21;26158:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26241:5;26234:12;;26075:177;;;:::o;43920:102::-;40857:12;:10;:12::i;:::-;40846:23;;:7;:5;:7::i;:::-;:23;;;40838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44004:10:::1;43994:7;:20;;;;;;;;;;;;:::i;:::-;;43920:102:::0;:::o;28897:118::-;28961:7;28984:20;28996:7;28984:11;:20::i;:::-;:25;;;28977:32;;28897:118;;;:::o;42214:38::-;;;;:::o;42543:94::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42379:32::-;;;;:::o;27774:211::-;27838:7;27879:1;27862:19;;:5;:19;;;;27854:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;27951:12;:19;27964:5;27951:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27943:36;;27936:43;;27774:211;;;:::o;41277:103::-;40857:12;:10;:12::i;:::-;40846:23;;:7;:5;:7::i;:::-;:23;;;40838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41342:30:::1;41369:1;41342:18;:30::i;:::-;41277:103::o:0;44130:91::-;40857:12;:10;:12::i;:::-;40846:23;;:7;:5;:7::i;:::-;:23;;;40838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44207:6:::1;44195:9;:18;;;;44130:91:::0;:::o;43271:546::-;43334:11;;;;;;;;;;;43326:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;43411:1;43399:9;:13;:48;;;;;43429:18;;43416:9;:31;;43399:48;43377:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;43555:10;;43542:9;43526:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;43518:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;43640:10;;43627:9;43611:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;43589:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;43757:9;43719:22;:34;43742:10;43719:34;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;43777:32;43787:10;43799:9;43777;:32::i;:::-;43271:546;:::o;40626:87::-;40672:7;40699:6;;;;;;;;;;;40692:13;;40626:87;:::o;44030:92::-;40857:12;:10;:12::i;:::-;40846:23;;:7;:5;:7::i;:::-;:23;;;40838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44106:8:::1;44094:9;:20;;;;44030:92:::0;:::o;29229:98::-;29285:13;29314:7;29307:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29229:98;:::o;43825:87::-;40857:12;:10;:12::i;:::-;40846:23;;:7;:5;:7::i;:::-;:23;;;40838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43893:11:::1;;;;;;;;;;;43892:12;43878:11;;:26;;;;;;;;;;;;;;;;;;43825:87::o:0;42778:485::-;42845:11;;;;;;;;;;;42837:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;42922:1;42910:9;:13;:39;;;;;42940:9;;42927;:22;;42910:39;42888:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;43058:10;;43045:9;43029:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;43021:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;43139:9;43127;;:21;;;;:::i;:::-;43114:9;:34;;43092:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;43223:32;43233:10;43245:9;43223;:32::i;:::-;42778:485;:::o;30867:274::-;30970:12;:10;:12::i;:::-;30958:24;;:8;:24;;;;30950:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31067:8;31022:18;:32;31041:12;:10;:12::i;:::-;31022:32;;;;;;;;;;;;;;;:42;31055:8;31022:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31116:8;31087:48;;31102:12;:10;:12::i;:::-;31087:48;;;31126:8;31087:48;;;;;;:::i;:::-;;;;;;;;30867:274;;:::o;44563:120::-;44614:7;44641:22;:34;44664:10;44641:34;;;;;;;;;;;;;;;;44634:41;;44563:120;:::o;42334:38::-;;;;:::o;31874:311::-;32011:28;32021:4;32027:2;32031:7;32011:9;:28::i;:::-;32062:48;32085:4;32091:2;32095:7;32104:5;32062:22;:48::i;:::-;32046:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;31874:311;;;;:::o;29390:394::-;29488:13;29529:16;29537:7;29529;:16::i;:::-;29513:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;29619:21;29643:10;:8;:10::i;:::-;29619:34;;29698:1;29680:7;29674:21;:25;:104;;;;;;;;;;;;;;;;;29735:7;29744:18;:7;:16;:18::i;:::-;29718:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29674:104;29660:118;;;29390:394;;;:::o;42298:29::-;;;;:::o;36205:43::-;;;;:::o;42463:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42418:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31204:186::-;31326:4;31349:18;:25;31368:5;31349:25;;;;;;;;;;;;;;;:35;31375:8;31349:35;;;;;;;;;;;;;;;;;;;;;;;;;31342:42;;31204:186;;;;:::o;41535:201::-;40857:12;:10;:12::i;:::-;40846:23;;:7;:5;:7::i;:::-;:23;;;40838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41644:1:::1;41624:22;;:8;:22;;;;41616:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41700:28;41719:8;41700:18;:28::i;:::-;41535:201:::0;:::o;42503:31::-;;;;;;;;;;;;;:::o;44333:102::-;40857:12;:10;:12::i;:::-;40846:23;;:7;:5;:7::i;:::-;:23;;;40838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44417:10:::1;44404;:23;;;;44333:102:::0;:::o;13159:157::-;13244:4;13283:25;13268:40;;;:11;:40;;;;13261:47;;13159:157;;;:::o;32424:105::-;32481:4;32511:12;;32501:7;:22;32494:29;;32424:105;;;:::o;23509:98::-;23562:7;23589:10;23582:17;;23509:98;:::o;36027:172::-;36151:2;36124:15;:24;36140:7;36124:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36185:7;36181:2;36165:28;;36174:5;36165:28;;;;;;;;;;;;36027:172;;;:::o;34392:1529::-;34489:35;34527:20;34539:7;34527:11;:20::i;:::-;34489:58;;34556:22;34598:13;:18;;;34582:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;34651:12;:10;:12::i;:::-;34627:36;;:20;34639:7;34627:11;:20::i;:::-;:36;;;34582:81;:142;;;;34674:50;34691:13;:18;;;34711:12;:10;:12::i;:::-;34674:16;:50::i;:::-;34582:142;34556:169;;34750:17;34734:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;34882:4;34860:26;;:13;:18;;;:26;;;34844:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;34971:1;34957:16;;:2;:16;;;;34949:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35024:43;35046:4;35052:2;35056:7;35065:1;35024:21;:43::i;:::-;35124:49;35141:1;35145:7;35154:13;:18;;;35124:8;:49::i;:::-;35212:1;35182:12;:18;35195:4;35182:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35248:1;35220:12;:16;35233:2;35220:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35279:43;;;;;;;;35294:2;35279:43;;;;;;35305:15;35279:43;;;;;35256:11;:20;35268:7;35256:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35550:19;35582:1;35572:7;:11;;;;:::i;:::-;35550:33;;35635:1;35594:43;;:11;:24;35606:11;35594:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35590:236;;;35652:20;35660:11;35652:7;:20::i;:::-;35648:171;;;35712:97;;;;;;;;35739:13;:18;;;35712:97;;;;;;35770:13;:28;;;35712:97;;;;;35685:11;:24;35697:11;35685:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35648:171;35590:236;35858:7;35854:2;35839:27;;35848:4;35839:27;;;;;;;;;;;;35873:42;35894:4;35900:2;35904:7;35913:1;35873:20;:42::i;:::-;34482:1439;;;34392:1529;;;:::o;28237:606::-;28313:21;;:::i;:::-;28354:16;28362:7;28354;:16::i;:::-;28346:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28426:26;28474:12;28463:7;:23;28459:93;;28543:1;28528:12;28518:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;28497:47;;28459:93;28565:12;28580:7;28565:22;;28560:212;28597:18;28589:4;:26;28560:212;;28634:31;28668:11;:17;28680:4;28668:17;;;;;;;;;;;28634:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28724:1;28698:28;;:9;:14;;;:28;;;28694:71;;28746:9;28739:16;;;;;;;28694:71;28625:147;28617:6;;;;;:::i;:::-;;;;28560:212;;;;28780:57;;;;;;;;;;:::i;:::-;;;;;;;;28237:606;;;;:::o;41896:191::-;41970:16;41989:6;;;;;;;;;;;41970:25;;42015:8;42006:6;;:17;;;;;;;;;;;;;;;;;;42070:8;42039:40;;42060:8;42039:40;;;;;;;;;;;;41959:128;41896:191;:::o;32535:98::-;32600:27;32610:2;32614:8;32600:27;;;;;;;;;;;;:9;:27::i;:::-;32535:98;;:::o;37738:690::-;37875:4;37892:15;:2;:13;;;:15::i;:::-;37888:535;;;37947:2;37931:36;;;37968:12;:10;:12::i;:::-;37982:4;37988:7;37997:5;37931:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37918:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38179:1;38162:6;:13;:18;38158:215;;;38195:61;;;;;;;;;;:::i;:::-;;;;;;;;38158:215;38341:6;38335:13;38326:6;38322:2;38318:15;38311:38;37918:464;38063:45;;;38053:55;;;:6;:55;;;;38046:62;;;;;37888:535;38411:4;38404:11;;37738:690;;;;;;;:::o;44443:108::-;44503:13;44536:7;44529:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44443:108;:::o;436:723::-;492:13;722:1;713:5;:10;709:53;;;740:10;;;;;;;;;;;;;;;;;;;;;709:53;772:12;787:5;772:20;;803:14;828:78;843:1;835:4;:9;828:78;;861:8;;;;;:::i;:::-;;;;892:2;884:10;;;;;:::i;:::-;;;828:78;;;916:19;948:6;938:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;916:39;;966:154;982:1;973:5;:10;966:154;;1010:1;1000:11;;;;;:::i;:::-;;;1077:2;1069:5;:10;;;;:::i;:::-;1056:2;:24;;;;:::i;:::-;1043:39;;1026:6;1033;1026:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1106:2;1097:11;;;;;:::i;:::-;;;966:154;;;1144:6;1130:21;;;;;436:723;;;;:::o;38890:141::-;;;;;:::o;39417:140::-;;;;;:::o;32888:1272::-;32993:20;33016:12;;32993:35;;33057:1;33043:16;;:2;:16;;;;33035:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33234:21;33242:12;33234:7;:21::i;:::-;33233:22;33225:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33316:12;33304:8;:24;;33296:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33376:61;33406:1;33410:2;33414:12;33428:8;33376:21;:61::i;:::-;33446:30;33479:12;:16;33492:2;33479:16;;;;;;;;;;;;;;;33446:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33521:119;;;;;;;;33571:8;33541:11;:19;;;:39;;;;:::i;:::-;33521:119;;;;;;33624:8;33589:11;:24;;;:44;;;;:::i;:::-;33521:119;;;;;33502:12;:16;33515:2;33502:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33675:43;;;;;;;;33690:2;33675:43;;;;;;33701:15;33675:43;;;;;33647:11;:25;33659:12;33647:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33727:20;33750:12;33727:35;;33776:9;33771:281;33795:8;33791:1;:12;33771:281;;;33849:12;33845:2;33824:38;;33841:1;33824:38;;;;;;;;;;;;33889:59;33920:1;33924:2;33928:12;33942:5;33889:22;:59::i;:::-;33871:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34030:14;;;;;:::i;:::-;;;;33805:3;;;;;:::i;:::-;;;;33771:281;;;;34075:12;34060;:27;;;;34094:60;34123:1;34127:2;34131:12;34145:8;34094:20;:60::i;:::-;32986:1174;;;32888:1272;;;:::o;3015:387::-;3075:4;3283:12;3350:7;3338:20;3330:28;;3393:1;3386:4;:8;3379:15;;;3015:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:365::-;9030:3;9051:66;9115:1;9110:3;9051:66;:::i;:::-;9044:73;;9126:93;9215:3;9126:93;:::i;:::-;9244:2;9239:3;9235:12;9228:19;;8888:365;;;:::o;9259:366::-;9401:3;9422:67;9486:2;9481:3;9422:67;:::i;:::-;9415:74;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9259:366;;;:::o;9631:::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:::-;10517:3;10538:67;10602:2;10597:3;10538:67;:::i;:::-;10531:74;;10614:93;10703:3;10614:93;:::i;:::-;10732:2;10727:3;10723:12;10716:19;;10375:366;;;:::o;10747:::-;10889:3;10910:67;10974:2;10969:3;10910:67;:::i;:::-;10903:74;;10986:93;11075:3;10986:93;:::i;:::-;11104:2;11099:3;11095:12;11088:19;;10747:366;;;:::o;11119:::-;11261:3;11282:67;11346:2;11341:3;11282:67;:::i;:::-;11275:74;;11358:93;11447:3;11358:93;:::i;:::-;11476:2;11471:3;11467:12;11460:19;;11119:366;;;:::o;11491:::-;11633:3;11654:67;11718:2;11713:3;11654:67;:::i;:::-;11647:74;;11730:93;11819:3;11730:93;:::i;:::-;11848:2;11843:3;11839:12;11832:19;;11491:366;;;:::o;11863:::-;12005:3;12026:67;12090:2;12085:3;12026:67;:::i;:::-;12019:74;;12102:93;12191:3;12102:93;:::i;:::-;12220:2;12215:3;12211:12;12204:19;;11863:366;;;:::o;12235:::-;12377:3;12398:67;12462:2;12457:3;12398:67;:::i;:::-;12391:74;;12474:93;12563:3;12474:93;:::i;:::-;12592:2;12587:3;12583:12;12576:19;;12235:366;;;:::o;12607:::-;12749:3;12770:67;12834:2;12829:3;12770:67;:::i;:::-;12763:74;;12846:93;12935:3;12846:93;:::i;:::-;12964:2;12959:3;12955:12;12948:19;;12607:366;;;:::o;12979:::-;13121:3;13142:67;13206:2;13201:3;13142:67;:::i;:::-;13135:74;;13218:93;13307:3;13218:93;:::i;:::-;13336:2;13331:3;13327:12;13320:19;;12979:366;;;:::o;13351:::-;13493:3;13514:67;13578:2;13573:3;13514:67;:::i;:::-;13507:74;;13590:93;13679:3;13590:93;:::i;:::-;13708:2;13703:3;13699:12;13692:19;;13351:366;;;:::o;13723:::-;13865:3;13886:67;13950:2;13945:3;13886:67;:::i;:::-;13879:74;;13962:93;14051:3;13962:93;:::i;:::-;14080:2;14075:3;14071:12;14064:19;;13723:366;;;:::o;14095:::-;14237:3;14258:67;14322:2;14317:3;14258:67;:::i;:::-;14251:74;;14334:93;14423:3;14334:93;:::i;:::-;14452:2;14447:3;14443:12;14436:19;;14095:366;;;:::o;14467:::-;14609:3;14630:67;14694:2;14689:3;14630:67;:::i;:::-;14623:74;;14706:93;14795:3;14706:93;:::i;:::-;14824:2;14819:3;14815:12;14808:19;;14467:366;;;:::o;14839:::-;14981:3;15002:67;15066:2;15061:3;15002:67;:::i;:::-;14995:74;;15078:93;15167:3;15078:93;:::i;:::-;15196:2;15191:3;15187:12;15180:19;;14839:366;;;:::o;15211:::-;15353:3;15374:67;15438:2;15433:3;15374:67;:::i;:::-;15367:74;;15450:93;15539:3;15450:93;:::i;:::-;15568:2;15563:3;15559:12;15552:19;;15211:366;;;:::o;15583:::-;15725:3;15746:67;15810:2;15805:3;15746:67;:::i;:::-;15739:74;;15822:93;15911:3;15822:93;:::i;:::-;15940:2;15935:3;15931:12;15924:19;;15583:366;;;:::o;15955:::-;16097:3;16118:67;16182:2;16177:3;16118:67;:::i;:::-;16111:74;;16194:93;16283:3;16194:93;:::i;:::-;16312:2;16307:3;16303:12;16296:19;;15955:366;;;:::o;16327:::-;16469:3;16490:67;16554:2;16549:3;16490:67;:::i;:::-;16483:74;;16566:93;16655:3;16566:93;:::i;:::-;16684:2;16679:3;16675:12;16668:19;;16327:366;;;:::o;16699:::-;16841:3;16862:67;16926:2;16921:3;16862:67;:::i;:::-;16855:74;;16938:93;17027:3;16938:93;:::i;:::-;17056:2;17051:3;17047:12;17040:19;;16699:366;;;:::o;17071:::-;17213:3;17234:67;17298:2;17293:3;17234:67;:::i;:::-;17227:74;;17310:93;17399:3;17310:93;:::i;:::-;17428:2;17423:3;17419:12;17412:19;;17071:366;;;:::o;17443:::-;17585:3;17606:67;17670:2;17665:3;17606:67;:::i;:::-;17599:74;;17682:93;17771:3;17682:93;:::i;:::-;17800:2;17795:3;17791:12;17784:19;;17443:366;;;:::o;17815:::-;17957:3;17978:67;18042:2;18037:3;17978:67;:::i;:::-;17971:74;;18054:93;18143:3;18054:93;:::i;:::-;18172:2;18167:3;18163:12;18156:19;;17815:366;;;:::o;18187:118::-;18274:24;18292:5;18274:24;:::i;:::-;18269:3;18262:37;18187:118;;:::o;18311:435::-;18491:3;18513:95;18604:3;18595:6;18513:95;:::i;:::-;18506:102;;18625:95;18716:3;18707:6;18625:95;:::i;:::-;18618:102;;18737:3;18730:10;;18311:435;;;;;:::o;18752:222::-;18845:4;18883:2;18872:9;18868:18;18860:26;;18896:71;18964:1;18953:9;18949:17;18940:6;18896:71;:::i;:::-;18752:222;;;;:::o;18980:640::-;19175:4;19213:3;19202:9;19198:19;19190:27;;19227:71;19295:1;19284:9;19280:17;19271:6;19227:71;:::i;:::-;19308:72;19376:2;19365:9;19361:18;19352:6;19308:72;:::i;:::-;19390;19458:2;19447:9;19443:18;19434:6;19390:72;:::i;:::-;19509:9;19503:4;19499:20;19494:2;19483:9;19479:18;19472:48;19537:76;19608:4;19599:6;19537:76;:::i;:::-;19529:84;;18980:640;;;;;;;:::o;19626:210::-;19713:4;19751:2;19740:9;19736:18;19728:26;;19764:65;19826:1;19815:9;19811:17;19802:6;19764:65;:::i;:::-;19626:210;;;;:::o;19842:313::-;19955:4;19993:2;19982:9;19978:18;19970:26;;20042:9;20036:4;20032:20;20028:1;20017:9;20013:17;20006:47;20070:78;20143:4;20134:6;20070:78;:::i;:::-;20062:86;;19842:313;;;;:::o;20161:419::-;20327:4;20365:2;20354:9;20350:18;20342:26;;20414:9;20408:4;20404:20;20400:1;20389:9;20385:17;20378:47;20442:131;20568:4;20442:131;:::i;:::-;20434:139;;20161:419;;;:::o;20586:::-;20752:4;20790:2;20779:9;20775:18;20767:26;;20839:9;20833:4;20829:20;20825:1;20814:9;20810:17;20803:47;20867:131;20993:4;20867:131;:::i;:::-;20859:139;;20586:419;;;:::o;21011:::-;21177:4;21215:2;21204:9;21200:18;21192:26;;21264:9;21258:4;21254:20;21250:1;21239:9;21235:17;21228:47;21292:131;21418:4;21292:131;:::i;:::-;21284:139;;21011:419;;;:::o;21436:::-;21602:4;21640:2;21629:9;21625:18;21617:26;;21689:9;21683:4;21679:20;21675:1;21664:9;21660:17;21653:47;21717:131;21843:4;21717:131;:::i;:::-;21709:139;;21436:419;;;:::o;21861:::-;22027:4;22065:2;22054:9;22050:18;22042:26;;22114:9;22108:4;22104:20;22100:1;22089:9;22085:17;22078:47;22142:131;22268:4;22142:131;:::i;:::-;22134:139;;21861:419;;;:::o;22286:::-;22452:4;22490:2;22479:9;22475:18;22467:26;;22539:9;22533:4;22529:20;22525:1;22514:9;22510:17;22503:47;22567:131;22693:4;22567:131;:::i;:::-;22559:139;;22286:419;;;:::o;22711:::-;22877:4;22915:2;22904:9;22900:18;22892:26;;22964:9;22958:4;22954:20;22950:1;22939:9;22935:17;22928:47;22992:131;23118:4;22992:131;:::i;:::-;22984:139;;22711:419;;;:::o;23136:::-;23302:4;23340:2;23329:9;23325:18;23317:26;;23389:9;23383:4;23379:20;23375:1;23364:9;23360:17;23353:47;23417:131;23543:4;23417:131;:::i;:::-;23409:139;;23136:419;;;:::o;23561:::-;23727:4;23765:2;23754:9;23750:18;23742:26;;23814:9;23808:4;23804:20;23800:1;23789:9;23785:17;23778:47;23842:131;23968:4;23842:131;:::i;:::-;23834:139;;23561:419;;;:::o;23986:::-;24152:4;24190:2;24179:9;24175:18;24167:26;;24239:9;24233:4;24229:20;24225:1;24214:9;24210:17;24203:47;24267:131;24393:4;24267:131;:::i;:::-;24259:139;;23986:419;;;:::o;24411:::-;24577:4;24615:2;24604:9;24600:18;24592:26;;24664:9;24658:4;24654:20;24650:1;24639:9;24635:17;24628:47;24692:131;24818:4;24692:131;:::i;:::-;24684:139;;24411:419;;;:::o;24836:::-;25002:4;25040:2;25029:9;25025:18;25017:26;;25089:9;25083:4;25079:20;25075:1;25064:9;25060:17;25053:47;25117:131;25243:4;25117:131;:::i;:::-;25109:139;;24836:419;;;:::o;25261:::-;25427:4;25465:2;25454:9;25450:18;25442:26;;25514:9;25508:4;25504:20;25500:1;25489:9;25485:17;25478:47;25542:131;25668:4;25542:131;:::i;:::-;25534:139;;25261:419;;;:::o;25686:::-;25852:4;25890:2;25879:9;25875:18;25867:26;;25939:9;25933:4;25929:20;25925:1;25914:9;25910:17;25903:47;25967:131;26093:4;25967:131;:::i;:::-;25959:139;;25686:419;;;:::o;26111:::-;26277:4;26315:2;26304:9;26300:18;26292:26;;26364:9;26358:4;26354:20;26350:1;26339:9;26335:17;26328:47;26392:131;26518:4;26392:131;:::i;:::-;26384:139;;26111:419;;;:::o;26536:::-;26702:4;26740:2;26729:9;26725:18;26717:26;;26789:9;26783:4;26779:20;26775:1;26764:9;26760:17;26753:47;26817:131;26943:4;26817:131;:::i;:::-;26809:139;;26536:419;;;:::o;26961:::-;27127:4;27165:2;27154:9;27150:18;27142:26;;27214:9;27208:4;27204:20;27200:1;27189:9;27185:17;27178:47;27242:131;27368:4;27242:131;:::i;:::-;27234:139;;26961:419;;;:::o;27386:::-;27552:4;27590:2;27579:9;27575:18;27567:26;;27639:9;27633:4;27629:20;27625:1;27614:9;27610:17;27603:47;27667:131;27793:4;27667:131;:::i;:::-;27659:139;;27386:419;;;:::o;27811:::-;27977:4;28015:2;28004:9;28000:18;27992:26;;28064:9;28058:4;28054:20;28050:1;28039:9;28035:17;28028:47;28092:131;28218:4;28092:131;:::i;:::-;28084:139;;27811:419;;;:::o;28236:::-;28402:4;28440:2;28429:9;28425:18;28417:26;;28489:9;28483:4;28479:20;28475:1;28464:9;28460:17;28453:47;28517:131;28643:4;28517:131;:::i;:::-;28509:139;;28236:419;;;:::o;28661:::-;28827:4;28865:2;28854:9;28850:18;28842:26;;28914:9;28908:4;28904:20;28900:1;28889:9;28885:17;28878:47;28942:131;29068:4;28942:131;:::i;:::-;28934:139;;28661:419;;;:::o;29086:::-;29252:4;29290:2;29279:9;29275:18;29267:26;;29339:9;29333:4;29329:20;29325:1;29314:9;29310:17;29303:47;29367:131;29493:4;29367:131;:::i;:::-;29359:139;;29086:419;;;:::o;29511:::-;29677:4;29715:2;29704:9;29700:18;29692:26;;29764:9;29758:4;29754:20;29750:1;29739:9;29735:17;29728:47;29792:131;29918:4;29792:131;:::i;:::-;29784:139;;29511:419;;;:::o;29936:::-;30102:4;30140:2;30129:9;30125:18;30117:26;;30189:9;30183:4;30179:20;30175:1;30164:9;30160:17;30153:47;30217:131;30343:4;30217:131;:::i;:::-;30209:139;;29936:419;;;:::o;30361:::-;30527:4;30565:2;30554:9;30550:18;30542:26;;30614:9;30608:4;30604:20;30600:1;30589:9;30585:17;30578:47;30642:131;30768:4;30642:131;:::i;:::-;30634:139;;30361:419;;;:::o;30786:::-;30952:4;30990:2;30979:9;30975:18;30967:26;;31039:9;31033:4;31029:20;31025:1;31014:9;31010:17;31003:47;31067:131;31193:4;31067:131;:::i;:::-;31059:139;;30786:419;;;:::o;31211:222::-;31304:4;31342:2;31331:9;31327:18;31319:26;;31355:71;31423:1;31412:9;31408:17;31399:6;31355:71;:::i;:::-;31211:222;;;;:::o;31439:129::-;31473:6;31500:20;;:::i;:::-;31490:30;;31529:33;31557:4;31549:6;31529:33;:::i;:::-;31439:129;;;:::o;31574:75::-;31607:6;31640:2;31634:9;31624:19;;31574:75;:::o;31655:307::-;31716:4;31806:18;31798:6;31795:30;31792:56;;;31828:18;;:::i;:::-;31792:56;31866:29;31888:6;31866:29;:::i;:::-;31858:37;;31950:4;31944;31940:15;31932:23;;31655:307;;;:::o;31968:308::-;32030:4;32120:18;32112:6;32109:30;32106:56;;;32142:18;;:::i;:::-;32106:56;32180:29;32202:6;32180:29;:::i;:::-;32172:37;;32264:4;32258;32254:15;32246:23;;31968:308;;;:::o;32282:98::-;32333:6;32367:5;32361:12;32351:22;;32282:98;;;:::o;32386:99::-;32438:6;32472:5;32466:12;32456:22;;32386:99;;;:::o;32491:168::-;32574:11;32608:6;32603:3;32596:19;32648:4;32643:3;32639:14;32624:29;;32491:168;;;;:::o;32665:169::-;32749:11;32783:6;32778:3;32771:19;32823:4;32818:3;32814:14;32799:29;;32665:169;;;;:::o;32840:148::-;32942:11;32979:3;32964:18;;32840:148;;;;:::o;32994:273::-;33034:3;33053:20;33071:1;33053:20;:::i;:::-;33048:25;;33087:20;33105:1;33087:20;:::i;:::-;33082:25;;33209:1;33173:34;33169:42;33166:1;33163:49;33160:75;;;33215:18;;:::i;:::-;33160:75;33259:1;33256;33252:9;33245:16;;32994:273;;;;:::o;33273:305::-;33313:3;33332:20;33350:1;33332:20;:::i;:::-;33327:25;;33366:20;33384:1;33366:20;:::i;:::-;33361:25;;33520:1;33452:66;33448:74;33445:1;33442:81;33439:107;;;33526:18;;:::i;:::-;33439:107;33570:1;33567;33563:9;33556:16;;33273:305;;;;:::o;33584:185::-;33624:1;33641:20;33659:1;33641:20;:::i;:::-;33636:25;;33675:20;33693:1;33675:20;:::i;:::-;33670:25;;33714:1;33704:35;;33719:18;;:::i;:::-;33704:35;33761:1;33758;33754:9;33749:14;;33584:185;;;;:::o;33775:348::-;33815:7;33838:20;33856:1;33838:20;:::i;:::-;33833:25;;33872:20;33890:1;33872:20;:::i;:::-;33867:25;;34060:1;33992:66;33988:74;33985:1;33982:81;33977:1;33970:9;33963:17;33959:105;33956:131;;;34067:18;;:::i;:::-;33956:131;34115:1;34112;34108:9;34097:20;;33775:348;;;;:::o;34129:191::-;34169:4;34189:20;34207:1;34189:20;:::i;:::-;34184:25;;34223:20;34241:1;34223:20;:::i;:::-;34218:25;;34262:1;34259;34256:8;34253:34;;;34267:18;;:::i;:::-;34253:34;34312:1;34309;34305:9;34297:17;;34129:191;;;;:::o;34326:::-;34366:4;34386:20;34404:1;34386:20;:::i;:::-;34381:25;;34420:20;34438:1;34420:20;:::i;:::-;34415:25;;34459:1;34456;34453:8;34450:34;;;34464:18;;:::i;:::-;34450:34;34509:1;34506;34502:9;34494:17;;34326:191;;;;:::o;34523:96::-;34560:7;34589:24;34607:5;34589:24;:::i;:::-;34578:35;;34523:96;;;:::o;34625:90::-;34659:7;34702:5;34695:13;34688:21;34677:32;;34625:90;;;:::o;34721:149::-;34757:7;34797:66;34790:5;34786:78;34775:89;;34721:149;;;:::o;34876:118::-;34913:7;34953:34;34946:5;34942:46;34931:57;;34876:118;;;:::o;35000:126::-;35037:7;35077:42;35070:5;35066:54;35055:65;;35000:126;;;:::o;35132:77::-;35169:7;35198:5;35187:16;;35132:77;;;:::o;35215:154::-;35299:6;35294:3;35289;35276:30;35361:1;35352:6;35347:3;35343:16;35336:27;35215:154;;;:::o;35375:307::-;35443:1;35453:113;35467:6;35464:1;35461:13;35453:113;;;35552:1;35547:3;35543:11;35537:18;35533:1;35528:3;35524:11;35517:39;35489:2;35486:1;35482:10;35477:15;;35453:113;;;35584:6;35581:1;35578:13;35575:101;;;35664:1;35655:6;35650:3;35646:16;35639:27;35575:101;35424:258;35375:307;;;:::o;35688:171::-;35727:3;35750:24;35768:5;35750:24;:::i;:::-;35741:33;;35796:4;35789:5;35786:15;35783:41;;;35804:18;;:::i;:::-;35783:41;35851:1;35844:5;35840:13;35833:20;;35688:171;;;:::o;35865:320::-;35909:6;35946:1;35940:4;35936:12;35926:22;;35993:1;35987:4;35983:12;36014:18;36004:81;;36070:4;36062:6;36058:17;36048:27;;36004:81;36132:2;36124:6;36121:14;36101:18;36098:38;36095:84;;;36151:18;;:::i;:::-;36095:84;35916:269;35865:320;;;:::o;36191:281::-;36274:27;36296:4;36274:27;:::i;:::-;36266:6;36262:40;36404:6;36392:10;36389:22;36368:18;36356:10;36353:34;36350:62;36347:88;;;36415:18;;:::i;:::-;36347:88;36455:10;36451:2;36444:22;36234:238;36191:281;;:::o;36478:233::-;36517:3;36540:24;36558:5;36540:24;:::i;:::-;36531:33;;36586:66;36579:5;36576:77;36573:103;;;36656:18;;:::i;:::-;36573:103;36703:1;36696:5;36692:13;36685:20;;36478:233;;;:::o;36717:176::-;36749:1;36766:20;36784:1;36766:20;:::i;:::-;36761:25;;36800:20;36818:1;36800:20;:::i;:::-;36795:25;;36839:1;36829:35;;36844:18;;:::i;:::-;36829:35;36885:1;36882;36878:9;36873:14;;36717:176;;;;:::o;36899:180::-;36947:77;36944:1;36937:88;37044:4;37041:1;37034:15;37068:4;37065:1;37058:15;37085:180;37133:77;37130:1;37123:88;37230:4;37227:1;37220:15;37254:4;37251:1;37244:15;37271:180;37319:77;37316:1;37309:88;37416:4;37413:1;37406:15;37440:4;37437:1;37430:15;37457:180;37505:77;37502:1;37495:88;37602:4;37599:1;37592:15;37626:4;37623:1;37616:15;37643:180;37691:77;37688:1;37681:88;37788:4;37785:1;37778:15;37812:4;37809:1;37802:15;37829:117;37938:1;37935;37928:12;37952:117;38061:1;38058;38051:12;38075:117;38184:1;38181;38174:12;38198:117;38307:1;38304;38297:12;38321:102;38362:6;38413:2;38409:7;38404:2;38397:5;38393:14;38389:28;38379:38;;38321:102;;;:::o;38429:221::-;38569:34;38565:1;38557:6;38553:14;38546:58;38638:4;38633:2;38625:6;38621:15;38614:29;38429:221;:::o;38656:158::-;38796:10;38792:1;38784:6;38780:14;38773:34;38656:158;:::o;38820:225::-;38960:34;38956:1;38948:6;38944:14;38937:58;39029:8;39024:2;39016:6;39012:15;39005:33;38820:225;:::o;39051:229::-;39191:34;39187:1;39179:6;39175:14;39168:58;39260:12;39255:2;39247:6;39243:15;39236:37;39051:229;:::o;39286:222::-;39426:34;39422:1;39414:6;39410:14;39403:58;39495:5;39490:2;39482:6;39478:15;39471:30;39286:222;:::o;39514:224::-;39654:34;39650:1;39642:6;39638:14;39631:58;39723:7;39718:2;39710:6;39706:15;39699:32;39514:224;:::o;39744:178::-;39884:30;39880:1;39872:6;39868:14;39861:54;39744:178;:::o;39928:221::-;40068:34;40064:1;40056:6;40052:14;40045:58;40137:4;40132:2;40124:6;40120:15;40113:29;39928:221;:::o;40155:166::-;40295:18;40291:1;40283:6;40279:14;40272:42;40155:166;:::o;40327:244::-;40467:34;40463:1;40455:6;40451:14;40444:58;40536:27;40531:2;40523:6;40519:15;40512:52;40327:244;:::o;40577:182::-;40717:34;40713:1;40705:6;40701:14;40694:58;40577:182;:::o;40765:230::-;40905:34;40901:1;40893:6;40889:14;40882:58;40974:13;40969:2;40961:6;40957:15;40950:38;40765:230;:::o;41001:225::-;41141:34;41137:1;41129:6;41125:14;41118:58;41210:8;41205:2;41197:6;41193:15;41186:33;41001:225;:::o;41232:182::-;41372:34;41368:1;41360:6;41356:14;41349:58;41232:182;:::o;41420:234::-;41560:34;41556:1;41548:6;41544:14;41537:58;41629:17;41624:2;41616:6;41612:15;41605:42;41420:234;:::o;41660:176::-;41800:28;41796:1;41788:6;41784:14;41777:52;41660:176;:::o;41842:237::-;41982:34;41978:1;41970:6;41966:14;41959:58;42051:20;42046:2;42038:6;42034:15;42027:45;41842:237;:::o;42085:220::-;42225:34;42221:1;42213:6;42209:14;42202:58;42294:3;42289:2;42281:6;42277:15;42270:28;42085:220;:::o;42311:221::-;42451:34;42447:1;42439:6;42435:14;42428:58;42520:4;42515:2;42507:6;42503:15;42496:29;42311:221;:::o;42538:238::-;42678:34;42674:1;42666:6;42662:14;42655:58;42747:21;42742:2;42734:6;42730:15;42723:46;42538:238;:::o;42782:179::-;42922:31;42918:1;42910:6;42906:14;42899:55;42782:179;:::o;42967:220::-;43107:34;43103:1;43095:6;43091:14;43084:58;43176:3;43171:2;43163:6;43159:15;43152:28;42967:220;:::o;43193:233::-;43333:34;43329:1;43321:6;43317:14;43310:58;43402:16;43397:2;43389:6;43385:15;43378:41;43193:233;:::o;43432:234::-;43572:34;43568:1;43560:6;43556:14;43549:58;43641:17;43636:2;43628:6;43624:15;43617:42;43432:234;:::o;43672:232::-;43812:34;43808:1;43800:6;43796:14;43789:58;43881:15;43876:2;43868:6;43864:15;43857:40;43672:232;:::o;43910:221::-;44050:34;44046:1;44038:6;44034:14;44027:58;44119:4;44114:2;44106:6;44102:15;44095:29;43910:221;:::o;44137:122::-;44210:24;44228:5;44210:24;:::i;:::-;44203:5;44200:35;44190:63;;44249:1;44246;44239:12;44190:63;44137:122;:::o;44265:116::-;44335:21;44350:5;44335:21;:::i;:::-;44328:5;44325:32;44315:60;;44371:1;44368;44361:12;44315:60;44265:116;:::o;44387:120::-;44459:23;44476:5;44459:23;:::i;:::-;44452:5;44449:34;44439:62;;44497:1;44494;44487:12;44439:62;44387:120;:::o;44513:122::-;44586:24;44604:5;44586:24;:::i;:::-;44579:5;44576:35;44566:63;;44625:1;44622;44615:12;44566:63;44513:122;:::o
Swarm Source
ipfs://3ca54ca87abb7ec42924624b7d253010c313858f2246b6ddcc5ddfb550e7213a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.