ERC-721
NFT
Overview
Max Total Supply
7,500 EALIEN
Holders
1,823
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 EALIENLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Ethalien
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-01 */ // SPDX-License-Identifier: MIT // Ethaliens contract starts at 1307 ;) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: node_modules\@openzeppelin\contracts\token\ERC721\IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: node_modules\@openzeppelin\contracts\token\ERC721\IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: node_modules\@openzeppelin\contracts\token\ERC721\extensions\IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: node_modules\@openzeppelin\contracts\utils\Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: node_modules\@openzeppelin\contracts\utils\Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: node_modules\@openzeppelin\contracts\utils\Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: node_modules\@openzeppelin\contracts\utils\introspection\ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: node_modules\@openzeppelin\contracts\token\ERC721\ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: node_modules\@openzeppelin\contracts\token\ERC721\extensions\ERC721URIStorage.sol pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File: node_modules\@openzeppelin\contracts\token\ERC721\extensions\IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: node_modules\@openzeppelin\contracts\token\ERC721\extensions\ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: node_modules\@openzeppelin\contracts\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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts\Ethalien.sol // @dev: beefJenson, bighatlevi pragma solidity ^0.8.0; contract Ethalien is ERC721Enumerable, Ownable { string public _baseTokenURI; uint private aliensReserved = 200; uint public alienPrice = 0.02 ether; bool public saleIsActive = false; string public alienProvenance = ""; constructor() ERC721("Ethaliens", "EALIEN"){} function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function setAlienPrice(uint _alienPrice) public onlyOwner() { alienPrice = _alienPrice; } function flipSaleState() public onlyOwner() { saleIsActive = !saleIsActive; } function withdraw () public payable onlyOwner() { uint contractBalance = address(this).balance; payable(_msgSender()).transfer(contractBalance); } function reserveAliens(address _to, uint _reserveAmount) public onlyOwner() { uint supply = totalSupply(); require(_reserveAmount > 0 && _reserveAmount < aliensReserved + 1, "Insufficient reserves remaining" ); for (uint i = 0; i < _reserveAmount; i++) { _safeMint(_to, supply + i); } aliensReserved = aliensReserved - (_reserveAmount); } function mintAliens(uint _num) public payable { uint supply = totalSupply(); require(saleIsActive, "Sale is not active" ); require(_num < 11, "You can only mint 10 at once" ); require(supply + _num < 7501, "Transaction would exceed the total supply" ); require(msg.value >= alienPrice * _num, "Ether value sent is not correct" ); for(uint i = 0; i < _num; i++ ) { uint mintIndex = supply + i; _safeMint(msg.sender, mintIndex); } } function tokensOfWalletOwner(address _owner) public view returns (uint[] memory) { uint tokenCount = balanceOf(_owner); uint[] memory tokenIds = new uint[](tokenCount); for(uint i; i < tokenCount; i++){ tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"alienPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"alienProvenance","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"mintAliens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveAliens","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_alienPrice","type":"uint256"}],"name":"setAlienPrice","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":"baseURI","type":"string"}],"name":"setBaseURI","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfWalletOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405260c8600c5566470de4df820000600d556000600e60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600f908051906020019062000056929190620001f9565b503480156200006457600080fd5b506040518060400160405280600981526020017f457468616c69656e7300000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f45414c49454e00000000000000000000000000000000000000000000000000008152508160009080519060200190620000e9929190620001f9565b50806001908051906020019062000102929190620001f9565b50505062000125620001196200012b60201b60201c565b6200013360201b60201c565b6200030e565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020790620002a9565b90600052602060002090601f0160209004810192826200022b576000855562000277565b82601f106200024657805160ff191683800117855562000277565b8280016001018555821562000277579182015b828111156200027657825182559160200191906001019062000259565b5b5090506200028691906200028a565b5090565b5b80821115620002a55760008160009055506001016200028b565b5090565b60006002820490506001821680620002c257607f821691505b60208210811415620002d957620002d8620002df565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614264806200031e6000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063c6e20ea611610095578063d0da338b11610064578063d0da338b14610658578063e985e9c514610683578063eb8d2444146106c0578063f2fde38b146106eb576101cd565b8063c6e20ea6146105ab578063c87b56dd146105d4578063caaa506e14610611578063cfc86f7b1461062d576101cd565b80638da5cb5b116100d15780638da5cb5b1461050357806395d89b411461052e578063a22cb46514610559578063b88d4fde14610582576101cd565b806370a0823114610472578063715018a6146104af578063859b584c146104c6576101cd565b806334918dfd1161016f57806346d485bb1161013e57806346d485bb146103a45780634f6ccce7146103cf57806355f804b31461040c5780636352211e14610435576101cd565b806334918dfd14610331578063369e9209146103485780633ccfd60b1461037157806342842e0e1461037b576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612dd0565b610714565b60405161020691906133c7565b60405180910390f35b34801561021b57600080fd5b5061022461078e565b60405161023191906133e2565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612e73565b610820565b60405161026e919061333e565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d90565b6108a5565b005b3480156102ac57600080fd5b506102b56109bd565b6040516102c291906136e4565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612c7a565b6109ca565b005b34801561030057600080fd5b5061031b60048036038101906103169190612d90565b610a2a565b60405161032891906136e4565b60405180910390f35b34801561033d57600080fd5b50610346610acf565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612d90565b610b77565b005b610379610ca8565b005b34801561038757600080fd5b506103a2600480360381019061039d9190612c7a565b610d7a565b005b3480156103b057600080fd5b506103b9610d9a565b6040516103c691906136e4565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190612e73565b610da0565b60405161040391906136e4565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612e2a565b610e11565b005b34801561044157600080fd5b5061045c60048036038101906104579190612e73565b610ea7565b604051610469919061333e565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190612c0d565b610f59565b6040516104a691906136e4565b60405180910390f35b3480156104bb57600080fd5b506104c4611011565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190612c0d565b611099565b6040516104fa91906133a5565b60405180910390f35b34801561050f57600080fd5b50610518611147565b604051610525919061333e565b60405180910390f35b34801561053a57600080fd5b50610543611171565b60405161055091906133e2565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190612d50565b611203565b005b34801561058e57600080fd5b506105a960048036038101906105a49190612ccd565b611384565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190612e73565b6113e6565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190612e73565b61146c565b60405161060891906133e2565b60405180910390f35b61062b60048036038101906106269190612e73565b611513565b005b34801561063957600080fd5b5061064261168e565b60405161064f91906133e2565b60405180910390f35b34801561066457600080fd5b5061066d61171c565b60405161067a91906133e2565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190612c3a565b6117aa565b6040516106b791906133c7565b60405180910390f35b3480156106cc57600080fd5b506106d561183e565b6040516106e291906133c7565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d9190612c0d565b611851565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610787575061078682611949565b5b9050919050565b60606000805461079d906139cd565b80601f01602080910402602001604051908101604052809291908181526020018280546107c9906139cd565b80156108165780601f106107eb57610100808354040283529160200191610816565b820191906000526020600020905b8154815290600101906020018083116107f957829003601f168201915b5050505050905090565b600061082b82611a2b565b61086a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610861906135c4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108b082610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890613664565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610940611a97565b73ffffffffffffffffffffffffffffffffffffffff16148061096f575061096e81610969611a97565b6117aa565b5b6109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590613544565b60405180910390fd5b6109b88383611a9f565b505050565b6000600880549050905090565b6109db6109d5611a97565b82611b58565b610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a11906136a4565b60405180910390fd5b610a25838383611c36565b505050565b6000610a3583610f59565b8210610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90613404565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ad7611a97565b73ffffffffffffffffffffffffffffffffffffffff16610af5611147565b73ffffffffffffffffffffffffffffffffffffffff1614610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b42906135e4565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610b7f611a97565b73ffffffffffffffffffffffffffffffffffffffff16610b9d611147565b73ffffffffffffffffffffffffffffffffffffffff1614610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea906135e4565b60405180910390fd5b6000610bfd6109bd565b9050600082118015610c1c57506001600c54610c199190613802565b82105b610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290613684565b60405180910390fd5b60005b82811015610c8e57610c7b848284610c769190613802565b611e92565b8080610c8690613a30565b915050610c5e565b5081600c54610c9d91906138e3565b600c81905550505050565b610cb0611a97565b73ffffffffffffffffffffffffffffffffffffffff16610cce611147565b73ffffffffffffffffffffffffffffffffffffffff1614610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b906135e4565b60405180910390fd5b6000479050610d31611a97565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d76573d6000803e3d6000fd5b5050565b610d9583838360405180602001604052806000815250611384565b505050565b600d5481565b6000610daa6109bd565b8210610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de2906136c4565b60405180910390fd5b60088281548110610dff57610dfe613b66565b5b90600052602060002001549050919050565b610e19611a97565b73ffffffffffffffffffffffffffffffffffffffff16610e37611147565b73ffffffffffffffffffffffffffffffffffffffff1614610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e84906135e4565b60405180910390fd5b80600b9080519060200190610ea3929190612a21565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613584565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc190613564565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611019611a97565b73ffffffffffffffffffffffffffffffffffffffff16611037611147565b73ffffffffffffffffffffffffffffffffffffffff161461108d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611084906135e4565b60405180910390fd5b6110976000611eb0565b565b606060006110a683610f59565b905060008167ffffffffffffffff8111156110c4576110c3613b95565b5b6040519080825280602002602001820160405280156110f25781602001602082028036833780820191505090505b50905060005b8281101561113c5761110a8582610a2a565b82828151811061111d5761111c613b66565b5b602002602001018181525050808061113490613a30565b9150506110f8565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611180906139cd565b80601f01602080910402602001604051908101604052809291908181526020018280546111ac906139cd565b80156111f95780601f106111ce576101008083540402835291602001916111f9565b820191906000526020600020905b8154815290600101906020018083116111dc57829003601f168201915b5050505050905090565b61120b611a97565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611279576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611270906134c4565b60405180910390fd5b8060056000611286611a97565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611333611a97565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137891906133c7565b60405180910390a35050565b61139561138f611a97565b83611b58565b6113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb906136a4565b60405180910390fd5b6113e084848484611f76565b50505050565b6113ee611a97565b73ffffffffffffffffffffffffffffffffffffffff1661140c611147565b73ffffffffffffffffffffffffffffffffffffffff1614611462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611459906135e4565b60405180910390fd5b80600d8190555050565b606061147782611a2b565b6114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90613644565b60405180910390fd5b60006114c0611fd2565b905060008151116114e0576040518060200160405280600081525061150b565b806114ea84612064565b6040516020016114fb92919061331a565b6040516020818303038152906040525b915050919050565b600061151d6109bd565b9050600e60009054906101000a900460ff1661156e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611565906134e4565b60405180910390fd5b600b82106115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890613444565b60405180910390fd5b611d4d82826115c09190613802565b10611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790613624565b60405180910390fd5b81600d5461160e9190613889565b341015611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790613504565b60405180910390fd5b60005b8281101561168957600081836116699190613802565b90506116753382611e92565b50808061168190613a30565b915050611653565b505050565b600b805461169b906139cd565b80601f01602080910402602001604051908101604052809291908181526020018280546116c7906139cd565b80156117145780601f106116e957610100808354040283529160200191611714565b820191906000526020600020905b8154815290600101906020018083116116f757829003601f168201915b505050505081565b600f8054611729906139cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611755906139cd565b80156117a25780601f10611777576101008083540402835291602001916117a2565b820191906000526020600020905b81548152906001019060200180831161178557829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b611859611a97565b73ffffffffffffffffffffffffffffffffffffffff16611877611147565b73ffffffffffffffffffffffffffffffffffffffff16146118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c4906135e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490613464565b60405180910390fd5b61194681611eb0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a1457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a245750611a23826121c5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b1283610ea7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b6382611a2b565b611ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9990613524565b60405180910390fd5b6000611bad83610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c1c57508373ffffffffffffffffffffffffffffffffffffffff16611c0484610820565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c2d5750611c2c81856117aa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c5682610ea7565b73ffffffffffffffffffffffffffffffffffffffff1614611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390613604565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d13906134a4565b60405180910390fd5b611d2783838361222f565b611d32600082611a9f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d8291906138e3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd99190613802565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611eac828260405180602001604052806000815250612343565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f81848484611c36565b611f8d8484848461239e565b611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390613424565b60405180910390fd5b50505050565b6060600b8054611fe1906139cd565b80601f016020809104026020016040519081016040528092919081815260200182805461200d906139cd565b801561205a5780601f1061202f5761010080835404028352916020019161205a565b820191906000526020600020905b81548152906001019060200180831161203d57829003601f168201915b5050505050905090565b606060008214156120ac576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121c0565b600082905060005b600082146120de5780806120c790613a30565b915050600a826120d79190613858565b91506120b4565b60008167ffffffffffffffff8111156120fa576120f9613b95565b5b6040519080825280601f01601f19166020018201604052801561212c5781602001600182028036833780820191505090505b5090505b600085146121b95760018261214591906138e3565b9150600a856121549190613a79565b60306121609190613802565b60f81b81838151811061217657612175613b66565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121b29190613858565b9450612130565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61223a838383612535565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561227d576122788161253a565b6122bc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122bb576122ba8382612583565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ff576122fa816126f0565b61233e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461233d5761233c82826127c1565b5b5b505050565b61234d8383612840565b61235a600084848461239e565b612399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239090613424565b60405180910390fd5b505050565b60006123bf8473ffffffffffffffffffffffffffffffffffffffff16612a0e565b15612528578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123e8611a97565b8786866040518563ffffffff1660e01b815260040161240a9493929190613359565b602060405180830381600087803b15801561242457600080fd5b505af192505050801561245557506040513d601f19601f820116820180604052508101906124529190612dfd565b60015b6124d8573d8060008114612485576040519150601f19603f3d011682016040523d82523d6000602084013e61248a565b606091505b506000815114156124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c790613424565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061252d565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161259084610f59565b61259a91906138e3565b905060006007600084815260200190815260200160002054905081811461267f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061270491906138e3565b905060006009600084815260200190815260200160002054905060006008838154811061273457612733613b66565b5b90600052602060002001549050806008838154811061275657612755613b66565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127a5576127a4613b37565b5b6001900381819060005260206000200160009055905550505050565b60006127cc83610f59565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a7906135a4565b60405180910390fd5b6128b981611a2b565b156128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f090613484565b60405180910390fd5b6129056000838361222f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129559190613802565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a2d906139cd565b90600052602060002090601f016020900481019282612a4f5760008555612a96565b82601f10612a6857805160ff1916838001178555612a96565b82800160010185558215612a96579182015b82811115612a95578251825591602001919060010190612a7a565b5b509050612aa39190612aa7565b5090565b5b80821115612ac0576000816000905550600101612aa8565b5090565b6000612ad7612ad284613724565b6136ff565b905082815260208101848484011115612af357612af2613bc9565b5b612afe84828561398b565b509392505050565b6000612b19612b1484613755565b6136ff565b905082815260208101848484011115612b3557612b34613bc9565b5b612b4084828561398b565b509392505050565b600081359050612b57816141d2565b92915050565b600081359050612b6c816141e9565b92915050565b600081359050612b8181614200565b92915050565b600081519050612b9681614200565b92915050565b600082601f830112612bb157612bb0613bc4565b5b8135612bc1848260208601612ac4565b91505092915050565b600082601f830112612bdf57612bde613bc4565b5b8135612bef848260208601612b06565b91505092915050565b600081359050612c0781614217565b92915050565b600060208284031215612c2357612c22613bd3565b5b6000612c3184828501612b48565b91505092915050565b60008060408385031215612c5157612c50613bd3565b5b6000612c5f85828601612b48565b9250506020612c7085828601612b48565b9150509250929050565b600080600060608486031215612c9357612c92613bd3565b5b6000612ca186828701612b48565b9350506020612cb286828701612b48565b9250506040612cc386828701612bf8565b9150509250925092565b60008060008060808587031215612ce757612ce6613bd3565b5b6000612cf587828801612b48565b9450506020612d0687828801612b48565b9350506040612d1787828801612bf8565b925050606085013567ffffffffffffffff811115612d3857612d37613bce565b5b612d4487828801612b9c565b91505092959194509250565b60008060408385031215612d6757612d66613bd3565b5b6000612d7585828601612b48565b9250506020612d8685828601612b5d565b9150509250929050565b60008060408385031215612da757612da6613bd3565b5b6000612db585828601612b48565b9250506020612dc685828601612bf8565b9150509250929050565b600060208284031215612de657612de5613bd3565b5b6000612df484828501612b72565b91505092915050565b600060208284031215612e1357612e12613bd3565b5b6000612e2184828501612b87565b91505092915050565b600060208284031215612e4057612e3f613bd3565b5b600082013567ffffffffffffffff811115612e5e57612e5d613bce565b5b612e6a84828501612bca565b91505092915050565b600060208284031215612e8957612e88613bd3565b5b6000612e9784828501612bf8565b91505092915050565b6000612eac83836132fc565b60208301905092915050565b612ec181613917565b82525050565b6000612ed282613796565b612edc81856137c4565b9350612ee783613786565b8060005b83811015612f18578151612eff8882612ea0565b9750612f0a836137b7565b925050600181019050612eeb565b5085935050505092915050565b612f2e81613929565b82525050565b6000612f3f826137a1565b612f4981856137d5565b9350612f5981856020860161399a565b612f6281613bd8565b840191505092915050565b6000612f78826137ac565b612f8281856137e6565b9350612f9281856020860161399a565b612f9b81613bd8565b840191505092915050565b6000612fb1826137ac565b612fbb81856137f7565b9350612fcb81856020860161399a565b80840191505092915050565b6000612fe4602b836137e6565b9150612fef82613be9565b604082019050919050565b60006130076032836137e6565b915061301282613c38565b604082019050919050565b600061302a601c836137e6565b915061303582613c87565b602082019050919050565b600061304d6026836137e6565b915061305882613cb0565b604082019050919050565b6000613070601c836137e6565b915061307b82613cff565b602082019050919050565b60006130936024836137e6565b915061309e82613d28565b604082019050919050565b60006130b66019836137e6565b91506130c182613d77565b602082019050919050565b60006130d96012836137e6565b91506130e482613da0565b602082019050919050565b60006130fc601f836137e6565b915061310782613dc9565b602082019050919050565b600061311f602c836137e6565b915061312a82613df2565b604082019050919050565b60006131426038836137e6565b915061314d82613e41565b604082019050919050565b6000613165602a836137e6565b915061317082613e90565b604082019050919050565b60006131886029836137e6565b915061319382613edf565b604082019050919050565b60006131ab6020836137e6565b91506131b682613f2e565b602082019050919050565b60006131ce602c836137e6565b91506131d982613f57565b604082019050919050565b60006131f16020836137e6565b91506131fc82613fa6565b602082019050919050565b60006132146029836137e6565b915061321f82613fcf565b604082019050919050565b60006132376029836137e6565b91506132428261401e565b604082019050919050565b600061325a602f836137e6565b91506132658261406d565b604082019050919050565b600061327d6021836137e6565b9150613288826140bc565b604082019050919050565b60006132a0601f836137e6565b91506132ab8261410b565b602082019050919050565b60006132c36031836137e6565b91506132ce82614134565b604082019050919050565b60006132e6602c836137e6565b91506132f182614183565b604082019050919050565b61330581613981565b82525050565b61331481613981565b82525050565b60006133268285612fa6565b91506133328284612fa6565b91508190509392505050565b60006020820190506133536000830184612eb8565b92915050565b600060808201905061336e6000830187612eb8565b61337b6020830186612eb8565b613388604083018561330b565b818103606083015261339a8184612f34565b905095945050505050565b600060208201905081810360008301526133bf8184612ec7565b905092915050565b60006020820190506133dc6000830184612f25565b92915050565b600060208201905081810360008301526133fc8184612f6d565b905092915050565b6000602082019050818103600083015261341d81612fd7565b9050919050565b6000602082019050818103600083015261343d81612ffa565b9050919050565b6000602082019050818103600083015261345d8161301d565b9050919050565b6000602082019050818103600083015261347d81613040565b9050919050565b6000602082019050818103600083015261349d81613063565b9050919050565b600060208201905081810360008301526134bd81613086565b9050919050565b600060208201905081810360008301526134dd816130a9565b9050919050565b600060208201905081810360008301526134fd816130cc565b9050919050565b6000602082019050818103600083015261351d816130ef565b9050919050565b6000602082019050818103600083015261353d81613112565b9050919050565b6000602082019050818103600083015261355d81613135565b9050919050565b6000602082019050818103600083015261357d81613158565b9050919050565b6000602082019050818103600083015261359d8161317b565b9050919050565b600060208201905081810360008301526135bd8161319e565b9050919050565b600060208201905081810360008301526135dd816131c1565b9050919050565b600060208201905081810360008301526135fd816131e4565b9050919050565b6000602082019050818103600083015261361d81613207565b9050919050565b6000602082019050818103600083015261363d8161322a565b9050919050565b6000602082019050818103600083015261365d8161324d565b9050919050565b6000602082019050818103600083015261367d81613270565b9050919050565b6000602082019050818103600083015261369d81613293565b9050919050565b600060208201905081810360008301526136bd816132b6565b9050919050565b600060208201905081810360008301526136dd816132d9565b9050919050565b60006020820190506136f9600083018461330b565b92915050565b600061370961371a565b905061371582826139ff565b919050565b6000604051905090565b600067ffffffffffffffff82111561373f5761373e613b95565b5b61374882613bd8565b9050602081019050919050565b600067ffffffffffffffff8211156137705761376f613b95565b5b61377982613bd8565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061380d82613981565b915061381883613981565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561384d5761384c613aaa565b5b828201905092915050565b600061386382613981565b915061386e83613981565b92508261387e5761387d613ad9565b5b828204905092915050565b600061389482613981565b915061389f83613981565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138d8576138d7613aaa565b5b828202905092915050565b60006138ee82613981565b91506138f983613981565b92508282101561390c5761390b613aaa565b5b828203905092915050565b600061392282613961565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139b857808201518184015260208101905061399d565b838111156139c7576000848401525b50505050565b600060028204905060018216806139e557607f821691505b602082108114156139f9576139f8613b08565b5b50919050565b613a0882613bd8565b810181811067ffffffffffffffff82111715613a2757613a26613b95565b5b80604052505050565b6000613a3b82613981565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a6e57613a6d613aaa565b5b600182019050919050565b6000613a8482613981565b9150613a8f83613981565b925082613a9f57613a9e613ad9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e74203130206174206f6e636500000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20776f756c64206578636565642074686520746f7460008201527f616c20737570706c790000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742072657365727665732072656d61696e696e6700600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6141db81613917565b81146141e657600080fd5b50565b6141f281613929565b81146141fd57600080fd5b50565b61420981613935565b811461421457600080fd5b50565b61422081613981565b811461422b57600080fd5b5056fea264697066735822122060d5704d15b2a6017c418d4961658cc5c9c71b6865e21b3881c9bfc62c15495c64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063c6e20ea611610095578063d0da338b11610064578063d0da338b14610658578063e985e9c514610683578063eb8d2444146106c0578063f2fde38b146106eb576101cd565b8063c6e20ea6146105ab578063c87b56dd146105d4578063caaa506e14610611578063cfc86f7b1461062d576101cd565b80638da5cb5b116100d15780638da5cb5b1461050357806395d89b411461052e578063a22cb46514610559578063b88d4fde14610582576101cd565b806370a0823114610472578063715018a6146104af578063859b584c146104c6576101cd565b806334918dfd1161016f57806346d485bb1161013e57806346d485bb146103a45780634f6ccce7146103cf57806355f804b31461040c5780636352211e14610435576101cd565b806334918dfd14610331578063369e9209146103485780633ccfd60b1461037157806342842e0e1461037b576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612dd0565b610714565b60405161020691906133c7565b60405180910390f35b34801561021b57600080fd5b5061022461078e565b60405161023191906133e2565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612e73565b610820565b60405161026e919061333e565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d90565b6108a5565b005b3480156102ac57600080fd5b506102b56109bd565b6040516102c291906136e4565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612c7a565b6109ca565b005b34801561030057600080fd5b5061031b60048036038101906103169190612d90565b610a2a565b60405161032891906136e4565b60405180910390f35b34801561033d57600080fd5b50610346610acf565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612d90565b610b77565b005b610379610ca8565b005b34801561038757600080fd5b506103a2600480360381019061039d9190612c7a565b610d7a565b005b3480156103b057600080fd5b506103b9610d9a565b6040516103c691906136e4565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190612e73565b610da0565b60405161040391906136e4565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612e2a565b610e11565b005b34801561044157600080fd5b5061045c60048036038101906104579190612e73565b610ea7565b604051610469919061333e565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190612c0d565b610f59565b6040516104a691906136e4565b60405180910390f35b3480156104bb57600080fd5b506104c4611011565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190612c0d565b611099565b6040516104fa91906133a5565b60405180910390f35b34801561050f57600080fd5b50610518611147565b604051610525919061333e565b60405180910390f35b34801561053a57600080fd5b50610543611171565b60405161055091906133e2565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190612d50565b611203565b005b34801561058e57600080fd5b506105a960048036038101906105a49190612ccd565b611384565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190612e73565b6113e6565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190612e73565b61146c565b60405161060891906133e2565b60405180910390f35b61062b60048036038101906106269190612e73565b611513565b005b34801561063957600080fd5b5061064261168e565b60405161064f91906133e2565b60405180910390f35b34801561066457600080fd5b5061066d61171c565b60405161067a91906133e2565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190612c3a565b6117aa565b6040516106b791906133c7565b60405180910390f35b3480156106cc57600080fd5b506106d561183e565b6040516106e291906133c7565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d9190612c0d565b611851565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610787575061078682611949565b5b9050919050565b60606000805461079d906139cd565b80601f01602080910402602001604051908101604052809291908181526020018280546107c9906139cd565b80156108165780601f106107eb57610100808354040283529160200191610816565b820191906000526020600020905b8154815290600101906020018083116107f957829003601f168201915b5050505050905090565b600061082b82611a2b565b61086a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610861906135c4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108b082610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890613664565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610940611a97565b73ffffffffffffffffffffffffffffffffffffffff16148061096f575061096e81610969611a97565b6117aa565b5b6109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590613544565b60405180910390fd5b6109b88383611a9f565b505050565b6000600880549050905090565b6109db6109d5611a97565b82611b58565b610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a11906136a4565b60405180910390fd5b610a25838383611c36565b505050565b6000610a3583610f59565b8210610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90613404565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ad7611a97565b73ffffffffffffffffffffffffffffffffffffffff16610af5611147565b73ffffffffffffffffffffffffffffffffffffffff1614610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b42906135e4565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610b7f611a97565b73ffffffffffffffffffffffffffffffffffffffff16610b9d611147565b73ffffffffffffffffffffffffffffffffffffffff1614610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea906135e4565b60405180910390fd5b6000610bfd6109bd565b9050600082118015610c1c57506001600c54610c199190613802565b82105b610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290613684565b60405180910390fd5b60005b82811015610c8e57610c7b848284610c769190613802565b611e92565b8080610c8690613a30565b915050610c5e565b5081600c54610c9d91906138e3565b600c81905550505050565b610cb0611a97565b73ffffffffffffffffffffffffffffffffffffffff16610cce611147565b73ffffffffffffffffffffffffffffffffffffffff1614610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b906135e4565b60405180910390fd5b6000479050610d31611a97565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d76573d6000803e3d6000fd5b5050565b610d9583838360405180602001604052806000815250611384565b505050565b600d5481565b6000610daa6109bd565b8210610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de2906136c4565b60405180910390fd5b60088281548110610dff57610dfe613b66565b5b90600052602060002001549050919050565b610e19611a97565b73ffffffffffffffffffffffffffffffffffffffff16610e37611147565b73ffffffffffffffffffffffffffffffffffffffff1614610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e84906135e4565b60405180910390fd5b80600b9080519060200190610ea3929190612a21565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613584565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc190613564565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611019611a97565b73ffffffffffffffffffffffffffffffffffffffff16611037611147565b73ffffffffffffffffffffffffffffffffffffffff161461108d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611084906135e4565b60405180910390fd5b6110976000611eb0565b565b606060006110a683610f59565b905060008167ffffffffffffffff8111156110c4576110c3613b95565b5b6040519080825280602002602001820160405280156110f25781602001602082028036833780820191505090505b50905060005b8281101561113c5761110a8582610a2a565b82828151811061111d5761111c613b66565b5b602002602001018181525050808061113490613a30565b9150506110f8565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611180906139cd565b80601f01602080910402602001604051908101604052809291908181526020018280546111ac906139cd565b80156111f95780601f106111ce576101008083540402835291602001916111f9565b820191906000526020600020905b8154815290600101906020018083116111dc57829003601f168201915b5050505050905090565b61120b611a97565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611279576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611270906134c4565b60405180910390fd5b8060056000611286611a97565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611333611a97565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137891906133c7565b60405180910390a35050565b61139561138f611a97565b83611b58565b6113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb906136a4565b60405180910390fd5b6113e084848484611f76565b50505050565b6113ee611a97565b73ffffffffffffffffffffffffffffffffffffffff1661140c611147565b73ffffffffffffffffffffffffffffffffffffffff1614611462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611459906135e4565b60405180910390fd5b80600d8190555050565b606061147782611a2b565b6114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90613644565b60405180910390fd5b60006114c0611fd2565b905060008151116114e0576040518060200160405280600081525061150b565b806114ea84612064565b6040516020016114fb92919061331a565b6040516020818303038152906040525b915050919050565b600061151d6109bd565b9050600e60009054906101000a900460ff1661156e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611565906134e4565b60405180910390fd5b600b82106115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890613444565b60405180910390fd5b611d4d82826115c09190613802565b10611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790613624565b60405180910390fd5b81600d5461160e9190613889565b341015611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790613504565b60405180910390fd5b60005b8281101561168957600081836116699190613802565b90506116753382611e92565b50808061168190613a30565b915050611653565b505050565b600b805461169b906139cd565b80601f01602080910402602001604051908101604052809291908181526020018280546116c7906139cd565b80156117145780601f106116e957610100808354040283529160200191611714565b820191906000526020600020905b8154815290600101906020018083116116f757829003601f168201915b505050505081565b600f8054611729906139cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611755906139cd565b80156117a25780601f10611777576101008083540402835291602001916117a2565b820191906000526020600020905b81548152906001019060200180831161178557829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b611859611a97565b73ffffffffffffffffffffffffffffffffffffffff16611877611147565b73ffffffffffffffffffffffffffffffffffffffff16146118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c4906135e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490613464565b60405180910390fd5b61194681611eb0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a1457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a245750611a23826121c5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b1283610ea7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b6382611a2b565b611ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9990613524565b60405180910390fd5b6000611bad83610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c1c57508373ffffffffffffffffffffffffffffffffffffffff16611c0484610820565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c2d5750611c2c81856117aa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c5682610ea7565b73ffffffffffffffffffffffffffffffffffffffff1614611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390613604565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d13906134a4565b60405180910390fd5b611d2783838361222f565b611d32600082611a9f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d8291906138e3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd99190613802565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611eac828260405180602001604052806000815250612343565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f81848484611c36565b611f8d8484848461239e565b611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390613424565b60405180910390fd5b50505050565b6060600b8054611fe1906139cd565b80601f016020809104026020016040519081016040528092919081815260200182805461200d906139cd565b801561205a5780601f1061202f5761010080835404028352916020019161205a565b820191906000526020600020905b81548152906001019060200180831161203d57829003601f168201915b5050505050905090565b606060008214156120ac576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121c0565b600082905060005b600082146120de5780806120c790613a30565b915050600a826120d79190613858565b91506120b4565b60008167ffffffffffffffff8111156120fa576120f9613b95565b5b6040519080825280601f01601f19166020018201604052801561212c5781602001600182028036833780820191505090505b5090505b600085146121b95760018261214591906138e3565b9150600a856121549190613a79565b60306121609190613802565b60f81b81838151811061217657612175613b66565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121b29190613858565b9450612130565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61223a838383612535565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561227d576122788161253a565b6122bc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122bb576122ba8382612583565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ff576122fa816126f0565b61233e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461233d5761233c82826127c1565b5b5b505050565b61234d8383612840565b61235a600084848461239e565b612399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239090613424565b60405180910390fd5b505050565b60006123bf8473ffffffffffffffffffffffffffffffffffffffff16612a0e565b15612528578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123e8611a97565b8786866040518563ffffffff1660e01b815260040161240a9493929190613359565b602060405180830381600087803b15801561242457600080fd5b505af192505050801561245557506040513d601f19601f820116820180604052508101906124529190612dfd565b60015b6124d8573d8060008114612485576040519150601f19603f3d011682016040523d82523d6000602084013e61248a565b606091505b506000815114156124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c790613424565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061252d565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161259084610f59565b61259a91906138e3565b905060006007600084815260200190815260200160002054905081811461267f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061270491906138e3565b905060006009600084815260200190815260200160002054905060006008838154811061273457612733613b66565b5b90600052602060002001549050806008838154811061275657612755613b66565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127a5576127a4613b37565b5b6001900381819060005260206000200160009055905550505050565b60006127cc83610f59565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a7906135a4565b60405180910390fd5b6128b981611a2b565b156128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f090613484565b60405180910390fd5b6129056000838361222f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129559190613802565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a2d906139cd565b90600052602060002090601f016020900481019282612a4f5760008555612a96565b82601f10612a6857805160ff1916838001178555612a96565b82800160010185558215612a96579182015b82811115612a95578251825591602001919060010190612a7a565b5b509050612aa39190612aa7565b5090565b5b80821115612ac0576000816000905550600101612aa8565b5090565b6000612ad7612ad284613724565b6136ff565b905082815260208101848484011115612af357612af2613bc9565b5b612afe84828561398b565b509392505050565b6000612b19612b1484613755565b6136ff565b905082815260208101848484011115612b3557612b34613bc9565b5b612b4084828561398b565b509392505050565b600081359050612b57816141d2565b92915050565b600081359050612b6c816141e9565b92915050565b600081359050612b8181614200565b92915050565b600081519050612b9681614200565b92915050565b600082601f830112612bb157612bb0613bc4565b5b8135612bc1848260208601612ac4565b91505092915050565b600082601f830112612bdf57612bde613bc4565b5b8135612bef848260208601612b06565b91505092915050565b600081359050612c0781614217565b92915050565b600060208284031215612c2357612c22613bd3565b5b6000612c3184828501612b48565b91505092915050565b60008060408385031215612c5157612c50613bd3565b5b6000612c5f85828601612b48565b9250506020612c7085828601612b48565b9150509250929050565b600080600060608486031215612c9357612c92613bd3565b5b6000612ca186828701612b48565b9350506020612cb286828701612b48565b9250506040612cc386828701612bf8565b9150509250925092565b60008060008060808587031215612ce757612ce6613bd3565b5b6000612cf587828801612b48565b9450506020612d0687828801612b48565b9350506040612d1787828801612bf8565b925050606085013567ffffffffffffffff811115612d3857612d37613bce565b5b612d4487828801612b9c565b91505092959194509250565b60008060408385031215612d6757612d66613bd3565b5b6000612d7585828601612b48565b9250506020612d8685828601612b5d565b9150509250929050565b60008060408385031215612da757612da6613bd3565b5b6000612db585828601612b48565b9250506020612dc685828601612bf8565b9150509250929050565b600060208284031215612de657612de5613bd3565b5b6000612df484828501612b72565b91505092915050565b600060208284031215612e1357612e12613bd3565b5b6000612e2184828501612b87565b91505092915050565b600060208284031215612e4057612e3f613bd3565b5b600082013567ffffffffffffffff811115612e5e57612e5d613bce565b5b612e6a84828501612bca565b91505092915050565b600060208284031215612e8957612e88613bd3565b5b6000612e9784828501612bf8565b91505092915050565b6000612eac83836132fc565b60208301905092915050565b612ec181613917565b82525050565b6000612ed282613796565b612edc81856137c4565b9350612ee783613786565b8060005b83811015612f18578151612eff8882612ea0565b9750612f0a836137b7565b925050600181019050612eeb565b5085935050505092915050565b612f2e81613929565b82525050565b6000612f3f826137a1565b612f4981856137d5565b9350612f5981856020860161399a565b612f6281613bd8565b840191505092915050565b6000612f78826137ac565b612f8281856137e6565b9350612f9281856020860161399a565b612f9b81613bd8565b840191505092915050565b6000612fb1826137ac565b612fbb81856137f7565b9350612fcb81856020860161399a565b80840191505092915050565b6000612fe4602b836137e6565b9150612fef82613be9565b604082019050919050565b60006130076032836137e6565b915061301282613c38565b604082019050919050565b600061302a601c836137e6565b915061303582613c87565b602082019050919050565b600061304d6026836137e6565b915061305882613cb0565b604082019050919050565b6000613070601c836137e6565b915061307b82613cff565b602082019050919050565b60006130936024836137e6565b915061309e82613d28565b604082019050919050565b60006130b66019836137e6565b91506130c182613d77565b602082019050919050565b60006130d96012836137e6565b91506130e482613da0565b602082019050919050565b60006130fc601f836137e6565b915061310782613dc9565b602082019050919050565b600061311f602c836137e6565b915061312a82613df2565b604082019050919050565b60006131426038836137e6565b915061314d82613e41565b604082019050919050565b6000613165602a836137e6565b915061317082613e90565b604082019050919050565b60006131886029836137e6565b915061319382613edf565b604082019050919050565b60006131ab6020836137e6565b91506131b682613f2e565b602082019050919050565b60006131ce602c836137e6565b91506131d982613f57565b604082019050919050565b60006131f16020836137e6565b91506131fc82613fa6565b602082019050919050565b60006132146029836137e6565b915061321f82613fcf565b604082019050919050565b60006132376029836137e6565b91506132428261401e565b604082019050919050565b600061325a602f836137e6565b91506132658261406d565b604082019050919050565b600061327d6021836137e6565b9150613288826140bc565b604082019050919050565b60006132a0601f836137e6565b91506132ab8261410b565b602082019050919050565b60006132c36031836137e6565b91506132ce82614134565b604082019050919050565b60006132e6602c836137e6565b91506132f182614183565b604082019050919050565b61330581613981565b82525050565b61331481613981565b82525050565b60006133268285612fa6565b91506133328284612fa6565b91508190509392505050565b60006020820190506133536000830184612eb8565b92915050565b600060808201905061336e6000830187612eb8565b61337b6020830186612eb8565b613388604083018561330b565b818103606083015261339a8184612f34565b905095945050505050565b600060208201905081810360008301526133bf8184612ec7565b905092915050565b60006020820190506133dc6000830184612f25565b92915050565b600060208201905081810360008301526133fc8184612f6d565b905092915050565b6000602082019050818103600083015261341d81612fd7565b9050919050565b6000602082019050818103600083015261343d81612ffa565b9050919050565b6000602082019050818103600083015261345d8161301d565b9050919050565b6000602082019050818103600083015261347d81613040565b9050919050565b6000602082019050818103600083015261349d81613063565b9050919050565b600060208201905081810360008301526134bd81613086565b9050919050565b600060208201905081810360008301526134dd816130a9565b9050919050565b600060208201905081810360008301526134fd816130cc565b9050919050565b6000602082019050818103600083015261351d816130ef565b9050919050565b6000602082019050818103600083015261353d81613112565b9050919050565b6000602082019050818103600083015261355d81613135565b9050919050565b6000602082019050818103600083015261357d81613158565b9050919050565b6000602082019050818103600083015261359d8161317b565b9050919050565b600060208201905081810360008301526135bd8161319e565b9050919050565b600060208201905081810360008301526135dd816131c1565b9050919050565b600060208201905081810360008301526135fd816131e4565b9050919050565b6000602082019050818103600083015261361d81613207565b9050919050565b6000602082019050818103600083015261363d8161322a565b9050919050565b6000602082019050818103600083015261365d8161324d565b9050919050565b6000602082019050818103600083015261367d81613270565b9050919050565b6000602082019050818103600083015261369d81613293565b9050919050565b600060208201905081810360008301526136bd816132b6565b9050919050565b600060208201905081810360008301526136dd816132d9565b9050919050565b60006020820190506136f9600083018461330b565b92915050565b600061370961371a565b905061371582826139ff565b919050565b6000604051905090565b600067ffffffffffffffff82111561373f5761373e613b95565b5b61374882613bd8565b9050602081019050919050565b600067ffffffffffffffff8211156137705761376f613b95565b5b61377982613bd8565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061380d82613981565b915061381883613981565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561384d5761384c613aaa565b5b828201905092915050565b600061386382613981565b915061386e83613981565b92508261387e5761387d613ad9565b5b828204905092915050565b600061389482613981565b915061389f83613981565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138d8576138d7613aaa565b5b828202905092915050565b60006138ee82613981565b91506138f983613981565b92508282101561390c5761390b613aaa565b5b828203905092915050565b600061392282613961565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139b857808201518184015260208101905061399d565b838111156139c7576000848401525b50505050565b600060028204905060018216806139e557607f821691505b602082108114156139f9576139f8613b08565b5b50919050565b613a0882613bd8565b810181811067ffffffffffffffff82111715613a2757613a26613b95565b5b80604052505050565b6000613a3b82613981565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a6e57613a6d613aaa565b5b600182019050919050565b6000613a8482613981565b9150613a8f83613981565b925082613a9f57613a9e613ad9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e74203130206174206f6e636500000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20776f756c64206578636565642074686520746f7460008201527f616c20737570706c790000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742072657365727665732072656d61696e696e6700600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6141db81613917565b81146141e657600080fd5b50565b6141f281613929565b81146141fd57600080fd5b50565b61420981613935565b811461421457600080fd5b50565b61422081613981565b811461422b57600080fd5b5056fea264697066735822122060d5704d15b2a6017c418d4961658cc5c9c71b6865e21b3881c9bfc62c15495c64736f6c63430008070033
Deployed Bytecode Sourcemap
45260:2162:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36728:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21672:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23231:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22754:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37368:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24121:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37036:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45914:91;;;;;;;;;;;;;:::i;:::-;;46190:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46013:169;;;:::i;:::-;;24531:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45394:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37558:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45693:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21366:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21096:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44536:94;;;;;;;;;;;;;:::i;:::-;;47087:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43885:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21841:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23524:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24787:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45803:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22016:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46599:476;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45320:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45475:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23890:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45436:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44785:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36728:224;36830:4;36869:35;36854:50;;;:11;:50;;;;:90;;;;36908:36;36932:11;36908:23;:36::i;:::-;36854:90;36847:97;;36728:224;;;:::o;21672:100::-;21726:13;21759:5;21752:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21672:100;:::o;23231:221::-;23307:7;23335:16;23343:7;23335;:16::i;:::-;23327:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23420:15;:24;23436:7;23420:24;;;;;;;;;;;;;;;;;;;;;23413:31;;23231:221;;;:::o;22754:411::-;22835:13;22851:23;22866:7;22851:14;:23::i;:::-;22835:39;;22899:5;22893:11;;:2;:11;;;;22885:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22993:5;22977:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23002:37;23019:5;23026:12;:10;:12::i;:::-;23002:16;:37::i;:::-;22977:62;22955:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23136:21;23145:2;23149:7;23136:8;:21::i;:::-;22824:341;22754:411;;:::o;37368:113::-;37429:7;37456:10;:17;;;;37449:24;;37368:113;:::o;24121:339::-;24316:41;24335:12;:10;:12::i;:::-;24349:7;24316:18;:41::i;:::-;24308:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24424:28;24434:4;24440:2;24444:7;24424:9;:28::i;:::-;24121:339;;;:::o;37036:256::-;37133:7;37169:23;37186:5;37169:16;:23::i;:::-;37161:5;:31;37153:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37258:12;:19;37271:5;37258:19;;;;;;;;;;;;;;;:26;37278:5;37258:26;;;;;;;;;;;;37251:33;;37036:256;;;;:::o;45914:91::-;44116:12;:10;:12::i;:::-;44105:23;;:7;:5;:7::i;:::-;:23;;;44097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45985:12:::1;;;;;;;;;;;45984:13;45969:12;;:28;;;;;;;;;;;;;;;;;;45914:91::o:0;46190:401::-;44116:12;:10;:12::i;:::-;44105:23;;:7;:5;:7::i;:::-;:23;;;44097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46277:11:::1;46291:13;:11;:13::i;:::-;46277:27;;46340:1;46323:14;:18;:57;;;;;46379:1;46362:14;;:18;;;;:::i;:::-;46345:14;:35;46323:57;46315:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;46433:6;46428:95;46449:14;46445:1;:18;46428:95;;;46485:26;46495:3;46509:1;46500:6;:10;;;;:::i;:::-;46485:9;:26::i;:::-;46465:3;;;;;:::i;:::-;;;;46428:95;;;;46568:14;46550;;:33;;;;:::i;:::-;46533:14;:50;;;;46266:325;46190:401:::0;;:::o;46013:169::-;44116:12;:10;:12::i;:::-;44105:23;;:7;:5;:7::i;:::-;:23;;;44097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46072:20:::1;46095:21;46072:44;;46135:12;:10;:12::i;:::-;46127:30;;:47;46158:15;46127:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46061:121;46013:169::o:0;24531:185::-;24669:39;24686:4;24692:2;24696:7;24669:39;;;;;;;;;;;;:16;:39::i;:::-;24531:185;;;:::o;45394:35::-;;;;:::o;37558:233::-;37633:7;37669:30;:28;:30::i;:::-;37661:5;:38;37653:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;37766:10;37777:5;37766:17;;;;;;;;:::i;:::-;;;;;;;;;;37759:24;;37558:233;;;:::o;45693:102::-;44116:12;:10;:12::i;:::-;44105:23;;:7;:5;:7::i;:::-;:23;;;44097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45780:7:::1;45764:13;:23;;;;;;;;;;;;:::i;:::-;;45693:102:::0;:::o;21366:239::-;21438:7;21458:13;21474:7;:16;21482:7;21474:16;;;;;;;;;;;;;;;;;;;;;21458:32;;21526:1;21509:19;;:5;:19;;;;21501:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21592:5;21585:12;;;21366:239;;;:::o;21096:208::-;21168:7;21213:1;21196:19;;:5;:19;;;;21188:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21280:9;:16;21290:5;21280:16;;;;;;;;;;;;;;;;21273:23;;21096:208;;;:::o;44536:94::-;44116:12;:10;:12::i;:::-;44105:23;;:7;:5;:7::i;:::-;:23;;;44097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44601:21:::1;44619:1;44601:9;:21::i;:::-;44536:94::o:0;47087:332::-;47153:13;47179:15;47197:17;47207:6;47197:9;:17::i;:::-;47179:35;;47225:22;47261:10;47250:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47225:47;;47287:6;47283:103;47299:10;47295:1;:14;47283:103;;;47344:30;47364:6;47372:1;47344:19;:30::i;:::-;47330:8;47339:1;47330:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;47311:3;;;;;:::i;:::-;;;;47283:103;;;;47403:8;47396:15;;;;47087:332;;;:::o;43885:87::-;43931:7;43958:6;;;;;;;;;;;43951:13;;43885:87;:::o;21841:104::-;21897:13;21930:7;21923:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21841:104;:::o;23524:295::-;23639:12;:10;:12::i;:::-;23627:24;;:8;:24;;;;23619:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23739:8;23694:18;:32;23713:12;:10;:12::i;:::-;23694:32;;;;;;;;;;;;;;;:42;23727:8;23694:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23792:8;23763:48;;23778:12;:10;:12::i;:::-;23763:48;;;23802:8;23763:48;;;;;;:::i;:::-;;;;;;;;23524:295;;:::o;24787:328::-;24962:41;24981:12;:10;:12::i;:::-;24995:7;24962:18;:41::i;:::-;24954:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25068:39;25082:4;25088:2;25092:7;25101:5;25068:13;:39::i;:::-;24787:328;;;;:::o;45803:103::-;44116:12;:10;:12::i;:::-;44105:23;;:7;:5;:7::i;:::-;:23;;;44097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45887:11:::1;45874:10;:24;;;;45803:103:::0;:::o;22016:334::-;22089:13;22123:16;22131:7;22123;:16::i;:::-;22115:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22204:21;22228:10;:8;:10::i;:::-;22204:34;;22280:1;22262:7;22256:21;:25;:86;;;;;;;;;;;;;;;;;22308:7;22317:18;:7;:16;:18::i;:::-;22291:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22256:86;22249:93;;;22016:334;;;:::o;46599:476::-;46656:11;46670:13;:11;:13::i;:::-;46656:27;;46696:12;;;;;;;;;;;46688:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;46752:2;46745:4;:9;46737:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;46817:4;46810;46801:6;:13;;;;:::i;:::-;:20;46793:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;46907:4;46894:10;;:17;;;;:::i;:::-;46881:9;:30;;46873:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;46957:6;46953:115;46973:4;46969:1;:8;46953:115;;;46991:14;47017:1;47008:6;:10;;;;:::i;:::-;46991:27;;47024:32;47034:10;47046:9;47024;:32::i;:::-;46985:83;46979:3;;;;;:::i;:::-;;;;46953:115;;;;46645:430;46599:476;:::o;45320:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45475:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23890:164::-;23987:4;24011:18;:25;24030:5;24011:25;;;;;;;;;;;;;;;:35;24037:8;24011:35;;;;;;;;;;;;;;;;;;;;;;;;;24004:42;;23890:164;;;;:::o;45436:32::-;;;;;;;;;;;;;:::o;44785:192::-;44116:12;:10;:12::i;:::-;44105:23;;:7;:5;:7::i;:::-;:23;;;44097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44894:1:::1;44874:22;;:8;:22;;;;44866:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44950:19;44960:8;44950:9;:19::i;:::-;44785:192:::0;:::o;20727:305::-;20829:4;20881:25;20866:40;;;:11;:40;;;;:105;;;;20938:33;20923:48;;;:11;:48;;;;20866:105;:158;;;;20988:36;21012:11;20988:23;:36::i;:::-;20866:158;20846:178;;20727:305;;;:::o;26625:127::-;26690:4;26742:1;26714:30;;:7;:16;26722:7;26714:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26707:37;;26625:127;;;:::o;16128:98::-;16181:7;16208:10;16201:17;;16128:98;:::o;30607:174::-;30709:2;30682:15;:24;30698:7;30682:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30765:7;30761:2;30727:46;;30736:23;30751:7;30736:14;:23::i;:::-;30727:46;;;;;;;;;;;;30607:174;;:::o;26919:348::-;27012:4;27037:16;27045:7;27037;:16::i;:::-;27029:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27113:13;27129:23;27144:7;27129:14;:23::i;:::-;27113:39;;27182:5;27171:16;;:7;:16;;;:51;;;;27215:7;27191:31;;:20;27203:7;27191:11;:20::i;:::-;:31;;;27171:51;:87;;;;27226:32;27243:5;27250:7;27226:16;:32::i;:::-;27171:87;27163:96;;;26919:348;;;;:::o;29911:578::-;30070:4;30043:31;;:23;30058:7;30043:14;:23::i;:::-;:31;;;30035:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30153:1;30139:16;;:2;:16;;;;30131:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30209:39;30230:4;30236:2;30240:7;30209:20;:39::i;:::-;30313:29;30330:1;30334:7;30313:8;:29::i;:::-;30374:1;30355:9;:15;30365:4;30355:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30403:1;30386:9;:13;30396:2;30386:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30434:2;30415:7;:16;30423:7;30415:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30473:7;30469:2;30454:27;;30463:4;30454:27;;;;;;;;;;;;29911:578;;;:::o;27609:110::-;27685:26;27695:2;27699:7;27685:26;;;;;;;;;;;;:9;:26::i;:::-;27609:110;;:::o;44985:173::-;45041:16;45060:6;;;;;;;;;;;45041:25;;45086:8;45077:6;;:17;;;;;;;;;;;;;;;;;;45141:8;45110:40;;45131:8;45110:40;;;;;;;;;;;;45030:128;44985:173;:::o;25997:315::-;26154:28;26164:4;26170:2;26174:7;26154:9;:28::i;:::-;26201:48;26224:4;26230:2;26234:7;26243:5;26201:22;:48::i;:::-;26193:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25997:315;;;;:::o;45571:114::-;45631:13;45664;45657:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45571:114;:::o;16664:723::-;16720:13;16950:1;16941:5;:10;16937:53;;;16968:10;;;;;;;;;;;;;;;;;;;;;16937:53;17000:12;17015:5;17000:20;;17031:14;17056:78;17071:1;17063:4;:9;17056:78;;17089:8;;;;;:::i;:::-;;;;17120:2;17112:10;;;;;:::i;:::-;;;17056:78;;;17144:19;17176:6;17166:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17144:39;;17194:154;17210:1;17201:5;:10;17194:154;;17238:1;17228:11;;;;;:::i;:::-;;;17305:2;17297:5;:10;;;;:::i;:::-;17284:2;:24;;;;:::i;:::-;17271:39;;17254:6;17261;17254:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17334:2;17325:11;;;;;:::i;:::-;;;17194:154;;;17372:6;17358:21;;;;;16664:723;;;;:::o;19232:157::-;19317:4;19356:25;19341:40;;;:11;:40;;;;19334:47;;19232:157;;;:::o;38404:589::-;38548:45;38575:4;38581:2;38585:7;38548:26;:45::i;:::-;38626:1;38610:18;;:4;:18;;;38606:187;;;38645:40;38677:7;38645:31;:40::i;:::-;38606:187;;;38715:2;38707:10;;:4;:10;;;38703:90;;38734:47;38767:4;38773:7;38734:32;:47::i;:::-;38703:90;38606:187;38821:1;38807:16;;:2;:16;;;38803:183;;;38840:45;38877:7;38840:36;:45::i;:::-;38803:183;;;38913:4;38907:10;;:2;:10;;;38903:83;;38934:40;38962:2;38966:7;38934:27;:40::i;:::-;38903:83;38803:183;38404:589;;;:::o;27946:321::-;28076:18;28082:2;28086:7;28076:5;:18::i;:::-;28127:54;28158:1;28162:2;28166:7;28175:5;28127:22;:54::i;:::-;28105:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27946:321;;;:::o;31346:799::-;31501:4;31522:15;:2;:13;;;:15::i;:::-;31518:620;;;31574:2;31558:36;;;31595:12;:10;:12::i;:::-;31609:4;31615:7;31624:5;31558:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31554:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31817:1;31800:6;:13;:18;31796:272;;;31843:60;;;;;;;;;;:::i;:::-;;;;;;;;31796:272;32018:6;32012:13;32003:6;31999:2;31995:15;31988:38;31554:529;31691:41;;;31681:51;;;:6;:51;;;;31674:58;;;;;31518:620;32122:4;32115:11;;31346:799;;;;;;;:::o;32717:126::-;;;;:::o;39716:164::-;39820:10;:17;;;;39793:15;:24;39809:7;39793:24;;;;;;;;;;;:44;;;;39848:10;39864:7;39848:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39716:164;:::o;40507:988::-;40773:22;40823:1;40798:22;40815:4;40798:16;:22::i;:::-;:26;;;;:::i;:::-;40773:51;;40835:18;40856:17;:26;40874:7;40856:26;;;;;;;;;;;;40835:47;;41003:14;40989:10;:28;40985:328;;41034:19;41056:12;:18;41069:4;41056:18;;;;;;;;;;;;;;;:34;41075:14;41056:34;;;;;;;;;;;;41034:56;;41140:11;41107:12;:18;41120:4;41107:18;;;;;;;;;;;;;;;:30;41126:10;41107:30;;;;;;;;;;;:44;;;;41257:10;41224:17;:30;41242:11;41224:30;;;;;;;;;;;:43;;;;41019:294;40985:328;41409:17;:26;41427:7;41409:26;;;;;;;;;;;41402:33;;;41453:12;:18;41466:4;41453:18;;;;;;;;;;;;;;;:34;41472:14;41453:34;;;;;;;;;;;41446:41;;;40588:907;;40507:988;;:::o;41790:1079::-;42043:22;42088:1;42068:10;:17;;;;:21;;;;:::i;:::-;42043:46;;42100:18;42121:15;:24;42137:7;42121:24;;;;;;;;;;;;42100:45;;42472:19;42494:10;42505:14;42494:26;;;;;;;;:::i;:::-;;;;;;;;;;42472:48;;42558:11;42533:10;42544;42533:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42669:10;42638:15;:28;42654:11;42638:28;;;;;;;;;;;:41;;;;42810:15;:24;42826:7;42810:24;;;;;;;;;;;42803:31;;;42845:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41861:1008;;;41790:1079;:::o;39294:221::-;39379:14;39396:20;39413:2;39396:16;:20::i;:::-;39379:37;;39454:7;39427:12;:16;39440:2;39427:16;;;;;;;;;;;;;;;:24;39444:6;39427:24;;;;;;;;;;;:34;;;;39501:6;39472:17;:26;39490:7;39472:26;;;;;;;;;;;:35;;;;39368:147;39294:221;;:::o;28603:382::-;28697:1;28683:16;;:2;:16;;;;28675:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28756:16;28764:7;28756;:16::i;:::-;28755:17;28747:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28818:45;28847:1;28851:2;28855:7;28818:20;:45::i;:::-;28893:1;28876:9;:13;28886:2;28876:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28924:2;28905:7;:16;28913:7;28905:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28969:7;28965:2;28944:33;;28961:1;28944:33;;;;;;;;;;;;28603:382;;:::o;8161:387::-;8221:4;8429:12;8496:7;8484:20;8476:28;;8539:1;8532:4;:8;8525:15;;;8161:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:179::-;7227:10;7248:46;7290:3;7282:6;7248:46;:::i;:::-;7326:4;7321:3;7317:14;7303:28;;7158:179;;;;:::o;7343:118::-;7430:24;7448:5;7430:24;:::i;:::-;7425:3;7418:37;7343:118;;:::o;7497:732::-;7616:3;7645:54;7693:5;7645:54;:::i;:::-;7715:86;7794:6;7789:3;7715:86;:::i;:::-;7708:93;;7825:56;7875:5;7825:56;:::i;:::-;7904:7;7935:1;7920:284;7945:6;7942:1;7939:13;7920:284;;;8021:6;8015:13;8048:63;8107:3;8092:13;8048:63;:::i;:::-;8041:70;;8134:60;8187:6;8134:60;:::i;:::-;8124:70;;7980:224;7967:1;7964;7960:9;7955:14;;7920:284;;;7924:14;8220:3;8213:10;;7621:608;;;7497:732;;;;:::o;8235:109::-;8316:21;8331:5;8316:21;:::i;:::-;8311:3;8304:34;8235:109;;:::o;8350:360::-;8436:3;8464:38;8496:5;8464:38;:::i;:::-;8518:70;8581:6;8576:3;8518:70;:::i;:::-;8511:77;;8597:52;8642:6;8637:3;8630:4;8623:5;8619:16;8597:52;:::i;:::-;8674:29;8696:6;8674:29;:::i;:::-;8669:3;8665:39;8658:46;;8440:270;8350:360;;;;:::o;8716:364::-;8804:3;8832:39;8865:5;8832:39;:::i;:::-;8887:71;8951:6;8946:3;8887:71;:::i;:::-;8880:78;;8967:52;9012:6;9007:3;9000:4;8993:5;8989:16;8967:52;:::i;:::-;9044:29;9066:6;9044:29;:::i;:::-;9039:3;9035:39;9028:46;;8808:272;8716:364;;;;:::o;9086:377::-;9192:3;9220:39;9253:5;9220:39;:::i;:::-;9275:89;9357:6;9352:3;9275:89;:::i;:::-;9268:96;;9373:52;9418:6;9413:3;9406:4;9399:5;9395:16;9373:52;:::i;:::-;9450:6;9445:3;9441:16;9434:23;;9196:267;9086:377;;;;:::o;9469:366::-;9611:3;9632:67;9696:2;9691:3;9632:67;:::i;:::-;9625:74;;9708:93;9797:3;9708:93;:::i;:::-;9826:2;9821:3;9817:12;9810:19;;9469:366;;;:::o;9841:::-;9983:3;10004:67;10068:2;10063:3;10004:67;:::i;:::-;9997:74;;10080:93;10169:3;10080:93;:::i;:::-;10198:2;10193:3;10189:12;10182:19;;9841:366;;;:::o;10213:::-;10355:3;10376:67;10440:2;10435:3;10376:67;:::i;:::-;10369:74;;10452:93;10541:3;10452:93;:::i;:::-;10570:2;10565:3;10561:12;10554:19;;10213:366;;;:::o;10585:::-;10727:3;10748:67;10812:2;10807:3;10748:67;:::i;:::-;10741:74;;10824:93;10913:3;10824:93;:::i;:::-;10942:2;10937:3;10933:12;10926:19;;10585:366;;;:::o;10957:::-;11099:3;11120:67;11184:2;11179:3;11120:67;:::i;:::-;11113:74;;11196:93;11285:3;11196:93;:::i;:::-;11314:2;11309:3;11305:12;11298:19;;10957:366;;;:::o;11329:::-;11471:3;11492:67;11556:2;11551:3;11492:67;:::i;:::-;11485:74;;11568:93;11657:3;11568:93;:::i;:::-;11686:2;11681:3;11677:12;11670:19;;11329:366;;;:::o;11701:::-;11843:3;11864:67;11928:2;11923:3;11864:67;:::i;:::-;11857:74;;11940:93;12029:3;11940:93;:::i;:::-;12058:2;12053:3;12049:12;12042:19;;11701:366;;;:::o;12073:::-;12215:3;12236:67;12300:2;12295:3;12236:67;:::i;:::-;12229:74;;12312:93;12401:3;12312:93;:::i;:::-;12430:2;12425:3;12421:12;12414:19;;12073:366;;;:::o;12445:::-;12587:3;12608:67;12672:2;12667:3;12608:67;:::i;:::-;12601:74;;12684:93;12773:3;12684:93;:::i;:::-;12802:2;12797:3;12793:12;12786:19;;12445:366;;;:::o;12817:::-;12959:3;12980:67;13044:2;13039:3;12980:67;:::i;:::-;12973:74;;13056:93;13145:3;13056:93;:::i;:::-;13174:2;13169:3;13165:12;13158:19;;12817:366;;;:::o;13189:::-;13331:3;13352:67;13416:2;13411:3;13352:67;:::i;:::-;13345:74;;13428:93;13517:3;13428:93;:::i;:::-;13546:2;13541:3;13537:12;13530:19;;13189:366;;;:::o;13561:::-;13703:3;13724:67;13788:2;13783:3;13724:67;:::i;:::-;13717:74;;13800:93;13889:3;13800:93;:::i;:::-;13918:2;13913:3;13909:12;13902:19;;13561:366;;;:::o;13933:::-;14075:3;14096:67;14160:2;14155:3;14096:67;:::i;:::-;14089:74;;14172:93;14261:3;14172:93;:::i;:::-;14290:2;14285:3;14281:12;14274:19;;13933:366;;;:::o;14305:::-;14447:3;14468:67;14532:2;14527:3;14468:67;:::i;:::-;14461:74;;14544:93;14633:3;14544:93;:::i;:::-;14662:2;14657:3;14653:12;14646:19;;14305:366;;;:::o;14677:::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14677:366;;;:::o;15049:::-;15191:3;15212:67;15276:2;15271:3;15212:67;:::i;:::-;15205:74;;15288:93;15377:3;15288:93;:::i;:::-;15406:2;15401:3;15397:12;15390:19;;15049:366;;;:::o;15421:::-;15563:3;15584:67;15648:2;15643:3;15584:67;:::i;:::-;15577:74;;15660:93;15749:3;15660:93;:::i;:::-;15778:2;15773:3;15769:12;15762:19;;15421:366;;;:::o;15793:::-;15935:3;15956:67;16020:2;16015:3;15956:67;:::i;:::-;15949:74;;16032:93;16121:3;16032:93;:::i;:::-;16150:2;16145:3;16141:12;16134:19;;15793:366;;;:::o;16165:::-;16307:3;16328:67;16392:2;16387:3;16328:67;:::i;:::-;16321:74;;16404:93;16493:3;16404:93;:::i;:::-;16522:2;16517:3;16513:12;16506:19;;16165:366;;;:::o;16537:::-;16679:3;16700:67;16764:2;16759:3;16700:67;:::i;:::-;16693:74;;16776:93;16865:3;16776:93;:::i;:::-;16894:2;16889:3;16885:12;16878:19;;16537:366;;;:::o;16909:::-;17051:3;17072:67;17136:2;17131:3;17072:67;:::i;:::-;17065:74;;17148:93;17237:3;17148:93;:::i;:::-;17266:2;17261:3;17257:12;17250:19;;16909:366;;;:::o;17281:::-;17423:3;17444:67;17508:2;17503:3;17444:67;:::i;:::-;17437:74;;17520:93;17609:3;17520:93;:::i;:::-;17638:2;17633:3;17629:12;17622:19;;17281:366;;;:::o;17653:::-;17795:3;17816:67;17880:2;17875:3;17816:67;:::i;:::-;17809:74;;17892:93;17981:3;17892:93;:::i;:::-;18010:2;18005:3;18001:12;17994:19;;17653:366;;;:::o;18025:108::-;18102:24;18120:5;18102:24;:::i;:::-;18097:3;18090:37;18025:108;;:::o;18139:118::-;18226:24;18244:5;18226:24;:::i;:::-;18221:3;18214:37;18139:118;;:::o;18263:435::-;18443:3;18465:95;18556:3;18547:6;18465:95;:::i;:::-;18458:102;;18577:95;18668:3;18659:6;18577:95;:::i;:::-;18570:102;;18689:3;18682:10;;18263:435;;;;;:::o;18704:222::-;18797:4;18835:2;18824:9;18820:18;18812:26;;18848:71;18916:1;18905:9;18901:17;18892:6;18848:71;:::i;:::-;18704:222;;;;:::o;18932:640::-;19127:4;19165:3;19154:9;19150:19;19142:27;;19179:71;19247:1;19236:9;19232:17;19223:6;19179:71;:::i;:::-;19260:72;19328:2;19317:9;19313:18;19304:6;19260:72;:::i;:::-;19342;19410:2;19399:9;19395:18;19386:6;19342:72;:::i;:::-;19461:9;19455:4;19451:20;19446:2;19435:9;19431:18;19424:48;19489:76;19560:4;19551:6;19489:76;:::i;:::-;19481:84;;18932:640;;;;;;;:::o;19578:373::-;19721:4;19759:2;19748:9;19744:18;19736:26;;19808:9;19802:4;19798:20;19794:1;19783:9;19779:17;19772:47;19836:108;19939:4;19930:6;19836:108;:::i;:::-;19828:116;;19578:373;;;;:::o;19957:210::-;20044:4;20082:2;20071:9;20067:18;20059:26;;20095:65;20157:1;20146:9;20142:17;20133:6;20095:65;:::i;:::-;19957:210;;;;:::o;20173:313::-;20286:4;20324:2;20313:9;20309:18;20301:26;;20373:9;20367:4;20363:20;20359:1;20348:9;20344:17;20337:47;20401:78;20474:4;20465:6;20401:78;:::i;:::-;20393:86;;20173:313;;;;:::o;20492:419::-;20658:4;20696:2;20685:9;20681:18;20673:26;;20745:9;20739:4;20735:20;20731:1;20720:9;20716:17;20709:47;20773:131;20899:4;20773:131;:::i;:::-;20765:139;;20492:419;;;:::o;20917:::-;21083:4;21121:2;21110:9;21106:18;21098:26;;21170:9;21164:4;21160:20;21156:1;21145:9;21141:17;21134:47;21198:131;21324:4;21198:131;:::i;:::-;21190:139;;20917:419;;;:::o;21342:::-;21508:4;21546:2;21535:9;21531:18;21523:26;;21595:9;21589:4;21585:20;21581:1;21570:9;21566:17;21559:47;21623:131;21749:4;21623:131;:::i;:::-;21615:139;;21342:419;;;:::o;21767:::-;21933:4;21971:2;21960:9;21956:18;21948:26;;22020:9;22014:4;22010:20;22006:1;21995:9;21991:17;21984:47;22048:131;22174:4;22048:131;:::i;:::-;22040:139;;21767:419;;;:::o;22192:::-;22358:4;22396:2;22385:9;22381:18;22373:26;;22445:9;22439:4;22435:20;22431:1;22420:9;22416:17;22409:47;22473:131;22599:4;22473:131;:::i;:::-;22465:139;;22192:419;;;:::o;22617:::-;22783:4;22821:2;22810:9;22806:18;22798:26;;22870:9;22864:4;22860:20;22856:1;22845:9;22841:17;22834:47;22898:131;23024:4;22898:131;:::i;:::-;22890:139;;22617:419;;;:::o;23042:::-;23208:4;23246:2;23235:9;23231:18;23223:26;;23295:9;23289:4;23285:20;23281:1;23270:9;23266:17;23259:47;23323:131;23449:4;23323:131;:::i;:::-;23315:139;;23042:419;;;:::o;23467:::-;23633:4;23671:2;23660:9;23656:18;23648:26;;23720:9;23714:4;23710:20;23706:1;23695:9;23691:17;23684:47;23748:131;23874:4;23748:131;:::i;:::-;23740:139;;23467:419;;;:::o;23892:::-;24058:4;24096:2;24085:9;24081:18;24073:26;;24145:9;24139:4;24135:20;24131:1;24120:9;24116:17;24109:47;24173:131;24299:4;24173:131;:::i;:::-;24165:139;;23892:419;;;:::o;24317:::-;24483:4;24521:2;24510:9;24506:18;24498:26;;24570:9;24564:4;24560:20;24556:1;24545:9;24541:17;24534:47;24598:131;24724:4;24598:131;:::i;:::-;24590:139;;24317:419;;;:::o;24742:::-;24908:4;24946:2;24935:9;24931:18;24923:26;;24995:9;24989:4;24985:20;24981:1;24970:9;24966:17;24959:47;25023:131;25149:4;25023:131;:::i;:::-;25015:139;;24742:419;;;:::o;25167:::-;25333:4;25371:2;25360:9;25356:18;25348:26;;25420:9;25414:4;25410:20;25406:1;25395:9;25391:17;25384:47;25448:131;25574:4;25448:131;:::i;:::-;25440:139;;25167:419;;;:::o;25592:::-;25758:4;25796:2;25785:9;25781:18;25773:26;;25845:9;25839:4;25835:20;25831:1;25820:9;25816:17;25809:47;25873:131;25999:4;25873:131;:::i;:::-;25865:139;;25592:419;;;:::o;26017:::-;26183:4;26221:2;26210:9;26206:18;26198:26;;26270:9;26264:4;26260:20;26256:1;26245:9;26241:17;26234:47;26298:131;26424:4;26298:131;:::i;:::-;26290:139;;26017:419;;;:::o;26442:::-;26608:4;26646:2;26635:9;26631:18;26623:26;;26695:9;26689:4;26685:20;26681:1;26670:9;26666:17;26659:47;26723:131;26849:4;26723:131;:::i;:::-;26715:139;;26442:419;;;:::o;26867:::-;27033:4;27071:2;27060:9;27056:18;27048:26;;27120:9;27114:4;27110:20;27106:1;27095:9;27091:17;27084:47;27148:131;27274:4;27148:131;:::i;:::-;27140:139;;26867:419;;;:::o;27292:::-;27458:4;27496:2;27485:9;27481:18;27473:26;;27545:9;27539:4;27535:20;27531:1;27520:9;27516:17;27509:47;27573:131;27699:4;27573:131;:::i;:::-;27565:139;;27292:419;;;:::o;27717:::-;27883:4;27921:2;27910:9;27906:18;27898:26;;27970:9;27964:4;27960:20;27956:1;27945:9;27941:17;27934:47;27998:131;28124:4;27998:131;:::i;:::-;27990:139;;27717:419;;;:::o;28142:::-;28308:4;28346:2;28335:9;28331:18;28323:26;;28395:9;28389:4;28385:20;28381:1;28370:9;28366:17;28359:47;28423:131;28549:4;28423:131;:::i;:::-;28415:139;;28142:419;;;:::o;28567:::-;28733:4;28771:2;28760:9;28756:18;28748:26;;28820:9;28814:4;28810:20;28806:1;28795:9;28791:17;28784:47;28848:131;28974:4;28848:131;:::i;:::-;28840:139;;28567:419;;;:::o;28992:::-;29158:4;29196:2;29185:9;29181:18;29173:26;;29245:9;29239:4;29235:20;29231:1;29220:9;29216:17;29209:47;29273:131;29399:4;29273:131;:::i;:::-;29265:139;;28992:419;;;:::o;29417:::-;29583:4;29621:2;29610:9;29606:18;29598:26;;29670:9;29664:4;29660:20;29656:1;29645:9;29641:17;29634:47;29698:131;29824:4;29698:131;:::i;:::-;29690:139;;29417:419;;;:::o;29842:::-;30008:4;30046:2;30035:9;30031:18;30023:26;;30095:9;30089:4;30085:20;30081:1;30070:9;30066:17;30059:47;30123:131;30249:4;30123:131;:::i;:::-;30115:139;;29842:419;;;:::o;30267:222::-;30360:4;30398:2;30387:9;30383:18;30375:26;;30411:71;30479:1;30468:9;30464:17;30455:6;30411:71;:::i;:::-;30267:222;;;;:::o;30495:129::-;30529:6;30556:20;;:::i;:::-;30546:30;;30585:33;30613:4;30605:6;30585:33;:::i;:::-;30495:129;;;:::o;30630:75::-;30663:6;30696:2;30690:9;30680:19;;30630:75;:::o;30711:307::-;30772:4;30862:18;30854:6;30851:30;30848:56;;;30884:18;;:::i;:::-;30848:56;30922:29;30944:6;30922:29;:::i;:::-;30914:37;;31006:4;31000;30996:15;30988:23;;30711:307;;;:::o;31024:308::-;31086:4;31176:18;31168:6;31165:30;31162:56;;;31198:18;;:::i;:::-;31162:56;31236:29;31258:6;31236:29;:::i;:::-;31228:37;;31320:4;31314;31310:15;31302:23;;31024:308;;;:::o;31338:132::-;31405:4;31428:3;31420:11;;31458:4;31453:3;31449:14;31441:22;;31338:132;;;:::o;31476:114::-;31543:6;31577:5;31571:12;31561:22;;31476:114;;;:::o;31596:98::-;31647:6;31681:5;31675:12;31665:22;;31596:98;;;:::o;31700:99::-;31752:6;31786:5;31780:12;31770:22;;31700:99;;;:::o;31805:113::-;31875:4;31907;31902:3;31898:14;31890:22;;31805:113;;;:::o;31924:184::-;32023:11;32057:6;32052:3;32045:19;32097:4;32092:3;32088:14;32073:29;;31924:184;;;;:::o;32114:168::-;32197:11;32231:6;32226:3;32219:19;32271:4;32266:3;32262:14;32247:29;;32114:168;;;;:::o;32288:169::-;32372:11;32406:6;32401:3;32394:19;32446:4;32441:3;32437:14;32422:29;;32288:169;;;;:::o;32463:148::-;32565:11;32602:3;32587:18;;32463:148;;;;:::o;32617:305::-;32657:3;32676:20;32694:1;32676:20;:::i;:::-;32671:25;;32710:20;32728:1;32710:20;:::i;:::-;32705:25;;32864:1;32796:66;32792:74;32789:1;32786:81;32783:107;;;32870:18;;:::i;:::-;32783:107;32914:1;32911;32907:9;32900:16;;32617:305;;;;:::o;32928:185::-;32968:1;32985:20;33003:1;32985:20;:::i;:::-;32980:25;;33019:20;33037:1;33019:20;:::i;:::-;33014:25;;33058:1;33048:35;;33063:18;;:::i;:::-;33048:35;33105:1;33102;33098:9;33093:14;;32928:185;;;;:::o;33119:348::-;33159:7;33182:20;33200:1;33182:20;:::i;:::-;33177:25;;33216:20;33234:1;33216:20;:::i;:::-;33211:25;;33404:1;33336:66;33332:74;33329:1;33326:81;33321:1;33314:9;33307:17;33303:105;33300:131;;;33411:18;;:::i;:::-;33300:131;33459:1;33456;33452:9;33441:20;;33119:348;;;;:::o;33473:191::-;33513:4;33533:20;33551:1;33533:20;:::i;:::-;33528:25;;33567:20;33585:1;33567:20;:::i;:::-;33562:25;;33606:1;33603;33600:8;33597:34;;;33611:18;;:::i;:::-;33597:34;33656:1;33653;33649:9;33641:17;;33473:191;;;;:::o;33670:96::-;33707:7;33736:24;33754:5;33736:24;:::i;:::-;33725:35;;33670:96;;;:::o;33772:90::-;33806:7;33849:5;33842:13;33835:21;33824:32;;33772:90;;;:::o;33868:149::-;33904:7;33944:66;33937:5;33933:78;33922:89;;33868:149;;;:::o;34023:126::-;34060:7;34100:42;34093:5;34089:54;34078:65;;34023:126;;;:::o;34155:77::-;34192:7;34221:5;34210:16;;34155:77;;;:::o;34238:154::-;34322:6;34317:3;34312;34299:30;34384:1;34375:6;34370:3;34366:16;34359:27;34238:154;;;:::o;34398:307::-;34466:1;34476:113;34490:6;34487:1;34484:13;34476:113;;;34575:1;34570:3;34566:11;34560:18;34556:1;34551:3;34547:11;34540:39;34512:2;34509:1;34505:10;34500:15;;34476:113;;;34607:6;34604:1;34601:13;34598:101;;;34687:1;34678:6;34673:3;34669:16;34662:27;34598:101;34447:258;34398:307;;;:::o;34711:320::-;34755:6;34792:1;34786:4;34782:12;34772:22;;34839:1;34833:4;34829:12;34860:18;34850:81;;34916:4;34908:6;34904:17;34894:27;;34850:81;34978:2;34970:6;34967:14;34947:18;34944:38;34941:84;;;34997:18;;:::i;:::-;34941:84;34762:269;34711:320;;;:::o;35037:281::-;35120:27;35142:4;35120:27;:::i;:::-;35112:6;35108:40;35250:6;35238:10;35235:22;35214:18;35202:10;35199:34;35196:62;35193:88;;;35261:18;;:::i;:::-;35193:88;35301:10;35297:2;35290:22;35080:238;35037:281;;:::o;35324:233::-;35363:3;35386:24;35404:5;35386:24;:::i;:::-;35377:33;;35432:66;35425:5;35422:77;35419:103;;;35502:18;;:::i;:::-;35419:103;35549:1;35542:5;35538:13;35531:20;;35324:233;;;:::o;35563:176::-;35595:1;35612:20;35630:1;35612:20;:::i;:::-;35607:25;;35646:20;35664:1;35646:20;:::i;:::-;35641:25;;35685:1;35675:35;;35690:18;;:::i;:::-;35675:35;35731:1;35728;35724:9;35719:14;;35563:176;;;;:::o;35745:180::-;35793:77;35790:1;35783:88;35890:4;35887:1;35880:15;35914:4;35911:1;35904:15;35931:180;35979:77;35976:1;35969:88;36076:4;36073:1;36066:15;36100:4;36097:1;36090:15;36117:180;36165:77;36162:1;36155:88;36262:4;36259:1;36252:15;36286:4;36283:1;36276:15;36303:180;36351:77;36348:1;36341:88;36448:4;36445:1;36438:15;36472:4;36469:1;36462:15;36489:180;36537:77;36534:1;36527:88;36634:4;36631:1;36624:15;36658:4;36655:1;36648:15;36675:180;36723:77;36720:1;36713:88;36820:4;36817:1;36810:15;36844:4;36841:1;36834:15;36861:117;36970:1;36967;36960:12;36984:117;37093:1;37090;37083:12;37107:117;37216:1;37213;37206:12;37230:117;37339:1;37336;37329:12;37353:102;37394:6;37445:2;37441:7;37436:2;37429:5;37425:14;37421:28;37411:38;;37353:102;;;:::o;37461:230::-;37601:34;37597:1;37589:6;37585:14;37578:58;37670:13;37665:2;37657:6;37653:15;37646:38;37461:230;:::o;37697:237::-;37837:34;37833:1;37825:6;37821:14;37814:58;37906:20;37901:2;37893:6;37889:15;37882:45;37697:237;:::o;37940:178::-;38080:30;38076:1;38068:6;38064:14;38057:54;37940:178;:::o;38124:225::-;38264:34;38260:1;38252:6;38248:14;38241:58;38333:8;38328:2;38320:6;38316:15;38309:33;38124:225;:::o;38355:178::-;38495:30;38491:1;38483:6;38479:14;38472:54;38355:178;:::o;38539:223::-;38679:34;38675:1;38667:6;38663:14;38656:58;38748:6;38743:2;38735:6;38731:15;38724:31;38539:223;:::o;38768:175::-;38908:27;38904:1;38896:6;38892:14;38885:51;38768:175;:::o;38949:168::-;39089:20;39085:1;39077:6;39073:14;39066:44;38949:168;:::o;39123:181::-;39263:33;39259:1;39251:6;39247:14;39240:57;39123:181;:::o;39310:231::-;39450:34;39446:1;39438:6;39434:14;39427:58;39519:14;39514:2;39506:6;39502:15;39495:39;39310:231;:::o;39547:243::-;39687:34;39683:1;39675:6;39671:14;39664:58;39756:26;39751:2;39743:6;39739:15;39732:51;39547:243;:::o;39796:229::-;39936:34;39932:1;39924:6;39920:14;39913:58;40005:12;40000:2;39992:6;39988:15;39981:37;39796:229;:::o;40031:228::-;40171:34;40167:1;40159:6;40155:14;40148:58;40240:11;40235:2;40227:6;40223:15;40216:36;40031:228;:::o;40265:182::-;40405:34;40401:1;40393:6;40389:14;40382:58;40265:182;:::o;40453:231::-;40593:34;40589:1;40581:6;40577:14;40570:58;40662:14;40657:2;40649:6;40645:15;40638:39;40453:231;:::o;40690:182::-;40830:34;40826:1;40818:6;40814:14;40807:58;40690:182;:::o;40878:228::-;41018:34;41014:1;41006:6;41002:14;40995:58;41087:11;41082:2;41074:6;41070:15;41063:36;40878:228;:::o;41112:::-;41252:34;41248:1;41240:6;41236:14;41229:58;41321:11;41316:2;41308:6;41304:15;41297:36;41112:228;:::o;41346:234::-;41486:34;41482:1;41474:6;41470:14;41463:58;41555:17;41550:2;41542:6;41538:15;41531:42;41346:234;:::o;41586:220::-;41726:34;41722:1;41714:6;41710:14;41703:58;41795:3;41790:2;41782:6;41778:15;41771:28;41586:220;:::o;41812:181::-;41952:33;41948:1;41940:6;41936:14;41929:57;41812:181;:::o;41999:236::-;42139:34;42135:1;42127:6;42123:14;42116:58;42208:19;42203:2;42195:6;42191:15;42184:44;41999:236;:::o;42241:231::-;42381:34;42377:1;42369:6;42365:14;42358:58;42450:14;42445:2;42437:6;42433:15;42426:39;42241:231;:::o;42478:122::-;42551:24;42569:5;42551:24;:::i;:::-;42544:5;42541:35;42531:63;;42590:1;42587;42580:12;42531:63;42478:122;:::o;42606:116::-;42676:21;42691:5;42676:21;:::i;:::-;42669:5;42666:32;42656:60;;42712:1;42709;42702:12;42656:60;42606:116;:::o;42728:120::-;42800:23;42817:5;42800:23;:::i;:::-;42793:5;42790:34;42780:62;;42838:1;42835;42828:12;42780:62;42728:120;:::o;42854:122::-;42927:24;42945:5;42927:24;:::i;:::-;42920:5;42917:35;42907:63;;42966:1;42963;42956:12;42907:63;42854:122;:::o
Swarm Source
ipfs://60d5704d15b2a6017c418d4961658cc5c9c71b6865e21b3881c9bfc62c15495c
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.