Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
6,020 FREEPXL
Holders
2,006
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 FREEPXLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FreethePixel
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-28 */ // SPDX-License-Identifier: MIT // File: contracts/FreethePixel.sol // File: contracts/ETHvillages.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); } // 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; } // 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); } // 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); } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // OpenZeppelin Contracts 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); } } } } // 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; } } // 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); } } // 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); } 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..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * 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. * `collectionSize_` refers to how many tokens are in the collection. */ 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(collectionSize). 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(), ".json")) : ""; } /** * @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: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `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 > collectionSize - 1) { endIndex = collectionSize - 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 {} } // 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(), "You are not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; contract FreethePixel is ERC721A, Ownable { uint256 public NFT_PRICE = 0 ether; uint256 public MAX_SUPPLY = 6020; uint256 public MAX_MINTS = 2; string public baseURI = "ipfs:///"; string public baseExtension = ".json"; bool public paused = false; constructor() ERC721A("Free.the.Pixel", "FREEPXL", MAX_MINTS, MAX_SUPPLY) { } function Mint(uint256 numTokens) public payable { require(!paused, "Paused"); require(numTokens > 0 && numTokens <= MAX_MINTS); require(totalSupply() + numTokens <= MAX_SUPPLY); require(MAX_MINTS >= numTokens, "Excess max per paid tx"); require(msg.value >= numTokens * NFT_PRICE, "Invalid funds provided"); _safeMint(msg.sender, numTokens); } function DevsMint(uint256 numTokens) public payable onlyOwner { _safeMint(msg.sender, numTokens); } function pause(bool _state) public onlyOwner { paused = _state; } function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "That token doesn't exist"); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), baseExtension ) ) : ""; } function setPrice(uint256 newPrice) public onlyOwner { NFT_PRICE = newPrice; } function setMaxMints(uint256 newMax) public onlyOwner { MAX_MINTS = newMax; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdrawMoney() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "WITHDRAW FAILED!"); } }
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":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"DevsMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MAX_MINTS","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":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"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":"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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526000805560006007556000600955611784600a556002600b556040518060400160405280600881526020017f697066733a2f2f2f000000000000000000000000000000000000000000000000815250600c90805190602001906200006a9291906200031a565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000b89291906200031a565b506000600e60006101000a81548160ff021916908315150217905550348015620000e157600080fd5b506040518060400160405280600e81526020017f467265652e7468652e506978656c0000000000000000000000000000000000008152506040518060400160405280600781526020017f4652454550584c00000000000000000000000000000000000000000000000000815250600b54600a54600081116200019a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001919062000451565b60405180910390fd5b60008211620001e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d790620004e9565b60405180910390fd5b8360019080519060200190620001f89291906200031a565b508260029080519060200190620002119291906200031a565b508160a08181525050806080818152505050505050620002466200023a6200024c60201b60201c565b6200025460201b60201c565b6200056f565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000328906200053a565b90600052602060002090601f0160209004810192826200034c576000855562000398565b82601f106200036757805160ff191683800117855562000398565b8280016001018555821562000398579182015b82811115620003975782518255916020019190600101906200037a565b5b509050620003a79190620003ab565b5090565b5b80821115620003c6576000816000905550600101620003ac565b5090565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b600062000439602e83620003ca565b91506200044682620003db565b604082019050919050565b600060208201905081810360008301526200046c816200042a565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6000620004d1602783620003ca565b9150620004de8262000473565b604082019050919050565b600060208201905081810360008301526200050481620004c2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200055357607f821691505b6020821081036200056957620005686200050b565b5b50919050565b60805160a0516145f1620005a0600039600081816121c7015281816121f001526127e30152600050506145f16000f3fe6080604052600436106101ee5760003560e01c8063676dd5631161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106bb578063cce132d1146106f8578063d7224ba014610723578063e985e9c51461074e578063f2fde38b1461078b576101ee565b8063a22cb46514610627578063ac44600214610650578063b88d4fde14610667578063c668286214610690576101ee565b806379c9cb7b116100dc57806379c9cb7b1461057f5780638da5cb5b146105a857806391b7f5ed146105d357806395d89b41146105fc576101ee565b8063676dd563146104d55780636c0360eb1461050057806370a082311461052b578063715018a614610568576101ee565b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461040757806355f804b3146104445780635c975abb1461046d5780636352211e14610498576101ee565b80632f745c591461035a57806332cb6b0c146103975780633fa6a973146103c257806342842e0e146103de576101ee565b8063081812fc116101c1578063081812fc146102a0578063095ea7b3146102dd57806318160ddd1461030657806323b872dd14610331576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde03146102595780630788370314610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612d69565b6107b4565b6040516102279190612db1565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612df8565b6108fe565b005b34801561026557600080fd5b5061026e610997565b60405161027b9190612ebe565b60405180910390f35b61029e60048036038101906102999190612f16565b610a29565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612f16565b610b57565b6040516102d49190612f84565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190612fcb565b610bdc565b005b34801561031257600080fd5b5061031b610cf4565b604051610328919061301a565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190613035565b610cfd565b005b34801561036657600080fd5b50610381600480360381019061037c9190612fcb565b610d0d565b60405161038e919061301a565b60405180910390f35b3480156103a357600080fd5b506103ac610f09565b6040516103b9919061301a565b60405180910390f35b6103dc60048036038101906103d79190612f16565b610f0f565b005b3480156103ea57600080fd5b5061040560048036038101906104009190613035565b610f98565b005b34801561041357600080fd5b5061042e60048036038101906104299190612f16565b610fb8565b60405161043b919061301a565b60405180910390f35b34801561045057600080fd5b5061046b600480360381019061046691906131bd565b61100b565b005b34801561047957600080fd5b506104826110a1565b60405161048f9190612db1565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190612f16565b6110b4565b6040516104cc9190612f84565b60405180910390f35b3480156104e157600080fd5b506104ea6110ca565b6040516104f7919061301a565b60405180910390f35b34801561050c57600080fd5b506105156110d0565b6040516105229190612ebe565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d9190613206565b61115e565b60405161055f919061301a565b60405180910390f35b34801561057457600080fd5b5061057d611246565b005b34801561058b57600080fd5b506105a660048036038101906105a19190612f16565b6112ce565b005b3480156105b457600080fd5b506105bd611354565b6040516105ca9190612f84565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190612f16565b61137e565b005b34801561060857600080fd5b50610611611404565b60405161061e9190612ebe565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190613233565b611496565b005b34801561065c57600080fd5b50610665611616565b005b34801561067357600080fd5b5061068e60048036038101906106899190613314565b611741565b005b34801561069c57600080fd5b506106a561179d565b6040516106b29190612ebe565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190612f16565b61182b565b6040516106ef9190612ebe565b60405180910390f35b34801561070457600080fd5b5061070d6118d6565b60405161071a919061301a565b60405180910390f35b34801561072f57600080fd5b506107386118dc565b604051610745919061301a565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613397565b6118e2565b6040516107829190612db1565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad9190613206565b611976565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f757506108f682611a6d565b5b9050919050565b610906611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610924611354565b73ffffffffffffffffffffffffffffffffffffffff161461097a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097190613423565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600180546109a690613472565b80601f01602080910402602001604051908101604052809291908181526020018280546109d290613472565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1615610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a70906134ef565b60405180910390fd5b600081118015610a8b5750600b548111155b610a9457600080fd5b600a5481610aa0610cf4565b610aaa919061353e565b1115610ab557600080fd5b80600b541015610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af1906135e0565b60405180910390fd5b60095481610b089190613600565b341015610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b41906136a6565b60405180910390fd5b610b543382611adf565b50565b6000610b6282611afd565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890613738565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be7826110b4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e906137ca565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c76611ad7565b73ffffffffffffffffffffffffffffffffffffffff161480610ca55750610ca481610c9f611ad7565b6118e2565b5b610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb9061385c565b60405180910390fd5b610cef838383611b0a565b505050565b60008054905090565b610d08838383611bbc565b505050565b6000610d188361115e565b8210610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d50906138ee565b60405180910390fd5b6000610d63610cf4565b905060008060005b83811015610ec7576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e5d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eb357868403610ea4578195505050505050610f03565b8380610eaf9061390e565b9450505b508080610ebf9061390e565b915050610d6b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa906139c8565b60405180910390fd5b92915050565b600a5481565b610f17611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610f35611354565b73ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290613423565b60405180910390fd5b610f953382611adf565b50565b610fb383838360405180602001604052806000815250611741565b505050565b6000610fc2610cf4565b8210611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613a5a565b60405180910390fd5b819050919050565b611013611ad7565b73ffffffffffffffffffffffffffffffffffffffff16611031611354565b73ffffffffffffffffffffffffffffffffffffffff1614611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90613423565b60405180910390fd5b80600c908051906020019061109d929190612c20565b5050565b600e60009054906101000a900460ff1681565b60006110bf82612173565b600001519050919050565b60095481565b600c80546110dd90613472565b80601f016020809104026020016040519081016040528092919081815260200182805461110990613472565b80156111565780601f1061112b57610100808354040283529160200191611156565b820191906000526020600020905b81548152906001019060200180831161113957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590613aec565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61124e611ad7565b73ffffffffffffffffffffffffffffffffffffffff1661126c611354565b73ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990613423565b60405180910390fd5b6112cc6000612376565b565b6112d6611ad7565b73ffffffffffffffffffffffffffffffffffffffff166112f4611354565b73ffffffffffffffffffffffffffffffffffffffff161461134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190613423565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611386611ad7565b73ffffffffffffffffffffffffffffffffffffffff166113a4611354565b73ffffffffffffffffffffffffffffffffffffffff16146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190613423565b60405180910390fd5b8060098190555050565b60606002805461141390613472565b80601f016020809104026020016040519081016040528092919081815260200182805461143f90613472565b801561148c5780601f106114615761010080835404028352916020019161148c565b820191906000526020600020905b81548152906001019060200180831161146f57829003601f168201915b5050505050905090565b61149e611ad7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290613b58565b60405180910390fd5b8060066000611518611ad7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115c5611ad7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161160a9190612db1565b60405180910390a35050565b61161e611ad7565b73ffffffffffffffffffffffffffffffffffffffff1661163c611354565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613423565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516116b890613ba9565b60006040518083038185875af1925050503d80600081146116f5576040519150601f19603f3d011682016040523d82523d6000602084013e6116fa565b606091505b505090508061173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590613c0a565b60405180910390fd5b50565b61174c848484611bbc565b6117588484848461243c565b611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e90613c9c565b60405180910390fd5b50505050565b600d80546117aa90613472565b80601f01602080910402602001604051908101604052809291908181526020018280546117d690613472565b80156118235780601f106117f857610100808354040283529160200191611823565b820191906000526020600020905b81548152906001019060200180831161180657829003601f168201915b505050505081565b606061183682611afd565b611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90613d08565b60405180910390fd5b6000600c805461188490613472565b9050116118a057604051806020016040528060008152506118cf565b600c6118ab836125c3565b600d6040516020016118bf93929190613df8565b6040516020818303038152906040525b9050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61197e611ad7565b73ffffffffffffffffffffffffffffffffffffffff1661199c611354565b73ffffffffffffffffffffffffffffffffffffffff16146119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990613423565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890613e9b565b60405180910390fd5b611a6a81612376565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b611af9828260405180602001604052806000815250612723565b5050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611bc782612173565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611bee611ad7565b73ffffffffffffffffffffffffffffffffffffffff161480611c4a5750611c13611ad7565b73ffffffffffffffffffffffffffffffffffffffff16611c3284610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c665750611c658260000151611c60611ad7565b6118e2565b5b905080611ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9f90613f2d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1190613fbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8090614051565b60405180910390fd5b611d968585856001612c01565b611da66000848460000151611b0a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e14919061408d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611eb891906140c1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611fbe919061353e565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036121035761203381611afd565b15612102576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461216b8686866001612c07565b505050505050565b61217b612ca6565b61218482611afd565b6121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba90614179565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106122275760017f00000000000000000000000000000000000000000000000000000000000000008461221a9190614199565b612224919061353e565b90505b60008390505b818110612335576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232157809350505050612371565b50808061232d906141cd565b91505061222d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236890614268565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061245d8473ffffffffffffffffffffffffffffffffffffffff16612c0d565b156125b6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612486611ad7565b8786866040518563ffffffff1660e01b81526004016124a894939291906142dd565b6020604051808303816000875af19250505080156124e457506040513d601f19601f820116820180604052508101906124e1919061433e565b60015b612566573d8060008114612514576040519150601f19603f3d011682016040523d82523d6000602084013e612519565b606091505b50600081510361255e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255590613c9c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125bb565b600190505b949350505050565b60606000820361260a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061271e565b600082905060005b6000821461263c5780806126259061390e565b915050600a82612635919061439a565b9150612612565b60008167ffffffffffffffff81111561265857612657613092565b5b6040519080825280601f01601f19166020018201604052801561268a5781602001600182028036833780820191505090505b5090505b60008514612717576001826126a39190614199565b9150600a856126b291906143cb565b60306126be919061353e565b60f81b8183815181106126d4576126d36143fc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612710919061439a565b945061268e565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278f9061449d565b60405180910390fd5b6127a181611afd565b156127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d890614509565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283b9061459b565b60405180910390fd5b6128516000858386612c01565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161294e91906140c1565b6fffffffffffffffffffffffffffffffff16815260200185836020015161297591906140c1565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612be457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b84600088848861243c565b612bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bba90613c9c565b60405180910390fd5b8180612bce9061390e565b9250508080612bdc9061390e565b915050612b13565b5080600081905550612bf96000878588612c07565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b828054612c2c90613472565b90600052602060002090601f016020900481019282612c4e5760008555612c95565b82601f10612c6757805160ff1916838001178555612c95565b82800160010185558215612c95579182015b82811115612c94578251825591602001919060010190612c79565b5b509050612ca29190612ce0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612cf9576000816000905550600101612ce1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d4681612d11565b8114612d5157600080fd5b50565b600081359050612d6381612d3d565b92915050565b600060208284031215612d7f57612d7e612d07565b5b6000612d8d84828501612d54565b91505092915050565b60008115159050919050565b612dab81612d96565b82525050565b6000602082019050612dc66000830184612da2565b92915050565b612dd581612d96565b8114612de057600080fd5b50565b600081359050612df281612dcc565b92915050565b600060208284031215612e0e57612e0d612d07565b5b6000612e1c84828501612de3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e5f578082015181840152602081019050612e44565b83811115612e6e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e9082612e25565b612e9a8185612e30565b9350612eaa818560208601612e41565b612eb381612e74565b840191505092915050565b60006020820190508181036000830152612ed88184612e85565b905092915050565b6000819050919050565b612ef381612ee0565b8114612efe57600080fd5b50565b600081359050612f1081612eea565b92915050565b600060208284031215612f2c57612f2b612d07565b5b6000612f3a84828501612f01565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f6e82612f43565b9050919050565b612f7e81612f63565b82525050565b6000602082019050612f996000830184612f75565b92915050565b612fa881612f63565b8114612fb357600080fd5b50565b600081359050612fc581612f9f565b92915050565b60008060408385031215612fe257612fe1612d07565b5b6000612ff085828601612fb6565b925050602061300185828601612f01565b9150509250929050565b61301481612ee0565b82525050565b600060208201905061302f600083018461300b565b92915050565b60008060006060848603121561304e5761304d612d07565b5b600061305c86828701612fb6565b935050602061306d86828701612fb6565b925050604061307e86828701612f01565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130ca82612e74565b810181811067ffffffffffffffff821117156130e9576130e8613092565b5b80604052505050565b60006130fc612cfd565b905061310882826130c1565b919050565b600067ffffffffffffffff82111561312857613127613092565b5b61313182612e74565b9050602081019050919050565b82818337600083830152505050565b600061316061315b8461310d565b6130f2565b90508281526020810184848401111561317c5761317b61308d565b5b61318784828561313e565b509392505050565b600082601f8301126131a4576131a3613088565b5b81356131b484826020860161314d565b91505092915050565b6000602082840312156131d3576131d2612d07565b5b600082013567ffffffffffffffff8111156131f1576131f0612d0c565b5b6131fd8482850161318f565b91505092915050565b60006020828403121561321c5761321b612d07565b5b600061322a84828501612fb6565b91505092915050565b6000806040838503121561324a57613249612d07565b5b600061325885828601612fb6565b925050602061326985828601612de3565b9150509250929050565b600067ffffffffffffffff82111561328e5761328d613092565b5b61329782612e74565b9050602081019050919050565b60006132b76132b284613273565b6130f2565b9050828152602081018484840111156132d3576132d261308d565b5b6132de84828561313e565b509392505050565b600082601f8301126132fb576132fa613088565b5b813561330b8482602086016132a4565b91505092915050565b6000806000806080858703121561332e5761332d612d07565b5b600061333c87828801612fb6565b945050602061334d87828801612fb6565b935050604061335e87828801612f01565b925050606085013567ffffffffffffffff81111561337f5761337e612d0c565b5b61338b878288016132e6565b91505092959194509250565b600080604083850312156133ae576133ad612d07565b5b60006133bc85828601612fb6565b92505060206133cd85828601612fb6565b9150509250929050565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b600061340d601583612e30565b9150613418826133d7565b602082019050919050565b6000602082019050818103600083015261343c81613400565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061348a57607f821691505b60208210810361349d5761349c613443565b5b50919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006134d9600683612e30565b91506134e4826134a3565b602082019050919050565b60006020820190508181036000830152613508816134cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061354982612ee0565b915061355483612ee0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135895761358861350f565b5b828201905092915050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b60006135ca601683612e30565b91506135d582613594565b602082019050919050565b600060208201905081810360008301526135f9816135bd565b9050919050565b600061360b82612ee0565b915061361683612ee0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561364f5761364e61350f565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613690601683612e30565b915061369b8261365a565b602082019050919050565b600060208201905081810360008301526136bf81613683565b9050919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613722602d83612e30565b915061372d826136c6565b604082019050919050565b6000602082019050818103600083015261375181613715565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006137b4602283612e30565b91506137bf82613758565b604082019050919050565b600060208201905081810360008301526137e3816137a7565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613846603983612e30565b9150613851826137ea565b604082019050919050565b6000602082019050818103600083015261387581613839565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006138d8602283612e30565b91506138e38261387c565b604082019050919050565b60006020820190508181036000830152613907816138cb565b9050919050565b600061391982612ee0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361394b5761394a61350f565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006139b2602e83612e30565b91506139bd82613956565b604082019050919050565b600060208201905081810360008301526139e1816139a5565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a44602383612e30565b9150613a4f826139e8565b604082019050919050565b60006020820190508181036000830152613a7381613a37565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613ad6602b83612e30565b9150613ae182613a7a565b604082019050919050565b60006020820190508181036000830152613b0581613ac9565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613b42601a83612e30565b9150613b4d82613b0c565b602082019050919050565b60006020820190508181036000830152613b7181613b35565b9050919050565b600081905092915050565b50565b6000613b93600083613b78565b9150613b9e82613b83565b600082019050919050565b6000613bb482613b86565b9150819050919050565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b6000613bf4601083612e30565b9150613bff82613bbe565b602082019050919050565b60006020820190508181036000830152613c2381613be7565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613c86603383612e30565b9150613c9182613c2a565b604082019050919050565b60006020820190508181036000830152613cb581613c79565b9050919050565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b6000613cf2601883612e30565b9150613cfd82613cbc565b602082019050919050565b60006020820190508181036000830152613d2181613ce5565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613d5581613472565b613d5f8186613d28565b94506001821660008114613d7a5760018114613d8b57613dbe565b60ff19831686528186019350613dbe565b613d9485613d33565b60005b83811015613db657815481890152600182019150602081019050613d97565b838801955050505b50505092915050565b6000613dd282612e25565b613ddc8185613d28565b9350613dec818560208601612e41565b80840191505092915050565b6000613e048286613d48565b9150613e108285613dc7565b9150613e1c8284613d48565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e85602683612e30565b9150613e9082613e29565b604082019050919050565b60006020820190508181036000830152613eb481613e78565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613f17603283612e30565b9150613f2282613ebb565b604082019050919050565b60006020820190508181036000830152613f4681613f0a565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613fa9602683612e30565b9150613fb482613f4d565b604082019050919050565b60006020820190508181036000830152613fd881613f9c565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061403b602583612e30565b915061404682613fdf565b604082019050919050565b6000602082019050818103600083015261406a8161402e565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061409882614071565b91506140a383614071565b9250828210156140b6576140b561350f565b5b828203905092915050565b60006140cc82614071565b91506140d783614071565b9250826fffffffffffffffffffffffffffffffff038211156140fc576140fb61350f565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614163602a83612e30565b915061416e82614107565b604082019050919050565b6000602082019050818103600083015261419281614156565b9050919050565b60006141a482612ee0565b91506141af83612ee0565b9250828210156141c2576141c161350f565b5b828203905092915050565b60006141d882612ee0565b9150600082036141eb576141ea61350f565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614252602f83612e30565b915061425d826141f6565b604082019050919050565b6000602082019050818103600083015261428181614245565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006142af82614288565b6142b98185614293565b93506142c9818560208601612e41565b6142d281612e74565b840191505092915050565b60006080820190506142f26000830187612f75565b6142ff6020830186612f75565b61430c604083018561300b565b818103606083015261431e81846142a4565b905095945050505050565b60008151905061433881612d3d565b92915050565b60006020828403121561435457614353612d07565b5b600061436284828501614329565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143a582612ee0565b91506143b083612ee0565b9250826143c0576143bf61436b565b5b828204905092915050565b60006143d682612ee0565b91506143e183612ee0565b9250826143f1576143f061436b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614487602183612e30565b91506144928261442b565b604082019050919050565b600060208201905081810360008301526144b68161447a565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b60006144f3601d83612e30565b91506144fe826144bd565b602082019050919050565b60006020820190508181036000830152614522816144e6565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614585602283612e30565b915061459082614529565b604082019050919050565b600060208201905081810360008301526145b481614578565b905091905056fea26469706673582212200afc63f3e685f1ab5e6b951d5f1fa94e1097beffd7ba65e026a92486a77f390764736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063676dd5631161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106bb578063cce132d1146106f8578063d7224ba014610723578063e985e9c51461074e578063f2fde38b1461078b576101ee565b8063a22cb46514610627578063ac44600214610650578063b88d4fde14610667578063c668286214610690576101ee565b806379c9cb7b116100dc57806379c9cb7b1461057f5780638da5cb5b146105a857806391b7f5ed146105d357806395d89b41146105fc576101ee565b8063676dd563146104d55780636c0360eb1461050057806370a082311461052b578063715018a614610568576101ee565b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461040757806355f804b3146104445780635c975abb1461046d5780636352211e14610498576101ee565b80632f745c591461035a57806332cb6b0c146103975780633fa6a973146103c257806342842e0e146103de576101ee565b8063081812fc116101c1578063081812fc146102a0578063095ea7b3146102dd57806318160ddd1461030657806323b872dd14610331576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde03146102595780630788370314610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612d69565b6107b4565b6040516102279190612db1565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612df8565b6108fe565b005b34801561026557600080fd5b5061026e610997565b60405161027b9190612ebe565b60405180910390f35b61029e60048036038101906102999190612f16565b610a29565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612f16565b610b57565b6040516102d49190612f84565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190612fcb565b610bdc565b005b34801561031257600080fd5b5061031b610cf4565b604051610328919061301a565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190613035565b610cfd565b005b34801561036657600080fd5b50610381600480360381019061037c9190612fcb565b610d0d565b60405161038e919061301a565b60405180910390f35b3480156103a357600080fd5b506103ac610f09565b6040516103b9919061301a565b60405180910390f35b6103dc60048036038101906103d79190612f16565b610f0f565b005b3480156103ea57600080fd5b5061040560048036038101906104009190613035565b610f98565b005b34801561041357600080fd5b5061042e60048036038101906104299190612f16565b610fb8565b60405161043b919061301a565b60405180910390f35b34801561045057600080fd5b5061046b600480360381019061046691906131bd565b61100b565b005b34801561047957600080fd5b506104826110a1565b60405161048f9190612db1565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190612f16565b6110b4565b6040516104cc9190612f84565b60405180910390f35b3480156104e157600080fd5b506104ea6110ca565b6040516104f7919061301a565b60405180910390f35b34801561050c57600080fd5b506105156110d0565b6040516105229190612ebe565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d9190613206565b61115e565b60405161055f919061301a565b60405180910390f35b34801561057457600080fd5b5061057d611246565b005b34801561058b57600080fd5b506105a660048036038101906105a19190612f16565b6112ce565b005b3480156105b457600080fd5b506105bd611354565b6040516105ca9190612f84565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190612f16565b61137e565b005b34801561060857600080fd5b50610611611404565b60405161061e9190612ebe565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190613233565b611496565b005b34801561065c57600080fd5b50610665611616565b005b34801561067357600080fd5b5061068e60048036038101906106899190613314565b611741565b005b34801561069c57600080fd5b506106a561179d565b6040516106b29190612ebe565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190612f16565b61182b565b6040516106ef9190612ebe565b60405180910390f35b34801561070457600080fd5b5061070d6118d6565b60405161071a919061301a565b60405180910390f35b34801561072f57600080fd5b506107386118dc565b604051610745919061301a565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613397565b6118e2565b6040516107829190612db1565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad9190613206565b611976565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f757506108f682611a6d565b5b9050919050565b610906611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610924611354565b73ffffffffffffffffffffffffffffffffffffffff161461097a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097190613423565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600180546109a690613472565b80601f01602080910402602001604051908101604052809291908181526020018280546109d290613472565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1615610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a70906134ef565b60405180910390fd5b600081118015610a8b5750600b548111155b610a9457600080fd5b600a5481610aa0610cf4565b610aaa919061353e565b1115610ab557600080fd5b80600b541015610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af1906135e0565b60405180910390fd5b60095481610b089190613600565b341015610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b41906136a6565b60405180910390fd5b610b543382611adf565b50565b6000610b6282611afd565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890613738565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be7826110b4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e906137ca565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c76611ad7565b73ffffffffffffffffffffffffffffffffffffffff161480610ca55750610ca481610c9f611ad7565b6118e2565b5b610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb9061385c565b60405180910390fd5b610cef838383611b0a565b505050565b60008054905090565b610d08838383611bbc565b505050565b6000610d188361115e565b8210610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d50906138ee565b60405180910390fd5b6000610d63610cf4565b905060008060005b83811015610ec7576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e5d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eb357868403610ea4578195505050505050610f03565b8380610eaf9061390e565b9450505b508080610ebf9061390e565b915050610d6b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa906139c8565b60405180910390fd5b92915050565b600a5481565b610f17611ad7565b73ffffffffffffffffffffffffffffffffffffffff16610f35611354565b73ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290613423565b60405180910390fd5b610f953382611adf565b50565b610fb383838360405180602001604052806000815250611741565b505050565b6000610fc2610cf4565b8210611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613a5a565b60405180910390fd5b819050919050565b611013611ad7565b73ffffffffffffffffffffffffffffffffffffffff16611031611354565b73ffffffffffffffffffffffffffffffffffffffff1614611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90613423565b60405180910390fd5b80600c908051906020019061109d929190612c20565b5050565b600e60009054906101000a900460ff1681565b60006110bf82612173565b600001519050919050565b60095481565b600c80546110dd90613472565b80601f016020809104026020016040519081016040528092919081815260200182805461110990613472565b80156111565780601f1061112b57610100808354040283529160200191611156565b820191906000526020600020905b81548152906001019060200180831161113957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590613aec565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61124e611ad7565b73ffffffffffffffffffffffffffffffffffffffff1661126c611354565b73ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990613423565b60405180910390fd5b6112cc6000612376565b565b6112d6611ad7565b73ffffffffffffffffffffffffffffffffffffffff166112f4611354565b73ffffffffffffffffffffffffffffffffffffffff161461134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190613423565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611386611ad7565b73ffffffffffffffffffffffffffffffffffffffff166113a4611354565b73ffffffffffffffffffffffffffffffffffffffff16146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190613423565b60405180910390fd5b8060098190555050565b60606002805461141390613472565b80601f016020809104026020016040519081016040528092919081815260200182805461143f90613472565b801561148c5780601f106114615761010080835404028352916020019161148c565b820191906000526020600020905b81548152906001019060200180831161146f57829003601f168201915b5050505050905090565b61149e611ad7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290613b58565b60405180910390fd5b8060066000611518611ad7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115c5611ad7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161160a9190612db1565b60405180910390a35050565b61161e611ad7565b73ffffffffffffffffffffffffffffffffffffffff1661163c611354565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613423565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516116b890613ba9565b60006040518083038185875af1925050503d80600081146116f5576040519150601f19603f3d011682016040523d82523d6000602084013e6116fa565b606091505b505090508061173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590613c0a565b60405180910390fd5b50565b61174c848484611bbc565b6117588484848461243c565b611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e90613c9c565b60405180910390fd5b50505050565b600d80546117aa90613472565b80601f01602080910402602001604051908101604052809291908181526020018280546117d690613472565b80156118235780601f106117f857610100808354040283529160200191611823565b820191906000526020600020905b81548152906001019060200180831161180657829003601f168201915b505050505081565b606061183682611afd565b611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90613d08565b60405180910390fd5b6000600c805461188490613472565b9050116118a057604051806020016040528060008152506118cf565b600c6118ab836125c3565b600d6040516020016118bf93929190613df8565b6040516020818303038152906040525b9050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61197e611ad7565b73ffffffffffffffffffffffffffffffffffffffff1661199c611354565b73ffffffffffffffffffffffffffffffffffffffff16146119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990613423565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890613e9b565b60405180910390fd5b611a6a81612376565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b611af9828260405180602001604052806000815250612723565b5050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611bc782612173565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611bee611ad7565b73ffffffffffffffffffffffffffffffffffffffff161480611c4a5750611c13611ad7565b73ffffffffffffffffffffffffffffffffffffffff16611c3284610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c665750611c658260000151611c60611ad7565b6118e2565b5b905080611ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9f90613f2d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1190613fbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8090614051565b60405180910390fd5b611d968585856001612c01565b611da66000848460000151611b0a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e14919061408d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611eb891906140c1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611fbe919061353e565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036121035761203381611afd565b15612102576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461216b8686866001612c07565b505050505050565b61217b612ca6565b61218482611afd565b6121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba90614179565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000283106122275760017f00000000000000000000000000000000000000000000000000000000000000028461221a9190614199565b612224919061353e565b90505b60008390505b818110612335576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232157809350505050612371565b50808061232d906141cd565b91505061222d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236890614268565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061245d8473ffffffffffffffffffffffffffffffffffffffff16612c0d565b156125b6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612486611ad7565b8786866040518563ffffffff1660e01b81526004016124a894939291906142dd565b6020604051808303816000875af19250505080156124e457506040513d601f19601f820116820180604052508101906124e1919061433e565b60015b612566573d8060008114612514576040519150601f19603f3d011682016040523d82523d6000602084013e612519565b606091505b50600081510361255e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255590613c9c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125bb565b600190505b949350505050565b60606000820361260a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061271e565b600082905060005b6000821461263c5780806126259061390e565b915050600a82612635919061439a565b9150612612565b60008167ffffffffffffffff81111561265857612657613092565b5b6040519080825280601f01601f19166020018201604052801561268a5781602001600182028036833780820191505090505b5090505b60008514612717576001826126a39190614199565b9150600a856126b291906143cb565b60306126be919061353e565b60f81b8183815181106126d4576126d36143fc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612710919061439a565b945061268e565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278f9061449d565b60405180910390fd5b6127a181611afd565b156127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d890614509565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000002831115612844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283b9061459b565b60405180910390fd5b6128516000858386612c01565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161294e91906140c1565b6fffffffffffffffffffffffffffffffff16815260200185836020015161297591906140c1565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612be457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b84600088848861243c565b612bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bba90613c9c565b60405180910390fd5b8180612bce9061390e565b9250508080612bdc9061390e565b915050612b13565b5080600081905550612bf96000878588612c07565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b828054612c2c90613472565b90600052602060002090601f016020900481019282612c4e5760008555612c95565b82601f10612c6757805160ff1916838001178555612c95565b82800160010185558215612c95579182015b82811115612c94578251825591602001919060010190612c79565b5b509050612ca29190612ce0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612cf9576000816000905550600101612ce1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d4681612d11565b8114612d5157600080fd5b50565b600081359050612d6381612d3d565b92915050565b600060208284031215612d7f57612d7e612d07565b5b6000612d8d84828501612d54565b91505092915050565b60008115159050919050565b612dab81612d96565b82525050565b6000602082019050612dc66000830184612da2565b92915050565b612dd581612d96565b8114612de057600080fd5b50565b600081359050612df281612dcc565b92915050565b600060208284031215612e0e57612e0d612d07565b5b6000612e1c84828501612de3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e5f578082015181840152602081019050612e44565b83811115612e6e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e9082612e25565b612e9a8185612e30565b9350612eaa818560208601612e41565b612eb381612e74565b840191505092915050565b60006020820190508181036000830152612ed88184612e85565b905092915050565b6000819050919050565b612ef381612ee0565b8114612efe57600080fd5b50565b600081359050612f1081612eea565b92915050565b600060208284031215612f2c57612f2b612d07565b5b6000612f3a84828501612f01565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f6e82612f43565b9050919050565b612f7e81612f63565b82525050565b6000602082019050612f996000830184612f75565b92915050565b612fa881612f63565b8114612fb357600080fd5b50565b600081359050612fc581612f9f565b92915050565b60008060408385031215612fe257612fe1612d07565b5b6000612ff085828601612fb6565b925050602061300185828601612f01565b9150509250929050565b61301481612ee0565b82525050565b600060208201905061302f600083018461300b565b92915050565b60008060006060848603121561304e5761304d612d07565b5b600061305c86828701612fb6565b935050602061306d86828701612fb6565b925050604061307e86828701612f01565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130ca82612e74565b810181811067ffffffffffffffff821117156130e9576130e8613092565b5b80604052505050565b60006130fc612cfd565b905061310882826130c1565b919050565b600067ffffffffffffffff82111561312857613127613092565b5b61313182612e74565b9050602081019050919050565b82818337600083830152505050565b600061316061315b8461310d565b6130f2565b90508281526020810184848401111561317c5761317b61308d565b5b61318784828561313e565b509392505050565b600082601f8301126131a4576131a3613088565b5b81356131b484826020860161314d565b91505092915050565b6000602082840312156131d3576131d2612d07565b5b600082013567ffffffffffffffff8111156131f1576131f0612d0c565b5b6131fd8482850161318f565b91505092915050565b60006020828403121561321c5761321b612d07565b5b600061322a84828501612fb6565b91505092915050565b6000806040838503121561324a57613249612d07565b5b600061325885828601612fb6565b925050602061326985828601612de3565b9150509250929050565b600067ffffffffffffffff82111561328e5761328d613092565b5b61329782612e74565b9050602081019050919050565b60006132b76132b284613273565b6130f2565b9050828152602081018484840111156132d3576132d261308d565b5b6132de84828561313e565b509392505050565b600082601f8301126132fb576132fa613088565b5b813561330b8482602086016132a4565b91505092915050565b6000806000806080858703121561332e5761332d612d07565b5b600061333c87828801612fb6565b945050602061334d87828801612fb6565b935050604061335e87828801612f01565b925050606085013567ffffffffffffffff81111561337f5761337e612d0c565b5b61338b878288016132e6565b91505092959194509250565b600080604083850312156133ae576133ad612d07565b5b60006133bc85828601612fb6565b92505060206133cd85828601612fb6565b9150509250929050565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b600061340d601583612e30565b9150613418826133d7565b602082019050919050565b6000602082019050818103600083015261343c81613400565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061348a57607f821691505b60208210810361349d5761349c613443565b5b50919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006134d9600683612e30565b91506134e4826134a3565b602082019050919050565b60006020820190508181036000830152613508816134cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061354982612ee0565b915061355483612ee0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135895761358861350f565b5b828201905092915050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b60006135ca601683612e30565b91506135d582613594565b602082019050919050565b600060208201905081810360008301526135f9816135bd565b9050919050565b600061360b82612ee0565b915061361683612ee0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561364f5761364e61350f565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613690601683612e30565b915061369b8261365a565b602082019050919050565b600060208201905081810360008301526136bf81613683565b9050919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613722602d83612e30565b915061372d826136c6565b604082019050919050565b6000602082019050818103600083015261375181613715565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006137b4602283612e30565b91506137bf82613758565b604082019050919050565b600060208201905081810360008301526137e3816137a7565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613846603983612e30565b9150613851826137ea565b604082019050919050565b6000602082019050818103600083015261387581613839565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006138d8602283612e30565b91506138e38261387c565b604082019050919050565b60006020820190508181036000830152613907816138cb565b9050919050565b600061391982612ee0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361394b5761394a61350f565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006139b2602e83612e30565b91506139bd82613956565b604082019050919050565b600060208201905081810360008301526139e1816139a5565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a44602383612e30565b9150613a4f826139e8565b604082019050919050565b60006020820190508181036000830152613a7381613a37565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613ad6602b83612e30565b9150613ae182613a7a565b604082019050919050565b60006020820190508181036000830152613b0581613ac9565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613b42601a83612e30565b9150613b4d82613b0c565b602082019050919050565b60006020820190508181036000830152613b7181613b35565b9050919050565b600081905092915050565b50565b6000613b93600083613b78565b9150613b9e82613b83565b600082019050919050565b6000613bb482613b86565b9150819050919050565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b6000613bf4601083612e30565b9150613bff82613bbe565b602082019050919050565b60006020820190508181036000830152613c2381613be7565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613c86603383612e30565b9150613c9182613c2a565b604082019050919050565b60006020820190508181036000830152613cb581613c79565b9050919050565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b6000613cf2601883612e30565b9150613cfd82613cbc565b602082019050919050565b60006020820190508181036000830152613d2181613ce5565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613d5581613472565b613d5f8186613d28565b94506001821660008114613d7a5760018114613d8b57613dbe565b60ff19831686528186019350613dbe565b613d9485613d33565b60005b83811015613db657815481890152600182019150602081019050613d97565b838801955050505b50505092915050565b6000613dd282612e25565b613ddc8185613d28565b9350613dec818560208601612e41565b80840191505092915050565b6000613e048286613d48565b9150613e108285613dc7565b9150613e1c8284613d48565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e85602683612e30565b9150613e9082613e29565b604082019050919050565b60006020820190508181036000830152613eb481613e78565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613f17603283612e30565b9150613f2282613ebb565b604082019050919050565b60006020820190508181036000830152613f4681613f0a565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613fa9602683612e30565b9150613fb482613f4d565b604082019050919050565b60006020820190508181036000830152613fd881613f9c565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061403b602583612e30565b915061404682613fdf565b604082019050919050565b6000602082019050818103600083015261406a8161402e565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061409882614071565b91506140a383614071565b9250828210156140b6576140b561350f565b5b828203905092915050565b60006140cc82614071565b91506140d783614071565b9250826fffffffffffffffffffffffffffffffff038211156140fc576140fb61350f565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614163602a83612e30565b915061416e82614107565b604082019050919050565b6000602082019050818103600083015261419281614156565b9050919050565b60006141a482612ee0565b91506141af83612ee0565b9250828210156141c2576141c161350f565b5b828203905092915050565b60006141d882612ee0565b9150600082036141eb576141ea61350f565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614252602f83612e30565b915061425d826141f6565b604082019050919050565b6000602082019050818103600083015261428181614245565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006142af82614288565b6142b98185614293565b93506142c9818560208601612e41565b6142d281612e74565b840191505092915050565b60006080820190506142f26000830187612f75565b6142ff6020830186612f75565b61430c604083018561300b565b818103606083015261431e81846142a4565b905095945050505050565b60008151905061433881612d3d565b92915050565b60006020828403121561435457614353612d07565b5b600061436284828501614329565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143a582612ee0565b91506143b083612ee0565b9250826143c0576143bf61436b565b5b828204905092915050565b60006143d682612ee0565b91506143e183612ee0565b9250826143f1576143f061436b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614487602183612e30565b91506144928261442b565b604082019050919050565b600060208201905081810360008301526144b68161447a565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b60006144f3601d83612e30565b91506144fe826144bd565b602082019050919050565b60006020820190508181036000830152614522816144e6565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614585602283612e30565b915061459082614529565b604082019050919050565b600060208201905081810360008301526145b481614578565b905091905056fea26469706673582212200afc63f3e685f1ab5e6b951d5f1fa94e1097beffd7ba65e026a92486a77f390764736f6c634300080d0033
Deployed Bytecode Sourcemap
39689:2122:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24825:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40609:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26551:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40076:402;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28085:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27648:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23386:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28935:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24017:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39779:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40486:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29140:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23549:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40696:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39939:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26374:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39738:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39853;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25251:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38806:103;;;;;;;;;;;;;:::i;:::-;;41419:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38166:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41319:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26706:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28353:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41634:174;;;;;;;;;;;;;:::i;:::-;;29360:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39894:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40804:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39818:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33775:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28690:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39064:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24825:370;24952:4;24997:25;24982:40;;;:11;:40;;;;:99;;;;25048:33;25033:48;;;:11;:48;;;;24982:99;:160;;;;25107:35;25092:50;;;:11;:50;;;;24982:160;:207;;;;25153:36;25177:11;25153:23;:36::i;:::-;24982:207;24968:221;;24825:370;;;:::o;40609:79::-;38397:12;:10;:12::i;:::-;38386:23;;:7;:5;:7::i;:::-;:23;;;38378:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40674:6:::1;40665;;:15;;;;;;;;;;;;;;;;;;40609:79:::0;:::o;26551:94::-;26605:13;26634:5;26627:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26551:94;:::o;40076:402::-;40144:6;;;;;;;;;;;40143:7;40135:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;40192:1;40180:9;:13;:39;;;;;40210:9;;40197;:22;;40180:39;40172:48;;;;;;40268:10;;40255:9;40239:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;40231:48;;;;;;40311:9;40298;;:22;;40290:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40391:9;;40379;:21;;;;:::i;:::-;40366:9;:34;;40358:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;40438:32;40448:10;40460:9;40438;:32::i;:::-;40076:402;:::o;28085:204::-;28153:7;28177:16;28185:7;28177;:16::i;:::-;28169:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28259:15;:24;28275:7;28259:24;;;;;;;;;;;;;;;;;;;;;28252:31;;28085:204;;;:::o;27648:379::-;27717:13;27733:24;27749:7;27733:15;:24::i;:::-;27717:40;;27778:5;27772:11;;:2;:11;;;27764:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27863:5;27847:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27872:37;27889:5;27896:12;:10;:12::i;:::-;27872:16;:37::i;:::-;27847:62;27831:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;27993:28;28002:2;28006:7;28015:5;27993:8;:28::i;:::-;27710:317;27648:379;;:::o;23386:94::-;23439:7;23462:12;;23455:19;;23386:94;:::o;28935:142::-;29043:28;29053:4;29059:2;29063:7;29043:9;:28::i;:::-;28935:142;;;:::o;24017:744::-;24126:7;24161:16;24171:5;24161:9;:16::i;:::-;24153:5;:24;24145:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24223:22;24248:13;:11;:13::i;:::-;24223:38;;24268:19;24298:25;24348:9;24343:350;24367:14;24363:1;:18;24343:350;;;24397:31;24431:11;:14;24443:1;24431:14;;;;;;;;;;;24397:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24484:1;24458:28;;:9;:14;;;:28;;;24454:89;;24519:9;:14;;;24499:34;;24454:89;24576:5;24555:26;;:17;:26;;;24551:135;;24613:5;24598:11;:20;24594:59;;24640:1;24633:8;;;;;;;;;24594:59;24663:13;;;;;:::i;:::-;;;;24551:135;24388:305;24383:3;;;;;:::i;:::-;;;;24343:350;;;;24699:56;;;;;;;;;;:::i;:::-;;;;;;;;24017:744;;;;;:::o;39779:32::-;;;;:::o;40486:113::-;38397:12;:10;:12::i;:::-;38386:23;;:7;:5;:7::i;:::-;:23;;;38378:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40559:32:::1;40569:10;40581:9;40559;:32::i;:::-;40486:113:::0;:::o;29140:157::-;29252:39;29269:4;29275:2;29279:7;29252:39;;;;;;;;;;;;:16;:39::i;:::-;29140:157;;;:::o;23549:177::-;23616:7;23648:13;:11;:13::i;:::-;23640:5;:21;23632:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23715:5;23708:12;;23549:177;;;:::o;40696:102::-;38397:12;:10;:12::i;:::-;38386:23;;:7;:5;:7::i;:::-;:23;;;38378:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40780:10:::1;40770:7;:20;;;;;;;;;;;;:::i;:::-;;40696:102:::0;:::o;39939:26::-;;;;;;;;;;;;;:::o;26374:118::-;26438:7;26461:20;26473:7;26461:11;:20::i;:::-;:25;;;26454:32;;26374:118;;;:::o;39738:34::-;;;;:::o;39853:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25251:211::-;25315:7;25356:1;25339:19;;:5;:19;;;25331:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25428:12;:19;25441:5;25428:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25420:36;;25413:43;;25251:211;;;:::o;38806:103::-;38397:12;:10;:12::i;:::-;38386:23;;:7;:5;:7::i;:::-;:23;;;38378:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38871:30:::1;38898:1;38871:18;:30::i;:::-;38806:103::o:0;41419:91::-;38397:12;:10;:12::i;:::-;38386:23;;:7;:5;:7::i;:::-;:23;;;38378:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41496:6:::1;41484:9;:18;;;;41419:91:::0;:::o;38166:87::-;38212:7;38239:6;;;;;;;;;;;38232:13;;38166:87;:::o;41319:92::-;38397:12;:10;:12::i;:::-;38386:23;;:7;:5;:7::i;:::-;:23;;;38378:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41395:8:::1;41383:9;:20;;;;41319:92:::0;:::o;26706:98::-;26762:13;26791:7;26784:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26706:98;:::o;28353:274::-;28456:12;:10;:12::i;:::-;28444:24;;:8;:24;;;28436:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28553:8;28508:18;:32;28527:12;:10;:12::i;:::-;28508:32;;;;;;;;;;;;;;;:42;28541:8;28508:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28602:8;28573:48;;28588:12;:10;:12::i;:::-;28573:48;;;28612:8;28573:48;;;;;;:::i;:::-;;;;;;;;28353:274;;:::o;41634:174::-;38397:12;:10;:12::i;:::-;38386:23;;:7;:5;:7::i;:::-;:23;;;38378:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41688:12:::1;41706:10;:15;;41729:21;41706:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41687:68;;;41772:7;41764:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;41678:130;41634:174::o:0;29360:311::-;29497:28;29507:4;29513:2;29517:7;29497:9;:28::i;:::-;29548:48;29571:4;29577:2;29581:7;29590:5;29548:22;:48::i;:::-;29532:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;29360:311;;;;:::o;39894:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40804:507::-;40906:13;40945:17;40953:8;40945:7;:17::i;:::-;40937:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;41046:1;41028:7;41022:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;41139:7;41173:26;41190:8;41173:16;:26::i;:::-;41226:13;41096:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41022:281;41002:301;;40804:507;;;:::o;39818:28::-;;;;:::o;33775:43::-;;;;:::o;28690:186::-;28812:4;28835:18;:25;28854:5;28835:25;;;;;;;;;;;;;;;:35;28861:8;28835:35;;;;;;;;;;;;;;;;;;;;;;;;;28828:42;;28690:186;;;;:::o;39064:238::-;38397:12;:10;:12::i;:::-;38386:23;;:7;:5;:7::i;:::-;:23;;;38378:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;39187:1:::1;39167:22;;:8;:22;;::::0;39145:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39266:28;39285:8;39266:18;:28::i;:::-;39064:238:::0;:::o;8397:207::-;8527:4;8571:25;8556:40;;;:11;:40;;;;8549:47;;8397:207;;;:::o;17796:98::-;17849:7;17876:10;17869:17;;17796:98;:::o;30021:::-;30086:27;30096:2;30100:8;30086:27;;;;;;;;;;;;:9;:27::i;:::-;30021:98;;:::o;29910:105::-;29967:4;29997:12;;29987:7;:22;29980:29;;29910:105;;;:::o;33597:172::-;33721:2;33694:15;:24;33710:7;33694:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33755:7;33751:2;33735:28;;33744:5;33735:28;;;;;;;;;;;;33597:172;;;:::o;31962:1529::-;32059:35;32097:20;32109:7;32097:11;:20::i;:::-;32059:58;;32126:22;32168:13;:18;;;32152:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;32221:12;:10;:12::i;:::-;32197:36;;:20;32209:7;32197:11;:20::i;:::-;:36;;;32152:81;:142;;;;32244:50;32261:13;:18;;;32281:12;:10;:12::i;:::-;32244:16;:50::i;:::-;32152:142;32126:169;;32320:17;32304:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;32452:4;32430:26;;:13;:18;;;:26;;;32414:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;32541:1;32527:16;;:2;:16;;;32519:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32594:43;32616:4;32622:2;32626:7;32635:1;32594:21;:43::i;:::-;32694:49;32711:1;32715:7;32724:13;:18;;;32694:8;:49::i;:::-;32782:1;32752:12;:18;32765:4;32752:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32818:1;32790:12;:16;32803:2;32790:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32849:43;;;;;;;;32864:2;32849:43;;;;;;32875:15;32849:43;;;;;32826:11;:20;32838:7;32826:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33120:19;33152:1;33142:7;:11;;;;:::i;:::-;33120:33;;33205:1;33164:43;;:11;:24;33176:11;33164:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;33160:236;;33222:20;33230:11;33222:7;:20::i;:::-;33218:171;;;33282:97;;;;;;;;33309:13;:18;;;33282:97;;;;;;33340:13;:28;;;33282:97;;;;;33255:11;:24;33267:11;33255:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33218:171;33160:236;33428:7;33424:2;33409:27;;33418:4;33409:27;;;;;;;;;;;;33443:42;33464:4;33470:2;33474:7;33483:1;33443:20;:42::i;:::-;32052:1439;;;31962:1529;;;:::o;25714:606::-;25790:21;;:::i;:::-;25831:16;25839:7;25831;:16::i;:::-;25823:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25903:26;25951:12;25940:7;:23;25936:93;;26020:1;26005:12;25995:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;25974:47;;25936:93;26042:12;26057:7;26042:22;;26037:212;26074:18;26066:4;:26;26037:212;;26111:31;26145:11;:17;26157:4;26145:17;;;;;;;;;;;26111:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26201:1;26175:28;;:9;:14;;;:28;;;26171:71;;26223:9;26216:16;;;;;;;26171:71;26102:147;26094:6;;;;;:::i;:::-;;;;26037:212;;;;26257:57;;;;;;;;;;:::i;:::-;;;;;;;;25714:606;;;;:::o;39462:191::-;39536:16;39555:6;;;;;;;;;;;39536:25;;39581:8;39572:6;;:17;;;;;;;;;;;;;;;;;;39636:8;39605:40;;39626:8;39605:40;;;;;;;;;;;;39525:128;39462:191;:::o;35312:690::-;35449:4;35466:15;:2;:13;;;:15::i;:::-;35462:535;;;35521:2;35505:36;;;35542:12;:10;:12::i;:::-;35556:4;35562:7;35571:5;35505:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35492:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35753:1;35736:6;:13;:18;35732:215;;35769:61;;;;;;;;;;:::i;:::-;;;;;;;;35732:215;35915:6;35909:13;35900:6;35896:2;35892:15;35885:38;35492:464;35637:45;;;35627:55;;;:6;:55;;;;35620:62;;;;;35462:535;35985:4;35978:11;;35312:690;;;;;;;:::o;18319:723::-;18375:13;18605:1;18596:5;:10;18592:53;;18623:10;;;;;;;;;;;;;;;;;;;;;18592:53;18655:12;18670:5;18655:20;;18686:14;18711:78;18726:1;18718:4;:9;18711:78;;18744:8;;;;;:::i;:::-;;;;18775:2;18767:10;;;;;:::i;:::-;;;18711:78;;;18799:19;18831:6;18821:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18799:39;;18849:154;18865:1;18856:5;:10;18849:154;;18893:1;18883:11;;;;;:::i;:::-;;;18960:2;18952:5;:10;;;;:::i;:::-;18939:2;:24;;;;:::i;:::-;18926:39;;18909:6;18916;18909:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18989:2;18980:11;;;;;:::i;:::-;;;18849:154;;;19027:6;19013:21;;;;;18319:723;;;;:::o;30458:1272::-;30563:20;30586:12;;30563:35;;30627:1;30613:16;;:2;:16;;;30605:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30804:21;30812:12;30804:7;:21::i;:::-;30803:22;30795:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30886:12;30874:8;:24;;30866:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30946:61;30976:1;30980:2;30984:12;30998:8;30946:21;:61::i;:::-;31016:30;31049:12;:16;31062:2;31049:16;;;;;;;;;;;;;;;31016:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31091:119;;;;;;;;31141:8;31111:11;:19;;;:39;;;;:::i;:::-;31091:119;;;;;;31194:8;31159:11;:24;;;:44;;;;:::i;:::-;31091:119;;;;;31072:12;:16;31085:2;31072:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31245:43;;;;;;;;31260:2;31245:43;;;;;;31271:15;31245:43;;;;;31217:11;:25;31229:12;31217:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31297:20;31320:12;31297:35;;31346:9;31341:281;31365:8;31361:1;:12;31341:281;;;31419:12;31415:2;31394:38;;31411:1;31394:38;;;;;;;;;;;;31459:59;31490:1;31494:2;31498:12;31512:5;31459:22;:59::i;:::-;31441:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31600:14;;;;;:::i;:::-;;;;31375:3;;;;;:::i;:::-;;;;31341:281;;;;31645:12;31630;:27;;;;31664:60;31693:1;31697:2;31701:12;31715:8;31664:20;:60::i;:::-;30556:1174;;;30458:1272;;;:::o;36464:141::-;;;;;:::o;36991:140::-;;;;;:::o;9375:387::-;9435:4;9643:12;9710:7;9698:20;9690:28;;9753:1;9746:4;:8;9739:15;;;9375:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:171::-;12590:23;12586:1;12578:6;12574:14;12567:47;12450:171;:::o;12627:366::-;12769:3;12790:67;12854:2;12849:3;12790:67;:::i;:::-;12783:74;;12866:93;12955:3;12866:93;:::i;:::-;12984:2;12979:3;12975:12;12968:19;;12627:366;;;:::o;12999:419::-;13165:4;13203:2;13192:9;13188:18;13180:26;;13252:9;13246:4;13242:20;13238:1;13227:9;13223:17;13216:47;13280:131;13406:4;13280:131;:::i;:::-;13272:139;;12999:419;;;:::o;13424:180::-;13472:77;13469:1;13462:88;13569:4;13566:1;13559:15;13593:4;13590:1;13583:15;13610:320;13654:6;13691:1;13685:4;13681:12;13671:22;;13738:1;13732:4;13728:12;13759:18;13749:81;;13815:4;13807:6;13803:17;13793:27;;13749:81;13877:2;13869:6;13866:14;13846:18;13843:38;13840:84;;13896:18;;:::i;:::-;13840:84;13661:269;13610:320;;;:::o;13936:156::-;14076:8;14072:1;14064:6;14060:14;14053:32;13936:156;:::o;14098:365::-;14240:3;14261:66;14325:1;14320:3;14261:66;:::i;:::-;14254:73;;14336:93;14425:3;14336:93;:::i;:::-;14454:2;14449:3;14445:12;14438:19;;14098:365;;;:::o;14469:419::-;14635:4;14673:2;14662:9;14658:18;14650:26;;14722:9;14716:4;14712:20;14708:1;14697:9;14693:17;14686:47;14750:131;14876:4;14750:131;:::i;:::-;14742:139;;14469:419;;;:::o;14894:180::-;14942:77;14939:1;14932:88;15039:4;15036:1;15029:15;15063:4;15060:1;15053:15;15080:305;15120:3;15139:20;15157:1;15139:20;:::i;:::-;15134:25;;15173:20;15191:1;15173:20;:::i;:::-;15168:25;;15327:1;15259:66;15255:74;15252:1;15249:81;15246:107;;;15333:18;;:::i;:::-;15246:107;15377:1;15374;15370:9;15363:16;;15080:305;;;;:::o;15391:172::-;15531:24;15527:1;15519:6;15515:14;15508:48;15391:172;:::o;15569:366::-;15711:3;15732:67;15796:2;15791:3;15732:67;:::i;:::-;15725:74;;15808:93;15897:3;15808:93;:::i;:::-;15926:2;15921:3;15917:12;15910:19;;15569:366;;;:::o;15941:419::-;16107:4;16145:2;16134:9;16130:18;16122:26;;16194:9;16188:4;16184:20;16180:1;16169:9;16165:17;16158:47;16222:131;16348:4;16222:131;:::i;:::-;16214:139;;15941:419;;;:::o;16366:348::-;16406:7;16429:20;16447:1;16429:20;:::i;:::-;16424:25;;16463:20;16481:1;16463:20;:::i;:::-;16458:25;;16651:1;16583:66;16579:74;16576:1;16573:81;16568:1;16561:9;16554:17;16550:105;16547:131;;;16658:18;;:::i;:::-;16547:131;16706:1;16703;16699:9;16688:20;;16366:348;;;;:::o;16720:172::-;16860:24;16856:1;16848:6;16844:14;16837:48;16720:172;:::o;16898:366::-;17040:3;17061:67;17125:2;17120:3;17061:67;:::i;:::-;17054:74;;17137:93;17226:3;17137:93;:::i;:::-;17255:2;17250:3;17246:12;17239:19;;16898:366;;;:::o;17270:419::-;17436:4;17474:2;17463:9;17459:18;17451:26;;17523:9;17517:4;17513:20;17509:1;17498:9;17494:17;17487:47;17551:131;17677:4;17551:131;:::i;:::-;17543:139;;17270:419;;;:::o;17695:232::-;17835:34;17831:1;17823:6;17819:14;17812:58;17904:15;17899:2;17891:6;17887:15;17880:40;17695:232;:::o;17933:366::-;18075:3;18096:67;18160:2;18155:3;18096:67;:::i;:::-;18089:74;;18172:93;18261:3;18172:93;:::i;:::-;18290:2;18285:3;18281:12;18274:19;;17933:366;;;:::o;18305:419::-;18471:4;18509:2;18498:9;18494:18;18486:26;;18558:9;18552:4;18548:20;18544:1;18533:9;18529:17;18522:47;18586:131;18712:4;18586:131;:::i;:::-;18578:139;;18305:419;;;:::o;18730:221::-;18870:34;18866:1;18858:6;18854:14;18847:58;18939:4;18934:2;18926:6;18922:15;18915:29;18730:221;:::o;18957:366::-;19099:3;19120:67;19184:2;19179:3;19120:67;:::i;:::-;19113:74;;19196:93;19285:3;19196:93;:::i;:::-;19314:2;19309:3;19305:12;19298:19;;18957:366;;;:::o;19329:419::-;19495:4;19533:2;19522:9;19518:18;19510:26;;19582:9;19576:4;19572:20;19568:1;19557:9;19553:17;19546:47;19610:131;19736:4;19610:131;:::i;:::-;19602:139;;19329:419;;;:::o;19754:244::-;19894:34;19890:1;19882:6;19878:14;19871:58;19963:27;19958:2;19950:6;19946:15;19939:52;19754:244;:::o;20004:366::-;20146:3;20167:67;20231:2;20226:3;20167:67;:::i;:::-;20160:74;;20243:93;20332:3;20243:93;:::i;:::-;20361:2;20356:3;20352:12;20345:19;;20004:366;;;:::o;20376:419::-;20542:4;20580:2;20569:9;20565:18;20557:26;;20629:9;20623:4;20619:20;20615:1;20604:9;20600:17;20593:47;20657:131;20783:4;20657:131;:::i;:::-;20649:139;;20376:419;;;:::o;20801:221::-;20941:34;20937:1;20929:6;20925:14;20918:58;21010:4;21005:2;20997:6;20993:15;20986:29;20801:221;:::o;21028:366::-;21170:3;21191:67;21255:2;21250:3;21191:67;:::i;:::-;21184:74;;21267:93;21356:3;21267:93;:::i;:::-;21385:2;21380:3;21376:12;21369:19;;21028:366;;;:::o;21400:419::-;21566:4;21604:2;21593:9;21589:18;21581:26;;21653:9;21647:4;21643:20;21639:1;21628:9;21624:17;21617:47;21681:131;21807:4;21681:131;:::i;:::-;21673:139;;21400:419;;;:::o;21825:233::-;21864:3;21887:24;21905:5;21887:24;:::i;:::-;21878:33;;21933:66;21926:5;21923:77;21920:103;;22003:18;;:::i;:::-;21920:103;22050:1;22043:5;22039:13;22032:20;;21825:233;;;:::o;22064:::-;22204:34;22200:1;22192:6;22188:14;22181:58;22273:16;22268:2;22260:6;22256:15;22249:41;22064:233;:::o;22303:366::-;22445:3;22466:67;22530:2;22525:3;22466:67;:::i;:::-;22459:74;;22542:93;22631:3;22542:93;:::i;:::-;22660:2;22655:3;22651:12;22644:19;;22303:366;;;:::o;22675:419::-;22841:4;22879:2;22868:9;22864:18;22856:26;;22928:9;22922:4;22918:20;22914:1;22903:9;22899:17;22892:47;22956:131;23082:4;22956:131;:::i;:::-;22948:139;;22675:419;;;:::o;23100:222::-;23240:34;23236:1;23228:6;23224:14;23217:58;23309:5;23304:2;23296:6;23292:15;23285:30;23100:222;:::o;23328:366::-;23470:3;23491:67;23555:2;23550:3;23491:67;:::i;:::-;23484:74;;23567:93;23656:3;23567:93;:::i;:::-;23685:2;23680:3;23676:12;23669:19;;23328:366;;;:::o;23700:419::-;23866:4;23904:2;23893:9;23889:18;23881:26;;23953:9;23947:4;23943:20;23939:1;23928:9;23924:17;23917:47;23981:131;24107:4;23981:131;:::i;:::-;23973:139;;23700:419;;;:::o;24125:230::-;24265:34;24261:1;24253:6;24249:14;24242:58;24334:13;24329:2;24321:6;24317:15;24310:38;24125:230;:::o;24361:366::-;24503:3;24524:67;24588:2;24583:3;24524:67;:::i;:::-;24517:74;;24600:93;24689:3;24600:93;:::i;:::-;24718:2;24713:3;24709:12;24702:19;;24361:366;;;:::o;24733:419::-;24899:4;24937:2;24926:9;24922:18;24914:26;;24986:9;24980:4;24976:20;24972:1;24961:9;24957:17;24950:47;25014:131;25140:4;25014:131;:::i;:::-;25006:139;;24733:419;;;:::o;25158:176::-;25298:28;25294:1;25286:6;25282:14;25275:52;25158:176;:::o;25340:366::-;25482:3;25503:67;25567:2;25562:3;25503:67;:::i;:::-;25496:74;;25579:93;25668:3;25579:93;:::i;:::-;25697:2;25692:3;25688:12;25681:19;;25340:366;;;:::o;25712:419::-;25878:4;25916:2;25905:9;25901:18;25893:26;;25965:9;25959:4;25955:20;25951:1;25940:9;25936:17;25929:47;25993:131;26119:4;25993:131;:::i;:::-;25985:139;;25712:419;;;:::o;26137:147::-;26238:11;26275:3;26260:18;;26137:147;;;;:::o;26290:114::-;;:::o;26410:398::-;26569:3;26590:83;26671:1;26666:3;26590:83;:::i;:::-;26583:90;;26682:93;26771:3;26682:93;:::i;:::-;26800:1;26795:3;26791:11;26784:18;;26410:398;;;:::o;26814:379::-;26998:3;27020:147;27163:3;27020:147;:::i;:::-;27013:154;;27184:3;27177:10;;26814:379;;;:::o;27199:166::-;27339:18;27335:1;27327:6;27323:14;27316:42;27199:166;:::o;27371:366::-;27513:3;27534:67;27598:2;27593:3;27534:67;:::i;:::-;27527:74;;27610:93;27699:3;27610:93;:::i;:::-;27728:2;27723:3;27719:12;27712:19;;27371:366;;;:::o;27743:419::-;27909:4;27947:2;27936:9;27932:18;27924:26;;27996:9;27990:4;27986:20;27982:1;27971:9;27967:17;27960:47;28024:131;28150:4;28024:131;:::i;:::-;28016:139;;27743:419;;;:::o;28168:238::-;28308:34;28304:1;28296:6;28292:14;28285:58;28377:21;28372:2;28364:6;28360:15;28353:46;28168:238;:::o;28412:366::-;28554:3;28575:67;28639:2;28634:3;28575:67;:::i;:::-;28568:74;;28651:93;28740:3;28651:93;:::i;:::-;28769:2;28764:3;28760:12;28753:19;;28412:366;;;:::o;28784:419::-;28950:4;28988:2;28977:9;28973:18;28965:26;;29037:9;29031:4;29027:20;29023:1;29012:9;29008:17;29001:47;29065:131;29191:4;29065:131;:::i;:::-;29057:139;;28784:419;;;:::o;29209:174::-;29349:26;29345:1;29337:6;29333:14;29326:50;29209:174;:::o;29389:366::-;29531:3;29552:67;29616:2;29611:3;29552:67;:::i;:::-;29545:74;;29628:93;29717:3;29628:93;:::i;:::-;29746:2;29741:3;29737:12;29730:19;;29389:366;;;:::o;29761:419::-;29927:4;29965:2;29954:9;29950:18;29942:26;;30014:9;30008:4;30004:20;30000:1;29989:9;29985:17;29978:47;30042:131;30168:4;30042:131;:::i;:::-;30034:139;;29761:419;;;:::o;30186:148::-;30288:11;30325:3;30310:18;;30186:148;;;;:::o;30340:141::-;30389:4;30412:3;30404:11;;30435:3;30432:1;30425:14;30469:4;30466:1;30456:18;30448:26;;30340:141;;;:::o;30511:845::-;30614:3;30651:5;30645:12;30680:36;30706:9;30680:36;:::i;:::-;30732:89;30814:6;30809:3;30732:89;:::i;:::-;30725:96;;30852:1;30841:9;30837:17;30868:1;30863:137;;;;31014:1;31009:341;;;;30830:520;;30863:137;30947:4;30943:9;30932;30928:25;30923:3;30916:38;30983:6;30978:3;30974:16;30967:23;;30863:137;;31009:341;31076:38;31108:5;31076:38;:::i;:::-;31136:1;31150:154;31164:6;31161:1;31158:13;31150:154;;;31238:7;31232:14;31228:1;31223:3;31219:11;31212:35;31288:1;31279:7;31275:15;31264:26;;31186:4;31183:1;31179:12;31174:17;;31150:154;;;31333:6;31328:3;31324:16;31317:23;;31016:334;;30830:520;;30618:738;;30511:845;;;;:::o;31362:377::-;31468:3;31496:39;31529:5;31496:39;:::i;:::-;31551:89;31633:6;31628:3;31551:89;:::i;:::-;31544:96;;31649:52;31694:6;31689:3;31682:4;31675:5;31671:16;31649:52;:::i;:::-;31726:6;31721:3;31717:16;31710:23;;31472:267;31362:377;;;;:::o;31745:583::-;31967:3;31989:92;32077:3;32068:6;31989:92;:::i;:::-;31982:99;;32098:95;32189:3;32180:6;32098:95;:::i;:::-;32091:102;;32210:92;32298:3;32289:6;32210:92;:::i;:::-;32203:99;;32319:3;32312:10;;31745:583;;;;;;:::o;32334:225::-;32474:34;32470:1;32462:6;32458:14;32451:58;32543:8;32538:2;32530:6;32526:15;32519:33;32334:225;:::o;32565:366::-;32707:3;32728:67;32792:2;32787:3;32728:67;:::i;:::-;32721:74;;32804:93;32893:3;32804:93;:::i;:::-;32922:2;32917:3;32913:12;32906:19;;32565:366;;;:::o;32937:419::-;33103:4;33141:2;33130:9;33126:18;33118:26;;33190:9;33184:4;33180:20;33176:1;33165:9;33161:17;33154:47;33218:131;33344:4;33218:131;:::i;:::-;33210:139;;32937:419;;;:::o;33362:237::-;33502:34;33498:1;33490:6;33486:14;33479:58;33571:20;33566:2;33558:6;33554:15;33547:45;33362:237;:::o;33605:366::-;33747:3;33768:67;33832:2;33827:3;33768:67;:::i;:::-;33761:74;;33844:93;33933:3;33844:93;:::i;:::-;33962:2;33957:3;33953:12;33946:19;;33605:366;;;:::o;33977:419::-;34143:4;34181:2;34170:9;34166:18;34158:26;;34230:9;34224:4;34220:20;34216:1;34205:9;34201:17;34194:47;34258:131;34384:4;34258:131;:::i;:::-;34250:139;;33977:419;;;:::o;34402:225::-;34542:34;34538:1;34530:6;34526:14;34519:58;34611:8;34606:2;34598:6;34594:15;34587:33;34402:225;:::o;34633:366::-;34775:3;34796:67;34860:2;34855:3;34796:67;:::i;:::-;34789:74;;34872:93;34961:3;34872:93;:::i;:::-;34990:2;34985:3;34981:12;34974:19;;34633:366;;;:::o;35005:419::-;35171:4;35209:2;35198:9;35194:18;35186:26;;35258:9;35252:4;35248:20;35244:1;35233:9;35229:17;35222:47;35286:131;35412:4;35286:131;:::i;:::-;35278:139;;35005:419;;;:::o;35430:224::-;35570:34;35566:1;35558:6;35554:14;35547:58;35639:7;35634:2;35626:6;35622:15;35615:32;35430:224;:::o;35660:366::-;35802:3;35823:67;35887:2;35882:3;35823:67;:::i;:::-;35816:74;;35899:93;35988:3;35899:93;:::i;:::-;36017:2;36012:3;36008:12;36001:19;;35660:366;;;:::o;36032:419::-;36198:4;36236:2;36225:9;36221:18;36213:26;;36285:9;36279:4;36275:20;36271:1;36260:9;36256:17;36249:47;36313:131;36439:4;36313:131;:::i;:::-;36305:139;;36032:419;;;:::o;36457:118::-;36494:7;36534:34;36527:5;36523:46;36512:57;;36457:118;;;:::o;36581:191::-;36621:4;36641:20;36659:1;36641:20;:::i;:::-;36636:25;;36675:20;36693:1;36675:20;:::i;:::-;36670:25;;36714:1;36711;36708:8;36705:34;;;36719:18;;:::i;:::-;36705:34;36764:1;36761;36757:9;36749:17;;36581:191;;;;:::o;36778:273::-;36818:3;36837:20;36855:1;36837:20;:::i;:::-;36832:25;;36871:20;36889:1;36871:20;:::i;:::-;36866:25;;36993:1;36957:34;36953:42;36950:1;36947:49;36944:75;;;36999:18;;:::i;:::-;36944:75;37043:1;37040;37036:9;37029:16;;36778:273;;;;:::o;37057:229::-;37197:34;37193:1;37185:6;37181:14;37174:58;37266:12;37261:2;37253:6;37249:15;37242:37;37057:229;:::o;37292:366::-;37434:3;37455:67;37519:2;37514:3;37455:67;:::i;:::-;37448:74;;37531:93;37620:3;37531:93;:::i;:::-;37649:2;37644:3;37640:12;37633:19;;37292:366;;;:::o;37664:419::-;37830:4;37868:2;37857:9;37853:18;37845:26;;37917:9;37911:4;37907:20;37903:1;37892:9;37888:17;37881:47;37945:131;38071:4;37945:131;:::i;:::-;37937:139;;37664:419;;;:::o;38089:191::-;38129:4;38149:20;38167:1;38149:20;:::i;:::-;38144:25;;38183:20;38201:1;38183:20;:::i;:::-;38178:25;;38222:1;38219;38216:8;38213:34;;;38227:18;;:::i;:::-;38213:34;38272:1;38269;38265:9;38257:17;;38089:191;;;;:::o;38286:171::-;38325:3;38348:24;38366:5;38348:24;:::i;:::-;38339:33;;38394:4;38387:5;38384:15;38381:41;;38402:18;;:::i;:::-;38381:41;38449:1;38442:5;38438:13;38431:20;;38286:171;;;:::o;38463:234::-;38603:34;38599:1;38591:6;38587:14;38580:58;38672:17;38667:2;38659:6;38655:15;38648:42;38463:234;:::o;38703:366::-;38845:3;38866:67;38930:2;38925:3;38866:67;:::i;:::-;38859:74;;38942:93;39031:3;38942:93;:::i;:::-;39060:2;39055:3;39051:12;39044:19;;38703:366;;;:::o;39075:419::-;39241:4;39279:2;39268:9;39264:18;39256:26;;39328:9;39322:4;39318:20;39314:1;39303:9;39299:17;39292:47;39356:131;39482:4;39356:131;:::i;:::-;39348:139;;39075:419;;;:::o;39500:98::-;39551:6;39585:5;39579:12;39569:22;;39500:98;;;:::o;39604:168::-;39687:11;39721:6;39716:3;39709:19;39761:4;39756:3;39752:14;39737:29;;39604:168;;;;:::o;39778:360::-;39864:3;39892:38;39924:5;39892:38;:::i;:::-;39946:70;40009:6;40004:3;39946:70;:::i;:::-;39939:77;;40025:52;40070:6;40065:3;40058:4;40051:5;40047:16;40025:52;:::i;:::-;40102:29;40124:6;40102:29;:::i;:::-;40097:3;40093:39;40086:46;;39868:270;39778:360;;;;:::o;40144:640::-;40339:4;40377:3;40366:9;40362:19;40354:27;;40391:71;40459:1;40448:9;40444:17;40435:6;40391:71;:::i;:::-;40472:72;40540:2;40529:9;40525:18;40516:6;40472:72;:::i;:::-;40554;40622:2;40611:9;40607:18;40598:6;40554:72;:::i;:::-;40673:9;40667:4;40663:20;40658:2;40647:9;40643:18;40636:48;40701:76;40772:4;40763:6;40701:76;:::i;:::-;40693:84;;40144:640;;;;;;;:::o;40790:141::-;40846:5;40877:6;40871:13;40862:22;;40893:32;40919:5;40893:32;:::i;:::-;40790:141;;;;:::o;40937:349::-;41006:6;41055:2;41043:9;41034:7;41030:23;41026:32;41023:119;;;41061:79;;:::i;:::-;41023:119;41181:1;41206:63;41261:7;41252:6;41241:9;41237:22;41206:63;:::i;:::-;41196:73;;41152:127;40937:349;;;;:::o;41292:180::-;41340:77;41337:1;41330:88;41437:4;41434:1;41427:15;41461:4;41458:1;41451:15;41478:185;41518:1;41535:20;41553:1;41535:20;:::i;:::-;41530:25;;41569:20;41587:1;41569:20;:::i;:::-;41564:25;;41608:1;41598:35;;41613:18;;:::i;:::-;41598:35;41655:1;41652;41648:9;41643:14;;41478:185;;;;:::o;41669:176::-;41701:1;41718:20;41736:1;41718:20;:::i;:::-;41713:25;;41752:20;41770:1;41752:20;:::i;:::-;41747:25;;41791:1;41781:35;;41796:18;;:::i;:::-;41781:35;41837:1;41834;41830:9;41825:14;;41669:176;;;;:::o;41851:180::-;41899:77;41896:1;41889:88;41996:4;41993:1;41986:15;42020:4;42017:1;42010:15;42037:220;42177:34;42173:1;42165:6;42161:14;42154:58;42246:3;42241:2;42233:6;42229:15;42222:28;42037:220;:::o;42263:366::-;42405:3;42426:67;42490:2;42485:3;42426:67;:::i;:::-;42419:74;;42502:93;42591:3;42502:93;:::i;:::-;42620:2;42615:3;42611:12;42604:19;;42263:366;;;:::o;42635:419::-;42801:4;42839:2;42828:9;42824:18;42816:26;;42888:9;42882:4;42878:20;42874:1;42863:9;42859:17;42852:47;42916:131;43042:4;42916:131;:::i;:::-;42908:139;;42635:419;;;:::o;43060:179::-;43200:31;43196:1;43188:6;43184:14;43177:55;43060:179;:::o;43245:366::-;43387:3;43408:67;43472:2;43467:3;43408:67;:::i;:::-;43401:74;;43484:93;43573:3;43484:93;:::i;:::-;43602:2;43597:3;43593:12;43586:19;;43245:366;;;:::o;43617:419::-;43783:4;43821:2;43810:9;43806:18;43798:26;;43870:9;43864:4;43860:20;43856:1;43845:9;43841:17;43834:47;43898:131;44024:4;43898:131;:::i;:::-;43890:139;;43617:419;;;:::o;44042:221::-;44182:34;44178:1;44170:6;44166:14;44159:58;44251:4;44246:2;44238:6;44234:15;44227:29;44042:221;:::o;44269:366::-;44411:3;44432:67;44496:2;44491:3;44432:67;:::i;:::-;44425:74;;44508:93;44597:3;44508:93;:::i;:::-;44626:2;44621:3;44617:12;44610:19;;44269:366;;;:::o;44641:419::-;44807:4;44845:2;44834:9;44830:18;44822:26;;44894:9;44888:4;44884:20;44880:1;44869:9;44865:17;44858:47;44922:131;45048:4;44922:131;:::i;:::-;44914:139;;44641:419;;;:::o
Swarm Source
ipfs://0afc63f3e685f1ab5e6b951d5f1fa94e1097beffd7ba65e026a92486a77f3907
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.