Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
48 ZMM
Holders
9
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ZMMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ZakMiniMonster
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-17 */ /** *Submitted for verification at Etherscan.io on 2021-10-31 */ // SPDX-License-Identifier: MIT AND GPL-3.0 // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/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: @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: @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: @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: @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: @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: @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/ZakMiniMonster.sol pragma solidity >=0.7.0 <0.9.0; contract ZakMiniMonster is ERC721Enumerable, Ownable { using Strings for uint256; string private baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public preSaleCost = 0.222 ether; uint256 public cost = 0.222 ether; uint256 public maxSupply = 111; uint256 public preSaleMaxSupply = 111; uint256 public maxMintAmountPresale = 111; uint256 public maxMintAmount = 111; uint256 public nftPerAddressLimitPresale = 111; uint256 public nftPerAddressLimit = 111; uint256 public preSaleDate = 1647554200; uint256 public preSaleEndDate = 1647554300; uint256 public publicSaleDate = 1647554400; bool public paused = false; bool public revealed = false; mapping(address => bool) whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor(string memory _name, string memory _symbol, string memory _initNotRevealedUri) ERC721(_name, _symbol) { setNotRevealedURI(_initNotRevealedUri); } //MODIFIERS modifier notPaused { require(!paused, "the contract is paused"); _; } modifier saleStarted { require(block.timestamp >= preSaleDate, "Sale has not started yet"); _; } modifier minimumMintAmount(uint256 _mintAmount) { require(_mintAmount > 0, "need to mint at least 1 NFT"); _; } // INTERNAL function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function presaleValidations(uint256 _ownerMintedCount, uint256 _mintAmount, uint256 _supply) internal { uint256 actualCost; block.timestamp < preSaleEndDate ? actualCost = preSaleCost : actualCost = cost; require(isWhitelisted(msg.sender), "user is not whitelisted"); require(_ownerMintedCount + _mintAmount <= nftPerAddressLimitPresale, "max NFT per address exceeded for presale"); require(msg.value >= actualCost * _mintAmount, "insufficient funds"); require(_mintAmount <= maxMintAmountPresale,"max mint amount per transaction exceeded"); require(_supply + _mintAmount <= preSaleMaxSupply,"max NFT presale limit exceeded"); } function publicsaleValidations(uint256 _ownerMintedCount, uint256 _mintAmount) internal { require(_ownerMintedCount + _mintAmount <= nftPerAddressLimit,"max NFT per address exceeded"); require(msg.value >= cost * _mintAmount, "insufficient funds"); require(_mintAmount <= maxMintAmount,"max mint amount per transaction exceeded"); } //MINT function mint(uint256 _mintAmount) public payable notPaused saleStarted minimumMintAmount(_mintAmount) { uint256 supply = totalSupply(); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; //Do some validations depending on which step of the sale we are in block.timestamp < publicSaleDate ? presaleValidations(ownerMintedCount, _mintAmount, supply) : publicsaleValidations(ownerMintedCount, _mintAmount); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function gift(uint256 _mintAmount, address destination) public onlyOwner { require(_mintAmount > 0, "need to mint at least 1 NFT"); uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[destination]++; _safeMint(destination, supply + i); } } //PUBLIC VIEWS function isWhitelisted(address _user) public view returns (bool) { return whitelistedAddresses[_user]; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if (!revealed) { return notRevealedUri; } else { string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI,tokenId.toString(), baseExtension)) : ""; } } function getCurrentCost() public view returns (uint256) { if (block.timestamp < preSaleEndDate) { return preSaleCost; } else { return cost; } } //ONLY OWNER VIEWS function getBaseURI() public view onlyOwner returns (string memory) { return baseURI; } function getContractBalance() public view onlyOwner returns (uint256) { return address(this).balance; } //ONLY OWNER SETTERS function reveal() public onlyOwner { revealed = true; } function pause(bool _state) public onlyOwner { paused = _state; } function setNftPerAddressLimitPreSale(uint256 _limit) public onlyOwner { nftPerAddressLimitPresale = _limit; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setPresaleCost(uint256 _newCost) public onlyOwner { preSaleCost = _newCost; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmountPreSale(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmountPresale = _newmaxMintAmount; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setPresaleMaxSupply(uint256 _newPresaleMaxSupply) public onlyOwner { preSaleMaxSupply = _newPresaleMaxSupply; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setPreSaleDate(uint256 _preSaleDate) public onlyOwner { preSaleDate = _preSaleDate; } function setPreSaleEndDate(uint256 _preSaleEndDate) public onlyOwner { preSaleEndDate = _preSaleEndDate; } function setPublicSaleDate(uint256 _publicSaleDate) public onlyOwner { publicSaleDate = _publicSaleDate; } function whitelistUsers(address[] memory addresses) public onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { whitelistedAddresses[addresses[i]] = true; } } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleDate","type":"uint256"}],"name":"setPreSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleEndDate","type":"uint256"}],"name":"setPreSaleEndDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPresaleMaxSupply","type":"uint256"}],"name":"setPresaleMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleDate","type":"uint256"}],"name":"setPublicSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000519291906200031c565b50670314b3d2e4230000600e55670314b3d2e4230000600f55606f601055606f601155606f601255606f601355606f601455606f601555636233ae98601655636233aefc601755636233af606018556000601960006101000a81548160ff0219169083151502179055506000601960016101000a81548160ff021916908315150217905550348015620000e357600080fd5b50604051620063fd380380620063fd83398181016040528101906200010991906200044a565b82828160009080519060200190620001239291906200031c565b5080600190805190602001906200013c9291906200031c565b5050506200015f620001536200017960201b60201c565b6200018160201b60201c565b62000170816200024760201b60201c565b5050506200070a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002576200017960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200027d620002f260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cd906200052a565b60405180910390fd5b80600d9080519060200190620002ee9291906200031c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200032a90620005f2565b90600052602060002090601f0160209004810192826200034e57600085556200039a565b82601f106200036957805160ff19168380011785556200039a565b828001600101855582156200039a579182015b82811115620003995782518255916020019190600101906200037c565b5b509050620003a99190620003ad565b5090565b5b80821115620003c8576000816000905550600101620003ae565b5090565b6000620003e3620003dd8462000575565b6200054c565b905082815260208101848484011115620004025762000401620006c1565b5b6200040f848285620005bc565b509392505050565b600082601f8301126200042f576200042e620006bc565b5b815162000441848260208601620003cc565b91505092915050565b600080600060608486031215620004665762000465620006cb565b5b600084015167ffffffffffffffff811115620004875762000486620006c6565b5b620004958682870162000417565b935050602084015167ffffffffffffffff811115620004b957620004b8620006c6565b5b620004c78682870162000417565b925050604084015167ffffffffffffffff811115620004eb57620004ea620006c6565b5b620004f98682870162000417565b9150509250925092565b600062000512602083620005ab565b91506200051f82620006e1565b602082019050919050565b60006020820190508181036000830152620005458162000503565b9050919050565b6000620005586200056b565b905062000566828262000628565b919050565b6000604051905090565b600067ffffffffffffffff8211156200059357620005926200068d565b5b6200059e82620006d0565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005dc578082015181840152602081019050620005bf565b83811115620005ec576000848401525b50505050565b600060028204905060018216806200060b57607f821691505b602082108114156200062257620006216200065e565b5b50919050565b6200063382620006d0565b810181811067ffffffffffffffff821117156200065557620006546200068d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615ce3806200071a6000396000f3fe6080604052600436106103975760003560e01c80636f9fb98a116101dc578063a22cb46511610102578063d0eb26b0116100a0578063eced38731161006f578063eced387314610d4a578063edec5f2714610d75578063f2c4ce1e14610d9e578063f2fde38b14610dc757610397565b8063d0eb26b014610c90578063d5abeb0114610cb9578063da3ef23f14610ce4578063e985e9c514610d0d57610397565b8063ba7d2c76116100dc578063ba7d2c7614610bd2578063c668286214610bfd578063c87b56dd14610c28578063cc9ff9c614610c6557610397565b8063a22cb46514610b69578063a475b5dd14610b92578063b88d4fde14610ba957610397565b80637f00c7a61161017a5780638fdcf942116101495780638fdcf94214610ace57806395d89b4114610af7578063a0712d6814610b22578063a18116f114610b3e57610397565b80637f00c7a614610a26578063831e60de14610a4f57806383a076be14610a7a5780638da5cb5b14610aa357610397565b8063715018a6116101b6578063715018a614610990578063743c7f6b146109a75780637967a50a146109d05780637effc032146109fb57610397565b80636f9fb98a146108fd57806370a0823114610928578063714c53981461096557610397565b80632e09282e116102c157806344a0d68a1161025f5780635c975abb1161022e5780635c975abb146108435780636352211e1461086e578063669736c0146108ab5780636f8b44b0146108d457610397565b806344a0d68a146107895780634f6ccce7146107b257806351830227146107ef57806355f804b31461081a57610397565b80633ccfd60b1161029b5780633ccfd60b146106f057806342842e0e146106fa57806342f0ca0d14610723578063438b63001461074c57610397565b80632e09282e1461064b5780632f745c59146106765780633af32abf146106b357610397565b80630a50716b1161033957806318cae2691161030857806318cae2691461058f5780631985cc65146105cc578063239c70ae146105f757806323b872dd1461062257610397565b80630a50716b146104e75780630e54a8831461051057806313faede61461053957806318160ddd1461056457610397565b8063081812fc11610375578063081812fc1461042d578063081c8c441461046a578063095ea7b3146104955780630a403f04146104be57610397565b806301ffc9a71461039c57806302329a29146103d957806306fdde0314610402575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be91906144b5565b610df0565b6040516103d09190614c5f565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190614488565b610e6a565b005b34801561040e57600080fd5b50610417610f03565b6040516104249190614c7a565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190614558565b610f95565b6040516104619190614bd6565b60405180910390f35b34801561047657600080fd5b5061047f61101a565b60405161048c9190614c7a565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b791906143ff565b6110a8565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190614558565b6111c0565b005b3480156104f357600080fd5b5061050e60048036038101906105099190614558565b611246565b005b34801561051c57600080fd5b5061053760048036038101906105329190614558565b6112cc565b005b34801561054557600080fd5b5061054e611352565b60405161055b919061501c565b60405180910390f35b34801561057057600080fd5b50610579611358565b604051610586919061501c565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b1919061427c565b611365565b6040516105c3919061501c565b60405180910390f35b3480156105d857600080fd5b506105e161137d565b6040516105ee919061501c565b60405180910390f35b34801561060357600080fd5b5061060c611383565b604051610619919061501c565b60405180910390f35b34801561062e57600080fd5b50610649600480360381019061064491906142e9565b611389565b005b34801561065757600080fd5b506106606113e9565b60405161066d919061501c565b60405180910390f35b34801561068257600080fd5b5061069d600480360381019061069891906143ff565b6113ef565b6040516106aa919061501c565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d5919061427c565b611494565b6040516106e79190614c5f565b60405180910390f35b6106f86114ea565b005b34801561070657600080fd5b50610721600480360381019061071c91906142e9565b6115df565b005b34801561072f57600080fd5b5061074a60048036038101906107459190614558565b6115ff565b005b34801561075857600080fd5b50610773600480360381019061076e919061427c565b611685565b6040516107809190614c3d565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190614558565b611733565b005b3480156107be57600080fd5b506107d960048036038101906107d49190614558565b6117b9565b6040516107e6919061501c565b60405180910390f35b3480156107fb57600080fd5b5061080461182a565b6040516108119190614c5f565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061450f565b61183d565b005b34801561084f57600080fd5b506108586118d3565b6040516108659190614c5f565b60405180910390f35b34801561087a57600080fd5b5061089560048036038101906108909190614558565b6118e6565b6040516108a29190614bd6565b60405180910390f35b3480156108b757600080fd5b506108d260048036038101906108cd9190614558565b611998565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190614558565b611a1e565b005b34801561090957600080fd5b50610912611aa4565b60405161091f919061501c565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a919061427c565b611b28565b60405161095c919061501c565b60405180910390f35b34801561097157600080fd5b5061097a611be0565b6040516109879190614c7a565b60405180910390f35b34801561099c57600080fd5b506109a5611cee565b005b3480156109b357600080fd5b506109ce60048036038101906109c99190614558565b611d76565b005b3480156109dc57600080fd5b506109e5611dfc565b6040516109f2919061501c565b60405180910390f35b348015610a0757600080fd5b50610a10611e02565b604051610a1d919061501c565b60405180910390f35b348015610a3257600080fd5b50610a4d6004803603810190610a489190614558565b611e08565b005b348015610a5b57600080fd5b50610a64611e8e565b604051610a71919061501c565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c9190614585565b611ead565b005b348015610aaf57600080fd5b50610ab8612059565b604051610ac59190614bd6565b60405180910390f35b348015610ada57600080fd5b50610af56004803603810190610af09190614558565b612083565b005b348015610b0357600080fd5b50610b0c612109565b604051610b199190614c7a565b60405180910390f35b610b3c6004803603810190610b379190614558565b61219b565b005b348015610b4a57600080fd5b50610b536123ca565b604051610b60919061501c565b60405180910390f35b348015610b7557600080fd5b50610b906004803603810190610b8b91906143bf565b6123d0565b005b348015610b9e57600080fd5b50610ba7612551565b005b348015610bb557600080fd5b50610bd06004803603810190610bcb919061433c565b6125ea565b005b348015610bde57600080fd5b50610be761264c565b604051610bf4919061501c565b60405180910390f35b348015610c0957600080fd5b50610c12612652565b604051610c1f9190614c7a565b60405180910390f35b348015610c3457600080fd5b50610c4f6004803603810190610c4a9190614558565b6126e0565b604051610c5c9190614c7a565b60405180910390f35b348015610c7157600080fd5b50610c7a612831565b604051610c87919061501c565b60405180910390f35b348015610c9c57600080fd5b50610cb76004803603810190610cb29190614558565b612837565b005b348015610cc557600080fd5b50610cce6128bd565b604051610cdb919061501c565b60405180910390f35b348015610cf057600080fd5b50610d0b6004803603810190610d06919061450f565b6128c3565b005b348015610d1957600080fd5b50610d346004803603810190610d2f91906142a9565b612959565b604051610d419190614c5f565b60405180910390f35b348015610d5657600080fd5b50610d5f6129ed565b604051610d6c919061501c565b60405180910390f35b348015610d8157600080fd5b50610d9c6004803603810190610d97919061443f565b6129f3565b005b348015610daa57600080fd5b50610dc56004803603810190610dc0919061450f565b612b04565b005b348015610dd357600080fd5b50610dee6004803603810190610de9919061427c565b612b9a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e635750610e6282612c92565b5b9050919050565b610e72612d74565b73ffffffffffffffffffffffffffffffffffffffff16610e90612059565b73ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90614e9c565b60405180910390fd5b80601960006101000a81548160ff02191690831515021790555050565b606060008054610f1290615351565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3e90615351565b8015610f8b5780601f10610f6057610100808354040283529160200191610f8b565b820191906000526020600020905b815481529060010190602001808311610f6e57829003601f168201915b5050505050905090565b6000610fa082612d7c565b610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690614e7c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d805461102790615351565b80601f016020809104026020016040519081016040528092919081815260200182805461105390615351565b80156110a05780601f10611075576101008083540402835291602001916110a0565b820191906000526020600020905b81548152906001019060200180831161108357829003601f168201915b505050505081565b60006110b3826118e6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90614f3c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611143612d74565b73ffffffffffffffffffffffffffffffffffffffff16148061117257506111718161116c612d74565b612959565b5b6111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890614ddc565b60405180910390fd5b6111bb8383612de8565b505050565b6111c8612d74565b73ffffffffffffffffffffffffffffffffffffffff166111e6612059565b73ffffffffffffffffffffffffffffffffffffffff161461123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390614e9c565b60405180910390fd5b8060118190555050565b61124e612d74565b73ffffffffffffffffffffffffffffffffffffffff1661126c612059565b73ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990614e9c565b60405180910390fd5b8060148190555050565b6112d4612d74565b73ffffffffffffffffffffffffffffffffffffffff166112f2612059565b73ffffffffffffffffffffffffffffffffffffffff1614611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90614e9c565b60405180910390fd5b8060188190555050565b600f5481565b6000600880549050905090565b601b6020528060005260406000206000915090505481565b60165481565b60135481565b61139a611394612d74565b82612ea1565b6113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d090614f9c565b60405180910390fd5b6113e4838383612f7f565b505050565b60145481565b60006113fa83611b28565b821061143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290614cbc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114f2612d74565b73ffffffffffffffffffffffffffffffffffffffff16611510612059565b73ffffffffffffffffffffffffffffffffffffffff1614611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155d90614e9c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161158c90614bc1565b60006040518083038185875af1925050503d80600081146115c9576040519150601f19603f3d011682016040523d82523d6000602084013e6115ce565b606091505b50509050806115dc57600080fd5b50565b6115fa838383604051806020016040528060008152506125ea565b505050565b611607612d74565b73ffffffffffffffffffffffffffffffffffffffff16611625612059565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290614e9c565b60405180910390fd5b8060178190555050565b6060600061169283611b28565b905060008167ffffffffffffffff8111156116b0576116af615519565b5b6040519080825280602002602001820160405280156116de5781602001602082028036833780820191505090505b50905060005b82811015611728576116f685826113ef565b828281518110611709576117086154ea565b5b6020026020010181815250508080611720906153b4565b9150506116e4565b508092505050919050565b61173b612d74565b73ffffffffffffffffffffffffffffffffffffffff16611759612059565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690614e9c565b60405180910390fd5b80600f8190555050565b60006117c3611358565b8210611804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fb90614fbc565b60405180910390fd5b60088281548110611818576118176154ea565b5b90600052602060002001549050919050565b601960019054906101000a900460ff1681565b611845612d74565b73ffffffffffffffffffffffffffffffffffffffff16611863612059565b73ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614e9c565b60405180910390fd5b80600b90805190602001906118cf929190613ff2565b5050565b601960009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690614e1c565b60405180910390fd5b80915050919050565b6119a0612d74565b73ffffffffffffffffffffffffffffffffffffffff166119be612059565b73ffffffffffffffffffffffffffffffffffffffff1614611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b90614e9c565b60405180910390fd5b8060128190555050565b611a26612d74565b73ffffffffffffffffffffffffffffffffffffffff16611a44612059565b73ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190614e9c565b60405180910390fd5b8060108190555050565b6000611aae612d74565b73ffffffffffffffffffffffffffffffffffffffff16611acc612059565b73ffffffffffffffffffffffffffffffffffffffff1614611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990614e9c565b60405180910390fd5b47905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090614dfc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060611bea612d74565b73ffffffffffffffffffffffffffffffffffffffff16611c08612059565b73ffffffffffffffffffffffffffffffffffffffff1614611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5590614e9c565b60405180910390fd5b600b8054611c6b90615351565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9790615351565b8015611ce45780601f10611cb957610100808354040283529160200191611ce4565b820191906000526020600020905b815481529060010190602001808311611cc757829003601f168201915b5050505050905090565b611cf6612d74565b73ffffffffffffffffffffffffffffffffffffffff16611d14612059565b73ffffffffffffffffffffffffffffffffffffffff1614611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6190614e9c565b60405180910390fd5b611d7460006131db565b565b611d7e612d74565b73ffffffffffffffffffffffffffffffffffffffff16611d9c612059565b73ffffffffffffffffffffffffffffffffffffffff1614611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990614e9c565b60405180910390fd5b8060168190555050565b60175481565b60125481565b611e10612d74565b73ffffffffffffffffffffffffffffffffffffffff16611e2e612059565b73ffffffffffffffffffffffffffffffffffffffff1614611e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7b90614e9c565b60405180910390fd5b8060138190555050565b6000601754421015611ea457600e549050611eaa565b600f5490505b90565b611eb5612d74565b73ffffffffffffffffffffffffffffffffffffffff16611ed3612059565b73ffffffffffffffffffffffffffffffffffffffff1614611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090614e9c565b60405180910390fd5b60008211611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6390614ffc565b60405180910390fd5b6000611f76611358565b90506010548382611f879190615186565b1115611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90614e3c565b60405180910390fd5b6000600190505b83811161205357601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612026906153b4565b919050555061204083828461203b9190615186565b6132a1565b808061204b906153b4565b915050611fcf565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61208b612d74565b73ffffffffffffffffffffffffffffffffffffffff166120a9612059565b73ffffffffffffffffffffffffffffffffffffffff16146120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f690614e9c565b60405180910390fd5b80600e8190555050565b60606001805461211890615351565b80601f016020809104026020016040519081016040528092919081815260200182805461214490615351565b80156121915780601f1061216657610100808354040283529160200191612191565b820191906000526020600020905b81548152906001019060200180831161217457829003601f168201915b5050505050905090565b601960009054906101000a900460ff16156121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614ebc565b60405180910390fd5b601654421015612230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222790614c9c565b60405180910390fd5b8060008111612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b90614ffc565b60405180910390fd5b600061227e611358565b90506000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060185442106122dc576122d781856132bf565b6122e8565b6122e78185846133a8565b5b60105484836122f79190615186565b1115612338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232f90614e3c565b60405180910390fd5b6000600190505b8481116123c357601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612396906153b4565b91905055506123b03382856123ab9190615186565b6132a1565b80806123bb906153b4565b91505061233f565b5050505050565b60115481565b6123d8612d74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243d90614d7c565b60405180910390fd5b8060056000612453612d74565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612500612d74565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125459190614c5f565b60405180910390a35050565b612559612d74565b73ffffffffffffffffffffffffffffffffffffffff16612577612059565b73ffffffffffffffffffffffffffffffffffffffff16146125cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c490614e9c565b60405180910390fd5b6001601960016101000a81548160ff021916908315150217905550565b6125fb6125f5612d74565b83612ea1565b61263a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263190614f9c565b60405180910390fd5b61264684848484613547565b50505050565b60155481565b600c805461265f90615351565b80601f016020809104026020016040519081016040528092919081815260200182805461268b90615351565b80156126d85780601f106126ad576101008083540402835291602001916126d8565b820191906000526020600020905b8154815290600101906020018083116126bb57829003601f168201915b505050505081565b60606126eb82612d7c565b61272a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272190614f1c565b60405180910390fd5b601960019054906101000a900460ff166127d057600d805461274b90615351565b80601f016020809104026020016040519081016040528092919081815260200182805461277790615351565b80156127c45780601f10612799576101008083540402835291602001916127c4565b820191906000526020600020905b8154815290600101906020018083116127a757829003601f168201915b5050505050905061282c565b60006127da6135a3565b905060008151116127fa5760405180602001604052806000815250612828565b8061280484613635565b600c60405160200161281893929190614b90565b6040516020818303038152906040525b9150505b919050565b600e5481565b61283f612d74565b73ffffffffffffffffffffffffffffffffffffffff1661285d612059565b73ffffffffffffffffffffffffffffffffffffffff16146128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa90614e9c565b60405180910390fd5b8060158190555050565b60105481565b6128cb612d74565b73ffffffffffffffffffffffffffffffffffffffff166128e9612059565b73ffffffffffffffffffffffffffffffffffffffff161461293f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293690614e9c565b60405180910390fd5b80600c9080519060200190612955929190613ff2565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60185481565b6129fb612d74565b73ffffffffffffffffffffffffffffffffffffffff16612a19612059565b73ffffffffffffffffffffffffffffffffffffffff1614612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690614e9c565b60405180910390fd5b60005b8151811015612b00576001601a6000848481518110612a9457612a936154ea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612af8906153b4565b915050612a72565b5050565b612b0c612d74565b73ffffffffffffffffffffffffffffffffffffffff16612b2a612059565b73ffffffffffffffffffffffffffffffffffffffff1614612b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7790614e9c565b60405180910390fd5b80600d9080519060200190612b96929190613ff2565b5050565b612ba2612d74565b73ffffffffffffffffffffffffffffffffffffffff16612bc0612059565b73ffffffffffffffffffffffffffffffffffffffff1614612c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0d90614e9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7d90614cfc565b60405180910390fd5b612c8f816131db565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d5d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d6d5750612d6c82613796565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e5b836118e6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612eac82612d7c565b612eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee290614dbc565b60405180910390fd5b6000612ef6836118e6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f6557508373ffffffffffffffffffffffffffffffffffffffff16612f4d84610f95565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f765750612f758185612959565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f9f826118e6565b73ffffffffffffffffffffffffffffffffffffffff1614612ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fec90614edc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305c90614d5c565b60405180910390fd5b613070838383613800565b61307b600082612de8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130cb9190615267565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131229190615186565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6132bb828260405180602001604052806000815250613914565b5050565b60155481836132ce9190615186565b111561330f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330690614d3c565b60405180910390fd5b80600f5461331d919061520d565b34101561335f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335690614f5c565b60405180910390fd5b6013548111156133a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339b90614d9c565b60405180910390fd5b5050565b600060175442106133be57600f549050806133c5565b600e549050805b506133cf33611494565b61340e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340590614fdc565b60405180910390fd5b601454838561341d9190615186565b111561345e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345590614f7c565b60405180910390fd5b828161346a919061520d565b3410156134ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a390614f5c565b60405180910390fd5b6012548311156134f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e890614d9c565b60405180910390fd5b60115483836135009190615186565b1115613541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353890614efc565b60405180910390fd5b50505050565b613552848484612f7f565b61355e8484848461396f565b61359d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359490614cdc565b60405180910390fd5b50505050565b6060600b80546135b290615351565b80601f01602080910402602001604051908101604052809291908181526020018280546135de90615351565b801561362b5780601f106136005761010080835404028352916020019161362b565b820191906000526020600020905b81548152906001019060200180831161360e57829003601f168201915b5050505050905090565b6060600082141561367d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613791565b600082905060005b600082146136af578080613698906153b4565b915050600a826136a891906151dc565b9150613685565b60008167ffffffffffffffff8111156136cb576136ca615519565b5b6040519080825280601f01601f1916602001820160405280156136fd5781602001600182028036833780820191505090505b5090505b6000851461378a576001826137169190615267565b9150600a8561372591906153fd565b60306137319190615186565b60f81b818381518110613747576137466154ea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561378391906151dc565b9450613701565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61380b838383613b06565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561384e5761384981613b0b565b61388d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461388c5761388b8382613b54565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138d0576138cb81613cc1565b61390f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461390e5761390d8282613d92565b5b5b505050565b61391e8383613e11565b61392b600084848461396f565b61396a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396190614cdc565b60405180910390fd5b505050565b60006139908473ffffffffffffffffffffffffffffffffffffffff16613fdf565b15613af9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026139b9612d74565b8786866040518563ffffffff1660e01b81526004016139db9493929190614bf1565b602060405180830381600087803b1580156139f557600080fd5b505af1925050508015613a2657506040513d601f19601f82011682018060405250810190613a2391906144e2565b60015b613aa9573d8060008114613a56576040519150601f19603f3d011682016040523d82523d6000602084013e613a5b565b606091505b50600081511415613aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a9890614cdc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613afe565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613b6184611b28565b613b6b9190615267565b9050600060076000848152602001908152602001600020549050818114613c50576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613cd59190615267565b9050600060096000848152602001908152602001600020549050600060088381548110613d0557613d046154ea565b5b906000526020600020015490508060088381548110613d2757613d266154ea565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d7657613d756154bb565b5b6001900381819060005260206000200160009055905550505050565b6000613d9d83611b28565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e7890614e5c565b60405180910390fd5b613e8a81612d7c565b15613eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ec190614d1c565b60405180910390fd5b613ed660008383613800565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f269190615186565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613ffe90615351565b90600052602060002090601f0160209004810192826140205760008555614067565b82601f1061403957805160ff1916838001178555614067565b82800160010185558215614067579182015b8281111561406657825182559160200191906001019061404b565b5b5090506140749190614078565b5090565b5b80821115614091576000816000905550600101614079565b5090565b60006140a86140a38461505c565b615037565b905080838252602082019050828560208602820111156140cb576140ca61554d565b5b60005b858110156140fb57816140e18882614189565b8452602084019350602083019250506001810190506140ce565b5050509392505050565b600061411861411384615088565b615037565b90508281526020810184848401111561413457614133615552565b5b61413f84828561530f565b509392505050565b600061415a614155846150b9565b615037565b90508281526020810184848401111561417657614175615552565b5b61418184828561530f565b509392505050565b60008135905061419881615c51565b92915050565b600082601f8301126141b3576141b2615548565b5b81356141c3848260208601614095565b91505092915050565b6000813590506141db81615c68565b92915050565b6000813590506141f081615c7f565b92915050565b60008151905061420581615c7f565b92915050565b600082601f8301126142205761421f615548565b5b8135614230848260208601614105565b91505092915050565b600082601f83011261424e5761424d615548565b5b813561425e848260208601614147565b91505092915050565b60008135905061427681615c96565b92915050565b6000602082840312156142925761429161555c565b5b60006142a084828501614189565b91505092915050565b600080604083850312156142c0576142bf61555c565b5b60006142ce85828601614189565b92505060206142df85828601614189565b9150509250929050565b6000806000606084860312156143025761430161555c565b5b600061431086828701614189565b935050602061432186828701614189565b925050604061433286828701614267565b9150509250925092565b600080600080608085870312156143565761435561555c565b5b600061436487828801614189565b945050602061437587828801614189565b935050604061438687828801614267565b925050606085013567ffffffffffffffff8111156143a7576143a6615557565b5b6143b38782880161420b565b91505092959194509250565b600080604083850312156143d6576143d561555c565b5b60006143e485828601614189565b92505060206143f5858286016141cc565b9150509250929050565b600080604083850312156144165761441561555c565b5b600061442485828601614189565b925050602061443585828601614267565b9150509250929050565b6000602082840312156144555761445461555c565b5b600082013567ffffffffffffffff81111561447357614472615557565b5b61447f8482850161419e565b91505092915050565b60006020828403121561449e5761449d61555c565b5b60006144ac848285016141cc565b91505092915050565b6000602082840312156144cb576144ca61555c565b5b60006144d9848285016141e1565b91505092915050565b6000602082840312156144f8576144f761555c565b5b6000614506848285016141f6565b91505092915050565b6000602082840312156145255761452461555c565b5b600082013567ffffffffffffffff81111561454357614542615557565b5b61454f84828501614239565b91505092915050565b60006020828403121561456e5761456d61555c565b5b600061457c84828501614267565b91505092915050565b6000806040838503121561459c5761459b61555c565b5b60006145aa85828601614267565b92505060206145bb85828601614189565b9150509250929050565b60006145d18383614b72565b60208301905092915050565b6145e68161529b565b82525050565b60006145f78261510f565b614601818561513d565b935061460c836150ea565b8060005b8381101561463d57815161462488826145c5565b975061462f83615130565b925050600181019050614610565b5085935050505092915050565b614653816152ad565b82525050565b60006146648261511a565b61466e818561514e565b935061467e81856020860161531e565b61468781615561565b840191505092915050565b600061469d82615125565b6146a7818561516a565b93506146b781856020860161531e565b6146c081615561565b840191505092915050565b60006146d682615125565b6146e0818561517b565b93506146f081856020860161531e565b80840191505092915050565b6000815461470981615351565b614713818661517b565b9450600182166000811461472e576001811461473f57614772565b60ff19831686528186019350614772565b614748856150fa565b60005b8381101561476a5781548189015260018201915060208101905061474b565b838801955050505b50505092915050565b600061478860188361516a565b915061479382615572565b602082019050919050565b60006147ab602b8361516a565b91506147b68261559b565b604082019050919050565b60006147ce60328361516a565b91506147d9826155ea565b604082019050919050565b60006147f160268361516a565b91506147fc82615639565b604082019050919050565b6000614814601c8361516a565b915061481f82615688565b602082019050919050565b6000614837601c8361516a565b9150614842826156b1565b602082019050919050565b600061485a60248361516a565b9150614865826156da565b604082019050919050565b600061487d60198361516a565b915061488882615729565b602082019050919050565b60006148a060288361516a565b91506148ab82615752565b604082019050919050565b60006148c3602c8361516a565b91506148ce826157a1565b604082019050919050565b60006148e660388361516a565b91506148f1826157f0565b604082019050919050565b6000614909602a8361516a565b91506149148261583f565b604082019050919050565b600061492c60298361516a565b91506149378261588e565b604082019050919050565b600061494f60168361516a565b915061495a826158dd565b602082019050919050565b600061497260208361516a565b915061497d82615906565b602082019050919050565b6000614995602c8361516a565b91506149a08261592f565b604082019050919050565b60006149b860208361516a565b91506149c38261597e565b602082019050919050565b60006149db60168361516a565b91506149e6826159a7565b602082019050919050565b60006149fe60298361516a565b9150614a09826159d0565b604082019050919050565b6000614a21601e8361516a565b9150614a2c82615a1f565b602082019050919050565b6000614a44602f8361516a565b9150614a4f82615a48565b604082019050919050565b6000614a6760218361516a565b9150614a7282615a97565b604082019050919050565b6000614a8a60008361515f565b9150614a9582615ae6565b600082019050919050565b6000614aad60128361516a565b9150614ab882615ae9565b602082019050919050565b6000614ad060288361516a565b9150614adb82615b12565b604082019050919050565b6000614af360318361516a565b9150614afe82615b61565b604082019050919050565b6000614b16602c8361516a565b9150614b2182615bb0565b604082019050919050565b6000614b3960178361516a565b9150614b4482615bff565b602082019050919050565b6000614b5c601b8361516a565b9150614b6782615c28565b602082019050919050565b614b7b81615305565b82525050565b614b8a81615305565b82525050565b6000614b9c82866146cb565b9150614ba882856146cb565b9150614bb482846146fc565b9150819050949350505050565b6000614bcc82614a7d565b9150819050919050565b6000602082019050614beb60008301846145dd565b92915050565b6000608082019050614c0660008301876145dd565b614c1360208301866145dd565b614c206040830185614b81565b8181036060830152614c328184614659565b905095945050505050565b60006020820190508181036000830152614c5781846145ec565b905092915050565b6000602082019050614c74600083018461464a565b92915050565b60006020820190508181036000830152614c948184614692565b905092915050565b60006020820190508181036000830152614cb58161477b565b9050919050565b60006020820190508181036000830152614cd58161479e565b9050919050565b60006020820190508181036000830152614cf5816147c1565b9050919050565b60006020820190508181036000830152614d15816147e4565b9050919050565b60006020820190508181036000830152614d3581614807565b9050919050565b60006020820190508181036000830152614d558161482a565b9050919050565b60006020820190508181036000830152614d758161484d565b9050919050565b60006020820190508181036000830152614d9581614870565b9050919050565b60006020820190508181036000830152614db581614893565b9050919050565b60006020820190508181036000830152614dd5816148b6565b9050919050565b60006020820190508181036000830152614df5816148d9565b9050919050565b60006020820190508181036000830152614e15816148fc565b9050919050565b60006020820190508181036000830152614e358161491f565b9050919050565b60006020820190508181036000830152614e5581614942565b9050919050565b60006020820190508181036000830152614e7581614965565b9050919050565b60006020820190508181036000830152614e9581614988565b9050919050565b60006020820190508181036000830152614eb5816149ab565b9050919050565b60006020820190508181036000830152614ed5816149ce565b9050919050565b60006020820190508181036000830152614ef5816149f1565b9050919050565b60006020820190508181036000830152614f1581614a14565b9050919050565b60006020820190508181036000830152614f3581614a37565b9050919050565b60006020820190508181036000830152614f5581614a5a565b9050919050565b60006020820190508181036000830152614f7581614aa0565b9050919050565b60006020820190508181036000830152614f9581614ac3565b9050919050565b60006020820190508181036000830152614fb581614ae6565b9050919050565b60006020820190508181036000830152614fd581614b09565b9050919050565b60006020820190508181036000830152614ff581614b2c565b9050919050565b6000602082019050818103600083015261501581614b4f565b9050919050565b60006020820190506150316000830184614b81565b92915050565b6000615041615052565b905061504d8282615383565b919050565b6000604051905090565b600067ffffffffffffffff82111561507757615076615519565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156150a3576150a2615519565b5b6150ac82615561565b9050602081019050919050565b600067ffffffffffffffff8211156150d4576150d3615519565b5b6150dd82615561565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061519182615305565b915061519c83615305565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151d1576151d061542e565b5b828201905092915050565b60006151e782615305565b91506151f283615305565b9250826152025761520161545d565b5b828204905092915050565b600061521882615305565b915061522383615305565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561525c5761525b61542e565b5b828202905092915050565b600061527282615305565b915061527d83615305565b9250828210156152905761528f61542e565b5b828203905092915050565b60006152a6826152e5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561533c578082015181840152602081019050615321565b8381111561534b576000848401525b50505050565b6000600282049050600182168061536957607f821691505b6020821081141561537d5761537c61548c565b5b50919050565b61538c82615561565b810181811067ffffffffffffffff821117156153ab576153aa615519565b5b80604052505050565b60006153bf82615305565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153f2576153f161542e565b5b600182019050919050565b600061540882615305565b915061541383615305565b9250826154235761542261545d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e46542070726573616c65206c696d69742065786365656465640000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656420666f7260008201527f2070726573616c65000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b615c5a8161529b565b8114615c6557600080fd5b50565b615c71816152ad565b8114615c7c57600080fd5b50565b615c88816152b9565b8114615c9357600080fd5b50565b615c9f81615305565b8114615caa57600080fd5b5056fea2646970667358221220e7de4126ff7fa1edf56252c90da0682b2f3e310ddff30d84f61e167df41c404164736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e5a616b4d696e694d6f6e7374657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a4d4d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5232433565476967624748357877684e317a34427838706748373666644d416d726f31314b317151504e684d00000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103975760003560e01c80636f9fb98a116101dc578063a22cb46511610102578063d0eb26b0116100a0578063eced38731161006f578063eced387314610d4a578063edec5f2714610d75578063f2c4ce1e14610d9e578063f2fde38b14610dc757610397565b8063d0eb26b014610c90578063d5abeb0114610cb9578063da3ef23f14610ce4578063e985e9c514610d0d57610397565b8063ba7d2c76116100dc578063ba7d2c7614610bd2578063c668286214610bfd578063c87b56dd14610c28578063cc9ff9c614610c6557610397565b8063a22cb46514610b69578063a475b5dd14610b92578063b88d4fde14610ba957610397565b80637f00c7a61161017a5780638fdcf942116101495780638fdcf94214610ace57806395d89b4114610af7578063a0712d6814610b22578063a18116f114610b3e57610397565b80637f00c7a614610a26578063831e60de14610a4f57806383a076be14610a7a5780638da5cb5b14610aa357610397565b8063715018a6116101b6578063715018a614610990578063743c7f6b146109a75780637967a50a146109d05780637effc032146109fb57610397565b80636f9fb98a146108fd57806370a0823114610928578063714c53981461096557610397565b80632e09282e116102c157806344a0d68a1161025f5780635c975abb1161022e5780635c975abb146108435780636352211e1461086e578063669736c0146108ab5780636f8b44b0146108d457610397565b806344a0d68a146107895780634f6ccce7146107b257806351830227146107ef57806355f804b31461081a57610397565b80633ccfd60b1161029b5780633ccfd60b146106f057806342842e0e146106fa57806342f0ca0d14610723578063438b63001461074c57610397565b80632e09282e1461064b5780632f745c59146106765780633af32abf146106b357610397565b80630a50716b1161033957806318cae2691161030857806318cae2691461058f5780631985cc65146105cc578063239c70ae146105f757806323b872dd1461062257610397565b80630a50716b146104e75780630e54a8831461051057806313faede61461053957806318160ddd1461056457610397565b8063081812fc11610375578063081812fc1461042d578063081c8c441461046a578063095ea7b3146104955780630a403f04146104be57610397565b806301ffc9a71461039c57806302329a29146103d957806306fdde0314610402575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be91906144b5565b610df0565b6040516103d09190614c5f565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190614488565b610e6a565b005b34801561040e57600080fd5b50610417610f03565b6040516104249190614c7a565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190614558565b610f95565b6040516104619190614bd6565b60405180910390f35b34801561047657600080fd5b5061047f61101a565b60405161048c9190614c7a565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b791906143ff565b6110a8565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190614558565b6111c0565b005b3480156104f357600080fd5b5061050e60048036038101906105099190614558565b611246565b005b34801561051c57600080fd5b5061053760048036038101906105329190614558565b6112cc565b005b34801561054557600080fd5b5061054e611352565b60405161055b919061501c565b60405180910390f35b34801561057057600080fd5b50610579611358565b604051610586919061501c565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b1919061427c565b611365565b6040516105c3919061501c565b60405180910390f35b3480156105d857600080fd5b506105e161137d565b6040516105ee919061501c565b60405180910390f35b34801561060357600080fd5b5061060c611383565b604051610619919061501c565b60405180910390f35b34801561062e57600080fd5b50610649600480360381019061064491906142e9565b611389565b005b34801561065757600080fd5b506106606113e9565b60405161066d919061501c565b60405180910390f35b34801561068257600080fd5b5061069d600480360381019061069891906143ff565b6113ef565b6040516106aa919061501c565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d5919061427c565b611494565b6040516106e79190614c5f565b60405180910390f35b6106f86114ea565b005b34801561070657600080fd5b50610721600480360381019061071c91906142e9565b6115df565b005b34801561072f57600080fd5b5061074a60048036038101906107459190614558565b6115ff565b005b34801561075857600080fd5b50610773600480360381019061076e919061427c565b611685565b6040516107809190614c3d565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190614558565b611733565b005b3480156107be57600080fd5b506107d960048036038101906107d49190614558565b6117b9565b6040516107e6919061501c565b60405180910390f35b3480156107fb57600080fd5b5061080461182a565b6040516108119190614c5f565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061450f565b61183d565b005b34801561084f57600080fd5b506108586118d3565b6040516108659190614c5f565b60405180910390f35b34801561087a57600080fd5b5061089560048036038101906108909190614558565b6118e6565b6040516108a29190614bd6565b60405180910390f35b3480156108b757600080fd5b506108d260048036038101906108cd9190614558565b611998565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190614558565b611a1e565b005b34801561090957600080fd5b50610912611aa4565b60405161091f919061501c565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a919061427c565b611b28565b60405161095c919061501c565b60405180910390f35b34801561097157600080fd5b5061097a611be0565b6040516109879190614c7a565b60405180910390f35b34801561099c57600080fd5b506109a5611cee565b005b3480156109b357600080fd5b506109ce60048036038101906109c99190614558565b611d76565b005b3480156109dc57600080fd5b506109e5611dfc565b6040516109f2919061501c565b60405180910390f35b348015610a0757600080fd5b50610a10611e02565b604051610a1d919061501c565b60405180910390f35b348015610a3257600080fd5b50610a4d6004803603810190610a489190614558565b611e08565b005b348015610a5b57600080fd5b50610a64611e8e565b604051610a71919061501c565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c9190614585565b611ead565b005b348015610aaf57600080fd5b50610ab8612059565b604051610ac59190614bd6565b60405180910390f35b348015610ada57600080fd5b50610af56004803603810190610af09190614558565b612083565b005b348015610b0357600080fd5b50610b0c612109565b604051610b199190614c7a565b60405180910390f35b610b3c6004803603810190610b379190614558565b61219b565b005b348015610b4a57600080fd5b50610b536123ca565b604051610b60919061501c565b60405180910390f35b348015610b7557600080fd5b50610b906004803603810190610b8b91906143bf565b6123d0565b005b348015610b9e57600080fd5b50610ba7612551565b005b348015610bb557600080fd5b50610bd06004803603810190610bcb919061433c565b6125ea565b005b348015610bde57600080fd5b50610be761264c565b604051610bf4919061501c565b60405180910390f35b348015610c0957600080fd5b50610c12612652565b604051610c1f9190614c7a565b60405180910390f35b348015610c3457600080fd5b50610c4f6004803603810190610c4a9190614558565b6126e0565b604051610c5c9190614c7a565b60405180910390f35b348015610c7157600080fd5b50610c7a612831565b604051610c87919061501c565b60405180910390f35b348015610c9c57600080fd5b50610cb76004803603810190610cb29190614558565b612837565b005b348015610cc557600080fd5b50610cce6128bd565b604051610cdb919061501c565b60405180910390f35b348015610cf057600080fd5b50610d0b6004803603810190610d06919061450f565b6128c3565b005b348015610d1957600080fd5b50610d346004803603810190610d2f91906142a9565b612959565b604051610d419190614c5f565b60405180910390f35b348015610d5657600080fd5b50610d5f6129ed565b604051610d6c919061501c565b60405180910390f35b348015610d8157600080fd5b50610d9c6004803603810190610d97919061443f565b6129f3565b005b348015610daa57600080fd5b50610dc56004803603810190610dc0919061450f565b612b04565b005b348015610dd357600080fd5b50610dee6004803603810190610de9919061427c565b612b9a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e635750610e6282612c92565b5b9050919050565b610e72612d74565b73ffffffffffffffffffffffffffffffffffffffff16610e90612059565b73ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90614e9c565b60405180910390fd5b80601960006101000a81548160ff02191690831515021790555050565b606060008054610f1290615351565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3e90615351565b8015610f8b5780601f10610f6057610100808354040283529160200191610f8b565b820191906000526020600020905b815481529060010190602001808311610f6e57829003601f168201915b5050505050905090565b6000610fa082612d7c565b610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690614e7c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d805461102790615351565b80601f016020809104026020016040519081016040528092919081815260200182805461105390615351565b80156110a05780601f10611075576101008083540402835291602001916110a0565b820191906000526020600020905b81548152906001019060200180831161108357829003601f168201915b505050505081565b60006110b3826118e6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90614f3c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611143612d74565b73ffffffffffffffffffffffffffffffffffffffff16148061117257506111718161116c612d74565b612959565b5b6111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890614ddc565b60405180910390fd5b6111bb8383612de8565b505050565b6111c8612d74565b73ffffffffffffffffffffffffffffffffffffffff166111e6612059565b73ffffffffffffffffffffffffffffffffffffffff161461123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390614e9c565b60405180910390fd5b8060118190555050565b61124e612d74565b73ffffffffffffffffffffffffffffffffffffffff1661126c612059565b73ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990614e9c565b60405180910390fd5b8060148190555050565b6112d4612d74565b73ffffffffffffffffffffffffffffffffffffffff166112f2612059565b73ffffffffffffffffffffffffffffffffffffffff1614611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90614e9c565b60405180910390fd5b8060188190555050565b600f5481565b6000600880549050905090565b601b6020528060005260406000206000915090505481565b60165481565b60135481565b61139a611394612d74565b82612ea1565b6113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d090614f9c565b60405180910390fd5b6113e4838383612f7f565b505050565b60145481565b60006113fa83611b28565b821061143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290614cbc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114f2612d74565b73ffffffffffffffffffffffffffffffffffffffff16611510612059565b73ffffffffffffffffffffffffffffffffffffffff1614611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155d90614e9c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161158c90614bc1565b60006040518083038185875af1925050503d80600081146115c9576040519150601f19603f3d011682016040523d82523d6000602084013e6115ce565b606091505b50509050806115dc57600080fd5b50565b6115fa838383604051806020016040528060008152506125ea565b505050565b611607612d74565b73ffffffffffffffffffffffffffffffffffffffff16611625612059565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290614e9c565b60405180910390fd5b8060178190555050565b6060600061169283611b28565b905060008167ffffffffffffffff8111156116b0576116af615519565b5b6040519080825280602002602001820160405280156116de5781602001602082028036833780820191505090505b50905060005b82811015611728576116f685826113ef565b828281518110611709576117086154ea565b5b6020026020010181815250508080611720906153b4565b9150506116e4565b508092505050919050565b61173b612d74565b73ffffffffffffffffffffffffffffffffffffffff16611759612059565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690614e9c565b60405180910390fd5b80600f8190555050565b60006117c3611358565b8210611804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fb90614fbc565b60405180910390fd5b60088281548110611818576118176154ea565b5b90600052602060002001549050919050565b601960019054906101000a900460ff1681565b611845612d74565b73ffffffffffffffffffffffffffffffffffffffff16611863612059565b73ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614e9c565b60405180910390fd5b80600b90805190602001906118cf929190613ff2565b5050565b601960009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690614e1c565b60405180910390fd5b80915050919050565b6119a0612d74565b73ffffffffffffffffffffffffffffffffffffffff166119be612059565b73ffffffffffffffffffffffffffffffffffffffff1614611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b90614e9c565b60405180910390fd5b8060128190555050565b611a26612d74565b73ffffffffffffffffffffffffffffffffffffffff16611a44612059565b73ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190614e9c565b60405180910390fd5b8060108190555050565b6000611aae612d74565b73ffffffffffffffffffffffffffffffffffffffff16611acc612059565b73ffffffffffffffffffffffffffffffffffffffff1614611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990614e9c565b60405180910390fd5b47905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090614dfc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060611bea612d74565b73ffffffffffffffffffffffffffffffffffffffff16611c08612059565b73ffffffffffffffffffffffffffffffffffffffff1614611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5590614e9c565b60405180910390fd5b600b8054611c6b90615351565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9790615351565b8015611ce45780601f10611cb957610100808354040283529160200191611ce4565b820191906000526020600020905b815481529060010190602001808311611cc757829003601f168201915b5050505050905090565b611cf6612d74565b73ffffffffffffffffffffffffffffffffffffffff16611d14612059565b73ffffffffffffffffffffffffffffffffffffffff1614611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6190614e9c565b60405180910390fd5b611d7460006131db565b565b611d7e612d74565b73ffffffffffffffffffffffffffffffffffffffff16611d9c612059565b73ffffffffffffffffffffffffffffffffffffffff1614611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990614e9c565b60405180910390fd5b8060168190555050565b60175481565b60125481565b611e10612d74565b73ffffffffffffffffffffffffffffffffffffffff16611e2e612059565b73ffffffffffffffffffffffffffffffffffffffff1614611e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7b90614e9c565b60405180910390fd5b8060138190555050565b6000601754421015611ea457600e549050611eaa565b600f5490505b90565b611eb5612d74565b73ffffffffffffffffffffffffffffffffffffffff16611ed3612059565b73ffffffffffffffffffffffffffffffffffffffff1614611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090614e9c565b60405180910390fd5b60008211611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6390614ffc565b60405180910390fd5b6000611f76611358565b90506010548382611f879190615186565b1115611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90614e3c565b60405180910390fd5b6000600190505b83811161205357601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612026906153b4565b919050555061204083828461203b9190615186565b6132a1565b808061204b906153b4565b915050611fcf565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61208b612d74565b73ffffffffffffffffffffffffffffffffffffffff166120a9612059565b73ffffffffffffffffffffffffffffffffffffffff16146120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f690614e9c565b60405180910390fd5b80600e8190555050565b60606001805461211890615351565b80601f016020809104026020016040519081016040528092919081815260200182805461214490615351565b80156121915780601f1061216657610100808354040283529160200191612191565b820191906000526020600020905b81548152906001019060200180831161217457829003601f168201915b5050505050905090565b601960009054906101000a900460ff16156121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614ebc565b60405180910390fd5b601654421015612230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222790614c9c565b60405180910390fd5b8060008111612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b90614ffc565b60405180910390fd5b600061227e611358565b90506000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060185442106122dc576122d781856132bf565b6122e8565b6122e78185846133a8565b5b60105484836122f79190615186565b1115612338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232f90614e3c565b60405180910390fd5b6000600190505b8481116123c357601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612396906153b4565b91905055506123b03382856123ab9190615186565b6132a1565b80806123bb906153b4565b91505061233f565b5050505050565b60115481565b6123d8612d74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243d90614d7c565b60405180910390fd5b8060056000612453612d74565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612500612d74565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125459190614c5f565b60405180910390a35050565b612559612d74565b73ffffffffffffffffffffffffffffffffffffffff16612577612059565b73ffffffffffffffffffffffffffffffffffffffff16146125cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c490614e9c565b60405180910390fd5b6001601960016101000a81548160ff021916908315150217905550565b6125fb6125f5612d74565b83612ea1565b61263a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263190614f9c565b60405180910390fd5b61264684848484613547565b50505050565b60155481565b600c805461265f90615351565b80601f016020809104026020016040519081016040528092919081815260200182805461268b90615351565b80156126d85780601f106126ad576101008083540402835291602001916126d8565b820191906000526020600020905b8154815290600101906020018083116126bb57829003601f168201915b505050505081565b60606126eb82612d7c565b61272a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272190614f1c565b60405180910390fd5b601960019054906101000a900460ff166127d057600d805461274b90615351565b80601f016020809104026020016040519081016040528092919081815260200182805461277790615351565b80156127c45780601f10612799576101008083540402835291602001916127c4565b820191906000526020600020905b8154815290600101906020018083116127a757829003601f168201915b5050505050905061282c565b60006127da6135a3565b905060008151116127fa5760405180602001604052806000815250612828565b8061280484613635565b600c60405160200161281893929190614b90565b6040516020818303038152906040525b9150505b919050565b600e5481565b61283f612d74565b73ffffffffffffffffffffffffffffffffffffffff1661285d612059565b73ffffffffffffffffffffffffffffffffffffffff16146128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa90614e9c565b60405180910390fd5b8060158190555050565b60105481565b6128cb612d74565b73ffffffffffffffffffffffffffffffffffffffff166128e9612059565b73ffffffffffffffffffffffffffffffffffffffff161461293f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293690614e9c565b60405180910390fd5b80600c9080519060200190612955929190613ff2565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60185481565b6129fb612d74565b73ffffffffffffffffffffffffffffffffffffffff16612a19612059565b73ffffffffffffffffffffffffffffffffffffffff1614612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690614e9c565b60405180910390fd5b60005b8151811015612b00576001601a6000848481518110612a9457612a936154ea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612af8906153b4565b915050612a72565b5050565b612b0c612d74565b73ffffffffffffffffffffffffffffffffffffffff16612b2a612059565b73ffffffffffffffffffffffffffffffffffffffff1614612b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7790614e9c565b60405180910390fd5b80600d9080519060200190612b96929190613ff2565b5050565b612ba2612d74565b73ffffffffffffffffffffffffffffffffffffffff16612bc0612059565b73ffffffffffffffffffffffffffffffffffffffff1614612c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0d90614e9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7d90614cfc565b60405180910390fd5b612c8f816131db565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d5d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d6d5750612d6c82613796565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e5b836118e6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612eac82612d7c565b612eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee290614dbc565b60405180910390fd5b6000612ef6836118e6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f6557508373ffffffffffffffffffffffffffffffffffffffff16612f4d84610f95565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f765750612f758185612959565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f9f826118e6565b73ffffffffffffffffffffffffffffffffffffffff1614612ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fec90614edc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305c90614d5c565b60405180910390fd5b613070838383613800565b61307b600082612de8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130cb9190615267565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131229190615186565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6132bb828260405180602001604052806000815250613914565b5050565b60155481836132ce9190615186565b111561330f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330690614d3c565b60405180910390fd5b80600f5461331d919061520d565b34101561335f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335690614f5c565b60405180910390fd5b6013548111156133a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339b90614d9c565b60405180910390fd5b5050565b600060175442106133be57600f549050806133c5565b600e549050805b506133cf33611494565b61340e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340590614fdc565b60405180910390fd5b601454838561341d9190615186565b111561345e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345590614f7c565b60405180910390fd5b828161346a919061520d565b3410156134ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a390614f5c565b60405180910390fd5b6012548311156134f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e890614d9c565b60405180910390fd5b60115483836135009190615186565b1115613541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353890614efc565b60405180910390fd5b50505050565b613552848484612f7f565b61355e8484848461396f565b61359d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359490614cdc565b60405180910390fd5b50505050565b6060600b80546135b290615351565b80601f01602080910402602001604051908101604052809291908181526020018280546135de90615351565b801561362b5780601f106136005761010080835404028352916020019161362b565b820191906000526020600020905b81548152906001019060200180831161360e57829003601f168201915b5050505050905090565b6060600082141561367d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613791565b600082905060005b600082146136af578080613698906153b4565b915050600a826136a891906151dc565b9150613685565b60008167ffffffffffffffff8111156136cb576136ca615519565b5b6040519080825280601f01601f1916602001820160405280156136fd5781602001600182028036833780820191505090505b5090505b6000851461378a576001826137169190615267565b9150600a8561372591906153fd565b60306137319190615186565b60f81b818381518110613747576137466154ea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561378391906151dc565b9450613701565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61380b838383613b06565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561384e5761384981613b0b565b61388d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461388c5761388b8382613b54565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138d0576138cb81613cc1565b61390f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461390e5761390d8282613d92565b5b5b505050565b61391e8383613e11565b61392b600084848461396f565b61396a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396190614cdc565b60405180910390fd5b505050565b60006139908473ffffffffffffffffffffffffffffffffffffffff16613fdf565b15613af9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026139b9612d74565b8786866040518563ffffffff1660e01b81526004016139db9493929190614bf1565b602060405180830381600087803b1580156139f557600080fd5b505af1925050508015613a2657506040513d601f19601f82011682018060405250810190613a2391906144e2565b60015b613aa9573d8060008114613a56576040519150601f19603f3d011682016040523d82523d6000602084013e613a5b565b606091505b50600081511415613aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a9890614cdc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613afe565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613b6184611b28565b613b6b9190615267565b9050600060076000848152602001908152602001600020549050818114613c50576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613cd59190615267565b9050600060096000848152602001908152602001600020549050600060088381548110613d0557613d046154ea565b5b906000526020600020015490508060088381548110613d2757613d266154ea565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d7657613d756154bb565b5b6001900381819060005260206000200160009055905550505050565b6000613d9d83611b28565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e7890614e5c565b60405180910390fd5b613e8a81612d7c565b15613eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ec190614d1c565b60405180910390fd5b613ed660008383613800565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f269190615186565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613ffe90615351565b90600052602060002090601f0160209004810192826140205760008555614067565b82601f1061403957805160ff1916838001178555614067565b82800160010185558215614067579182015b8281111561406657825182559160200191906001019061404b565b5b5090506140749190614078565b5090565b5b80821115614091576000816000905550600101614079565b5090565b60006140a86140a38461505c565b615037565b905080838252602082019050828560208602820111156140cb576140ca61554d565b5b60005b858110156140fb57816140e18882614189565b8452602084019350602083019250506001810190506140ce565b5050509392505050565b600061411861411384615088565b615037565b90508281526020810184848401111561413457614133615552565b5b61413f84828561530f565b509392505050565b600061415a614155846150b9565b615037565b90508281526020810184848401111561417657614175615552565b5b61418184828561530f565b509392505050565b60008135905061419881615c51565b92915050565b600082601f8301126141b3576141b2615548565b5b81356141c3848260208601614095565b91505092915050565b6000813590506141db81615c68565b92915050565b6000813590506141f081615c7f565b92915050565b60008151905061420581615c7f565b92915050565b600082601f8301126142205761421f615548565b5b8135614230848260208601614105565b91505092915050565b600082601f83011261424e5761424d615548565b5b813561425e848260208601614147565b91505092915050565b60008135905061427681615c96565b92915050565b6000602082840312156142925761429161555c565b5b60006142a084828501614189565b91505092915050565b600080604083850312156142c0576142bf61555c565b5b60006142ce85828601614189565b92505060206142df85828601614189565b9150509250929050565b6000806000606084860312156143025761430161555c565b5b600061431086828701614189565b935050602061432186828701614189565b925050604061433286828701614267565b9150509250925092565b600080600080608085870312156143565761435561555c565b5b600061436487828801614189565b945050602061437587828801614189565b935050604061438687828801614267565b925050606085013567ffffffffffffffff8111156143a7576143a6615557565b5b6143b38782880161420b565b91505092959194509250565b600080604083850312156143d6576143d561555c565b5b60006143e485828601614189565b92505060206143f5858286016141cc565b9150509250929050565b600080604083850312156144165761441561555c565b5b600061442485828601614189565b925050602061443585828601614267565b9150509250929050565b6000602082840312156144555761445461555c565b5b600082013567ffffffffffffffff81111561447357614472615557565b5b61447f8482850161419e565b91505092915050565b60006020828403121561449e5761449d61555c565b5b60006144ac848285016141cc565b91505092915050565b6000602082840312156144cb576144ca61555c565b5b60006144d9848285016141e1565b91505092915050565b6000602082840312156144f8576144f761555c565b5b6000614506848285016141f6565b91505092915050565b6000602082840312156145255761452461555c565b5b600082013567ffffffffffffffff81111561454357614542615557565b5b61454f84828501614239565b91505092915050565b60006020828403121561456e5761456d61555c565b5b600061457c84828501614267565b91505092915050565b6000806040838503121561459c5761459b61555c565b5b60006145aa85828601614267565b92505060206145bb85828601614189565b9150509250929050565b60006145d18383614b72565b60208301905092915050565b6145e68161529b565b82525050565b60006145f78261510f565b614601818561513d565b935061460c836150ea565b8060005b8381101561463d57815161462488826145c5565b975061462f83615130565b925050600181019050614610565b5085935050505092915050565b614653816152ad565b82525050565b60006146648261511a565b61466e818561514e565b935061467e81856020860161531e565b61468781615561565b840191505092915050565b600061469d82615125565b6146a7818561516a565b93506146b781856020860161531e565b6146c081615561565b840191505092915050565b60006146d682615125565b6146e0818561517b565b93506146f081856020860161531e565b80840191505092915050565b6000815461470981615351565b614713818661517b565b9450600182166000811461472e576001811461473f57614772565b60ff19831686528186019350614772565b614748856150fa565b60005b8381101561476a5781548189015260018201915060208101905061474b565b838801955050505b50505092915050565b600061478860188361516a565b915061479382615572565b602082019050919050565b60006147ab602b8361516a565b91506147b68261559b565b604082019050919050565b60006147ce60328361516a565b91506147d9826155ea565b604082019050919050565b60006147f160268361516a565b91506147fc82615639565b604082019050919050565b6000614814601c8361516a565b915061481f82615688565b602082019050919050565b6000614837601c8361516a565b9150614842826156b1565b602082019050919050565b600061485a60248361516a565b9150614865826156da565b604082019050919050565b600061487d60198361516a565b915061488882615729565b602082019050919050565b60006148a060288361516a565b91506148ab82615752565b604082019050919050565b60006148c3602c8361516a565b91506148ce826157a1565b604082019050919050565b60006148e660388361516a565b91506148f1826157f0565b604082019050919050565b6000614909602a8361516a565b91506149148261583f565b604082019050919050565b600061492c60298361516a565b91506149378261588e565b604082019050919050565b600061494f60168361516a565b915061495a826158dd565b602082019050919050565b600061497260208361516a565b915061497d82615906565b602082019050919050565b6000614995602c8361516a565b91506149a08261592f565b604082019050919050565b60006149b860208361516a565b91506149c38261597e565b602082019050919050565b60006149db60168361516a565b91506149e6826159a7565b602082019050919050565b60006149fe60298361516a565b9150614a09826159d0565b604082019050919050565b6000614a21601e8361516a565b9150614a2c82615a1f565b602082019050919050565b6000614a44602f8361516a565b9150614a4f82615a48565b604082019050919050565b6000614a6760218361516a565b9150614a7282615a97565b604082019050919050565b6000614a8a60008361515f565b9150614a9582615ae6565b600082019050919050565b6000614aad60128361516a565b9150614ab882615ae9565b602082019050919050565b6000614ad060288361516a565b9150614adb82615b12565b604082019050919050565b6000614af360318361516a565b9150614afe82615b61565b604082019050919050565b6000614b16602c8361516a565b9150614b2182615bb0565b604082019050919050565b6000614b3960178361516a565b9150614b4482615bff565b602082019050919050565b6000614b5c601b8361516a565b9150614b6782615c28565b602082019050919050565b614b7b81615305565b82525050565b614b8a81615305565b82525050565b6000614b9c82866146cb565b9150614ba882856146cb565b9150614bb482846146fc565b9150819050949350505050565b6000614bcc82614a7d565b9150819050919050565b6000602082019050614beb60008301846145dd565b92915050565b6000608082019050614c0660008301876145dd565b614c1360208301866145dd565b614c206040830185614b81565b8181036060830152614c328184614659565b905095945050505050565b60006020820190508181036000830152614c5781846145ec565b905092915050565b6000602082019050614c74600083018461464a565b92915050565b60006020820190508181036000830152614c948184614692565b905092915050565b60006020820190508181036000830152614cb58161477b565b9050919050565b60006020820190508181036000830152614cd58161479e565b9050919050565b60006020820190508181036000830152614cf5816147c1565b9050919050565b60006020820190508181036000830152614d15816147e4565b9050919050565b60006020820190508181036000830152614d3581614807565b9050919050565b60006020820190508181036000830152614d558161482a565b9050919050565b60006020820190508181036000830152614d758161484d565b9050919050565b60006020820190508181036000830152614d9581614870565b9050919050565b60006020820190508181036000830152614db581614893565b9050919050565b60006020820190508181036000830152614dd5816148b6565b9050919050565b60006020820190508181036000830152614df5816148d9565b9050919050565b60006020820190508181036000830152614e15816148fc565b9050919050565b60006020820190508181036000830152614e358161491f565b9050919050565b60006020820190508181036000830152614e5581614942565b9050919050565b60006020820190508181036000830152614e7581614965565b9050919050565b60006020820190508181036000830152614e9581614988565b9050919050565b60006020820190508181036000830152614eb5816149ab565b9050919050565b60006020820190508181036000830152614ed5816149ce565b9050919050565b60006020820190508181036000830152614ef5816149f1565b9050919050565b60006020820190508181036000830152614f1581614a14565b9050919050565b60006020820190508181036000830152614f3581614a37565b9050919050565b60006020820190508181036000830152614f5581614a5a565b9050919050565b60006020820190508181036000830152614f7581614aa0565b9050919050565b60006020820190508181036000830152614f9581614ac3565b9050919050565b60006020820190508181036000830152614fb581614ae6565b9050919050565b60006020820190508181036000830152614fd581614b09565b9050919050565b60006020820190508181036000830152614ff581614b2c565b9050919050565b6000602082019050818103600083015261501581614b4f565b9050919050565b60006020820190506150316000830184614b81565b92915050565b6000615041615052565b905061504d8282615383565b919050565b6000604051905090565b600067ffffffffffffffff82111561507757615076615519565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156150a3576150a2615519565b5b6150ac82615561565b9050602081019050919050565b600067ffffffffffffffff8211156150d4576150d3615519565b5b6150dd82615561565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061519182615305565b915061519c83615305565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151d1576151d061542e565b5b828201905092915050565b60006151e782615305565b91506151f283615305565b9250826152025761520161545d565b5b828204905092915050565b600061521882615305565b915061522383615305565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561525c5761525b61542e565b5b828202905092915050565b600061527282615305565b915061527d83615305565b9250828210156152905761528f61542e565b5b828203905092915050565b60006152a6826152e5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561533c578082015181840152602081019050615321565b8381111561534b576000848401525b50505050565b6000600282049050600182168061536957607f821691505b6020821081141561537d5761537c61548c565b5b50919050565b61538c82615561565b810181811067ffffffffffffffff821117156153ab576153aa615519565b5b80604052505050565b60006153bf82615305565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153f2576153f161542e565b5b600182019050919050565b600061540882615305565b915061541383615305565b9250826154235761542261545d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e46542070726573616c65206c696d69742065786365656465640000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656420666f7260008201527f2070726573616c65000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b615c5a8161529b565b8114615c6557600080fd5b50565b615c71816152ad565b8114615c7c57600080fd5b50565b615c88816152b9565b8114615c9357600080fd5b50565b615c9f81615305565b8114615caa57600080fd5b5056fea2646970667358221220e7de4126ff7fa1edf56252c90da0682b2f3e310ddff30d84f61e167df41c404164736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e5a616b4d696e694d6f6e7374657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a4d4d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5232433565476967624748357877684e317a34427838706748373666644d416d726f31314b317151504e684d00000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): ZakMiniMonster
Arg [1] : _symbol (string): ZMM
Arg [2] : _initNotRevealedUri (string): https://gateway.pinata.cloud/ipfs/QmR2C5eGigbGH5xwhN1z4Bx8pgH76fdMAmro11K1qQPNhM
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 5a616b4d696e694d6f6e73746572000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5a4d4d0000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d5232433565476967624748357877684e317a34427838706748373666
Arg [10] : 644d416d726f31314b317151504e684d00000000000000000000000000000000
Deployed Bytecode Sourcemap
43309:7625:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34803:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48728:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21704:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23263:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43474:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22786:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49931:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48819:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50425:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43556:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35443:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44129:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43865:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43725:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24153:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43766:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35111:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47190:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50763:168;;;:::i;:::-;;24563:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50297:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47316:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49177:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35633:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44042:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49549:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44009:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21398:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49275:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50073:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48500:117;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21128:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48391:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42600:94;;;;;;;;;;;;;:::i;:::-;;50181:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43911:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43677:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49419:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48158:201;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46729:433;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41949:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49069:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21873:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46013:704;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43633:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23556:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48651:69;;;;;;;;;;;;;:::i;:::-;;24819:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43819:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43430:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47682:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43509:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48951:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43596:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49661:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23922:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43960:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50553:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49797:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42849:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34803:224;34905:4;34944:35;34929:50;;;:11;:50;;;;:90;;;;34983:36;35007:11;34983:23;:36::i;:::-;34929:90;34922:97;;34803:224;;;:::o;48728:79::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48793:6:::1;48784;;:15;;;;;;;;;;;;;;;;;;48728:79:::0;:::o;21704:100::-;21758:13;21791:5;21784:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21704:100;:::o;23263:221::-;23339:7;23367:16;23375:7;23367;:16::i;:::-;23359:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23452:15;:24;23468:7;23452:24;;;;;;;;;;;;;;;;;;;;;23445:31;;23263:221;;;:::o;43474:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22786:411::-;22867:13;22883:23;22898:7;22883:14;:23::i;:::-;22867:39;;22931:5;22925:11;;:2;:11;;;;22917:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23025:5;23009:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23034:37;23051:5;23058:12;:10;:12::i;:::-;23034:16;:37::i;:::-;23009:62;22987:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23168:21;23177:2;23181:7;23168:8;:21::i;:::-;22856:341;22786:411;;:::o;49931:134::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50037:20:::1;50018:16;:39;;;;49931:134:::0;:::o;48819:124::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48929:6:::1;48901:25;:34;;;;48819:124:::0;:::o;50425:120::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50522:15:::1;50505:14;:32;;;;50425:120:::0;:::o;43556:33::-;;;;:::o;35443:113::-;35504:7;35531:10;:17;;;;35524:24;;35443:113;:::o;44129:55::-;;;;;;;;;;;;;;;;;:::o;43865:39::-;;;;:::o;43725:34::-;;;;:::o;24153:339::-;24348:41;24367:12;:10;:12::i;:::-;24381:7;24348:18;:41::i;:::-;24340:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24456:28;24466:4;24472:2;24476:7;24456:9;:28::i;:::-;24153:339;;;:::o;43766:46::-;;;;:::o;35111:256::-;35208:7;35244:23;35261:5;35244:16;:23::i;:::-;35236:5;:31;35228:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35333:12;:19;35346:5;35333:19;;;;;;;;;;;;;;;:26;35353:5;35333:26;;;;;;;;;;;;35326:33;;35111:256;;;;:::o;47190:118::-;47249:4;47273:20;:27;47294:5;47273:27;;;;;;;;;;;;;;;;;;;;;;;;;47266:34;;47190:118;;;:::o;50763:168::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50820:12:::1;50846:10;50838:24;;50870:21;50838:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50819:77;;;50915:7;50907:16;;;::::0;::::1;;50808:123;50763:168::o:0;24563:185::-;24701:39;24718:4;24724:2;24728:7;24701:39;;;;;;;;;;;;:16;:39::i;:::-;24563:185;;;:::o;50297:120::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50394:15:::1;50377:14;:32;;;;50297:120:::0;:::o;47316:358::-;47376:16;47405:23;47431:17;47441:6;47431:9;:17::i;:::-;47405:43;;47459:25;47501:15;47487:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47459:58;;47533:9;47528:113;47548:15;47544:1;:19;47528:113;;;47599:30;47619:6;47627:1;47599:19;:30::i;:::-;47585:8;47594:1;47585:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;47565:3;;;;;:::i;:::-;;;;47528:113;;;;47658:8;47651:15;;;;47316:358;;;:::o;49177:86::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49247:8:::1;49240:4;:15;;;;49177:86:::0;:::o;35633:233::-;35708:7;35744:30;:28;:30::i;:::-;35736:5;:38;35728:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35841:10;35852:5;35841:17;;;;;;;;:::i;:::-;;;;;;;;;;35834:24;;35633:233;;;:::o;44042:28::-;;;;;;;;;;;;;:::o;49549:104::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49634:11:::1;49624:7;:21;;;;;;;;;;;;:::i;:::-;;49549:104:::0;:::o;44009:26::-;;;;;;;;;;;;;:::o;21398:239::-;21470:7;21490:13;21506:7;:16;21514:7;21506:16;;;;;;;;;;;;;;;;;;;;;21490:32;;21558:1;21541:19;;:5;:19;;;;21533:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21624:5;21617:12;;;21398:239;;;:::o;49275:136::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49386:17:::1;49363:20;:40;;;;49275:136:::0;:::o;50073:100::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50155:10:::1;50143:9;:22;;;;50073:100:::0;:::o;48500:117::-;48561:7;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48588:21:::1;48581:28;;48500:117:::0;:::o;21128:208::-;21200:7;21245:1;21228:19;;:5;:19;;;;21220:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21312:9;:16;21322:5;21312:16;;;;;;;;;;;;;;;;21305:23;;21128:208;;;:::o;48391:101::-;48444:13;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48477:7:::1;48470:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48391:101:::0;:::o;42600:94::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42665:21:::1;42683:1;42665:9;:21::i;:::-;42600:94::o:0;50181:108::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50269:12:::1;50255:11;:26;;;;50181:108:::0;:::o;43911:42::-;;;;:::o;43677:41::-;;;;:::o;49419:122::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49516:17:::1;49500:13;:33;;;;49419:122:::0;:::o;48158:201::-;48205:7;48247:14;;48229:15;:32;48225:127;;;48285:11;;48278:18;;;;48225:127;48336:4;;48329:11;;48158:201;;:::o;46729:433::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46835:1:::1;46821:11;:15;46813:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46879:14;46896:13;:11;:13::i;:::-;46879:30;;46952:9;;46937:11;46928:6;:20;;;;:::i;:::-;:33;;46920:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47006:9;47018:1;47006:13;;47001:154;47026:11;47021:1;:16;47001:154;;47059:20;:33;47080:11;47059:33;;;;;;;;;;;;;;;;:35;;;;;;;;;:::i;:::-;;;;;;47109:34;47119:11;47141:1;47132:6;:10;;;;:::i;:::-;47109:9;:34::i;:::-;47039:3;;;;;:::i;:::-;;;;47001:154;;;;46802:360;46729:433:::0;;:::o;41949:87::-;41995:7;42022:6;;;;;;;;;;;42015:13;;41949:87;:::o;49069:100::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49153:8:::1;49139:11;:22;;;;49069:100:::0;:::o;21873:104::-;21929:13;21962:7;21955:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21873:104;:::o;46013:704::-;44433:6;;;;;;;;;;;44432:7;44424:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;44554:11:::1;;44535:15;:30;;44527:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;46103:11:::2;44703:1;44689:11;:15;44681:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46127:14:::3;46144:13;:11;:13::i;:::-;46127:30;;46168:24;46195:20;:32;46216:10;46195:32;;;;;;;;;;;;;;;;46168:59;;46335:14;;46317:15;:32;:147;;46412:52;46434:16;46452:11;46412:21;:52::i;:::-;46317:147;;;46352:57;46371:16;46389:11;46402:6;46352:18;:57::i;:::-;46317:147;46509:9;;46494:11;46485:6;:20;;;;:::i;:::-;:33;;46477:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46563:9;46575:1;46563:13;;46558:152;46583:11;46578:1;:16;46558:152;;46616:20;:32;46637:10;46616:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;46665:33;46675:10;46696:1;46687:6;:10;;;;:::i;:::-;46665:9;:33::i;:::-;46596:3;;;;;:::i;:::-;;;;46558:152;;;;46116:601;;44605:1:::2;46013:704:::0;:::o;43633:37::-;;;;:::o;23556:295::-;23671:12;:10;:12::i;:::-;23659:24;;:8;:24;;;;23651:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23771:8;23726:18;:32;23745:12;:10;:12::i;:::-;23726:32;;;;;;;;;;;;;;;:42;23759:8;23726:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23824:8;23795:48;;23810:12;:10;:12::i;:::-;23795:48;;;23834:8;23795:48;;;;;;:::i;:::-;;;;;;;;23556:295;;:::o;48651:69::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48708:4:::1;48697:8;;:15;;;;;;;;;;;;;;;;;;48651:69::o:0;24819:328::-;24994:41;25013:12;:10;:12::i;:::-;25027:7;24994:18;:41::i;:::-;24986:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25100:39;25114:4;25120:2;25124:7;25133:5;25100:13;:39::i;:::-;24819:328;;;;:::o;43819:39::-;;;;:::o;43430:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47682:468::-;47755:13;47789:16;47797:7;47789;:16::i;:::-;47781:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;47875:8;;;;;;;;;;;47870:273;;47907:14;47900:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47870:273;47954:28;47985:10;:8;:10::i;:::-;47954:41;;48048:1;48023:14;48017:28;:32;:114;;;;;;;;;;;;;;;;;48076:14;48091:18;:7;:16;:18::i;:::-;48111:13;48059:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48017:114;48010:121;;;47682:468;;;;:::o;43509:40::-;;;;:::o;48951:110::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49047:6:::1;49026:18;:27;;;;48951:110:::0;:::o;43596:30::-;;;;:::o;49661:128::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49764:17:::1;49748:13;:33;;;;;;;;;;;;:::i;:::-;;49661:128:::0;:::o;23922:164::-;24019:4;24043:18;:25;24062:5;24043:25;;;;;;;;;;;;;;;:35;24069:8;24043:35;;;;;;;;;;;;;;;;;;;;;;;;;24036:42;;23922:164;;;;:::o;43960:42::-;;;;:::o;50553:202::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50638:9:::1;50633:115;50657:9;:16;50653:1;:20;50633:115;;;50732:4;50695:20;:34;50716:9;50726:1;50716:12;;;;;;;;:::i;:::-;;;;;;;;50695:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;50675:3;;;;;:::i;:::-;;;;50633:115;;;;50553:202:::0;:::o;49797:126::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49900:15:::1;49883:14;:32;;;;;;;;;;;;:::i;:::-;;49797:126:::0;:::o;42849:192::-;42180:12;:10;:12::i;:::-;42169:23;;:7;:5;:7::i;:::-;:23;;;42161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42958:1:::1;42938:22;;:8;:22;;;;42930:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43014:19;43024:8;43014:9;:19::i;:::-;42849:192:::0;:::o;20759:305::-;20861:4;20913:25;20898:40;;;:11;:40;;;;:105;;;;20970:33;20955:48;;;:11;:48;;;;20898:105;:158;;;;21020:36;21044:11;21020:23;:36::i;:::-;20898:158;20878:178;;20759:305;;;:::o;16181:98::-;16234:7;16261:10;16254:17;;16181:98;:::o;26657:127::-;26722:4;26774:1;26746:30;;:7;:16;26754:7;26746:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26739:37;;26657:127;;;:::o;30639:174::-;30741:2;30714:15;:24;30730:7;30714:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30797:7;30793:2;30759:46;;30768:23;30783:7;30768:14;:23::i;:::-;30759:46;;;;;;;;;;;;30639:174;;:::o;26951:348::-;27044:4;27069:16;27077:7;27069;:16::i;:::-;27061:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27145:13;27161:23;27176:7;27161:14;:23::i;:::-;27145:39;;27214:5;27203:16;;:7;:16;;;:51;;;;27247:7;27223:31;;:20;27235:7;27223:11;:20::i;:::-;:31;;;27203:51;:87;;;;27258:32;27275:5;27282:7;27258:16;:32::i;:::-;27203:87;27195:96;;;26951:348;;;;:::o;29943:578::-;30102:4;30075:31;;:23;30090:7;30075:14;:23::i;:::-;:31;;;30067:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30185:1;30171:16;;:2;:16;;;;30163:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30241:39;30262:4;30268:2;30272:7;30241:20;:39::i;:::-;30345:29;30362:1;30366:7;30345:8;:29::i;:::-;30406:1;30387:9;:15;30397:4;30387:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30435:1;30418:9;:13;30428:2;30418:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30466:2;30447:7;:16;30455:7;30447:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30505:7;30501:2;30486:27;;30495:4;30486:27;;;;;;;;;;;;29943:578;;;:::o;43049:173::-;43105:16;43124:6;;;;;;;;;;;43105:25;;43150:8;43141:6;;:17;;;;;;;;;;;;;;;;;;43205:8;43174:40;;43195:8;43174:40;;;;;;;;;;;;43094:128;43049:173;:::o;27641:110::-;27717:26;27727:2;27731:7;27717:26;;;;;;;;;;;;:9;:26::i;:::-;27641:110;;:::o;45629:364::-;45771:18;;45756:11;45736:17;:31;;;;:::i;:::-;:53;;45728:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;45860:11;45853:4;;:18;;;;:::i;:::-;45840:9;:31;;45832:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45928:13;;45913:11;:28;;45905:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45629:364;;:::o;44897:724::-;45014:18;45065:14;;45047:15;:32;:79;;45122:4;;45109:17;;;45047:79;;;45095:11;;45082:24;;;45047:79;;45149:25;45163:10;45149:13;:25::i;:::-;45141:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45260:25;;45245:11;45225:17;:31;;;;:::i;:::-;:60;;45217:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;45379:11;45366:10;:24;;;;:::i;:::-;45353:9;:37;;45345:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45451:20;;45436:11;:35;;45428:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;45563:16;;45548:11;45538:7;:21;;;;:::i;:::-;:41;;45530:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;44999:622;44897:724;;;:::o;26029:315::-;26186:28;26196:4;26202:2;26206:7;26186:9;:28::i;:::-;26233:48;26256:4;26262:2;26266:7;26275:5;26233:22;:48::i;:::-;26225:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26029:315;;;;:::o;44781:108::-;44841:13;44874:7;44867:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44781:108;:::o;16706:723::-;16762:13;16992:1;16983:5;:10;16979:53;;;17010:10;;;;;;;;;;;;;;;;;;;;;16979:53;17042:12;17057:5;17042:20;;17073:14;17098:78;17113:1;17105:4;:9;17098:78;;17131:8;;;;;:::i;:::-;;;;17162:2;17154:10;;;;;:::i;:::-;;;17098:78;;;17186:19;17218:6;17208:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17186:39;;17236:154;17252:1;17243:5;:10;17236:154;;17280:1;17270:11;;;;;:::i;:::-;;;17347:2;17339:5;:10;;;;:::i;:::-;17326:2;:24;;;;:::i;:::-;17313:39;;17296:6;17303;17296:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17376:2;17367:11;;;;;:::i;:::-;;;17236:154;;;17414:6;17400:21;;;;;16706:723;;;;:::o;19263:157::-;19348:4;19387:25;19372:40;;;:11;:40;;;;19365:47;;19263:157;;;:::o;36479:589::-;36623:45;36650:4;36656:2;36660:7;36623:26;:45::i;:::-;36701:1;36685:18;;:4;:18;;;36681:187;;;36720:40;36752:7;36720:31;:40::i;:::-;36681:187;;;36790:2;36782:10;;:4;:10;;;36778:90;;36809:47;36842:4;36848:7;36809:32;:47::i;:::-;36778:90;36681:187;36896:1;36882:16;;:2;:16;;;36878:183;;;36915:45;36952:7;36915:36;:45::i;:::-;36878:183;;;36988:4;36982:10;;:2;:10;;;36978:83;;37009:40;37037:2;37041:7;37009:27;:40::i;:::-;36978:83;36878:183;36479:589;;;:::o;27978:321::-;28108:18;28114:2;28118:7;28108:5;:18::i;:::-;28159:54;28190:1;28194:2;28198:7;28207:5;28159:22;:54::i;:::-;28137:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27978:321;;;:::o;31378:799::-;31533:4;31554:15;:2;:13;;;:15::i;:::-;31550:620;;;31606:2;31590:36;;;31627:12;:10;:12::i;:::-;31641:4;31647:7;31656:5;31590:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31586:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31849:1;31832:6;:13;:18;31828:272;;;31875:60;;;;;;;;;;:::i;:::-;;;;;;;;31828:272;32050:6;32044:13;32035:6;32031:2;32027:15;32020:38;31586:529;31723:41;;;31713:51;;;:6;:51;;;;31706:58;;;;;31550:620;32154:4;32147:11;;31378:799;;;;;;;:::o;32749:126::-;;;;:::o;37791:164::-;37895:10;:17;;;;37868:15;:24;37884:7;37868:24;;;;;;;;;;;:44;;;;37923:10;37939:7;37923:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37791:164;:::o;38582:988::-;38848:22;38898:1;38873:22;38890:4;38873:16;:22::i;:::-;:26;;;;:::i;:::-;38848:51;;38910:18;38931:17;:26;38949:7;38931:26;;;;;;;;;;;;38910:47;;39078:14;39064:10;:28;39060:328;;39109:19;39131:12;:18;39144:4;39131:18;;;;;;;;;;;;;;;:34;39150:14;39131:34;;;;;;;;;;;;39109:56;;39215:11;39182:12;:18;39195:4;39182:18;;;;;;;;;;;;;;;:30;39201:10;39182:30;;;;;;;;;;;:44;;;;39332:10;39299:17;:30;39317:11;39299:30;;;;;;;;;;;:43;;;;39094:294;39060:328;39484:17;:26;39502:7;39484:26;;;;;;;;;;;39477:33;;;39528:12;:18;39541:4;39528:18;;;;;;;;;;;;;;;:34;39547:14;39528:34;;;;;;;;;;;39521:41;;;38663:907;;38582:988;;:::o;39865:1079::-;40118:22;40163:1;40143:10;:17;;;;:21;;;;:::i;:::-;40118:46;;40175:18;40196:15;:24;40212:7;40196:24;;;;;;;;;;;;40175:45;;40547:19;40569:10;40580:14;40569:26;;;;;;;;:::i;:::-;;;;;;;;;;40547:48;;40633:11;40608:10;40619;40608:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40744:10;40713:15;:28;40729:11;40713:28;;;;;;;;;;;:41;;;;40885:15;:24;40901:7;40885:24;;;;;;;;;;;40878:31;;;40920:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39936:1008;;;39865:1079;:::o;37369:221::-;37454:14;37471:20;37488:2;37471:16;:20::i;:::-;37454:37;;37529:7;37502:12;:16;37515:2;37502:16;;;;;;;;;;;;;;;:24;37519:6;37502:24;;;;;;;;;;;:34;;;;37576:6;37547:17;:26;37565:7;37547:26;;;;;;;;;;;:35;;;;37443:147;37369:221;;:::o;28635:382::-;28729:1;28715:16;;:2;:16;;;;28707:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28788:16;28796:7;28788;:16::i;:::-;28787:17;28779:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28850:45;28879:1;28883:2;28887:7;28850:20;:45::i;:::-;28925:1;28908:9;:13;28918:2;28908:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28956:2;28937:7;:16;28945:7;28937:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29001:7;28997:2;28976:33;;28993:1;28976:33;;;;;;;;;;;;28635:382;;:::o;8225:387::-;8285:4;8493:12;8560:7;8548:20;8540:28;;8603:1;8596:4;:8;8589:15;;;8225:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:474::-;9238:6;9246;9295:2;9283:9;9274:7;9270:23;9266:32;9263:119;;;9301:79;;:::i;:::-;9263:119;9421:1;9446:53;9491:7;9482:6;9471:9;9467:22;9446:53;:::i;:::-;9436:63;;9392:117;9548:2;9574:53;9619:7;9610:6;9599:9;9595:22;9574:53;:::i;:::-;9564:63;;9519:118;9170:474;;;;;:::o;9650:179::-;9719:10;9740:46;9782:3;9774:6;9740:46;:::i;:::-;9818:4;9813:3;9809:14;9795:28;;9650:179;;;;:::o;9835:118::-;9922:24;9940:5;9922:24;:::i;:::-;9917:3;9910:37;9835:118;;:::o;9989:732::-;10108:3;10137:54;10185:5;10137:54;:::i;:::-;10207:86;10286:6;10281:3;10207:86;:::i;:::-;10200:93;;10317:56;10367:5;10317:56;:::i;:::-;10396:7;10427:1;10412:284;10437:6;10434:1;10431:13;10412:284;;;10513:6;10507:13;10540:63;10599:3;10584:13;10540:63;:::i;:::-;10533:70;;10626:60;10679:6;10626:60;:::i;:::-;10616:70;;10472:224;10459:1;10456;10452:9;10447:14;;10412:284;;;10416:14;10712:3;10705:10;;10113:608;;;9989:732;;;;:::o;10727:109::-;10808:21;10823:5;10808:21;:::i;:::-;10803:3;10796:34;10727:109;;:::o;10842:360::-;10928:3;10956:38;10988:5;10956:38;:::i;:::-;11010:70;11073:6;11068:3;11010:70;:::i;:::-;11003:77;;11089:52;11134:6;11129:3;11122:4;11115:5;11111:16;11089:52;:::i;:::-;11166:29;11188:6;11166:29;:::i;:::-;11161:3;11157:39;11150:46;;10932:270;10842:360;;;;:::o;11208:364::-;11296:3;11324:39;11357:5;11324:39;:::i;:::-;11379:71;11443:6;11438:3;11379:71;:::i;:::-;11372:78;;11459:52;11504:6;11499:3;11492:4;11485:5;11481:16;11459:52;:::i;:::-;11536:29;11558:6;11536:29;:::i;:::-;11531:3;11527:39;11520:46;;11300:272;11208:364;;;;:::o;11578:377::-;11684:3;11712:39;11745:5;11712:39;:::i;:::-;11767:89;11849:6;11844:3;11767:89;:::i;:::-;11760:96;;11865:52;11910:6;11905:3;11898:4;11891:5;11887:16;11865:52;:::i;:::-;11942:6;11937:3;11933:16;11926:23;;11688:267;11578:377;;;;:::o;11985:845::-;12088:3;12125:5;12119:12;12154:36;12180:9;12154:36;:::i;:::-;12206:89;12288:6;12283:3;12206:89;:::i;:::-;12199:96;;12326:1;12315:9;12311:17;12342:1;12337:137;;;;12488:1;12483:341;;;;12304:520;;12337:137;12421:4;12417:9;12406;12402:25;12397:3;12390:38;12457:6;12452:3;12448:16;12441:23;;12337:137;;12483:341;12550:38;12582:5;12550:38;:::i;:::-;12610:1;12624:154;12638:6;12635:1;12632:13;12624:154;;;12712:7;12706:14;12702:1;12697:3;12693:11;12686:35;12762:1;12753:7;12749:15;12738:26;;12660:4;12657:1;12653:12;12648:17;;12624:154;;;12807:6;12802:3;12798:16;12791:23;;12490:334;;12304:520;;12092:738;;11985:845;;;;:::o;12836:366::-;12978:3;12999:67;13063:2;13058:3;12999:67;:::i;:::-;12992:74;;13075:93;13164:3;13075:93;:::i;:::-;13193:2;13188:3;13184:12;13177:19;;12836:366;;;:::o;13208:::-;13350:3;13371:67;13435:2;13430:3;13371:67;:::i;:::-;13364:74;;13447:93;13536:3;13447:93;:::i;:::-;13565:2;13560:3;13556:12;13549:19;;13208:366;;;:::o;13580:::-;13722:3;13743:67;13807:2;13802:3;13743:67;:::i;:::-;13736:74;;13819:93;13908:3;13819:93;:::i;:::-;13937:2;13932:3;13928:12;13921:19;;13580:366;;;:::o;13952:::-;14094:3;14115:67;14179:2;14174:3;14115:67;:::i;:::-;14108:74;;14191:93;14280:3;14191:93;:::i;:::-;14309:2;14304:3;14300:12;14293:19;;13952:366;;;:::o;14324:::-;14466:3;14487:67;14551:2;14546:3;14487:67;:::i;:::-;14480:74;;14563:93;14652:3;14563:93;:::i;:::-;14681:2;14676:3;14672:12;14665:19;;14324:366;;;:::o;14696:::-;14838:3;14859:67;14923:2;14918:3;14859:67;:::i;:::-;14852:74;;14935:93;15024:3;14935:93;:::i;:::-;15053:2;15048:3;15044:12;15037:19;;14696:366;;;:::o;15068:::-;15210:3;15231:67;15295:2;15290:3;15231:67;:::i;:::-;15224:74;;15307:93;15396:3;15307:93;:::i;:::-;15425:2;15420:3;15416:12;15409:19;;15068:366;;;:::o;15440:::-;15582:3;15603:67;15667:2;15662:3;15603:67;:::i;:::-;15596:74;;15679:93;15768:3;15679:93;:::i;:::-;15797:2;15792:3;15788:12;15781:19;;15440:366;;;:::o;15812:::-;15954:3;15975:67;16039:2;16034:3;15975:67;:::i;:::-;15968:74;;16051:93;16140:3;16051:93;:::i;:::-;16169:2;16164:3;16160:12;16153:19;;15812:366;;;:::o;16184:::-;16326:3;16347:67;16411:2;16406:3;16347:67;:::i;:::-;16340:74;;16423:93;16512:3;16423:93;:::i;:::-;16541:2;16536:3;16532:12;16525:19;;16184:366;;;:::o;16556:::-;16698:3;16719:67;16783:2;16778:3;16719:67;:::i;:::-;16712:74;;16795:93;16884:3;16795:93;:::i;:::-;16913:2;16908:3;16904:12;16897:19;;16556:366;;;:::o;16928:::-;17070:3;17091:67;17155:2;17150:3;17091:67;:::i;:::-;17084:74;;17167:93;17256:3;17167:93;:::i;:::-;17285:2;17280:3;17276:12;17269:19;;16928:366;;;:::o;17300:::-;17442:3;17463:67;17527:2;17522:3;17463:67;:::i;:::-;17456:74;;17539:93;17628:3;17539:93;:::i;:::-;17657:2;17652:3;17648:12;17641:19;;17300:366;;;:::o;17672:::-;17814:3;17835:67;17899:2;17894:3;17835:67;:::i;:::-;17828:74;;17911:93;18000:3;17911:93;:::i;:::-;18029:2;18024:3;18020:12;18013:19;;17672:366;;;:::o;18044:::-;18186:3;18207:67;18271:2;18266:3;18207:67;:::i;:::-;18200:74;;18283:93;18372:3;18283:93;:::i;:::-;18401:2;18396:3;18392:12;18385:19;;18044:366;;;:::o;18416:::-;18558:3;18579:67;18643:2;18638:3;18579:67;:::i;:::-;18572:74;;18655:93;18744:3;18655:93;:::i;:::-;18773:2;18768:3;18764:12;18757:19;;18416:366;;;:::o;18788:::-;18930:3;18951:67;19015:2;19010:3;18951:67;:::i;:::-;18944:74;;19027:93;19116:3;19027:93;:::i;:::-;19145:2;19140:3;19136:12;19129:19;;18788:366;;;:::o;19160:::-;19302:3;19323:67;19387:2;19382:3;19323:67;:::i;:::-;19316:74;;19399:93;19488:3;19399:93;:::i;:::-;19517:2;19512:3;19508:12;19501:19;;19160:366;;;:::o;19532:::-;19674:3;19695:67;19759:2;19754:3;19695:67;:::i;:::-;19688:74;;19771:93;19860:3;19771:93;:::i;:::-;19889:2;19884:3;19880:12;19873:19;;19532:366;;;:::o;19904:::-;20046:3;20067:67;20131:2;20126:3;20067:67;:::i;:::-;20060:74;;20143:93;20232:3;20143:93;:::i;:::-;20261:2;20256:3;20252:12;20245:19;;19904:366;;;:::o;20276:::-;20418:3;20439:67;20503:2;20498:3;20439:67;:::i;:::-;20432:74;;20515:93;20604:3;20515:93;:::i;:::-;20633:2;20628:3;20624:12;20617:19;;20276:366;;;:::o;20648:::-;20790:3;20811:67;20875:2;20870:3;20811:67;:::i;:::-;20804:74;;20887:93;20976:3;20887:93;:::i;:::-;21005:2;21000:3;20996:12;20989:19;;20648:366;;;:::o;21020:398::-;21179:3;21200:83;21281:1;21276:3;21200:83;:::i;:::-;21193:90;;21292:93;21381:3;21292:93;:::i;:::-;21410:1;21405:3;21401:11;21394:18;;21020:398;;;:::o;21424:366::-;21566:3;21587:67;21651:2;21646:3;21587:67;:::i;:::-;21580:74;;21663:93;21752:3;21663:93;:::i;:::-;21781:2;21776:3;21772:12;21765:19;;21424:366;;;:::o;21796:::-;21938:3;21959:67;22023:2;22018:3;21959:67;:::i;:::-;21952:74;;22035:93;22124:3;22035:93;:::i;:::-;22153:2;22148:3;22144:12;22137:19;;21796:366;;;:::o;22168:::-;22310:3;22331:67;22395:2;22390:3;22331:67;:::i;:::-;22324:74;;22407:93;22496:3;22407:93;:::i;:::-;22525:2;22520:3;22516:12;22509:19;;22168:366;;;:::o;22540:::-;22682:3;22703:67;22767:2;22762:3;22703:67;:::i;:::-;22696:74;;22779:93;22868:3;22779:93;:::i;:::-;22897:2;22892:3;22888:12;22881:19;;22540:366;;;:::o;22912:::-;23054:3;23075:67;23139:2;23134:3;23075:67;:::i;:::-;23068:74;;23151:93;23240:3;23151:93;:::i;:::-;23269:2;23264:3;23260:12;23253:19;;22912:366;;;:::o;23284:::-;23426:3;23447:67;23511:2;23506:3;23447:67;:::i;:::-;23440:74;;23523:93;23612:3;23523:93;:::i;:::-;23641:2;23636:3;23632:12;23625:19;;23284:366;;;:::o;23656:108::-;23733:24;23751:5;23733:24;:::i;:::-;23728:3;23721:37;23656:108;;:::o;23770:118::-;23857:24;23875:5;23857:24;:::i;:::-;23852:3;23845:37;23770:118;;:::o;23894:589::-;24119:3;24141:95;24232:3;24223:6;24141:95;:::i;:::-;24134:102;;24253:95;24344:3;24335:6;24253:95;:::i;:::-;24246:102;;24365:92;24453:3;24444:6;24365:92;:::i;:::-;24358:99;;24474:3;24467:10;;23894:589;;;;;;:::o;24489:379::-;24673:3;24695:147;24838:3;24695:147;:::i;:::-;24688:154;;24859:3;24852:10;;24489:379;;;:::o;24874:222::-;24967:4;25005:2;24994:9;24990:18;24982:26;;25018:71;25086:1;25075:9;25071:17;25062:6;25018:71;:::i;:::-;24874:222;;;;:::o;25102:640::-;25297:4;25335:3;25324:9;25320:19;25312:27;;25349:71;25417:1;25406:9;25402:17;25393:6;25349:71;:::i;:::-;25430:72;25498:2;25487:9;25483:18;25474:6;25430:72;:::i;:::-;25512;25580:2;25569:9;25565:18;25556:6;25512:72;:::i;:::-;25631:9;25625:4;25621:20;25616:2;25605:9;25601:18;25594:48;25659:76;25730:4;25721:6;25659:76;:::i;:::-;25651:84;;25102:640;;;;;;;:::o;25748:373::-;25891:4;25929:2;25918:9;25914:18;25906:26;;25978:9;25972:4;25968:20;25964:1;25953:9;25949:17;25942:47;26006:108;26109:4;26100:6;26006:108;:::i;:::-;25998:116;;25748:373;;;;:::o;26127:210::-;26214:4;26252:2;26241:9;26237:18;26229:26;;26265:65;26327:1;26316:9;26312:17;26303:6;26265:65;:::i;:::-;26127:210;;;;:::o;26343:313::-;26456:4;26494:2;26483:9;26479:18;26471:26;;26543:9;26537:4;26533:20;26529:1;26518:9;26514:17;26507:47;26571:78;26644:4;26635:6;26571:78;:::i;:::-;26563:86;;26343:313;;;;:::o;26662:419::-;26828:4;26866:2;26855:9;26851:18;26843:26;;26915:9;26909:4;26905:20;26901:1;26890:9;26886:17;26879:47;26943:131;27069:4;26943:131;:::i;:::-;26935:139;;26662:419;;;:::o;27087:::-;27253:4;27291:2;27280:9;27276:18;27268:26;;27340:9;27334:4;27330:20;27326:1;27315:9;27311:17;27304:47;27368:131;27494:4;27368:131;:::i;:::-;27360:139;;27087:419;;;:::o;27512:::-;27678:4;27716:2;27705:9;27701:18;27693:26;;27765:9;27759:4;27755:20;27751:1;27740:9;27736:17;27729:47;27793:131;27919:4;27793:131;:::i;:::-;27785:139;;27512:419;;;:::o;27937:::-;28103:4;28141:2;28130:9;28126:18;28118:26;;28190:9;28184:4;28180:20;28176:1;28165:9;28161:17;28154:47;28218:131;28344:4;28218:131;:::i;:::-;28210:139;;27937:419;;;:::o;28362:::-;28528:4;28566:2;28555:9;28551:18;28543:26;;28615:9;28609:4;28605:20;28601:1;28590:9;28586:17;28579:47;28643:131;28769:4;28643:131;:::i;:::-;28635:139;;28362:419;;;:::o;28787:::-;28953:4;28991:2;28980:9;28976:18;28968:26;;29040:9;29034:4;29030:20;29026:1;29015:9;29011:17;29004:47;29068:131;29194:4;29068:131;:::i;:::-;29060:139;;28787:419;;;:::o;29212:::-;29378:4;29416:2;29405:9;29401:18;29393:26;;29465:9;29459:4;29455:20;29451:1;29440:9;29436:17;29429:47;29493:131;29619:4;29493:131;:::i;:::-;29485:139;;29212:419;;;:::o;29637:::-;29803:4;29841:2;29830:9;29826:18;29818:26;;29890:9;29884:4;29880:20;29876:1;29865:9;29861:17;29854:47;29918:131;30044:4;29918:131;:::i;:::-;29910:139;;29637:419;;;:::o;30062:::-;30228:4;30266:2;30255:9;30251:18;30243:26;;30315:9;30309:4;30305:20;30301:1;30290:9;30286:17;30279:47;30343:131;30469:4;30343:131;:::i;:::-;30335:139;;30062:419;;;:::o;30487:::-;30653:4;30691:2;30680:9;30676:18;30668:26;;30740:9;30734:4;30730:20;30726:1;30715:9;30711:17;30704:47;30768:131;30894:4;30768:131;:::i;:::-;30760:139;;30487:419;;;:::o;30912:::-;31078:4;31116:2;31105:9;31101:18;31093:26;;31165:9;31159:4;31155:20;31151:1;31140:9;31136:17;31129:47;31193:131;31319:4;31193:131;:::i;:::-;31185:139;;30912:419;;;:::o;31337:::-;31503:4;31541:2;31530:9;31526:18;31518:26;;31590:9;31584:4;31580:20;31576:1;31565:9;31561:17;31554:47;31618:131;31744:4;31618:131;:::i;:::-;31610:139;;31337:419;;;:::o;31762:::-;31928:4;31966:2;31955:9;31951:18;31943:26;;32015:9;32009:4;32005:20;32001:1;31990:9;31986:17;31979:47;32043:131;32169:4;32043:131;:::i;:::-;32035:139;;31762:419;;;:::o;32187:::-;32353:4;32391:2;32380:9;32376:18;32368:26;;32440:9;32434:4;32430:20;32426:1;32415:9;32411:17;32404:47;32468:131;32594:4;32468:131;:::i;:::-;32460:139;;32187:419;;;:::o;32612:::-;32778:4;32816:2;32805:9;32801:18;32793:26;;32865:9;32859:4;32855:20;32851:1;32840:9;32836:17;32829:47;32893:131;33019:4;32893:131;:::i;:::-;32885:139;;32612:419;;;:::o;33037:::-;33203:4;33241:2;33230:9;33226:18;33218:26;;33290:9;33284:4;33280:20;33276:1;33265:9;33261:17;33254:47;33318:131;33444:4;33318:131;:::i;:::-;33310:139;;33037:419;;;:::o;33462:::-;33628:4;33666:2;33655:9;33651:18;33643:26;;33715:9;33709:4;33705:20;33701:1;33690:9;33686:17;33679:47;33743:131;33869:4;33743:131;:::i;:::-;33735:139;;33462:419;;;:::o;33887:::-;34053:4;34091:2;34080:9;34076:18;34068:26;;34140:9;34134:4;34130:20;34126:1;34115:9;34111:17;34104:47;34168:131;34294:4;34168:131;:::i;:::-;34160:139;;33887:419;;;:::o;34312:::-;34478:4;34516:2;34505:9;34501:18;34493:26;;34565:9;34559:4;34555:20;34551:1;34540:9;34536:17;34529:47;34593:131;34719:4;34593:131;:::i;:::-;34585:139;;34312:419;;;:::o;34737:::-;34903:4;34941:2;34930:9;34926:18;34918:26;;34990:9;34984:4;34980:20;34976:1;34965:9;34961:17;34954:47;35018:131;35144:4;35018:131;:::i;:::-;35010:139;;34737:419;;;:::o;35162:::-;35328:4;35366:2;35355:9;35351:18;35343:26;;35415:9;35409:4;35405:20;35401:1;35390:9;35386:17;35379:47;35443:131;35569:4;35443:131;:::i;:::-;35435:139;;35162:419;;;:::o;35587:::-;35753:4;35791:2;35780:9;35776:18;35768:26;;35840:9;35834:4;35830:20;35826:1;35815:9;35811:17;35804:47;35868:131;35994:4;35868:131;:::i;:::-;35860:139;;35587:419;;;:::o;36012:::-;36178:4;36216:2;36205:9;36201:18;36193:26;;36265:9;36259:4;36255:20;36251:1;36240:9;36236:17;36229:47;36293:131;36419:4;36293:131;:::i;:::-;36285:139;;36012:419;;;:::o;36437:::-;36603:4;36641:2;36630:9;36626:18;36618:26;;36690:9;36684:4;36680:20;36676:1;36665:9;36661:17;36654:47;36718:131;36844:4;36718:131;:::i;:::-;36710:139;;36437:419;;;:::o;36862:::-;37028:4;37066:2;37055:9;37051:18;37043:26;;37115:9;37109:4;37105:20;37101:1;37090:9;37086:17;37079:47;37143:131;37269:4;37143:131;:::i;:::-;37135:139;;36862:419;;;:::o;37287:::-;37453:4;37491:2;37480:9;37476:18;37468:26;;37540:9;37534:4;37530:20;37526:1;37515:9;37511:17;37504:47;37568:131;37694:4;37568:131;:::i;:::-;37560:139;;37287:419;;;:::o;37712:::-;37878:4;37916:2;37905:9;37901:18;37893:26;;37965:9;37959:4;37955:20;37951:1;37940:9;37936:17;37929:47;37993:131;38119:4;37993:131;:::i;:::-;37985:139;;37712:419;;;:::o;38137:::-;38303:4;38341:2;38330:9;38326:18;38318:26;;38390:9;38384:4;38380:20;38376:1;38365:9;38361:17;38354:47;38418:131;38544:4;38418:131;:::i;:::-;38410:139;;38137:419;;;:::o;38562:222::-;38655:4;38693:2;38682:9;38678:18;38670:26;;38706:71;38774:1;38763:9;38759:17;38750:6;38706:71;:::i;:::-;38562:222;;;;:::o;38790:129::-;38824:6;38851:20;;:::i;:::-;38841:30;;38880:33;38908:4;38900:6;38880:33;:::i;:::-;38790:129;;;:::o;38925:75::-;38958:6;38991:2;38985:9;38975:19;;38925:75;:::o;39006:311::-;39083:4;39173:18;39165:6;39162:30;39159:56;;;39195:18;;:::i;:::-;39159:56;39245:4;39237:6;39233:17;39225:25;;39305:4;39299;39295:15;39287:23;;39006:311;;;:::o;39323:307::-;39384:4;39474:18;39466:6;39463:30;39460:56;;;39496:18;;:::i;:::-;39460:56;39534:29;39556:6;39534:29;:::i;:::-;39526:37;;39618:4;39612;39608:15;39600:23;;39323:307;;;:::o;39636:308::-;39698:4;39788:18;39780:6;39777:30;39774:56;;;39810:18;;:::i;:::-;39774:56;39848:29;39870:6;39848:29;:::i;:::-;39840:37;;39932:4;39926;39922:15;39914:23;;39636:308;;;:::o;39950:132::-;40017:4;40040:3;40032:11;;40070:4;40065:3;40061:14;40053:22;;39950:132;;;:::o;40088:141::-;40137:4;40160:3;40152:11;;40183:3;40180:1;40173:14;40217:4;40214:1;40204:18;40196:26;;40088:141;;;:::o;40235:114::-;40302:6;40336:5;40330:12;40320:22;;40235:114;;;:::o;40355:98::-;40406:6;40440:5;40434:12;40424:22;;40355:98;;;:::o;40459:99::-;40511:6;40545:5;40539:12;40529:22;;40459:99;;;:::o;40564:113::-;40634:4;40666;40661:3;40657:14;40649:22;;40564:113;;;:::o;40683:184::-;40782:11;40816:6;40811:3;40804:19;40856:4;40851:3;40847:14;40832:29;;40683:184;;;;:::o;40873:168::-;40956:11;40990:6;40985:3;40978:19;41030:4;41025:3;41021:14;41006:29;;40873:168;;;;:::o;41047:147::-;41148:11;41185:3;41170:18;;41047:147;;;;:::o;41200:169::-;41284:11;41318:6;41313:3;41306:19;41358:4;41353:3;41349:14;41334:29;;41200:169;;;;:::o;41375:148::-;41477:11;41514:3;41499:18;;41375:148;;;;:::o;41529:305::-;41569:3;41588:20;41606:1;41588:20;:::i;:::-;41583:25;;41622:20;41640:1;41622:20;:::i;:::-;41617:25;;41776:1;41708:66;41704:74;41701:1;41698:81;41695:107;;;41782:18;;:::i;:::-;41695:107;41826:1;41823;41819:9;41812:16;;41529:305;;;;:::o;41840:185::-;41880:1;41897:20;41915:1;41897:20;:::i;:::-;41892:25;;41931:20;41949:1;41931:20;:::i;:::-;41926:25;;41970:1;41960:35;;41975:18;;:::i;:::-;41960:35;42017:1;42014;42010:9;42005:14;;41840:185;;;;:::o;42031:348::-;42071:7;42094:20;42112:1;42094:20;:::i;:::-;42089:25;;42128:20;42146:1;42128:20;:::i;:::-;42123:25;;42316:1;42248:66;42244:74;42241:1;42238:81;42233:1;42226:9;42219:17;42215:105;42212:131;;;42323:18;;:::i;:::-;42212:131;42371:1;42368;42364:9;42353:20;;42031:348;;;;:::o;42385:191::-;42425:4;42445:20;42463:1;42445:20;:::i;:::-;42440:25;;42479:20;42497:1;42479:20;:::i;:::-;42474:25;;42518:1;42515;42512:8;42509:34;;;42523:18;;:::i;:::-;42509:34;42568:1;42565;42561:9;42553:17;;42385:191;;;;:::o;42582:96::-;42619:7;42648:24;42666:5;42648:24;:::i;:::-;42637:35;;42582:96;;;:::o;42684:90::-;42718:7;42761:5;42754:13;42747:21;42736:32;;42684:90;;;:::o;42780:149::-;42816:7;42856:66;42849:5;42845:78;42834:89;;42780:149;;;:::o;42935:126::-;42972:7;43012:42;43005:5;43001:54;42990:65;;42935:126;;;:::o;43067:77::-;43104:7;43133:5;43122:16;;43067:77;;;:::o;43150:154::-;43234:6;43229:3;43224;43211:30;43296:1;43287:6;43282:3;43278:16;43271:27;43150:154;;;:::o;43310:307::-;43378:1;43388:113;43402:6;43399:1;43396:13;43388:113;;;43487:1;43482:3;43478:11;43472:18;43468:1;43463:3;43459:11;43452:39;43424:2;43421:1;43417:10;43412:15;;43388:113;;;43519:6;43516:1;43513:13;43510:101;;;43599:1;43590:6;43585:3;43581:16;43574:27;43510:101;43359:258;43310:307;;;:::o;43623:320::-;43667:6;43704:1;43698:4;43694:12;43684:22;;43751:1;43745:4;43741:12;43772:18;43762:81;;43828:4;43820:6;43816:17;43806:27;;43762:81;43890:2;43882:6;43879:14;43859:18;43856:38;43853:84;;;43909:18;;:::i;:::-;43853:84;43674:269;43623:320;;;:::o;43949:281::-;44032:27;44054:4;44032:27;:::i;:::-;44024:6;44020:40;44162:6;44150:10;44147:22;44126:18;44114:10;44111:34;44108:62;44105:88;;;44173:18;;:::i;:::-;44105:88;44213:10;44209:2;44202:22;43992:238;43949:281;;:::o;44236:233::-;44275:3;44298:24;44316:5;44298:24;:::i;:::-;44289:33;;44344:66;44337:5;44334:77;44331:103;;;44414:18;;:::i;:::-;44331:103;44461:1;44454:5;44450:13;44443:20;;44236:233;;;:::o;44475:176::-;44507:1;44524:20;44542:1;44524:20;:::i;:::-;44519:25;;44558:20;44576:1;44558:20;:::i;:::-;44553:25;;44597:1;44587:35;;44602:18;;:::i;:::-;44587:35;44643:1;44640;44636:9;44631:14;;44475:176;;;;:::o;44657:180::-;44705:77;44702:1;44695:88;44802:4;44799:1;44792:15;44826:4;44823:1;44816:15;44843:180;44891:77;44888:1;44881:88;44988:4;44985:1;44978:15;45012:4;45009:1;45002:15;45029:180;45077:77;45074:1;45067:88;45174:4;45171:1;45164:15;45198:4;45195:1;45188:15;45215:180;45263:77;45260:1;45253:88;45360:4;45357:1;45350:15;45384:4;45381:1;45374:15;45401:180;45449:77;45446:1;45439:88;45546:4;45543:1;45536:15;45570:4;45567:1;45560:15;45587:180;45635:77;45632:1;45625:88;45732:4;45729:1;45722:15;45756:4;45753:1;45746:15;45773:117;45882:1;45879;45872:12;45896:117;46005:1;46002;45995:12;46019:117;46128:1;46125;46118:12;46142:117;46251:1;46248;46241:12;46265:117;46374:1;46371;46364:12;46388:102;46429:6;46480:2;46476:7;46471:2;46464:5;46460:14;46456:28;46446:38;;46388:102;;;:::o;46496:174::-;46636:26;46632:1;46624:6;46620:14;46613:50;46496:174;:::o;46676:230::-;46816:34;46812:1;46804:6;46800:14;46793:58;46885:13;46880:2;46872:6;46868:15;46861:38;46676:230;:::o;46912:237::-;47052:34;47048:1;47040:6;47036:14;47029:58;47121:20;47116:2;47108:6;47104:15;47097:45;46912:237;:::o;47155:225::-;47295:34;47291:1;47283:6;47279:14;47272:58;47364:8;47359:2;47351:6;47347:15;47340:33;47155:225;:::o;47386:178::-;47526:30;47522:1;47514:6;47510:14;47503:54;47386:178;:::o;47570:::-;47710:30;47706:1;47698:6;47694:14;47687:54;47570:178;:::o;47754:223::-;47894:34;47890:1;47882:6;47878:14;47871:58;47963:6;47958:2;47950:6;47946:15;47939:31;47754:223;:::o;47983:175::-;48123:27;48119:1;48111:6;48107:14;48100:51;47983:175;:::o;48164:227::-;48304:34;48300:1;48292:6;48288:14;48281:58;48373:10;48368:2;48360:6;48356:15;48349:35;48164:227;:::o;48397:231::-;48537:34;48533:1;48525:6;48521:14;48514:58;48606:14;48601:2;48593:6;48589:15;48582:39;48397:231;:::o;48634:243::-;48774:34;48770:1;48762:6;48758:14;48751:58;48843:26;48838:2;48830:6;48826:15;48819:51;48634:243;:::o;48883:229::-;49023:34;49019:1;49011:6;49007:14;49000:58;49092:12;49087:2;49079:6;49075:15;49068:37;48883:229;:::o;49118:228::-;49258:34;49254:1;49246:6;49242:14;49235:58;49327:11;49322:2;49314:6;49310:15;49303:36;49118:228;:::o;49352:172::-;49492:24;49488:1;49480:6;49476:14;49469:48;49352:172;:::o;49530:182::-;49670:34;49666:1;49658:6;49654:14;49647:58;49530:182;:::o;49718:231::-;49858:34;49854:1;49846:6;49842:14;49835:58;49927:14;49922:2;49914:6;49910:15;49903:39;49718:231;:::o;49955:182::-;50095:34;50091:1;50083:6;50079:14;50072:58;49955:182;:::o;50143:172::-;50283:24;50279:1;50271:6;50267:14;50260:48;50143:172;:::o;50321:228::-;50461:34;50457:1;50449:6;50445:14;50438:58;50530:11;50525:2;50517:6;50513:15;50506:36;50321:228;:::o;50555:180::-;50695:32;50691:1;50683:6;50679:14;50672:56;50555:180;:::o;50741:234::-;50881:34;50877:1;50869:6;50865:14;50858:58;50950:17;50945:2;50937:6;50933:15;50926:42;50741:234;:::o;50981:220::-;51121:34;51117:1;51109:6;51105:14;51098:58;51190:3;51185:2;51177:6;51173:15;51166:28;50981:220;:::o;51207:114::-;;:::o;51327:168::-;51467:20;51463:1;51455:6;51451:14;51444:44;51327:168;:::o;51501:227::-;51641:34;51637:1;51629:6;51625:14;51618:58;51710:10;51705:2;51697:6;51693:15;51686:35;51501:227;:::o;51734:236::-;51874:34;51870:1;51862:6;51858:14;51851:58;51943:19;51938:2;51930:6;51926:15;51919:44;51734:236;:::o;51976:231::-;52116:34;52112:1;52104:6;52100:14;52093:58;52185:14;52180:2;52172:6;52168:15;52161:39;51976:231;:::o;52213:173::-;52353:25;52349:1;52341:6;52337:14;52330:49;52213:173;:::o;52392:177::-;52532:29;52528:1;52520:6;52516:14;52509:53;52392:177;:::o;52575:122::-;52648:24;52666:5;52648:24;:::i;:::-;52641:5;52638:35;52628:63;;52687:1;52684;52677:12;52628:63;52575:122;:::o;52703:116::-;52773:21;52788:5;52773:21;:::i;:::-;52766:5;52763:32;52753:60;;52809:1;52806;52799:12;52753:60;52703:116;:::o;52825:120::-;52897:23;52914:5;52897:23;:::i;:::-;52890:5;52887:34;52877:62;;52935:1;52932;52925:12;52877:62;52825:120;:::o;52951:122::-;53024:24;53042:5;53024:24;:::i;:::-;53017:5;53014:35;53004:63;;53063:1;53060;53053:12;53004:63;52951:122;:::o
Swarm Source
ipfs://e7de4126ff7fa1edf56252c90da0682b2f3e310ddff30d84f61e167df41c4041
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.