ERC-721
Overview
Max Total Supply
333 EABC
Holders
227
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ExploerAbstractByChiho
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-06 */ /** _ _ _ _ ___ | | _ | | | | ___ | | / / | |__ |_| | |__ ___ | | / _ \ | |___ / / | \ _ | \ / —— \ | | / /_\ \ | |___ \ | | | _ | | | | _ | | / \ | | | / /___\ \ | | \ \ \ \ | | | | | | | | | | | |__| | | |___ / / \ \ | | | | \__\ |_| |__ |_| |_| |__| \____/ |_____| |_|______|_| |_|___/_/ */ // SPDX-License-Identifier: MIT //Developer Info: chiho lab // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/new.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender() , "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } pragma solidity ^0.8.13; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } pragma solidity ^0.8.7; contract ExploerAbstractByChiho is ERC721A, DefaultOperatorFilterer , Ownable { using Strings for uint256; string private uriPrefix ; string private uriSuffix = ".json"; string public hiddenURL; uint256 public cost = 0.005 ether; uint16 public maxSupply = 333; uint8 public maxMintAmountPerTx = 1; uint8 public maxMintAmountPerWallet = 1; bool public paused = true; bool public reveal =false; mapping (address => uint8) public NFTPerPublicAddress; constructor() ERC721A("Exploer Abstract by Chiho", "EABC") { } function mint(uint8 _mintAmount) external payable { require(!paused, "The contract is paused!"); uint16 totalSupply = uint16(totalSupply()); uint8 nft = NFTPerPublicAddress[msg.sender]; require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction."); require(_mintAmount + nft <= maxMintAmountPerWallet, "Exceeds max mint."); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _safeMint(msg.sender , _mintAmount); NFTPerPublicAddress[msg.sender] = _mintAmount + nft; delete totalSupply; delete _mintAmount; } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); uint totalAmount = _amountPerAddress * addresses.length; require(totalSupply + totalAmount <= maxSupply, "Exceeds max supply."); for (uint256 i = 0; i < addresses.length; i++) { _safeMint(addresses[i], _amountPerAddress); } delete _amountPerAddress; delete totalSupply; } function setMaxSupply(uint16 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if ( reveal == false) { return hiddenURL; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix)) : ""; } function setMaxLimitPerAddress(uint8 _limit) external onlyOwner{ maxMintAmountPerWallet = _limit; delete _limit; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setHiddenUri(string memory _uriPrefix) external onlyOwner { hiddenURL = _uriPrefix; } function setPaused() external onlyOwner { paused = !paused; } function setCost(uint _cost) external onlyOwner{ cost = _cost; } function setRevealed() external onlyOwner{ reveal = !reveal; } function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{ maxMintAmountPerTx = _maxtx; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance ); } function _baseURI() internal view override returns (string memory) { return uriPrefix; } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90816200004a91906200071a565b506611c37937e08000600c5561014d600d60006101000a81548161ffff021916908361ffff1602179055506001600d60026101000a81548160ff021916908360ff1602179055506001600d60036101000a81548160ff021916908360ff1602179055506001600d60046101000a81548160ff0219169083151502179055506000600d60056101000a81548160ff021916908315150217905550348015620000f057600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601981526020017f4578706c6f657220416273747261637420627920436869686f000000000000008152506040518060400160405280600481526020017f454142430000000000000000000000000000000000000000000000000000000081525081600290816200018591906200071a565b5080600390816200019791906200071a565b50620001a8620003cd60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003a55780156200026b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200023192919062000846565b600060405180830381600087803b1580156200024c57600080fd5b505af115801562000261573d6000803e3d6000fd5b50505050620003a4565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000325576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002eb92919062000846565b600060405180830381600087803b1580156200030657600080fd5b505af11580156200031b573d6000803e3d6000fd5b50505050620003a3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200036e919062000873565b600060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050505b5b5b5050620003c7620003bb620003d260201b60201c565b620003da60201b60201c565b62000890565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052257607f821691505b602082108103620005385762000537620004da565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005a27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000563565b620005ae868362000563565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005fb620005f5620005ef84620005c6565b620005d0565b620005c6565b9050919050565b6000819050919050565b6200061783620005da565b6200062f620006268262000602565b84845462000570565b825550505050565b600090565b6200064662000637565b620006538184846200060c565b505050565b5b818110156200067b576200066f6000826200063c565b60018101905062000659565b5050565b601f821115620006ca5762000694816200053e565b6200069f8462000553565b81016020851015620006af578190505b620006c7620006be8562000553565b83018262000658565b50505b505050565b600082821c905092915050565b6000620006ef60001984600802620006cf565b1980831691505092915050565b60006200070a8383620006dc565b9150826002028217905092915050565b6200072582620004a0565b67ffffffffffffffff811115620007415762000740620004ab565b5b6200074d825462000509565b6200075a8282856200067f565b600060209050601f8311600181146200079257600084156200077d578287015190505b620007898582620006fc565b865550620007f9565b601f198416620007a2866200053e565b60005b82811015620007cc57848901518255600182019150602085019450602081019050620007a5565b86831015620007ec5784890151620007e8601f891682620006dc565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200082e8262000801565b9050919050565b620008408162000821565b82525050565b60006040820190506200085d600083018562000835565b6200086c602083018462000835565b9392505050565b60006020820190506200088a600083018462000835565b92915050565b61494880620008a06000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063b88d4fde116100ab578063e94053c71161006f578063e94053c714610762578063e985e9c51461079f578063eef440af146107dc578063f2fde38b14610807578063f6affb5f146108305761021a565b8063b88d4fde1461067d578063bc951b91146106a6578063c87b56dd146106d1578063cffb6e201461070e578063d5abeb01146107375761021a565b806394354fd0116100f257806394354fd0146105aa57806395d89b41146105d5578063a22cb46514610600578063a475b5dd14610629578063aa062290146106545761021a565b806370a0823114610502578063715018a61461053f5780637ec4a659146105565780638da5cb5b1461057f5761021a565b80632f6f98e1116101a657806342842e0e1161017557806342842e0e1461042c57806344a0d68a146104555780635c975abb1461047e5780636352211e146104a95780636ecd2306146104e65761021a565b80632f6f98e1146103be57806337a66d85146103e75780633bd64968146103fe5780633ccfd60b146104155761021a565b8063095ea7b3116101ed578063095ea7b3146102ed5780631067fcc71461031657806313faede61461033f57806318160ddd1461036a57806323b872dd146103955761021a565b806301ffc9a71461021f57806306421c2f1461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906135a5565b610859565b60405161025391906135ed565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190613642565b61093b565b005b34801561029157600080fd5b5061029a6109d7565b6040516102a791906136ff565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190613757565b610a69565b6040516102e491906137c5565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f919061380c565b610ae5565b005b34801561032257600080fd5b5061033d60048036038101906103389190613981565b610bef565b005b34801561034b57600080fd5b50610354610c7e565b60405161036191906139d9565b60405180910390f35b34801561037657600080fd5b5061037f610c84565b60405161038c91906139d9565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906139f4565b610c9b565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190613a47565b610e7d565b005b3480156103f357600080fd5b506103fc610f8a565b005b34801561040a57600080fd5b50610413611032565b005b34801561042157600080fd5b5061042a6110da565b005b34801561043857600080fd5b50610453600480360381019061044e91906139f4565b6111a5565b005b34801561046157600080fd5b5061047c60048036038101906104779190613757565b611387565b005b34801561048a57600080fd5b5061049361140d565b6040516104a091906135ed565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613757565b611420565b6040516104dd91906137c5565b60405180910390f35b61050060048036038101906104fb9190613ac0565b611436565b005b34801561050e57600080fd5b5061052960048036038101906105249190613aed565b6116e2565b60405161053691906139d9565b60405180910390f35b34801561054b57600080fd5b506105546117b1565b005b34801561056257600080fd5b5061057d60048036038101906105789190613981565b611839565b005b34801561058b57600080fd5b506105946118c8565b6040516105a191906137c5565b60405180910390f35b3480156105b657600080fd5b506105bf6118f2565b6040516105cc9190613b29565b60405180910390f35b3480156105e157600080fd5b506105ea611905565b6040516105f791906136ff565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190613b70565b611997565b005b34801561063557600080fd5b5061063e611b0e565b60405161064b91906135ed565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190613ac0565b611b21565b005b34801561068957600080fd5b506106a4600480360381019061069f9190613c51565b611bbb565b005b3480156106b257600080fd5b506106bb611da0565b6040516106c89190613b29565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190613757565b611db3565b60405161070591906136ff565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190613d34565b611f0b565b005b34801561074357600080fd5b5061074c612074565b6040516107599190613da3565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190613aed565b612088565b6040516107969190613b29565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190613dbe565b6120a8565b6040516107d391906135ed565b60405180910390f35b3480156107e857600080fd5b506107f161213c565b6040516107fe91906136ff565b60405180910390f35b34801561081357600080fd5b5061082e60048036038101906108299190613aed565b6121ca565b005b34801561083c57600080fd5b5061085760048036038101906108529190613ac0565b6122c1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093457506109338261235f565b5b9050919050565b6109436123c9565b73ffffffffffffffffffffffffffffffffffffffff166109616118c8565b73ffffffffffffffffffffffffffffffffffffffff16146109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae90613e4a565b60405180910390fd5b80600d60006101000a81548161ffff021916908361ffff16021790555050565b6060600280546109e690613e99565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1290613e99565b8015610a5f5780601f10610a3457610100808354040283529160200191610a5f565b820191906000526020600020905b815481529060010190602001808311610a4257829003601f168201915b5050505050905090565b6000610a74826123d1565b610aaa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af082611420565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b57576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b766123c9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba85750610ba681610ba16123c9565b6120a8565b155b15610bdf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bea83838361241f565b505050565b610bf76123c9565b73ffffffffffffffffffffffffffffffffffffffff16610c156118c8565b73ffffffffffffffffffffffffffffffffffffffff1614610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6290613e4a565b60405180910390fd5b80600b9081610c7a9190614076565b5050565b600c5481565b6000610c8e6124d1565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e6b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d0d57610d088484846124d6565b610e77565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d56929190614148565b602060405180830381865afa158015610d73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d979190614186565b8015610e2957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610de7929190614148565b602060405180830381865afa158015610e04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e289190614186565b5b610e6a57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e6191906137c5565b60405180910390fd5b5b610e768484846124d6565b5b50505050565b610e856123c9565b73ffffffffffffffffffffffffffffffffffffffff16610ea36118c8565b73ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090613e4a565b60405180910390fd5b6000610f03610c84565b9050600d60009054906101000a900461ffff1661ffff168382610f2691906141e2565b61ffff161115610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290614264565b60405180910390fd5b610f79828461ffff166124e6565b600092506000915060009050505050565b610f926123c9565b73ffffffffffffffffffffffffffffffffffffffff16610fb06118c8565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90613e4a565b60405180910390fd5b600d60049054906101000a900460ff1615600d60046101000a81548160ff021916908315150217905550565b61103a6123c9565b73ffffffffffffffffffffffffffffffffffffffff166110586118c8565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590613e4a565b60405180910390fd5b600d60059054906101000a900460ff1615600d60056101000a81548160ff021916908315150217905550565b6110e26123c9565b73ffffffffffffffffffffffffffffffffffffffff166111006118c8565b73ffffffffffffffffffffffffffffffffffffffff1614611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90613e4a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111a1573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611375573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361121757611212848484612504565b611381565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611260929190614148565b602060405180830381865afa15801561127d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a19190614186565b801561133357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016112f1929190614148565b602060405180830381865afa15801561130e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113329190614186565b5b61137457336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161136b91906137c5565b60405180910390fd5b5b611380848484612504565b5b50505050565b61138f6123c9565b73ffffffffffffffffffffffffffffffffffffffff166113ad6118c8565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90613e4a565b60405180910390fd5b80600c8190555050565b600d60049054906101000a900460ff1681565b600061142b82612524565b600001519050919050565b600d60049054906101000a900460ff1615611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d906142d0565b60405180910390fd5b6000611490610c84565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600d60009054906101000a900461ffff1661ffff168360ff168361150791906141e2565b61ffff16111561154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390614264565b60405180910390fd5b600d60029054906101000a900460ff1660ff16818461156b91906142f0565b60ff1611156115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a690614371565b60405180910390fd5b600d60039054906101000a900460ff1660ff1681846115ce91906142f0565b60ff161115611612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611609906143dd565b60405180910390fd5b8260ff16600c5461162391906143fd565b341015611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c9061448b565b60405180910390fd5b611672338460ff166124e6565b808361167e91906142f0565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611749576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117b96123c9565b73ffffffffffffffffffffffffffffffffffffffff166117d76118c8565b73ffffffffffffffffffffffffffffffffffffffff161461182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182490613e4a565b60405180910390fd5b61183760006127b3565b565b6118416123c9565b73ffffffffffffffffffffffffffffffffffffffff1661185f6118c8565b73ffffffffffffffffffffffffffffffffffffffff16146118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90613e4a565b60405180910390fd5b80600990816118c49190614076565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60029054906101000a900460ff1681565b60606003805461191490613e99565b80601f016020809104026020016040519081016040528092919081815260200182805461194090613e99565b801561198d5780601f106119625761010080835404028352916020019161198d565b820191906000526020600020905b81548152906001019060200180831161197057829003601f168201915b5050505050905090565b61199f6123c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a03576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a106123c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611abd6123c9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b0291906135ed565b60405180910390a35050565b600d60059054906101000a900460ff1681565b611b296123c9565b73ffffffffffffffffffffffffffffffffffffffff16611b476118c8565b73ffffffffffffffffffffffffffffffffffffffff1614611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490613e4a565b60405180910390fd5b80600d60026101000a81548160ff021916908360ff16021790555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611d8c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c2e57611c2985858585612879565b611d99565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611c77929190614148565b602060405180830381865afa158015611c94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cb89190614186565b8015611d4a57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611d08929190614148565b602060405180830381865afa158015611d25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d499190614186565b5b611d8b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611d8291906137c5565b60405180910390fd5b5b611d9885858585612879565b5b5050505050565b600d60039054906101000a900460ff1681565b6060611dbe826123d1565b611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df49061451d565b60405180910390fd5b60001515600d60059054906101000a900460ff16151503611eaa57600b8054611e2590613e99565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5190613e99565b8015611e9e5780601f10611e7357610100808354040283529160200191611e9e565b820191906000526020600020905b815481529060010190602001808311611e8157829003601f168201915b50505050509050611f06565b6000611eb46128f5565b90506000815111611ed45760405180602001604052806000815250611f02565b80611ede84612987565b600a604051602001611ef2939291906145fc565b6040516020818303038152906040525b9150505b919050565b611f136123c9565b73ffffffffffffffffffffffffffffffffffffffff16611f316118c8565b73ffffffffffffffffffffffffffffffffffffffff1614611f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7e90613e4a565b60405180910390fd5b6000611f91610c84565b90506000838390508560ff16611fa791906143fd565b9050600d60009054906101000a900461ffff1661ffff16818361ffff16611fce919061462d565b111561200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690614264565b60405180910390fd5b60005b848490508110156120645761205185858381811061203357612032614661565b5b90506020020160208101906120489190613aed565b8760ff166124e6565b808061205c90614690565b915050612012565b5060009450600091505050505050565b600d60009054906101000a900461ffff1681565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461214990613e99565b80601f016020809104026020016040519081016040528092919081815260200182805461217590613e99565b80156121c25780601f10612197576101008083540402835291602001916121c2565b820191906000526020600020905b8154815290600101906020018083116121a557829003601f168201915b505050505081565b6121d26123c9565b73ffffffffffffffffffffffffffffffffffffffff166121f06118c8565b73ffffffffffffffffffffffffffffffffffffffff1614612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d90613e4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ac9061474a565b60405180910390fd5b6122be816127b3565b50565b6122c96123c9565b73ffffffffffffffffffffffffffffffffffffffff166122e76118c8565b73ffffffffffffffffffffffffffffffffffffffff161461233d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233490613e4a565b60405180910390fd5b80600d60036101000a81548160ff021916908360ff1602179055506000905050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816123dc6124d1565b111580156123eb575060005482105b8015612418575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6124e1838383612ae7565b505050565b612500828260405180602001604052806000815250612f9b565b5050565b61251f83838360405180602001604052806000815250611bbb565b505050565b61252c6134f6565b60008290508061253a6124d1565b11158015612549575060005481105b1561277c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161277a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461265e5780925050506127ae565b5b60011561277957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127745780925050506127ae565b61265f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612884848484612ae7565b6128a38373ffffffffffffffffffffffffffffffffffffffff16612fad565b80156128b857506128b684848484612fd0565b155b156128ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606009805461290490613e99565b80601f016020809104026020016040519081016040528092919081815260200182805461293090613e99565b801561297d5780601f106129525761010080835404028352916020019161297d565b820191906000526020600020905b81548152906001019060200180831161296057829003601f168201915b5050505050905090565b6060600082036129ce576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ae2565b600082905060005b60008214612a005780806129e990614690565b915050600a826129f99190614799565b91506129d6565b60008167ffffffffffffffff811115612a1c57612a1b613856565b5b6040519080825280601f01601f191660200182016040528015612a4e5781602001600182028036833780820191505090505b5090505b60008514612adb57600182612a6791906147ca565b9150600a85612a7691906147fe565b6030612a82919061462d565b60f81b818381518110612a9857612a97614661565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ad49190614799565b9450612a52565b8093505050505b919050565b6000612af282612524565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b5d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612b7e6123c9565b73ffffffffffffffffffffffffffffffffffffffff161480612bad5750612bac85612ba76123c9565b6120a8565b5b80612bf25750612bbb6123c9565b73ffffffffffffffffffffffffffffffffffffffff16612bda84610a69565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c2b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612c91576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c9e8585856001613120565b612caa6000848761241f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612f29576000548214612f2857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f948585856001613126565b5050505050565b612fa8838383600161312c565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ff66123c9565b8786866040518563ffffffff1660e01b81526004016130189493929190614884565b6020604051808303816000875af192505050801561305457506040513d601f19601f8201168201806040525081019061305191906148e5565b60015b6130cd573d8060008114613084576040519150601f19603f3d011682016040523d82523d6000602084013e613089565b606091505b5060008151036130c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613198576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036131d2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131df6000868387613120565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156133a957506133a88773ffffffffffffffffffffffffffffffffffffffff16612fad565b5b1561346e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461341e6000888480600101955088612fd0565b613454576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036133af57826000541461346957600080fd5b6134d9565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361346f575b8160008190555050506134ef6000868387613126565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135828161354d565b811461358d57600080fd5b50565b60008135905061359f81613579565b92915050565b6000602082840312156135bb576135ba613543565b5b60006135c984828501613590565b91505092915050565b60008115159050919050565b6135e7816135d2565b82525050565b600060208201905061360260008301846135de565b92915050565b600061ffff82169050919050565b61361f81613608565b811461362a57600080fd5b50565b60008135905061363c81613616565b92915050565b60006020828403121561365857613657613543565b5b60006136668482850161362d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136a957808201518184015260208101905061368e565b60008484015250505050565b6000601f19601f8301169050919050565b60006136d18261366f565b6136db818561367a565b93506136eb81856020860161368b565b6136f4816136b5565b840191505092915050565b6000602082019050818103600083015261371981846136c6565b905092915050565b6000819050919050565b61373481613721565b811461373f57600080fd5b50565b6000813590506137518161372b565b92915050565b60006020828403121561376d5761376c613543565b5b600061377b84828501613742565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137af82613784565b9050919050565b6137bf816137a4565b82525050565b60006020820190506137da60008301846137b6565b92915050565b6137e9816137a4565b81146137f457600080fd5b50565b600081359050613806816137e0565b92915050565b6000806040838503121561382357613822613543565b5b6000613831858286016137f7565b925050602061384285828601613742565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61388e826136b5565b810181811067ffffffffffffffff821117156138ad576138ac613856565b5b80604052505050565b60006138c0613539565b90506138cc8282613885565b919050565b600067ffffffffffffffff8211156138ec576138eb613856565b5b6138f5826136b5565b9050602081019050919050565b82818337600083830152505050565b600061392461391f846138d1565b6138b6565b9050828152602081018484840111156139405761393f613851565b5b61394b848285613902565b509392505050565b600082601f8301126139685761396761384c565b5b8135613978848260208601613911565b91505092915050565b60006020828403121561399757613996613543565b5b600082013567ffffffffffffffff8111156139b5576139b4613548565b5b6139c184828501613953565b91505092915050565b6139d381613721565b82525050565b60006020820190506139ee60008301846139ca565b92915050565b600080600060608486031215613a0d57613a0c613543565b5b6000613a1b868287016137f7565b9350506020613a2c868287016137f7565b9250506040613a3d86828701613742565b9150509250925092565b60008060408385031215613a5e57613a5d613543565b5b6000613a6c8582860161362d565b9250506020613a7d858286016137f7565b9150509250929050565b600060ff82169050919050565b613a9d81613a87565b8114613aa857600080fd5b50565b600081359050613aba81613a94565b92915050565b600060208284031215613ad657613ad5613543565b5b6000613ae484828501613aab565b91505092915050565b600060208284031215613b0357613b02613543565b5b6000613b11848285016137f7565b91505092915050565b613b2381613a87565b82525050565b6000602082019050613b3e6000830184613b1a565b92915050565b613b4d816135d2565b8114613b5857600080fd5b50565b600081359050613b6a81613b44565b92915050565b60008060408385031215613b8757613b86613543565b5b6000613b95858286016137f7565b9250506020613ba685828601613b5b565b9150509250929050565b600067ffffffffffffffff821115613bcb57613bca613856565b5b613bd4826136b5565b9050602081019050919050565b6000613bf4613bef84613bb0565b6138b6565b905082815260208101848484011115613c1057613c0f613851565b5b613c1b848285613902565b509392505050565b600082601f830112613c3857613c3761384c565b5b8135613c48848260208601613be1565b91505092915050565b60008060008060808587031215613c6b57613c6a613543565b5b6000613c79878288016137f7565b9450506020613c8a878288016137f7565b9350506040613c9b87828801613742565b925050606085013567ffffffffffffffff811115613cbc57613cbb613548565b5b613cc887828801613c23565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613cf457613cf361384c565b5b8235905067ffffffffffffffff811115613d1157613d10613cd4565b5b602083019150836020820283011115613d2d57613d2c613cd9565b5b9250929050565b600080600060408486031215613d4d57613d4c613543565b5b6000613d5b86828701613aab565b935050602084013567ffffffffffffffff811115613d7c57613d7b613548565b5b613d8886828701613cde565b92509250509250925092565b613d9d81613608565b82525050565b6000602082019050613db86000830184613d94565b92915050565b60008060408385031215613dd557613dd4613543565b5b6000613de3858286016137f7565b9250506020613df4858286016137f7565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e3460208361367a565b9150613e3f82613dfe565b602082019050919050565b60006020820190508181036000830152613e6381613e27565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613eb157607f821691505b602082108103613ec457613ec3613e6a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f2c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613eef565b613f368683613eef565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613f73613f6e613f6984613721565b613f4e565b613721565b9050919050565b6000819050919050565b613f8d83613f58565b613fa1613f9982613f7a565b848454613efc565b825550505050565b600090565b613fb6613fa9565b613fc1818484613f84565b505050565b5b81811015613fe557613fda600082613fae565b600181019050613fc7565b5050565b601f82111561402a57613ffb81613eca565b61400484613edf565b81016020851015614013578190505b61402761401f85613edf565b830182613fc6565b50505b505050565b600082821c905092915050565b600061404d6000198460080261402f565b1980831691505092915050565b6000614066838361403c565b9150826002028217905092915050565b61407f8261366f565b67ffffffffffffffff81111561409857614097613856565b5b6140a28254613e99565b6140ad828285613fe9565b600060209050601f8311600181146140e057600084156140ce578287015190505b6140d8858261405a565b865550614140565b601f1984166140ee86613eca565b60005b82811015614116578489015182556001820191506020850194506020810190506140f1565b86831015614133578489015161412f601f89168261403c565b8355505b6001600288020188555050505b505050505050565b600060408201905061415d60008301856137b6565b61416a60208301846137b6565b9392505050565b60008151905061418081613b44565b92915050565b60006020828403121561419c5761419b613543565b5b60006141aa84828501614171565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141ed82613608565b91506141f883613608565b9250828201905061ffff811115614212576142116141b3565b5b92915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b600061424e60138361367a565b915061425982614218565b602082019050919050565b6000602082019050818103600083015261427d81614241565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006142ba60178361367a565b91506142c582614284565b602082019050919050565b600060208201905081810360008301526142e9816142ad565b9050919050565b60006142fb82613a87565b915061430683613a87565b9250828201905060ff81111561431f5761431e6141b3565b5b92915050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b600061435b601c8361367a565b915061436682614325565b602082019050919050565b6000602082019050818103600083015261438a8161434e565b9050919050565b7f45786365656473206d6178206d696e742e000000000000000000000000000000600082015250565b60006143c760118361367a565b91506143d282614391565b602082019050919050565b600060208201905081810360008301526143f6816143ba565b9050919050565b600061440882613721565b915061441383613721565b925082820261442181613721565b91508282048414831517614438576144376141b3565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061447560138361367a565b91506144808261443f565b602082019050919050565b600060208201905081810360008301526144a481614468565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614507602f8361367a565b9150614512826144ab565b604082019050919050565b60006020820190508181036000830152614536816144fa565b9050919050565b600081905092915050565b60006145538261366f565b61455d818561453d565b935061456d81856020860161368b565b80840191505092915050565b6000815461458681613e99565b614590818661453d565b945060018216600081146145ab57600181146145c0576145f3565b60ff19831686528115158202860193506145f3565b6145c985613eca565b60005b838110156145eb578154818901526001820191506020810190506145cc565b838801955050505b50505092915050565b60006146088286614548565b91506146148285614548565b91506146208284614579565b9150819050949350505050565b600061463882613721565b915061464383613721565b925082820190508082111561465b5761465a6141b3565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061469b82613721565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036146cd576146cc6141b3565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061473460268361367a565b915061473f826146d8565b604082019050919050565b6000602082019050818103600083015261476381614727565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147a482613721565b91506147af83613721565b9250826147bf576147be61476a565b5b828204905092915050565b60006147d582613721565b91506147e083613721565b92508282039050818111156147f8576147f76141b3565b5b92915050565b600061480982613721565b915061481483613721565b9250826148245761482361476a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148568261482f565b614860818561483a565b935061487081856020860161368b565b614879816136b5565b840191505092915050565b600060808201905061489960008301876137b6565b6148a660208301866137b6565b6148b360408301856139ca565b81810360608301526148c5818461484b565b905095945050505050565b6000815190506148df81613579565b92915050565b6000602082840312156148fb576148fa613543565b5b6000614909848285016148d0565b9150509291505056fea2646970667358221220c2a5eb870dc17864f202f98fc85d3c90d9602a0b520c1ae7ab281a5dda513fb064736f6c63430008110033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806370a0823111610123578063b88d4fde116100ab578063e94053c71161006f578063e94053c714610762578063e985e9c51461079f578063eef440af146107dc578063f2fde38b14610807578063f6affb5f146108305761021a565b8063b88d4fde1461067d578063bc951b91146106a6578063c87b56dd146106d1578063cffb6e201461070e578063d5abeb01146107375761021a565b806394354fd0116100f257806394354fd0146105aa57806395d89b41146105d5578063a22cb46514610600578063a475b5dd14610629578063aa062290146106545761021a565b806370a0823114610502578063715018a61461053f5780637ec4a659146105565780638da5cb5b1461057f5761021a565b80632f6f98e1116101a657806342842e0e1161017557806342842e0e1461042c57806344a0d68a146104555780635c975abb1461047e5780636352211e146104a95780636ecd2306146104e65761021a565b80632f6f98e1146103be57806337a66d85146103e75780633bd64968146103fe5780633ccfd60b146104155761021a565b8063095ea7b3116101ed578063095ea7b3146102ed5780631067fcc71461031657806313faede61461033f57806318160ddd1461036a57806323b872dd146103955761021a565b806301ffc9a71461021f57806306421c2f1461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906135a5565b610859565b60405161025391906135ed565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190613642565b61093b565b005b34801561029157600080fd5b5061029a6109d7565b6040516102a791906136ff565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190613757565b610a69565b6040516102e491906137c5565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f919061380c565b610ae5565b005b34801561032257600080fd5b5061033d60048036038101906103389190613981565b610bef565b005b34801561034b57600080fd5b50610354610c7e565b60405161036191906139d9565b60405180910390f35b34801561037657600080fd5b5061037f610c84565b60405161038c91906139d9565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906139f4565b610c9b565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190613a47565b610e7d565b005b3480156103f357600080fd5b506103fc610f8a565b005b34801561040a57600080fd5b50610413611032565b005b34801561042157600080fd5b5061042a6110da565b005b34801561043857600080fd5b50610453600480360381019061044e91906139f4565b6111a5565b005b34801561046157600080fd5b5061047c60048036038101906104779190613757565b611387565b005b34801561048a57600080fd5b5061049361140d565b6040516104a091906135ed565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613757565b611420565b6040516104dd91906137c5565b60405180910390f35b61050060048036038101906104fb9190613ac0565b611436565b005b34801561050e57600080fd5b5061052960048036038101906105249190613aed565b6116e2565b60405161053691906139d9565b60405180910390f35b34801561054b57600080fd5b506105546117b1565b005b34801561056257600080fd5b5061057d60048036038101906105789190613981565b611839565b005b34801561058b57600080fd5b506105946118c8565b6040516105a191906137c5565b60405180910390f35b3480156105b657600080fd5b506105bf6118f2565b6040516105cc9190613b29565b60405180910390f35b3480156105e157600080fd5b506105ea611905565b6040516105f791906136ff565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190613b70565b611997565b005b34801561063557600080fd5b5061063e611b0e565b60405161064b91906135ed565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190613ac0565b611b21565b005b34801561068957600080fd5b506106a4600480360381019061069f9190613c51565b611bbb565b005b3480156106b257600080fd5b506106bb611da0565b6040516106c89190613b29565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190613757565b611db3565b60405161070591906136ff565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190613d34565b611f0b565b005b34801561074357600080fd5b5061074c612074565b6040516107599190613da3565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190613aed565b612088565b6040516107969190613b29565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190613dbe565b6120a8565b6040516107d391906135ed565b60405180910390f35b3480156107e857600080fd5b506107f161213c565b6040516107fe91906136ff565b60405180910390f35b34801561081357600080fd5b5061082e60048036038101906108299190613aed565b6121ca565b005b34801561083c57600080fd5b5061085760048036038101906108529190613ac0565b6122c1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093457506109338261235f565b5b9050919050565b6109436123c9565b73ffffffffffffffffffffffffffffffffffffffff166109616118c8565b73ffffffffffffffffffffffffffffffffffffffff16146109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae90613e4a565b60405180910390fd5b80600d60006101000a81548161ffff021916908361ffff16021790555050565b6060600280546109e690613e99565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1290613e99565b8015610a5f5780601f10610a3457610100808354040283529160200191610a5f565b820191906000526020600020905b815481529060010190602001808311610a4257829003601f168201915b5050505050905090565b6000610a74826123d1565b610aaa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af082611420565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b57576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b766123c9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba85750610ba681610ba16123c9565b6120a8565b155b15610bdf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bea83838361241f565b505050565b610bf76123c9565b73ffffffffffffffffffffffffffffffffffffffff16610c156118c8565b73ffffffffffffffffffffffffffffffffffffffff1614610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6290613e4a565b60405180910390fd5b80600b9081610c7a9190614076565b5050565b600c5481565b6000610c8e6124d1565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e6b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d0d57610d088484846124d6565b610e77565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d56929190614148565b602060405180830381865afa158015610d73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d979190614186565b8015610e2957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610de7929190614148565b602060405180830381865afa158015610e04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e289190614186565b5b610e6a57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e6191906137c5565b60405180910390fd5b5b610e768484846124d6565b5b50505050565b610e856123c9565b73ffffffffffffffffffffffffffffffffffffffff16610ea36118c8565b73ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090613e4a565b60405180910390fd5b6000610f03610c84565b9050600d60009054906101000a900461ffff1661ffff168382610f2691906141e2565b61ffff161115610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290614264565b60405180910390fd5b610f79828461ffff166124e6565b600092506000915060009050505050565b610f926123c9565b73ffffffffffffffffffffffffffffffffffffffff16610fb06118c8565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90613e4a565b60405180910390fd5b600d60049054906101000a900460ff1615600d60046101000a81548160ff021916908315150217905550565b61103a6123c9565b73ffffffffffffffffffffffffffffffffffffffff166110586118c8565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590613e4a565b60405180910390fd5b600d60059054906101000a900460ff1615600d60056101000a81548160ff021916908315150217905550565b6110e26123c9565b73ffffffffffffffffffffffffffffffffffffffff166111006118c8565b73ffffffffffffffffffffffffffffffffffffffff1614611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90613e4a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111a1573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611375573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361121757611212848484612504565b611381565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611260929190614148565b602060405180830381865afa15801561127d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a19190614186565b801561133357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016112f1929190614148565b602060405180830381865afa15801561130e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113329190614186565b5b61137457336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161136b91906137c5565b60405180910390fd5b5b611380848484612504565b5b50505050565b61138f6123c9565b73ffffffffffffffffffffffffffffffffffffffff166113ad6118c8565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90613e4a565b60405180910390fd5b80600c8190555050565b600d60049054906101000a900460ff1681565b600061142b82612524565b600001519050919050565b600d60049054906101000a900460ff1615611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d906142d0565b60405180910390fd5b6000611490610c84565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600d60009054906101000a900461ffff1661ffff168360ff168361150791906141e2565b61ffff16111561154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390614264565b60405180910390fd5b600d60029054906101000a900460ff1660ff16818461156b91906142f0565b60ff1611156115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a690614371565b60405180910390fd5b600d60039054906101000a900460ff1660ff1681846115ce91906142f0565b60ff161115611612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611609906143dd565b60405180910390fd5b8260ff16600c5461162391906143fd565b341015611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c9061448b565b60405180910390fd5b611672338460ff166124e6565b808361167e91906142f0565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506000915060009250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611749576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117b96123c9565b73ffffffffffffffffffffffffffffffffffffffff166117d76118c8565b73ffffffffffffffffffffffffffffffffffffffff161461182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182490613e4a565b60405180910390fd5b61183760006127b3565b565b6118416123c9565b73ffffffffffffffffffffffffffffffffffffffff1661185f6118c8565b73ffffffffffffffffffffffffffffffffffffffff16146118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90613e4a565b60405180910390fd5b80600990816118c49190614076565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60029054906101000a900460ff1681565b60606003805461191490613e99565b80601f016020809104026020016040519081016040528092919081815260200182805461194090613e99565b801561198d5780601f106119625761010080835404028352916020019161198d565b820191906000526020600020905b81548152906001019060200180831161197057829003601f168201915b5050505050905090565b61199f6123c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a03576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a106123c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611abd6123c9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b0291906135ed565b60405180910390a35050565b600d60059054906101000a900460ff1681565b611b296123c9565b73ffffffffffffffffffffffffffffffffffffffff16611b476118c8565b73ffffffffffffffffffffffffffffffffffffffff1614611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490613e4a565b60405180910390fd5b80600d60026101000a81548160ff021916908360ff16021790555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611d8c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c2e57611c2985858585612879565b611d99565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611c77929190614148565b602060405180830381865afa158015611c94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cb89190614186565b8015611d4a57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611d08929190614148565b602060405180830381865afa158015611d25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d499190614186565b5b611d8b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611d8291906137c5565b60405180910390fd5b5b611d9885858585612879565b5b5050505050565b600d60039054906101000a900460ff1681565b6060611dbe826123d1565b611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df49061451d565b60405180910390fd5b60001515600d60059054906101000a900460ff16151503611eaa57600b8054611e2590613e99565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5190613e99565b8015611e9e5780601f10611e7357610100808354040283529160200191611e9e565b820191906000526020600020905b815481529060010190602001808311611e8157829003601f168201915b50505050509050611f06565b6000611eb46128f5565b90506000815111611ed45760405180602001604052806000815250611f02565b80611ede84612987565b600a604051602001611ef2939291906145fc565b6040516020818303038152906040525b9150505b919050565b611f136123c9565b73ffffffffffffffffffffffffffffffffffffffff16611f316118c8565b73ffffffffffffffffffffffffffffffffffffffff1614611f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7e90613e4a565b60405180910390fd5b6000611f91610c84565b90506000838390508560ff16611fa791906143fd565b9050600d60009054906101000a900461ffff1661ffff16818361ffff16611fce919061462d565b111561200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690614264565b60405180910390fd5b60005b848490508110156120645761205185858381811061203357612032614661565b5b90506020020160208101906120489190613aed565b8760ff166124e6565b808061205c90614690565b915050612012565b5060009450600091505050505050565b600d60009054906101000a900461ffff1681565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461214990613e99565b80601f016020809104026020016040519081016040528092919081815260200182805461217590613e99565b80156121c25780601f10612197576101008083540402835291602001916121c2565b820191906000526020600020905b8154815290600101906020018083116121a557829003601f168201915b505050505081565b6121d26123c9565b73ffffffffffffffffffffffffffffffffffffffff166121f06118c8565b73ffffffffffffffffffffffffffffffffffffffff1614612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d90613e4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ac9061474a565b60405180910390fd5b6122be816127b3565b50565b6122c96123c9565b73ffffffffffffffffffffffffffffffffffffffff166122e76118c8565b73ffffffffffffffffffffffffffffffffffffffff161461233d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233490613e4a565b60405180910390fd5b80600d60036101000a81548160ff021916908360ff1602179055506000905050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816123dc6124d1565b111580156123eb575060005482105b8015612418575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6124e1838383612ae7565b505050565b612500828260405180602001604052806000815250612f9b565b5050565b61251f83838360405180602001604052806000815250611bbb565b505050565b61252c6134f6565b60008290508061253a6124d1565b11158015612549575060005481105b1561277c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161277a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461265e5780925050506127ae565b5b60011561277957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127745780925050506127ae565b61265f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612884848484612ae7565b6128a38373ffffffffffffffffffffffffffffffffffffffff16612fad565b80156128b857506128b684848484612fd0565b155b156128ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606009805461290490613e99565b80601f016020809104026020016040519081016040528092919081815260200182805461293090613e99565b801561297d5780601f106129525761010080835404028352916020019161297d565b820191906000526020600020905b81548152906001019060200180831161296057829003601f168201915b5050505050905090565b6060600082036129ce576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ae2565b600082905060005b60008214612a005780806129e990614690565b915050600a826129f99190614799565b91506129d6565b60008167ffffffffffffffff811115612a1c57612a1b613856565b5b6040519080825280601f01601f191660200182016040528015612a4e5781602001600182028036833780820191505090505b5090505b60008514612adb57600182612a6791906147ca565b9150600a85612a7691906147fe565b6030612a82919061462d565b60f81b818381518110612a9857612a97614661565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ad49190614799565b9450612a52565b8093505050505b919050565b6000612af282612524565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b5d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612b7e6123c9565b73ffffffffffffffffffffffffffffffffffffffff161480612bad5750612bac85612ba76123c9565b6120a8565b5b80612bf25750612bbb6123c9565b73ffffffffffffffffffffffffffffffffffffffff16612bda84610a69565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c2b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612c91576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c9e8585856001613120565b612caa6000848761241f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612f29576000548214612f2857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f948585856001613126565b5050505050565b612fa8838383600161312c565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ff66123c9565b8786866040518563ffffffff1660e01b81526004016130189493929190614884565b6020604051808303816000875af192505050801561305457506040513d601f19601f8201168201806040525081019061305191906148e5565b60015b6130cd573d8060008114613084576040519150601f19603f3d011682016040523d82523d6000602084013e613089565b606091505b5060008151036130c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613198576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036131d2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131df6000868387613120565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156133a957506133a88773ffffffffffffffffffffffffffffffffffffffff16612fad565b5b1561346e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461341e6000888480600101955088612fd0565b613454576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036133af57826000541461346957600080fd5b6134d9565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361346f575b8160008190555050506134ef6000868387613126565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135828161354d565b811461358d57600080fd5b50565b60008135905061359f81613579565b92915050565b6000602082840312156135bb576135ba613543565b5b60006135c984828501613590565b91505092915050565b60008115159050919050565b6135e7816135d2565b82525050565b600060208201905061360260008301846135de565b92915050565b600061ffff82169050919050565b61361f81613608565b811461362a57600080fd5b50565b60008135905061363c81613616565b92915050565b60006020828403121561365857613657613543565b5b60006136668482850161362d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136a957808201518184015260208101905061368e565b60008484015250505050565b6000601f19601f8301169050919050565b60006136d18261366f565b6136db818561367a565b93506136eb81856020860161368b565b6136f4816136b5565b840191505092915050565b6000602082019050818103600083015261371981846136c6565b905092915050565b6000819050919050565b61373481613721565b811461373f57600080fd5b50565b6000813590506137518161372b565b92915050565b60006020828403121561376d5761376c613543565b5b600061377b84828501613742565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137af82613784565b9050919050565b6137bf816137a4565b82525050565b60006020820190506137da60008301846137b6565b92915050565b6137e9816137a4565b81146137f457600080fd5b50565b600081359050613806816137e0565b92915050565b6000806040838503121561382357613822613543565b5b6000613831858286016137f7565b925050602061384285828601613742565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61388e826136b5565b810181811067ffffffffffffffff821117156138ad576138ac613856565b5b80604052505050565b60006138c0613539565b90506138cc8282613885565b919050565b600067ffffffffffffffff8211156138ec576138eb613856565b5b6138f5826136b5565b9050602081019050919050565b82818337600083830152505050565b600061392461391f846138d1565b6138b6565b9050828152602081018484840111156139405761393f613851565b5b61394b848285613902565b509392505050565b600082601f8301126139685761396761384c565b5b8135613978848260208601613911565b91505092915050565b60006020828403121561399757613996613543565b5b600082013567ffffffffffffffff8111156139b5576139b4613548565b5b6139c184828501613953565b91505092915050565b6139d381613721565b82525050565b60006020820190506139ee60008301846139ca565b92915050565b600080600060608486031215613a0d57613a0c613543565b5b6000613a1b868287016137f7565b9350506020613a2c868287016137f7565b9250506040613a3d86828701613742565b9150509250925092565b60008060408385031215613a5e57613a5d613543565b5b6000613a6c8582860161362d565b9250506020613a7d858286016137f7565b9150509250929050565b600060ff82169050919050565b613a9d81613a87565b8114613aa857600080fd5b50565b600081359050613aba81613a94565b92915050565b600060208284031215613ad657613ad5613543565b5b6000613ae484828501613aab565b91505092915050565b600060208284031215613b0357613b02613543565b5b6000613b11848285016137f7565b91505092915050565b613b2381613a87565b82525050565b6000602082019050613b3e6000830184613b1a565b92915050565b613b4d816135d2565b8114613b5857600080fd5b50565b600081359050613b6a81613b44565b92915050565b60008060408385031215613b8757613b86613543565b5b6000613b95858286016137f7565b9250506020613ba685828601613b5b565b9150509250929050565b600067ffffffffffffffff821115613bcb57613bca613856565b5b613bd4826136b5565b9050602081019050919050565b6000613bf4613bef84613bb0565b6138b6565b905082815260208101848484011115613c1057613c0f613851565b5b613c1b848285613902565b509392505050565b600082601f830112613c3857613c3761384c565b5b8135613c48848260208601613be1565b91505092915050565b60008060008060808587031215613c6b57613c6a613543565b5b6000613c79878288016137f7565b9450506020613c8a878288016137f7565b9350506040613c9b87828801613742565b925050606085013567ffffffffffffffff811115613cbc57613cbb613548565b5b613cc887828801613c23565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613cf457613cf361384c565b5b8235905067ffffffffffffffff811115613d1157613d10613cd4565b5b602083019150836020820283011115613d2d57613d2c613cd9565b5b9250929050565b600080600060408486031215613d4d57613d4c613543565b5b6000613d5b86828701613aab565b935050602084013567ffffffffffffffff811115613d7c57613d7b613548565b5b613d8886828701613cde565b92509250509250925092565b613d9d81613608565b82525050565b6000602082019050613db86000830184613d94565b92915050565b60008060408385031215613dd557613dd4613543565b5b6000613de3858286016137f7565b9250506020613df4858286016137f7565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e3460208361367a565b9150613e3f82613dfe565b602082019050919050565b60006020820190508181036000830152613e6381613e27565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613eb157607f821691505b602082108103613ec457613ec3613e6a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f2c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613eef565b613f368683613eef565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613f73613f6e613f6984613721565b613f4e565b613721565b9050919050565b6000819050919050565b613f8d83613f58565b613fa1613f9982613f7a565b848454613efc565b825550505050565b600090565b613fb6613fa9565b613fc1818484613f84565b505050565b5b81811015613fe557613fda600082613fae565b600181019050613fc7565b5050565b601f82111561402a57613ffb81613eca565b61400484613edf565b81016020851015614013578190505b61402761401f85613edf565b830182613fc6565b50505b505050565b600082821c905092915050565b600061404d6000198460080261402f565b1980831691505092915050565b6000614066838361403c565b9150826002028217905092915050565b61407f8261366f565b67ffffffffffffffff81111561409857614097613856565b5b6140a28254613e99565b6140ad828285613fe9565b600060209050601f8311600181146140e057600084156140ce578287015190505b6140d8858261405a565b865550614140565b601f1984166140ee86613eca565b60005b82811015614116578489015182556001820191506020850194506020810190506140f1565b86831015614133578489015161412f601f89168261403c565b8355505b6001600288020188555050505b505050505050565b600060408201905061415d60008301856137b6565b61416a60208301846137b6565b9392505050565b60008151905061418081613b44565b92915050565b60006020828403121561419c5761419b613543565b5b60006141aa84828501614171565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141ed82613608565b91506141f883613608565b9250828201905061ffff811115614212576142116141b3565b5b92915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b600061424e60138361367a565b915061425982614218565b602082019050919050565b6000602082019050818103600083015261427d81614241565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006142ba60178361367a565b91506142c582614284565b602082019050919050565b600060208201905081810360008301526142e9816142ad565b9050919050565b60006142fb82613a87565b915061430683613a87565b9250828201905060ff81111561431f5761431e6141b3565b5b92915050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b600061435b601c8361367a565b915061436682614325565b602082019050919050565b6000602082019050818103600083015261438a8161434e565b9050919050565b7f45786365656473206d6178206d696e742e000000000000000000000000000000600082015250565b60006143c760118361367a565b91506143d282614391565b602082019050919050565b600060208201905081810360008301526143f6816143ba565b9050919050565b600061440882613721565b915061441383613721565b925082820261442181613721565b91508282048414831517614438576144376141b3565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061447560138361367a565b91506144808261443f565b602082019050919050565b600060208201905081810360008301526144a481614468565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614507602f8361367a565b9150614512826144ab565b604082019050919050565b60006020820190508181036000830152614536816144fa565b9050919050565b600081905092915050565b60006145538261366f565b61455d818561453d565b935061456d81856020860161368b565b80840191505092915050565b6000815461458681613e99565b614590818661453d565b945060018216600081146145ab57600181146145c0576145f3565b60ff19831686528115158202860193506145f3565b6145c985613eca565b60005b838110156145eb578154818901526001820191506020810190506145cc565b838801955050505b50505092915050565b60006146088286614548565b91506146148285614548565b91506146208284614579565b9150819050949350505050565b600061463882613721565b915061464383613721565b925082820190508082111561465b5761465a6141b3565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061469b82613721565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036146cd576146cc6141b3565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061473460268361367a565b915061473f826146d8565b604082019050919050565b6000602082019050818103600083015261476381614727565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147a482613721565b91506147af83613721565b9250826147bf576147be61476a565b5b828204905092915050565b60006147d582613721565b91506147e083613721565b92508282039050818111156147f8576147f76141b3565b5b92915050565b600061480982613721565b915061481483613721565b9250826148245761482361476a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148568261482f565b614860818561483a565b935061487081856020860161368b565b614879816136b5565b840191505092915050565b600060808201905061489960008301876137b6565b6148a660208301866137b6565b6148b360408301856139ca565b81810360608301526148c5818461484b565b905095945050505050565b6000815190506148df81613579565b92915050565b6000602082840312156148fb576148fa613543565b5b6000614909848285016148d0565b9150509291505056fea2646970667358221220c2a5eb870dc17864f202f98fc85d3c90d9602a0b520c1ae7ab281a5dda513fb064736f6c63430008110033
Deployed Bytecode Sourcemap
49149:4334:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25038:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51329:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28151:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29654:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29217:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52180:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49377:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24287:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52902:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50518:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52290:74;;;;;;;;;;;;;:::i;:::-;;52451:70;;;;;;;;;;;;;:::i;:::-;;52645:144;;;;;;;;;;;;;:::i;:::-;;53073:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52370:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49608:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27959:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49828:682;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25407:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43860:103;;;;;;;;;;;;;:::i;:::-;;52073:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43208:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49458:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28320:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29930:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49638:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52527:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53252:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49498:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51432:484;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50850:473;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49424:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49671:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30288:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49337:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44118:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51929:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25038:305;25140:4;25192:25;25177:40;;;:11;:40;;;;:105;;;;25249:33;25234:48;;;:11;:48;;;;25177:105;:158;;;;25299:36;25323:11;25299:23;:36::i;:::-;25177:158;25157:178;;25038:305;;;:::o;51329:97::-;43439:12;:10;:12::i;:::-;43428:23;;:7;:5;:7::i;:::-;:23;;;43420:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51410:10:::1;51398:9;;:22;;;;;;;;;;;;;;;;;;51329:97:::0;:::o;28151:100::-;28205:13;28238:5;28231:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28151:100;:::o;29654:204::-;29722:7;29747:16;29755:7;29747;:16::i;:::-;29742:64;;29772:34;;;;;;;;;;;;;;29742:64;29826:15;:24;29842:7;29826:24;;;;;;;;;;;;;;;;;;;;;29819:31;;29654:204;;;:::o;29217:371::-;29290:13;29306:24;29322:7;29306:15;:24::i;:::-;29290:40;;29351:5;29345:11;;:2;:11;;;29341:48;;29365:24;;;;;;;;;;;;;;29341:48;29422:5;29406:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;29432:37;29449:5;29456:12;:10;:12::i;:::-;29432:16;:37::i;:::-;29431:38;29406:63;29402:138;;;29493:35;;;;;;;;;;;;;;29402:138;29552:28;29561:2;29565:7;29574:5;29552:8;:28::i;:::-;29279:309;29217:371;;:::o;52180:102::-;43439:12;:10;:12::i;:::-;43428:23;;:7;:5;:7::i;:::-;:23;;;43420:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52266:10:::1;52254:9;:22;;;;;;:::i;:::-;;52180:102:::0;:::o;49377:33::-;;;;:::o;24287:303::-;24331:7;24556:15;:13;:15::i;:::-;24541:12;;24525:13;;:28;:46;24518:53;;24287:303;:::o;52902:163::-;53003:4;48170:1;46984:42;48124:43;;;:47;48120:699;;;48411:10;48403:18;;:4;:18;;;48399:85;;53020:37:::1;53039:4;53045:2;53049:7;53020:18;:37::i;:::-;48462:7:::0;;48399:85;46984:42;48544:40;;;48593:4;48600:10;48544:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46984:42;48640:40;;;48689:4;48696;48640:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48544:157;48498:310;;48781:10;48762:30;;;;;;;;;;;:::i;:::-;;;;;;;;48498:310;48120:699;53020:37:::1;53039:4;53045:2;53049:7;53020:18;:37::i;:::-;52902:163:::0;;;;;:::o;50518:326::-;43439:12;:10;:12::i;:::-;43428:23;;:7;:5;:7::i;:::-;:23;;;43420:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50601:18:::1;50629:13;:11;:13::i;:::-;50601:42;;50687:9;;;;;;;;;;;50658:38;;50672:11;50658;:25;;;;:::i;:::-;:38;;;;50650:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50728:34;50738:9;50750:11;50728:34;;:9;:34::i;:::-;50770:18;;;50796:16;;;50820:18;;;50593:251;50518:326:::0;;:::o;52290:74::-;43439:12;:10;:12::i;:::-;43428:23;;:7;:5;:7::i;:::-;:23;;;43420:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52347:6:::1;;;;;;;;;;;52346:7;52337:6;;:16;;;;;;;;;;;;;;;;;;52290:74::o:0;52451:70::-;43439:12;:10;:12::i;:::-;43428:23;;:7;:5;:7::i;:::-;:23;;;43420:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52510:6:::1;;;;;;;;;;;52509:7;52500:6;;:16;;;;;;;;;;;;;;;;;;52451:70::o:0;52645:144::-;43439:12;:10;:12::i;:::-;43428:23;;:7;:5;:7::i;:::-;:23;;;43420:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52689:13:::1;52705:21;52689:37;;52742:10;52734:28;;:39;52763:8;52734:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52684:105;52645:144::o:0;53073:171::-;53178:4;48170:1;46984:42;48124:43;;;:47;48120:699;;;48411:10;48403:18;;:4;:18;;;48399:85;;53195:41:::1;53218:4;53224:2;53228:7;53195:22;:41::i;:::-;48462:7:::0;;48399:85;46984:42;48544:40;;;48593:4;48600:10;48544:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46984:42;48640:40;;;48689:4;48696;48640:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48544:157;48498:310;;48781:10;48762:30;;;;;;;;;;;:::i;:::-;;;;;;;;48498:310;48120:699;53195:41:::1;53218:4;53224:2;53228:7;53195:22;:41::i;:::-;53073:171:::0;;;;;:::o;52370:76::-;43439:12;:10;:12::i;:::-;43428:23;;:7;:5;:7::i;:::-;:23;;;43420:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52433:5:::1;52426:4;:12;;;;52370:76:::0;:::o;49608:25::-;;;;;;;;;;;;;:::o;27959:125::-;28023:7;28050:21;28063:7;28050:12;:21::i;:::-;:26;;;28043:33;;27959:125;;;:::o;49828:682::-;49897:6;;;;;;;;;;;49896:7;49888:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;49938:18;49966:13;:11;:13::i;:::-;49938:42;;49987:9;49999:19;:31;50019:10;49999:31;;;;;;;;;;;;;;;;;;;;;;;;;49987:43;;50074:9;;;;;;;;;;;50045:38;;50059:11;50045:25;;:11;:25;;;;:::i;:::-;:38;;;;50037:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50143:18;;;;;;;;;;;50122:39;;50136:3;50122:11;:17;;;;:::i;:::-;:39;;;;50114:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;50230:22;;;;;;;;;;;50209:43;;50223:3;50209:11;:17;;;;:::i;:::-;:43;;;;50201:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50309:11;50302:18;;:4;;:18;;;;:::i;:::-;50289:9;:31;;50281:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50358:35;50368:10;50381:11;50358:35;;:9;:35::i;:::-;50449:3;50435:11;:17;;;;:::i;:::-;50401:19;:31;50421:10;50401:31;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;50460:18;;;50486;;;49879:631;;49828:682;:::o;25407:206::-;25471:7;25512:1;25495:19;;:5;:19;;;25491:60;;25523:28;;;;;;;;;;;;;;25491:60;25577:12;:19;25590:5;25577:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25569:36;;25562:43;;25407:206;;;:::o;43860:103::-;43439:12;:10;:12::i;:::-;43428:23;;:7;:5;:7::i;:::-;:23;;;43420:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43925:30:::1;43952:1;43925:18;:30::i;:::-;43860:103::o:0;52073:102::-;43439:12;:10;:12::i;:::-;43428:23;;:7;:5;:7::i;:::-;:23;;;43420:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52159:10:::1;52147:9;:22;;;;;;:::i;:::-;;52073:102:::0;:::o;43208:87::-;43254:7;43281:6;;;;;;;;;;;43274:13;;43208:87;:::o;49458:35::-;;;;;;;;;;;;;:::o;28320:104::-;28376:13;28409:7;28402:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28320:104;:::o;29930:287::-;30041:12;:10;:12::i;:::-;30029:24;;:8;:24;;;30025:54;;30062:17;;;;;;;;;;;;;;30025:54;30137:8;30092:18;:32;30111:12;:10;:12::i;:::-;30092:32;;;;;;;;;;;;;;;:42;30125:8;30092:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30190:8;30161:48;;30176:12;:10;:12::i;:::-;30161:48;;;30200:8;30161:48;;;;;;:::i;:::-;;;;;;;;29930:287;;:::o;49638:25::-;;;;;;;;;;;;;:::o;52527:107::-;43439:12;:10;:12::i;:::-;43428:23;;:7;:5;:7::i;:::-;:23;;;43420:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52620:6:::1;52599:18;;:27;;;;;;;;;;;;;;;;;;52527:107:::0;:::o;53252:228::-;53403:4;48170:1;46984:42;48124:43;;;:47;48120:699;;;48411:10;48403:18;;:4;:18;;;48399:85;;53425:47:::1;53448:4;53454:2;53458:7;53467:4;53425:22;:47::i;:::-;48462:7:::0;;48399:85;46984:42;48544:40;;;48593:4;48600:10;48544:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;46984:42;48640:40;;;48689:4;48696;48640:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48544:157;48498:310;;48781:10;48762:30;;;;;;;;;;;:::i;:::-;;;;;;;;48498:310;48120:699;53425:47:::1;53448:4;53454:2;53458:7;53467:4;53425:22;:47::i;:::-;53252:228:::0;;;;;;:::o;49498:39::-;;;;;;;;;;;;;:::o;51432:484::-;51531:13;51569:17;51577:8;51569:7;:17::i;:::-;51553:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51679:5;51669:15;;:6;;;;;;;;;;;:15;;;51664:49;;51700:9;51693:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51664:49;51725:28;51756:10;:8;:10::i;:::-;51725:41;;51811:1;51786:14;51780:28;:32;:130;;;;;;;;;;;;;;;;;51848:14;51864:19;:8;:17;:19::i;:::-;51885:9;51831:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51780:130;51773:137;;;51432:484;;;;:::o;50850:473::-;43439:12;:10;:12::i;:::-;43428:23;;:7;:5;:7::i;:::-;:23;;;43420:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50950:18:::1;50978:13;:11;:13::i;:::-;50950:42;;51000:16;51041:9;;:16;;51021:17;:36;;;;;;:::i;:::-;51000:57;;51101:9;;;;;;;;;;;51072:38;;51086:11;51072;:25;;;;;;:::i;:::-;:38;;51064:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51147:9;51142:116;51166:9;;:16;;51162:1;:20;51142:116;;;51204:42;51214:9;;51224:1;51214:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;51228:17;51204:42;;:9;:42::i;:::-;51184:3;;;;;:::i;:::-;;;;51142:116;;;;51267:24;;;51299:18;;;50942:381;;50850:473:::0;;;:::o;49424:29::-;;;;;;;;;;;;;:::o;49671:53::-;;;;;;;;;;;;;;;;;;;;;;:::o;30288:164::-;30385:4;30409:18;:25;30428:5;30409:25;;;;;;;;;;;;;;;:35;30435:8;30409:35;;;;;;;;;;;;;;;;;;;;;;;;;30402:42;;30288:164;;;;:::o;49337:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44118:201::-;43439:12;:10;:12::i;:::-;43428:23;;:7;:5;:7::i;:::-;:23;;;43420:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;44227:1:::1;44207:22;;:8;:22;;::::0;44199:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;44283:28;44302:8;44283:18;:28::i;:::-;44118:201:::0;:::o;51929:126::-;43439:12;:10;:12::i;:::-;43428:23;;:7;:5;:7::i;:::-;:23;;;43420:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52024:6:::1;51999:22;;:31;;;;;;;;;;;;;;;;;;52036:13;;;51929:126:::0;:::o;14963:157::-;15048:4;15087:25;15072:40;;;:11;:40;;;;15065:47;;14963:157;;;:::o;1309:98::-;1362:7;1389:10;1382:17;;1309:98;:::o;31640:187::-;31697:4;31740:7;31721:15;:13;:15::i;:::-;:26;;:53;;;;;31761:13;;31751:7;:23;31721:53;:98;;;;;31792:11;:20;31804:7;31792:20;;;;;;;;;;;:27;;;;;;;;;;;;31791:28;31721:98;31714:105;;31640:187;;;:::o;39810:196::-;39952:2;39925:15;:24;39941:7;39925:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39990:7;39986:2;39970:28;;39979:5;39970:28;;;;;;;;;;;;39810:196;;;:::o;24061:92::-;24117:7;24061:92;:::o;30519:170::-;30653:28;30663:4;30669:2;30673:7;30653:9;:28::i;:::-;30519:170;;;:::o;31835:104::-;31904:27;31914:2;31918:8;31904:27;;;;;;;;;;;;:9;:27::i;:::-;31835:104;;:::o;30760:185::-;30898:39;30915:4;30921:2;30925:7;30898:39;;;;;;;;;;;;:16;:39::i;:::-;30760:185;;;:::o;26788:1109::-;26850:21;;:::i;:::-;26884:12;26899:7;26884:22;;26967:4;26948:15;:13;:15::i;:::-;:23;;:47;;;;;26982:13;;26975:4;:20;26948:47;26944:886;;;27016:31;27050:11;:17;27062:4;27050:17;;;;;;;;;;;27016:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27091:9;:16;;;27086:729;;27162:1;27136:28;;:9;:14;;;:28;;;27132:101;;27200:9;27193:16;;;;;;27132:101;27535:261;27542:4;27535:261;;;27575:6;;;;;;;;27620:11;:17;27632:4;27620:17;;;;;;;;;;;27608:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27694:1;27668:28;;:9;:14;;;:28;;;27664:109;;27736:9;27729:16;;;;;;27664:109;27535:261;;;27086:729;26997:833;26944:886;27858:31;;;;;;;;;;;;;;26788:1109;;;;:::o;44479:191::-;44553:16;44572:6;;;;;;;;;;;44553:25;;44598:8;44589:6;;:17;;;;;;;;;;;;;;;;;;44653:8;44622:40;;44643:8;44622:40;;;;;;;;;;;;44542:128;44479:191;:::o;31016:369::-;31183:28;31193:4;31199:2;31203:7;31183:9;:28::i;:::-;31226:15;:2;:13;;;:15::i;:::-;:76;;;;;31246:56;31277:4;31283:2;31287:7;31296:5;31246:30;:56::i;:::-;31245:57;31226:76;31222:156;;;31326:40;;;;;;;;;;;;;;31222:156;31016:369;;;;:::o;52797:97::-;52850:13;52879:9;52872:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52797:97;:::o;1886:723::-;1942:13;2172:1;2163:5;:10;2159:53;;2190:10;;;;;;;;;;;;;;;;;;;;;2159:53;2222:12;2237:5;2222:20;;2253:14;2278:78;2293:1;2285:4;:9;2278:78;;2311:8;;;;;:::i;:::-;;;;2342:2;2334:10;;;;;:::i;:::-;;;2278:78;;;2366:19;2398:6;2388:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2366:39;;2416:154;2432:1;2423:5;:10;2416:154;;2460:1;2450:11;;;;;:::i;:::-;;;2527:2;2519:5;:10;;;;:::i;:::-;2506:2;:24;;;;:::i;:::-;2493:39;;2476:6;2483;2476:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2556:2;2547:11;;;;;:::i;:::-;;;2416:154;;;2594:6;2580:21;;;;;1886:723;;;;:::o;34753:2130::-;34868:35;34906:21;34919:7;34906:12;:21::i;:::-;34868:59;;34966:4;34944:26;;:13;:18;;;:26;;;34940:67;;34979:28;;;;;;;;;;;;;;34940:67;35020:22;35062:4;35046:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;35083:36;35100:4;35106:12;:10;:12::i;:::-;35083:16;:36::i;:::-;35046:73;:126;;;;35160:12;:10;:12::i;:::-;35136:36;;:20;35148:7;35136:11;:20::i;:::-;:36;;;35046:126;35020:153;;35191:17;35186:66;;35217:35;;;;;;;;;;;;;;35186:66;35281:1;35267:16;;:2;:16;;;35263:52;;35292:23;;;;;;;;;;;;;;35263:52;35328:43;35350:4;35356:2;35360:7;35369:1;35328:21;:43::i;:::-;35436:35;35453:1;35457:7;35466:4;35436:8;:35::i;:::-;35797:1;35767:12;:18;35780:4;35767:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35841:1;35813:12;:16;35826:2;35813:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35859:31;35893:11;:20;35905:7;35893:20;;;;;;;;;;;35859:54;;35944:2;35928:8;:13;;;:18;;;;;;;;;;;;;;;;;;35994:15;35961:8;:23;;;:49;;;;;;;;;;;;;;;;;;36262:19;36294:1;36284:7;:11;36262:33;;36310:31;36344:11;:24;36356:11;36344:24;;;;;;;;;;;36310:58;;36412:1;36387:27;;:8;:13;;;;;;;;;;;;:27;;;36383:384;;36597:13;;36582:11;:28;36578:174;;36651:4;36635:8;:13;;;:20;;;;;;;;;;;;;;;;;;36704:13;:28;;;36678:8;:23;;;:54;;;;;;;;;;;;;;;;;;36578:174;36383:384;35742:1036;;;36814:7;36810:2;36795:27;;36804:4;36795:27;;;;;;;;;;;;36833:42;36854:4;36860:2;36864:7;36873:1;36833:20;:42::i;:::-;34857:2026;;34753:2130;;;:::o;32302:163::-;32425:32;32431:2;32435:8;32445:5;32452:4;32425:5;:32::i;:::-;32302:163;;;:::o;4876:326::-;4936:4;5193:1;5171:7;:19;;;:23;5164:30;;4876:326;;;:::o;40498:667::-;40661:4;40698:2;40682:36;;;40719:12;:10;:12::i;:::-;40733:4;40739:7;40748:5;40682:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40678:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40933:1;40916:6;:13;:18;40912:235;;40962:40;;;;;;;;;;;;;;40912:235;41105:6;41099:13;41090:6;41086:2;41082:15;41075:38;40678:480;40811:45;;;40801:55;;;:6;:55;;;;40794:62;;;40498:667;;;;;;:::o;41813:159::-;;;;;:::o;42631:158::-;;;;;:::o;32724:1775::-;32863:20;32886:13;;32863:36;;32928:1;32914:16;;:2;:16;;;32910:48;;32939:19;;;;;;;;;;;;;;32910:48;32985:1;32973:8;:13;32969:44;;32995:18;;;;;;;;;;;;;;32969:44;33026:61;33056:1;33060:2;33064:12;33078:8;33026:21;:61::i;:::-;33399:8;33364:12;:16;33377:2;33364:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33463:8;33423:12;:16;33436:2;33423:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33522:2;33489:11;:25;33501:12;33489:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33589:15;33539:11;:25;33551:12;33539:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33622:20;33645:12;33622:35;;33672:11;33701:8;33686:12;:23;33672:37;;33730:4;:23;;;;;33738:15;:2;:13;;;:15::i;:::-;33730:23;33726:641;;;33774:314;33830:12;33826:2;33805:38;;33822:1;33805:38;;;;;;;;;;;;33871:69;33910:1;33914:2;33918:14;;;;;;33934:5;33871:30;:69::i;:::-;33866:174;;33976:40;;;;;;;;;;;;;;33866:174;34083:3;34067:12;:19;33774:314;;34169:12;34152:13;;:29;34148:43;;34183:8;;;34148:43;33726:641;;;34232:120;34288:14;;;;;;34284:2;34263:40;;34280:1;34263:40;;;;;;;;;;;;34347:3;34331:12;:19;34232:120;;33726:641;34397:12;34381:13;:28;;;;33339:1082;;34431:60;34460:1;34464:2;34468:12;34482:8;34431:20;:60::i;:::-;32852:1647;32724:1775;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:89::-;1554:7;1594:6;1587:5;1583:18;1572:29;;1518:89;;;:::o;1613:120::-;1685:23;1702:5;1685:23;:::i;:::-;1678:5;1675:34;1665:62;;1723:1;1720;1713:12;1665:62;1613:120;:::o;1739:137::-;1784:5;1822:6;1809:20;1800:29;;1838:32;1864:5;1838:32;:::i;:::-;1739:137;;;;:::o;1882:327::-;1940:6;1989:2;1977:9;1968:7;1964:23;1960:32;1957:119;;;1995:79;;:::i;:::-;1957:119;2115:1;2140:52;2184:7;2175:6;2164:9;2160:22;2140:52;:::i;:::-;2130:62;;2086:116;1882:327;;;;:::o;2215:99::-;2267:6;2301:5;2295:12;2285:22;;2215:99;;;:::o;2320:169::-;2404:11;2438:6;2433:3;2426:19;2478:4;2473:3;2469:14;2454:29;;2320:169;;;;:::o;2495:246::-;2576:1;2586:113;2600:6;2597:1;2594:13;2586:113;;;2685:1;2680:3;2676:11;2670:18;2666:1;2661:3;2657:11;2650:39;2622:2;2619:1;2615:10;2610:15;;2586:113;;;2733:1;2724:6;2719:3;2715:16;2708:27;2557:184;2495:246;;;:::o;2747:102::-;2788:6;2839:2;2835:7;2830:2;2823:5;2819:14;2815:28;2805:38;;2747:102;;;:::o;2855:377::-;2943:3;2971:39;3004:5;2971:39;:::i;:::-;3026:71;3090:6;3085:3;3026:71;:::i;:::-;3019:78;;3106:65;3164:6;3159:3;3152:4;3145:5;3141:16;3106:65;:::i;:::-;3196:29;3218:6;3196:29;:::i;:::-;3191:3;3187:39;3180:46;;2947:285;2855:377;;;;:::o;3238:313::-;3351:4;3389:2;3378:9;3374:18;3366:26;;3438:9;3432:4;3428:20;3424:1;3413:9;3409:17;3402:47;3466:78;3539:4;3530:6;3466:78;:::i;:::-;3458:86;;3238:313;;;;:::o;3557:77::-;3594:7;3623:5;3612:16;;3557:77;;;:::o;3640:122::-;3713:24;3731:5;3713:24;:::i;:::-;3706:5;3703:35;3693:63;;3752:1;3749;3742:12;3693:63;3640:122;:::o;3768:139::-;3814:5;3852:6;3839:20;3830:29;;3868:33;3895:5;3868:33;:::i;:::-;3768:139;;;;:::o;3913:329::-;3972:6;4021:2;4009:9;4000:7;3996:23;3992:32;3989:119;;;4027:79;;:::i;:::-;3989:119;4147:1;4172:53;4217:7;4208:6;4197:9;4193:22;4172:53;:::i;:::-;4162:63;;4118:117;3913:329;;;;:::o;4248:126::-;4285:7;4325:42;4318:5;4314:54;4303:65;;4248:126;;;:::o;4380:96::-;4417:7;4446:24;4464:5;4446:24;:::i;:::-;4435:35;;4380:96;;;:::o;4482:118::-;4569:24;4587:5;4569:24;:::i;:::-;4564:3;4557:37;4482:118;;:::o;4606:222::-;4699:4;4737:2;4726:9;4722:18;4714:26;;4750:71;4818:1;4807:9;4803:17;4794:6;4750:71;:::i;:::-;4606:222;;;;:::o;4834:122::-;4907:24;4925:5;4907:24;:::i;:::-;4900:5;4897:35;4887:63;;4946:1;4943;4936:12;4887:63;4834:122;:::o;4962:139::-;5008:5;5046:6;5033:20;5024:29;;5062:33;5089:5;5062:33;:::i;:::-;4962:139;;;;:::o;5107:474::-;5175:6;5183;5232:2;5220:9;5211:7;5207:23;5203:32;5200:119;;;5238:79;;:::i;:::-;5200:119;5358:1;5383:53;5428:7;5419:6;5408:9;5404:22;5383:53;:::i;:::-;5373:63;;5329:117;5485:2;5511:53;5556:7;5547:6;5536:9;5532:22;5511:53;:::i;:::-;5501:63;;5456:118;5107:474;;;;;:::o;5587:117::-;5696:1;5693;5686:12;5710:117;5819:1;5816;5809:12;5833:180;5881:77;5878:1;5871:88;5978:4;5975:1;5968:15;6002:4;5999:1;5992:15;6019:281;6102:27;6124:4;6102:27;:::i;:::-;6094:6;6090:40;6232:6;6220:10;6217:22;6196:18;6184:10;6181:34;6178:62;6175:88;;;6243:18;;:::i;:::-;6175:88;6283:10;6279:2;6272:22;6062:238;6019:281;;:::o;6306:129::-;6340:6;6367:20;;:::i;:::-;6357:30;;6396:33;6424:4;6416:6;6396:33;:::i;:::-;6306:129;;;:::o;6441:308::-;6503:4;6593:18;6585:6;6582:30;6579:56;;;6615:18;;:::i;:::-;6579:56;6653:29;6675:6;6653:29;:::i;:::-;6645:37;;6737:4;6731;6727:15;6719:23;;6441:308;;;:::o;6755:146::-;6852:6;6847:3;6842;6829:30;6893:1;6884:6;6879:3;6875:16;6868:27;6755:146;;;:::o;6907:425::-;6985:5;7010:66;7026:49;7068:6;7026:49;:::i;:::-;7010:66;:::i;:::-;7001:75;;7099:6;7092:5;7085:21;7137:4;7130:5;7126:16;7175:3;7166:6;7161:3;7157:16;7154:25;7151:112;;;7182:79;;:::i;:::-;7151:112;7272:54;7319:6;7314:3;7309;7272:54;:::i;:::-;6991:341;6907:425;;;;;:::o;7352:340::-;7408:5;7457:3;7450:4;7442:6;7438:17;7434:27;7424:122;;7465:79;;:::i;:::-;7424:122;7582:6;7569:20;7607:79;7682:3;7674:6;7667:4;7659:6;7655:17;7607:79;:::i;:::-;7598:88;;7414:278;7352:340;;;;:::o;7698:509::-;7767:6;7816:2;7804:9;7795:7;7791:23;7787:32;7784:119;;;7822:79;;:::i;:::-;7784:119;7970:1;7959:9;7955:17;7942:31;8000:18;7992:6;7989:30;7986:117;;;8022:79;;:::i;:::-;7986:117;8127:63;8182:7;8173:6;8162:9;8158:22;8127:63;:::i;:::-;8117:73;;7913:287;7698:509;;;;:::o;8213:118::-;8300:24;8318:5;8300:24;:::i;:::-;8295:3;8288:37;8213:118;;:::o;8337:222::-;8430:4;8468:2;8457:9;8453:18;8445:26;;8481:71;8549:1;8538:9;8534:17;8525:6;8481:71;:::i;:::-;8337:222;;;;:::o;8565:619::-;8642:6;8650;8658;8707:2;8695:9;8686:7;8682:23;8678:32;8675:119;;;8713:79;;:::i;:::-;8675:119;8833:1;8858:53;8903:7;8894:6;8883:9;8879:22;8858:53;:::i;:::-;8848:63;;8804:117;8960:2;8986:53;9031:7;9022:6;9011:9;9007:22;8986:53;:::i;:::-;8976:63;;8931:118;9088:2;9114:53;9159:7;9150:6;9139:9;9135:22;9114:53;:::i;:::-;9104:63;;9059:118;8565:619;;;;;:::o;9190:472::-;9257:6;9265;9314:2;9302:9;9293:7;9289:23;9285:32;9282:119;;;9320:79;;:::i;:::-;9282:119;9440:1;9465:52;9509:7;9500:6;9489:9;9485:22;9465:52;:::i;:::-;9455:62;;9411:116;9566:2;9592:53;9637:7;9628:6;9617:9;9613:22;9592:53;:::i;:::-;9582:63;;9537:118;9190:472;;;;;:::o;9668:86::-;9703:7;9743:4;9736:5;9732:16;9721:27;;9668:86;;;:::o;9760:118::-;9831:22;9847:5;9831:22;:::i;:::-;9824:5;9821:33;9811:61;;9868:1;9865;9858:12;9811:61;9760:118;:::o;9884:135::-;9928:5;9966:6;9953:20;9944:29;;9982:31;10007:5;9982:31;:::i;:::-;9884:135;;;;:::o;10025:325::-;10082:6;10131:2;10119:9;10110:7;10106:23;10102:32;10099:119;;;10137:79;;:::i;:::-;10099:119;10257:1;10282:51;10325:7;10316:6;10305:9;10301:22;10282:51;:::i;:::-;10272:61;;10228:115;10025:325;;;;:::o;10356:329::-;10415:6;10464:2;10452:9;10443:7;10439:23;10435:32;10432:119;;;10470:79;;:::i;:::-;10432:119;10590:1;10615:53;10660:7;10651:6;10640:9;10636:22;10615:53;:::i;:::-;10605:63;;10561:117;10356:329;;;;:::o;10691:112::-;10774:22;10790:5;10774:22;:::i;:::-;10769:3;10762:35;10691:112;;:::o;10809:214::-;10898:4;10936:2;10925:9;10921:18;10913:26;;10949:67;11013:1;11002:9;10998:17;10989:6;10949:67;:::i;:::-;10809:214;;;;:::o;11029:116::-;11099:21;11114:5;11099:21;:::i;:::-;11092:5;11089:32;11079:60;;11135:1;11132;11125:12;11079:60;11029:116;:::o;11151:133::-;11194:5;11232:6;11219:20;11210:29;;11248:30;11272:5;11248:30;:::i;:::-;11151:133;;;;:::o;11290:468::-;11355:6;11363;11412:2;11400:9;11391:7;11387:23;11383:32;11380:119;;;11418:79;;:::i;:::-;11380:119;11538:1;11563:53;11608:7;11599:6;11588:9;11584:22;11563:53;:::i;:::-;11553:63;;11509:117;11665:2;11691:50;11733:7;11724:6;11713:9;11709:22;11691:50;:::i;:::-;11681:60;;11636:115;11290:468;;;;;:::o;11764:307::-;11825:4;11915:18;11907:6;11904:30;11901:56;;;11937:18;;:::i;:::-;11901:56;11975:29;11997:6;11975:29;:::i;:::-;11967:37;;12059:4;12053;12049:15;12041:23;;11764:307;;;:::o;12077:423::-;12154:5;12179:65;12195:48;12236:6;12195:48;:::i;:::-;12179:65;:::i;:::-;12170:74;;12267:6;12260:5;12253:21;12305:4;12298:5;12294:16;12343:3;12334:6;12329:3;12325:16;12322:25;12319:112;;;12350:79;;:::i;:::-;12319:112;12440:54;12487:6;12482:3;12477;12440:54;:::i;:::-;12160:340;12077:423;;;;;:::o;12519:338::-;12574:5;12623:3;12616:4;12608:6;12604:17;12600:27;12590:122;;12631:79;;:::i;:::-;12590:122;12748:6;12735:20;12773:78;12847:3;12839:6;12832:4;12824:6;12820:17;12773:78;:::i;:::-;12764:87;;12580:277;12519:338;;;;:::o;12863:943::-;12958:6;12966;12974;12982;13031:3;13019:9;13010:7;13006:23;13002:33;12999:120;;;13038:79;;:::i;:::-;12999:120;13158:1;13183:53;13228:7;13219:6;13208:9;13204:22;13183:53;:::i;:::-;13173:63;;13129:117;13285:2;13311:53;13356:7;13347:6;13336:9;13332:22;13311:53;:::i;:::-;13301:63;;13256:118;13413:2;13439:53;13484:7;13475:6;13464:9;13460:22;13439:53;:::i;:::-;13429:63;;13384:118;13569:2;13558:9;13554:18;13541:32;13600:18;13592:6;13589:30;13586:117;;;13622:79;;:::i;:::-;13586:117;13727:62;13781:7;13772:6;13761:9;13757:22;13727:62;:::i;:::-;13717:72;;13512:287;12863:943;;;;;;;:::o;13812:117::-;13921:1;13918;13911:12;13935:117;14044:1;14041;14034:12;14075:568;14148:8;14158:6;14208:3;14201:4;14193:6;14189:17;14185:27;14175:122;;14216:79;;:::i;:::-;14175:122;14329:6;14316:20;14306:30;;14359:18;14351:6;14348:30;14345:117;;;14381:79;;:::i;:::-;14345:117;14495:4;14487:6;14483:17;14471:29;;14549:3;14541:4;14533:6;14529:17;14519:8;14515:32;14512:41;14509:128;;;14556:79;;:::i;:::-;14509:128;14075:568;;;;;:::o;14649:700::-;14742:6;14750;14758;14807:2;14795:9;14786:7;14782:23;14778:32;14775:119;;;14813:79;;:::i;:::-;14775:119;14933:1;14958:51;15001:7;14992:6;14981:9;14977:22;14958:51;:::i;:::-;14948:61;;14904:115;15086:2;15075:9;15071:18;15058:32;15117:18;15109:6;15106:30;15103:117;;;15139:79;;:::i;:::-;15103:117;15252:80;15324:7;15315:6;15304:9;15300:22;15252:80;:::i;:::-;15234:98;;;;15029:313;14649:700;;;;;:::o;15355:115::-;15440:23;15457:5;15440:23;:::i;:::-;15435:3;15428:36;15355:115;;:::o;15476:218::-;15567:4;15605:2;15594:9;15590:18;15582:26;;15618:69;15684:1;15673:9;15669:17;15660:6;15618:69;:::i;:::-;15476:218;;;;:::o;15700:474::-;15768:6;15776;15825:2;15813:9;15804:7;15800:23;15796:32;15793:119;;;15831:79;;:::i;:::-;15793:119;15951:1;15976:53;16021:7;16012:6;16001:9;15997:22;15976:53;:::i;:::-;15966:63;;15922:117;16078:2;16104:53;16149:7;16140:6;16129:9;16125:22;16104:53;:::i;:::-;16094:63;;16049:118;15700:474;;;;;:::o;16180:182::-;16320:34;16316:1;16308:6;16304:14;16297:58;16180:182;:::o;16368:366::-;16510:3;16531:67;16595:2;16590:3;16531:67;:::i;:::-;16524:74;;16607:93;16696:3;16607:93;:::i;:::-;16725:2;16720:3;16716:12;16709:19;;16368:366;;;:::o;16740:419::-;16906:4;16944:2;16933:9;16929:18;16921:26;;16993:9;16987:4;16983:20;16979:1;16968:9;16964:17;16957:47;17021:131;17147:4;17021:131;:::i;:::-;17013:139;;16740:419;;;:::o;17165:180::-;17213:77;17210:1;17203:88;17310:4;17307:1;17300:15;17334:4;17331:1;17324:15;17351:320;17395:6;17432:1;17426:4;17422:12;17412:22;;17479:1;17473:4;17469:12;17500:18;17490:81;;17556:4;17548:6;17544:17;17534:27;;17490:81;17618:2;17610:6;17607:14;17587:18;17584:38;17581:84;;17637:18;;:::i;:::-;17581:84;17402:269;17351:320;;;:::o;17677:141::-;17726:4;17749:3;17741:11;;17772:3;17769:1;17762:14;17806:4;17803:1;17793:18;17785:26;;17677:141;;;:::o;17824:93::-;17861:6;17908:2;17903;17896:5;17892:14;17888:23;17878:33;;17824:93;;;:::o;17923:107::-;17967:8;18017:5;18011:4;18007:16;17986:37;;17923:107;;;;:::o;18036:393::-;18105:6;18155:1;18143:10;18139:18;18178:97;18208:66;18197:9;18178:97;:::i;:::-;18296:39;18326:8;18315:9;18296:39;:::i;:::-;18284:51;;18368:4;18364:9;18357:5;18353:21;18344:30;;18417:4;18407:8;18403:19;18396:5;18393:30;18383:40;;18112:317;;18036:393;;;;;:::o;18435:60::-;18463:3;18484:5;18477:12;;18435:60;;;:::o;18501:142::-;18551:9;18584:53;18602:34;18611:24;18629:5;18611:24;:::i;:::-;18602:34;:::i;:::-;18584:53;:::i;:::-;18571:66;;18501:142;;;:::o;18649:75::-;18692:3;18713:5;18706:12;;18649:75;;;:::o;18730:269::-;18840:39;18871:7;18840:39;:::i;:::-;18901:91;18950:41;18974:16;18950:41;:::i;:::-;18942:6;18935:4;18929:11;18901:91;:::i;:::-;18895:4;18888:105;18806:193;18730:269;;;:::o;19005:73::-;19050:3;19005:73;:::o;19084:189::-;19161:32;;:::i;:::-;19202:65;19260:6;19252;19246:4;19202:65;:::i;:::-;19137:136;19084:189;;:::o;19279:186::-;19339:120;19356:3;19349:5;19346:14;19339:120;;;19410:39;19447:1;19440:5;19410:39;:::i;:::-;19383:1;19376:5;19372:13;19363:22;;19339:120;;;19279:186;;:::o;19471:543::-;19572:2;19567:3;19564:11;19561:446;;;19606:38;19638:5;19606:38;:::i;:::-;19690:29;19708:10;19690:29;:::i;:::-;19680:8;19676:44;19873:2;19861:10;19858:18;19855:49;;;19894:8;19879:23;;19855:49;19917:80;19973:22;19991:3;19973:22;:::i;:::-;19963:8;19959:37;19946:11;19917:80;:::i;:::-;19576:431;;19561:446;19471:543;;;:::o;20020:117::-;20074:8;20124:5;20118:4;20114:16;20093:37;;20020:117;;;;:::o;20143:169::-;20187:6;20220:51;20268:1;20264:6;20256:5;20253:1;20249:13;20220:51;:::i;:::-;20216:56;20301:4;20295;20291:15;20281:25;;20194:118;20143:169;;;;:::o;20317:295::-;20393:4;20539:29;20564:3;20558:4;20539:29;:::i;:::-;20531:37;;20601:3;20598:1;20594:11;20588:4;20585:21;20577:29;;20317:295;;;;:::o;20617:1395::-;20734:37;20767:3;20734:37;:::i;:::-;20836:18;20828:6;20825:30;20822:56;;;20858:18;;:::i;:::-;20822:56;20902:38;20934:4;20928:11;20902:38;:::i;:::-;20987:67;21047:6;21039;21033:4;20987:67;:::i;:::-;21081:1;21105:4;21092:17;;21137:2;21129:6;21126:14;21154:1;21149:618;;;;21811:1;21828:6;21825:77;;;21877:9;21872:3;21868:19;21862:26;21853:35;;21825:77;21928:67;21988:6;21981:5;21928:67;:::i;:::-;21922:4;21915:81;21784:222;21119:887;;21149:618;21201:4;21197:9;21189:6;21185:22;21235:37;21267:4;21235:37;:::i;:::-;21294:1;21308:208;21322:7;21319:1;21316:14;21308:208;;;21401:9;21396:3;21392:19;21386:26;21378:6;21371:42;21452:1;21444:6;21440:14;21430:24;;21499:2;21488:9;21484:18;21471:31;;21345:4;21342:1;21338:12;21333:17;;21308:208;;;21544:6;21535:7;21532:19;21529:179;;;21602:9;21597:3;21593:19;21587:26;21645:48;21687:4;21679:6;21675:17;21664:9;21645:48;:::i;:::-;21637:6;21630:64;21552:156;21529:179;21754:1;21750;21742:6;21738:14;21734:22;21728:4;21721:36;21156:611;;;21119:887;;20709:1303;;;20617:1395;;:::o;22018:332::-;22139:4;22177:2;22166:9;22162:18;22154:26;;22190:71;22258:1;22247:9;22243:17;22234:6;22190:71;:::i;:::-;22271:72;22339:2;22328:9;22324:18;22315:6;22271:72;:::i;:::-;22018:332;;;;;:::o;22356:137::-;22410:5;22441:6;22435:13;22426:22;;22457:30;22481:5;22457:30;:::i;:::-;22356:137;;;;:::o;22499:345::-;22566:6;22615:2;22603:9;22594:7;22590:23;22586:32;22583:119;;;22621:79;;:::i;:::-;22583:119;22741:1;22766:61;22819:7;22810:6;22799:9;22795:22;22766:61;:::i;:::-;22756:71;;22712:125;22499:345;;;;:::o;22850:180::-;22898:77;22895:1;22888:88;22995:4;22992:1;22985:15;23019:4;23016:1;23009:15;23036:193;23075:3;23094:19;23111:1;23094:19;:::i;:::-;23089:24;;23127:19;23144:1;23127:19;:::i;:::-;23122:24;;23169:1;23166;23162:9;23155:16;;23192:6;23187:3;23184:15;23181:41;;;23202:18;;:::i;:::-;23181:41;23036:193;;;;:::o;23235:169::-;23375:21;23371:1;23363:6;23359:14;23352:45;23235:169;:::o;23410:366::-;23552:3;23573:67;23637:2;23632:3;23573:67;:::i;:::-;23566:74;;23649:93;23738:3;23649:93;:::i;:::-;23767:2;23762:3;23758:12;23751:19;;23410:366;;;:::o;23782:419::-;23948:4;23986:2;23975:9;23971:18;23963:26;;24035:9;24029:4;24025:20;24021:1;24010:9;24006:17;23999:47;24063:131;24189:4;24063:131;:::i;:::-;24055:139;;23782:419;;;:::o;24207:173::-;24347:25;24343:1;24335:6;24331:14;24324:49;24207:173;:::o;24386:366::-;24528:3;24549:67;24613:2;24608:3;24549:67;:::i;:::-;24542:74;;24625:93;24714:3;24625:93;:::i;:::-;24743:2;24738:3;24734:12;24727:19;;24386:366;;;:::o;24758:419::-;24924:4;24962:2;24951:9;24947:18;24939:26;;25011:9;25005:4;25001:20;24997:1;24986:9;24982:17;24975:47;25039:131;25165:4;25039:131;:::i;:::-;25031:139;;24758:419;;;:::o;25183:188::-;25221:3;25240:18;25256:1;25240:18;:::i;:::-;25235:23;;25272:18;25288:1;25272:18;:::i;:::-;25267:23;;25313:1;25310;25306:9;25299:16;;25336:4;25331:3;25328:13;25325:39;;;25344:18;;:::i;:::-;25325:39;25183:188;;;;:::o;25377:178::-;25517:30;25513:1;25505:6;25501:14;25494:54;25377:178;:::o;25561:366::-;25703:3;25724:67;25788:2;25783:3;25724:67;:::i;:::-;25717:74;;25800:93;25889:3;25800:93;:::i;:::-;25918:2;25913:3;25909:12;25902:19;;25561:366;;;:::o;25933:419::-;26099:4;26137:2;26126:9;26122:18;26114:26;;26186:9;26180:4;26176:20;26172:1;26161:9;26157:17;26150:47;26214:131;26340:4;26214:131;:::i;:::-;26206:139;;25933:419;;;:::o;26358:167::-;26498:19;26494:1;26486:6;26482:14;26475:43;26358:167;:::o;26531:366::-;26673:3;26694:67;26758:2;26753:3;26694:67;:::i;:::-;26687:74;;26770:93;26859:3;26770:93;:::i;:::-;26888:2;26883:3;26879:12;26872:19;;26531:366;;;:::o;26903:419::-;27069:4;27107:2;27096:9;27092:18;27084:26;;27156:9;27150:4;27146:20;27142:1;27131:9;27127:17;27120:47;27184:131;27310:4;27184:131;:::i;:::-;27176:139;;26903:419;;;:::o;27328:410::-;27368:7;27391:20;27409:1;27391:20;:::i;:::-;27386:25;;27425:20;27443:1;27425:20;:::i;:::-;27420:25;;27480:1;27477;27473:9;27502:30;27520:11;27502:30;:::i;:::-;27491:41;;27681:1;27672:7;27668:15;27665:1;27662:22;27642:1;27635:9;27615:83;27592:139;;27711:18;;:::i;:::-;27592:139;27376:362;27328:410;;;;:::o;27744:169::-;27884:21;27880:1;27872:6;27868:14;27861:45;27744:169;:::o;27919:366::-;28061:3;28082:67;28146:2;28141:3;28082:67;:::i;:::-;28075:74;;28158:93;28247:3;28158:93;:::i;:::-;28276:2;28271:3;28267:12;28260:19;;27919:366;;;:::o;28291:419::-;28457:4;28495:2;28484:9;28480:18;28472:26;;28544:9;28538:4;28534:20;28530:1;28519:9;28515:17;28508:47;28572:131;28698:4;28572:131;:::i;:::-;28564:139;;28291:419;;;:::o;28716:234::-;28856:34;28852:1;28844:6;28840:14;28833:58;28925:17;28920:2;28912:6;28908:15;28901:42;28716:234;:::o;28956:366::-;29098:3;29119:67;29183:2;29178:3;29119:67;:::i;:::-;29112:74;;29195:93;29284:3;29195:93;:::i;:::-;29313:2;29308:3;29304:12;29297:19;;28956:366;;;:::o;29328:419::-;29494:4;29532:2;29521:9;29517:18;29509:26;;29581:9;29575:4;29571:20;29567:1;29556:9;29552:17;29545:47;29609:131;29735:4;29609:131;:::i;:::-;29601:139;;29328:419;;;:::o;29753:148::-;29855:11;29892:3;29877:18;;29753:148;;;;:::o;29907:390::-;30013:3;30041:39;30074:5;30041:39;:::i;:::-;30096:89;30178:6;30173:3;30096:89;:::i;:::-;30089:96;;30194:65;30252:6;30247:3;30240:4;30233:5;30229:16;30194:65;:::i;:::-;30284:6;30279:3;30275:16;30268:23;;30017:280;29907:390;;;;:::o;30327:874::-;30430:3;30467:5;30461:12;30496:36;30522:9;30496:36;:::i;:::-;30548:89;30630:6;30625:3;30548:89;:::i;:::-;30541:96;;30668:1;30657:9;30653:17;30684:1;30679:166;;;;30859:1;30854:341;;;;30646:549;;30679:166;30763:4;30759:9;30748;30744:25;30739:3;30732:38;30825:6;30818:14;30811:22;30803:6;30799:35;30794:3;30790:45;30783:52;;30679:166;;30854:341;30921:38;30953:5;30921:38;:::i;:::-;30981:1;30995:154;31009:6;31006:1;31003:13;30995:154;;;31083:7;31077:14;31073:1;31068:3;31064:11;31057:35;31133:1;31124:7;31120:15;31109:26;;31031:4;31028:1;31024:12;31019:17;;30995:154;;;31178:6;31173:3;31169:16;31162:23;;30861:334;;30646:549;;30434:767;;30327:874;;;;:::o;31207:589::-;31432:3;31454:95;31545:3;31536:6;31454:95;:::i;:::-;31447:102;;31566:95;31657:3;31648:6;31566:95;:::i;:::-;31559:102;;31678:92;31766:3;31757:6;31678:92;:::i;:::-;31671:99;;31787:3;31780:10;;31207:589;;;;;;:::o;31802:191::-;31842:3;31861:20;31879:1;31861:20;:::i;:::-;31856:25;;31895:20;31913:1;31895:20;:::i;:::-;31890:25;;31938:1;31935;31931:9;31924:16;;31959:3;31956:1;31953:10;31950:36;;;31966:18;;:::i;:::-;31950:36;31802:191;;;;:::o;31999:180::-;32047:77;32044:1;32037:88;32144:4;32141:1;32134:15;32168:4;32165:1;32158:15;32185:233;32224:3;32247:24;32265:5;32247:24;:::i;:::-;32238:33;;32293:66;32286:5;32283:77;32280:103;;32363:18;;:::i;:::-;32280:103;32410:1;32403:5;32399:13;32392:20;;32185:233;;;:::o;32424:225::-;32564:34;32560:1;32552:6;32548:14;32541:58;32633:8;32628:2;32620:6;32616:15;32609:33;32424:225;:::o;32655:366::-;32797:3;32818:67;32882:2;32877:3;32818:67;:::i;:::-;32811:74;;32894:93;32983:3;32894:93;:::i;:::-;33012:2;33007:3;33003:12;32996:19;;32655:366;;;:::o;33027:419::-;33193:4;33231:2;33220:9;33216:18;33208:26;;33280:9;33274:4;33270:20;33266:1;33255:9;33251:17;33244:47;33308:131;33434:4;33308:131;:::i;:::-;33300:139;;33027:419;;;:::o;33452:180::-;33500:77;33497:1;33490:88;33597:4;33594:1;33587:15;33621:4;33618:1;33611:15;33638:185;33678:1;33695:20;33713:1;33695:20;:::i;:::-;33690:25;;33729:20;33747:1;33729:20;:::i;:::-;33724:25;;33768:1;33758:35;;33773:18;;:::i;:::-;33758:35;33815:1;33812;33808:9;33803:14;;33638:185;;;;:::o;33829:194::-;33869:4;33889:20;33907:1;33889:20;:::i;:::-;33884:25;;33923:20;33941:1;33923:20;:::i;:::-;33918:25;;33967:1;33964;33960:9;33952:17;;33991:1;33985:4;33982:11;33979:37;;;33996:18;;:::i;:::-;33979:37;33829:194;;;;:::o;34029:176::-;34061:1;34078:20;34096:1;34078:20;:::i;:::-;34073:25;;34112:20;34130:1;34112:20;:::i;:::-;34107:25;;34151:1;34141:35;;34156:18;;:::i;:::-;34141:35;34197:1;34194;34190:9;34185:14;;34029:176;;;;:::o;34211:98::-;34262:6;34296:5;34290:12;34280:22;;34211:98;;;:::o;34315:168::-;34398:11;34432:6;34427:3;34420:19;34472:4;34467:3;34463:14;34448:29;;34315:168;;;;:::o;34489:373::-;34575:3;34603:38;34635:5;34603:38;:::i;:::-;34657:70;34720:6;34715:3;34657:70;:::i;:::-;34650:77;;34736:65;34794:6;34789:3;34782:4;34775:5;34771:16;34736:65;:::i;:::-;34826:29;34848:6;34826:29;:::i;:::-;34821:3;34817:39;34810:46;;34579:283;34489:373;;;;:::o;34868:640::-;35063:4;35101:3;35090:9;35086:19;35078:27;;35115:71;35183:1;35172:9;35168:17;35159:6;35115:71;:::i;:::-;35196:72;35264:2;35253:9;35249:18;35240:6;35196:72;:::i;:::-;35278;35346:2;35335:9;35331:18;35322:6;35278:72;:::i;:::-;35397:9;35391:4;35387:20;35382:2;35371:9;35367:18;35360:48;35425:76;35496:4;35487:6;35425:76;:::i;:::-;35417:84;;34868:640;;;;;;;:::o;35514:141::-;35570:5;35601:6;35595:13;35586:22;;35617:32;35643:5;35617:32;:::i;:::-;35514:141;;;;:::o;35661:349::-;35730:6;35779:2;35767:9;35758:7;35754:23;35750:32;35747:119;;;35785:79;;:::i;:::-;35747:119;35905:1;35930:63;35985:7;35976:6;35965:9;35961:22;35930:63;:::i;:::-;35920:73;;35876:127;35661:349;;;;:::o
Swarm Source
ipfs://c2a5eb870dc17864f202f98fc85d3c90d9602a0b520c1ae7ab281a5dda513fb0
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.