Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
146 YFNFT
Holders
68
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 YFNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
YellowFellow
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-18 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: src/contracts/YellowFellow.sol pragma solidity ^0.8.0; contract YellowFellow is ERC721Enumerable, Ownable { using Strings for uint256; string private baseURI; string public baseExtension = ".json"; uint256 private mintCost = 0.08 ether; uint256 private totalFellows = 10000; uint256 private devMints = 20; uint256 private maxMintAmount = 10; bool public publicSaleActive = false; bool private paused = false; mapping(address => uint256) private whitelisted; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); mint(msg.sender, devMints); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(address _to, uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); // Allow initial owner distribution over max mint if (msg.sender != owner()) { require(_mintAmount <= maxMintAmount); } // If Not Public Sale - Then Pre-Sale if(publicSaleActive == true){ require(supply + _mintAmount <= totalFellows, "Not enough Fellows left in public sale to mint - try a lower amount"); } if (msg.sender != owner()) { require(msg.value >= mintCost * _mintAmount, "You did not send enough ETH - 0.08 ETH per mint (10 mints = .8ETH)"); } for (uint256 i = 1; i <= _mintAmount; i++) { // If in presale if(publicSaleActive == false){ // If whitelister can still mint if(msg.sender == owner()){ _safeMint(_to, supply + i); } else if(whitelisted[msg.sender] > 0){ whitelisted[msg.sender]--; _safeMint(_to, supply + i); } } else { // Pre-sale over - mint without whitelist _safeMint(_to, supply + i); } } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } // View NFTs of Owner By ID function tokensOfOwner(address user) external view returns (uint256[] memory ownerTokens) { uint256 tokenCount = balanceOf(user); if (tokenCount == 0) { return new uint256[](0); } else { uint256[] memory output = new uint256[](tokenCount); for (uint256 index = 0; index < tokenCount; index++) { output[index] = tokenOfOwnerByIndex(user, index); } return output; } } //only owner function setmintCost(uint256 _newmintCost) public onlyOwner() { mintCost = _newmintCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() { maxMintAmount = _newmaxMintAmount; } function settotalFellows(uint256 _newtotalFellows) public onlyOwner() { totalFellows = _newtotalFellows; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function toggleSale(bool _state) public onlyOwner { publicSaleActive = _state; } function pause(bool _state) public onlyOwner { paused = _state; } function whitelistAddresses (address[] memory users, uint256[] memory mintable) public onlyOwner { for (uint i = 0; i < users.length; i++) { whitelisted[users[i]] = mintable[i]; } } function whitelistUser(address _user, uint256 _amount) public onlyOwner { whitelisted[_user] = _amount; } function removeWhitelistUser(address _user) public onlyOwner { whitelisted[_user] = 0; } function isWhitelisted(address _address) public view returns(uint256) { return whitelisted[_address]; } function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmintCost","type":"uint256"}],"name":"setmintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newtotalFellows","type":"uint256"}],"name":"settotalFellows","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":"bool","name":"_state","type":"bool"}],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"mintable","type":"uint256[]"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062001018565b5067011c37937e080000600d55612710600e556014600f55600a6010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000b157600080fd5b50604051620066dd380380620066dd8339818101604052810190620000d7919062001265565b82828160009080519060200190620000f192919062001018565b5080600190805190602001906200010a92919062001018565b5050506200012d620001216200015b60201b60201c565b6200016360201b60201c565b6200013e816200022960201b60201c565b6200015233600f54620002d460201b60201c565b50505062001b39565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002396200015b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200025f6200060960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002af906200137f565b60405180910390fd5b80600b9080519060200190620002d092919062001018565b5050565b6000620002e66200063360201b60201c565b9050601160019054906101000a900460ff16156200030357600080fd5b600082116200031157600080fd5b620003216200060960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462000365576010548211156200036457600080fd5b5b60011515601160009054906101000a900460ff1615151415620003d857600e548282620003939190620013da565b1115620003d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ce90620014d3565b60405180910390fd5b5b620003e86200060960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620004715781600d546200042b9190620014f5565b34101562000470576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046790620015f2565b60405180910390fd5b5b6000600190505b828111620006035760001515601160009054906101000a900460ff1615151415620005cd57620004ad6200060960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415620005065762000500848284620004f49190620013da565b6200064060201b60201c565b620005c7565b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115620005c657601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190620005a19062001614565b9190505550620005c5848284620005b99190620013da565b6200064060201b60201c565b5b5b620005ed565b620005ec848284620005e09190620013da565b6200064060201b60201c565b5b8080620005fa9062001643565b91505062000478565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600880549050905090565b620006628282604051806020016040528060008152506200066660201b60201c565b5050565b620006788383620006d460201b60201c565b6200068d6000848484620008ba60201b60201c565b620006cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c69062001707565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000747576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200073e9062001779565b60405180910390fd5b620007588162000a6460201b60201c565b156200079b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200079290620017eb565b60405180910390fd5b620007af6000838362000ad060201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620008019190620013da565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620008e88473ffffffffffffffffffffffffffffffffffffffff1662000c1760201b6200205f1760201c565b1562000a57578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200091a6200015b60201b60201c565b8786866040518563ffffffff1660e01b81526004016200093e9493929190620018c0565b6020604051808303816000875af19250505080156200097d57506040513d601f19601f820116820180604052508101906200097a919062001971565b60015b62000a06573d8060008114620009b0576040519150601f19603f3d011682016040523d82523d6000602084013e620009b5565b606091505b50600081511415620009fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f59062001707565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000a5c565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000ae883838362000c2a60201b620020721760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000b355762000b2f8162000c2f60201b60201c565b62000b7d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000b7c5762000b7b838262000c7860201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000bca5762000bc48162000df560201b60201c565b62000c12565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000c115762000c10828262000ed160201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000c928462000f5d60201b620014021760201c565b62000c9e9190620019a3565b905060006007600084815260200190815260200160002054905081811462000d84576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000e0b9190620019a3565b905060006009600084815260200190815260200160002054905060006008838154811062000e3e5762000e3d620019de565b5b90600052602060002001549050806008838154811062000e635762000e62620019de565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000eb55762000eb462001a0d565b5b6001900381819060005260206000200160009055905550505050565b600062000ee98362000f5d60201b620014021760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000fd1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000fc89062001ab2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620010269062001b03565b90600052602060002090601f0160209004810192826200104a576000855562001096565b82601f106200106557805160ff191683800117855562001096565b8280016001018555821562001096579182015b828111156200109557825182559160200191906001019062001078565b5b509050620010a59190620010a9565b5090565b5b80821115620010c4576000816000905550600101620010aa565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200113182620010e6565b810181811067ffffffffffffffff82111715620011535762001152620010f7565b5b80604052505050565b600062001168620010c8565b905062001176828262001126565b919050565b600067ffffffffffffffff821115620011995762001198620010f7565b5b620011a482620010e6565b9050602081019050919050565b60005b83811015620011d1578082015181840152602081019050620011b4565b83811115620011e1576000848401525b50505050565b6000620011fe620011f8846200117b565b6200115c565b9050828152602081018484840111156200121d576200121c620010e1565b5b6200122a848285620011b1565b509392505050565b600082601f8301126200124a5762001249620010dc565b5b81516200125c848260208601620011e7565b91505092915050565b600080600060608486031215620012815762001280620010d2565b5b600084015167ffffffffffffffff811115620012a257620012a1620010d7565b5b620012b08682870162001232565b935050602084015167ffffffffffffffff811115620012d457620012d3620010d7565b5b620012e28682870162001232565b925050604084015167ffffffffffffffff811115620013065762001305620010d7565b5b620013148682870162001232565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620013676020836200131e565b915062001374826200132f565b602082019050919050565b600060208201905081810360008301526200139a8162001358565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620013e782620013a1565b9150620013f483620013a1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200142c576200142b620013ab565b5b828201905092915050565b7f4e6f7420656e6f7567682046656c6c6f7773206c65667420696e207075626c6960008201527f632073616c6520746f206d696e74202d207472792061206c6f77657220616d6f60208201527f756e740000000000000000000000000000000000000000000000000000000000604082015250565b6000620014bb6043836200131e565b9150620014c88262001437565b606082019050919050565b60006020820190508181036000830152620014ee81620014ac565b9050919050565b60006200150282620013a1565b91506200150f83620013a1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200154b576200154a620013ab565b5b828202905092915050565b7f596f7520646964206e6f742073656e6420656e6f75676820455448202d20302e60008201527f30382045544820706572206d696e7420283130206d696e7473203d202e38455460208201527f4829000000000000000000000000000000000000000000000000000000000000604082015250565b6000620015da6042836200131e565b9150620015e78262001556565b606082019050919050565b600060208201905081810360008301526200160d81620015cb565b9050919050565b60006200162182620013a1565b91506000821415620016385762001637620013ab565b5b600182039050919050565b60006200165082620013a1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620016865762001685620013ab565b5b600182019050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000620016ef6032836200131e565b9150620016fc8262001691565b604082019050919050565b600060208201905081810360008301526200172281620016e0565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000620017616020836200131e565b91506200176e8262001729565b602082019050919050565b60006020820190508181036000830152620017948162001752565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000620017d3601c836200131e565b9150620017e0826200179b565b602082019050919050565b600060208201905081810360008301526200180681620017c4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200183a826200180d565b9050919050565b6200184c816200182d565b82525050565b6200185d81620013a1565b82525050565b600081519050919050565b600082825260208201905092915050565b60006200188c8262001863565b6200189881856200186e565b9350620018aa818560208601620011b1565b620018b581620010e6565b840191505092915050565b6000608082019050620018d7600083018762001841565b620018e6602083018662001841565b620018f5604083018562001852565b81810360608301526200190981846200187f565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200194b8162001914565b81146200195757600080fd5b50565b6000815190506200196b8162001940565b92915050565b6000602082840312156200198a5762001989620010d2565b5b60006200199a848285016200195a565b91505092915050565b6000620019b082620013a1565b9150620019bd83620013a1565b925082821015620019d357620019d2620013ab565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600062001a9a602a836200131e565b915062001aa78262001a3c565b604082019050919050565b6000602082019050818103600083015262001acd8162001a8b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062001b1c57607f821691505b6020821081141562001b335762001b3262001ad4565b5b50919050565b614b948062001b496000396000f3fe60806040526004361061020f5760003560e01c806370f58c9711610118578063b88d4fde116100a0578063da3ef23f1161006f578063da3ef23f146107a1578063e054ffc3146107ca578063e985e9c5146107f3578063f2fde38b14610830578063f697d48e146108595761020f565b8063b88d4fde146106e5578063bc8893b41461070e578063c668286214610739578063c87b56dd146107645761020f565b80638613e563116100e75780638613e563146106145780638da5cb5b1461063d57806395d89b4114610668578063a22cb46514610693578063aab402e5146106bc5761020f565b806370f58c971461056e578063715018a6146105975780637f00c7a6146105ae5780638462151c146105d75761020f565b80633af32abf1161019b578063438b63001161016a578063438b6300146104515780634f6ccce71461048e57806355f804b3146104cb5780636352211e146104f457806370a08231146105315761020f565b80633af32abf146103c55780633ccfd60b1461040257806340c10f191461040c57806342842e0e146104285761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806323b872dd146103365780632f745c591461035f57806330cc7ae01461039c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613237565b610882565b604051610248919061327f565b60405180910390f35b34801561025d57600080fd5b50610278600480360381019061027391906132c6565b6108fc565b005b34801561028657600080fd5b5061028f610995565b60405161029c919061338c565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c791906133e4565b610a27565b6040516102d99190613452565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613499565b610aac565b005b34801561031757600080fd5b50610320610bc4565b60405161032d91906134e8565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613503565b610bd1565b005b34801561036b57600080fd5b5061038660048036038101906103819190613499565b610c31565b60405161039391906134e8565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190613556565b610cd6565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190613556565b610d9a565b6040516103f991906134e8565b60405180910390f35b61040a610de3565b005b61042660048036038101906104219190613499565b610e9f565b005b34801561043457600080fd5b5061044f600480360381019061044a9190613503565b61117b565b005b34801561045d57600080fd5b5061047860048036038101906104739190613556565b61119b565b6040516104859190613641565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b091906133e4565b611249565b6040516104c291906134e8565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190613798565b6112ba565b005b34801561050057600080fd5b5061051b600480360381019061051691906133e4565b611350565b6040516105289190613452565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190613556565b611402565b60405161056591906134e8565b60405180910390f35b34801561057a57600080fd5b506105956004803603810190610590919061396c565b6114ba565b005b3480156105a357600080fd5b506105ac6115d2565b005b3480156105ba57600080fd5b506105d560048036038101906105d091906133e4565b61165a565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190613556565b6116e0565b60405161060b9190613641565b60405180910390f35b34801561062057600080fd5b5061063b600480360381019061063691906133e4565b6117ea565b005b34801561064957600080fd5b50610652611870565b60405161065f9190613452565b60405180910390f35b34801561067457600080fd5b5061067d61189a565b60405161068a919061338c565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b591906139e4565b61192c565b005b3480156106c857600080fd5b506106e360048036038101906106de91906132c6565b611aad565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613ac5565b611b46565b005b34801561071a57600080fd5b50610723611ba8565b604051610730919061327f565b60405180910390f35b34801561074557600080fd5b5061074e611bbb565b60405161075b919061338c565b60405180910390f35b34801561077057600080fd5b5061078b600480360381019061078691906133e4565b611c49565b604051610798919061338c565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613798565b611cf3565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190613499565b611d89565b005b3480156107ff57600080fd5b5061081a60048036038101906108159190613b48565b611e4d565b604051610827919061327f565b60405180910390f35b34801561083c57600080fd5b5061085760048036038101906108529190613556565b611ee1565b005b34801561086557600080fd5b50610880600480360381019061087b91906133e4565b611fd9565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f557506108f482612077565b5b9050919050565b610904612159565b73ffffffffffffffffffffffffffffffffffffffff16610922611870565b73ffffffffffffffffffffffffffffffffffffffff1614610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f90613bd4565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6060600080546109a490613c23565b80601f01602080910402602001604051908101604052809291908181526020018280546109d090613c23565b8015610a1d5780601f106109f257610100808354040283529160200191610a1d565b820191906000526020600020905b815481529060010190602001808311610a0057829003601f168201915b5050505050905090565b6000610a3282612161565b610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6890613cc7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab782611350565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90613d59565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b47612159565b73ffffffffffffffffffffffffffffffffffffffff161480610b765750610b7581610b70612159565b611e4d565b5b610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90613deb565b60405180910390fd5b610bbf83836121cd565b505050565b6000600880549050905090565b610be2610bdc612159565b82612286565b610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890613e7d565b60405180910390fd5b610c2c838383612364565b505050565b6000610c3c83611402565b8210610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613f0f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cde612159565b73ffffffffffffffffffffffffffffffffffffffff16610cfc611870565b73ffffffffffffffffffffffffffffffffffffffff1614610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990613bd4565b60405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610deb612159565b73ffffffffffffffffffffffffffffffffffffffff16610e09611870565b73ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690613bd4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610e9d57600080fd5b565b6000610ea9610bc4565b9050601160019054906101000a900460ff1615610ec557600080fd5b60008211610ed257600080fd5b610eda611870565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f1c57601054821115610f1b57600080fd5b5b60011515601160009054906101000a900460ff1615151415610f8957600e548282610f479190613f5e565b1115610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f9061404c565b60405180910390fd5b5b610f91611870565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110145781600d54610fd1919061406c565b341015611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a9061415e565b60405180910390fd5b5b6000600190505b8281116111755760001515601160009054906101000a900460ff161515141561114c57611046611870565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156110935761108e8482846110899190613f5e565b6125c0565b611147565b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561114657601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061112b9061417e565b91905055506111458482846111409190613f5e565b6125c0565b5b5b611162565b61116184828461115c9190613f5e565b6125c0565b5b808061116d906141a8565b91505061101b565b50505050565b61119683838360405180602001604052806000815250611b46565b505050565b606060006111a883611402565b905060008167ffffffffffffffff8111156111c6576111c561366d565b5b6040519080825280602002602001820160405280156111f45781602001602082028036833780820191505090505b50905060005b8281101561123e5761120c8582610c31565b82828151811061121f5761121e6141f1565b5b6020026020010181815250508080611236906141a8565b9150506111fa565b508092505050919050565b6000611253610bc4565b8210611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90614292565b60405180910390fd5b600882815481106112a8576112a76141f1565b5b90600052602060002001549050919050565b6112c2612159565b73ffffffffffffffffffffffffffffffffffffffff166112e0611870565b73ffffffffffffffffffffffffffffffffffffffff1614611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90613bd4565b60405180910390fd5b80600b908051906020019061134c929190613128565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090614324565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a906143b6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114c2612159565b73ffffffffffffffffffffffffffffffffffffffff166114e0611870565b73ffffffffffffffffffffffffffffffffffffffff1614611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90613bd4565b60405180910390fd5b60005b82518110156115cd57818181518110611555576115546141f1565b5b602002602001015160126000858481518110611574576115736141f1565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806115c5906141a8565b915050611539565b505050565b6115da612159565b73ffffffffffffffffffffffffffffffffffffffff166115f8611870565b73ffffffffffffffffffffffffffffffffffffffff161461164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164590613bd4565b60405180910390fd5b61165860006125de565b565b611662612159565b73ffffffffffffffffffffffffffffffffffffffff16611680611870565b73ffffffffffffffffffffffffffffffffffffffff16146116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613bd4565b60405180910390fd5b8060108190555050565b606060006116ed83611402565b9050600081141561174a57600067ffffffffffffffff8111156117135761171261366d565b5b6040519080825280602002602001820160405280156117415781602001602082028036833780820191505090505b509150506117e5565b60008167ffffffffffffffff8111156117665761176561366d565b5b6040519080825280602002602001820160405280156117945781602001602082028036833780820191505090505b50905060005b828110156117de576117ac8582610c31565b8282815181106117bf576117be6141f1565b5b60200260200101818152505080806117d6906141a8565b91505061179a565b5080925050505b919050565b6117f2612159565b73ffffffffffffffffffffffffffffffffffffffff16611810611870565b73ffffffffffffffffffffffffffffffffffffffff1614611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d90613bd4565b60405180910390fd5b80600e8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118a990613c23565b80601f01602080910402602001604051908101604052809291908181526020018280546118d590613c23565b80156119225780601f106118f757610100808354040283529160200191611922565b820191906000526020600020905b81548152906001019060200180831161190557829003601f168201915b5050505050905090565b611934612159565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199990614422565b60405180910390fd5b80600560006119af612159565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5c612159565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa1919061327f565b60405180910390a35050565b611ab5612159565b73ffffffffffffffffffffffffffffffffffffffff16611ad3611870565b73ffffffffffffffffffffffffffffffffffffffff1614611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090613bd4565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b611b57611b51612159565b83612286565b611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613e7d565b60405180910390fd5b611ba2848484846126a4565b50505050565b601160009054906101000a900460ff1681565b600c8054611bc890613c23565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf490613c23565b8015611c415780601f10611c1657610100808354040283529160200191611c41565b820191906000526020600020905b815481529060010190602001808311611c2457829003601f168201915b505050505081565b6060611c5482612161565b611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a906144b4565b60405180910390fd5b6000611c9d612700565b90506000815111611cbd5760405180602001604052806000815250611ceb565b80611cc784612792565b600c604051602001611cdb939291906145a4565b6040516020818303038152906040525b915050919050565b611cfb612159565b73ffffffffffffffffffffffffffffffffffffffff16611d19611870565b73ffffffffffffffffffffffffffffffffffffffff1614611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690613bd4565b60405180910390fd5b80600c9080519060200190611d85929190613128565b5050565b611d91612159565b73ffffffffffffffffffffffffffffffffffffffff16611daf611870565b73ffffffffffffffffffffffffffffffffffffffff1614611e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfc90613bd4565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ee9612159565b73ffffffffffffffffffffffffffffffffffffffff16611f07611870565b73ffffffffffffffffffffffffffffffffffffffff1614611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490613bd4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc490614647565b60405180910390fd5b611fd6816125de565b50565b611fe1612159565b73ffffffffffffffffffffffffffffffffffffffff16611fff611870565b73ffffffffffffffffffffffffffffffffffffffff1614612055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204c90613bd4565b60405180910390fd5b80600d8190555050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061214257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121525750612151826128f3565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661224083611350565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061229182612161565b6122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c7906146d9565b60405180910390fd5b60006122db83611350565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061234a57508373ffffffffffffffffffffffffffffffffffffffff1661233284610a27565b73ffffffffffffffffffffffffffffffffffffffff16145b8061235b575061235a8185611e4d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661238482611350565b73ffffffffffffffffffffffffffffffffffffffff16146123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d19061476b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561244a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612441906147fd565b60405180910390fd5b61245583838361295d565b6124606000826121cd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b0919061481d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125079190613f5e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125da828260405180602001604052806000815250612a71565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126af848484612364565b6126bb84848484612acc565b6126fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f1906148c3565b60405180910390fd5b50505050565b6060600b805461270f90613c23565b80601f016020809104026020016040519081016040528092919081815260200182805461273b90613c23565b80156127885780601f1061275d57610100808354040283529160200191612788565b820191906000526020600020905b81548152906001019060200180831161276b57829003601f168201915b5050505050905090565b606060008214156127da576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128ee565b600082905060005b6000821461280c5780806127f5906141a8565b915050600a826128059190614912565b91506127e2565b60008167ffffffffffffffff8111156128285761282761366d565b5b6040519080825280601f01601f19166020018201604052801561285a5781602001600182028036833780820191505090505b5090505b600085146128e757600182612873919061481d565b9150600a856128829190614943565b603061288e9190613f5e565b60f81b8183815181106128a4576128a36141f1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128e09190614912565b945061285e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612968838383612072565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129ab576129a681612c54565b6129ea565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129e9576129e88382612c9d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a2d57612a2881612e0a565b612a6c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a6b57612a6a8282612edb565b5b5b505050565b612a7b8383612f5a565b612a886000848484612acc565b612ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abe906148c3565b60405180910390fd5b505050565b6000612aed8473ffffffffffffffffffffffffffffffffffffffff1661205f565b15612c47578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b16612159565b8786866040518563ffffffff1660e01b8152600401612b3894939291906149c9565b6020604051808303816000875af1925050508015612b7457506040513d601f19601f82011682018060405250810190612b719190614a2a565b60015b612bf7573d8060008114612ba4576040519150601f19603f3d011682016040523d82523d6000602084013e612ba9565b606091505b50600081511415612bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be6906148c3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c4c565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612caa84611402565b612cb4919061481d565b9050600060076000848152602001908152602001600020549050818114612d99576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e1e919061481d565b9050600060096000848152602001908152602001600020549050600060088381548110612e4e57612e4d6141f1565b5b906000526020600020015490508060088381548110612e7057612e6f6141f1565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ebf57612ebe614a57565b5b6001900381819060005260206000200160009055905550505050565b6000612ee683611402565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc190614ad2565b60405180910390fd5b612fd381612161565b15613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a90614b3e565b60405180910390fd5b61301f6000838361295d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461306f9190613f5e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461313490613c23565b90600052602060002090601f016020900481019282613156576000855561319d565b82601f1061316f57805160ff191683800117855561319d565b8280016001018555821561319d579182015b8281111561319c578251825591602001919060010190613181565b5b5090506131aa91906131ae565b5090565b5b808211156131c75760008160009055506001016131af565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613214816131df565b811461321f57600080fd5b50565b6000813590506132318161320b565b92915050565b60006020828403121561324d5761324c6131d5565b5b600061325b84828501613222565b91505092915050565b60008115159050919050565b61327981613264565b82525050565b60006020820190506132946000830184613270565b92915050565b6132a381613264565b81146132ae57600080fd5b50565b6000813590506132c08161329a565b92915050565b6000602082840312156132dc576132db6131d5565b5b60006132ea848285016132b1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561332d578082015181840152602081019050613312565b8381111561333c576000848401525b50505050565b6000601f19601f8301169050919050565b600061335e826132f3565b61336881856132fe565b935061337881856020860161330f565b61338181613342565b840191505092915050565b600060208201905081810360008301526133a68184613353565b905092915050565b6000819050919050565b6133c1816133ae565b81146133cc57600080fd5b50565b6000813590506133de816133b8565b92915050565b6000602082840312156133fa576133f96131d5565b5b6000613408848285016133cf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061343c82613411565b9050919050565b61344c81613431565b82525050565b60006020820190506134676000830184613443565b92915050565b61347681613431565b811461348157600080fd5b50565b6000813590506134938161346d565b92915050565b600080604083850312156134b0576134af6131d5565b5b60006134be85828601613484565b92505060206134cf858286016133cf565b9150509250929050565b6134e2816133ae565b82525050565b60006020820190506134fd60008301846134d9565b92915050565b60008060006060848603121561351c5761351b6131d5565b5b600061352a86828701613484565b935050602061353b86828701613484565b925050604061354c868287016133cf565b9150509250925092565b60006020828403121561356c5761356b6131d5565b5b600061357a84828501613484565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6135b8816133ae565b82525050565b60006135ca83836135af565b60208301905092915050565b6000602082019050919050565b60006135ee82613583565b6135f8818561358e565b93506136038361359f565b8060005b8381101561363457815161361b88826135be565b9750613626836135d6565b925050600181019050613607565b5085935050505092915050565b6000602082019050818103600083015261365b81846135e3565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136a582613342565b810181811067ffffffffffffffff821117156136c4576136c361366d565b5b80604052505050565b60006136d76131cb565b90506136e3828261369c565b919050565b600067ffffffffffffffff8211156137035761370261366d565b5b61370c82613342565b9050602081019050919050565b82818337600083830152505050565b600061373b613736846136e8565b6136cd565b90508281526020810184848401111561375757613756613668565b5b613762848285613719565b509392505050565b600082601f83011261377f5761377e613663565b5b813561378f848260208601613728565b91505092915050565b6000602082840312156137ae576137ad6131d5565b5b600082013567ffffffffffffffff8111156137cc576137cb6131da565b5b6137d88482850161376a565b91505092915050565b600067ffffffffffffffff8211156137fc576137fb61366d565b5b602082029050602081019050919050565b600080fd5b6000613825613820846137e1565b6136cd565b905080838252602082019050602084028301858111156138485761384761380d565b5b835b81811015613871578061385d8882613484565b84526020840193505060208101905061384a565b5050509392505050565b600082601f8301126138905761388f613663565b5b81356138a0848260208601613812565b91505092915050565b600067ffffffffffffffff8211156138c4576138c361366d565b5b602082029050602081019050919050565b60006138e86138e3846138a9565b6136cd565b9050808382526020820190506020840283018581111561390b5761390a61380d565b5b835b81811015613934578061392088826133cf565b84526020840193505060208101905061390d565b5050509392505050565b600082601f83011261395357613952613663565b5b81356139638482602086016138d5565b91505092915050565b60008060408385031215613983576139826131d5565b5b600083013567ffffffffffffffff8111156139a1576139a06131da565b5b6139ad8582860161387b565b925050602083013567ffffffffffffffff8111156139ce576139cd6131da565b5b6139da8582860161393e565b9150509250929050565b600080604083850312156139fb576139fa6131d5565b5b6000613a0985828601613484565b9250506020613a1a858286016132b1565b9150509250929050565b600067ffffffffffffffff821115613a3f57613a3e61366d565b5b613a4882613342565b9050602081019050919050565b6000613a68613a6384613a24565b6136cd565b905082815260208101848484011115613a8457613a83613668565b5b613a8f848285613719565b509392505050565b600082601f830112613aac57613aab613663565b5b8135613abc848260208601613a55565b91505092915050565b60008060008060808587031215613adf57613ade6131d5565b5b6000613aed87828801613484565b9450506020613afe87828801613484565b9350506040613b0f878288016133cf565b925050606085013567ffffffffffffffff811115613b3057613b2f6131da565b5b613b3c87828801613a97565b91505092959194509250565b60008060408385031215613b5f57613b5e6131d5565b5b6000613b6d85828601613484565b9250506020613b7e85828601613484565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bbe6020836132fe565b9150613bc982613b88565b602082019050919050565b60006020820190508181036000830152613bed81613bb1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c3b57607f821691505b60208210811415613c4f57613c4e613bf4565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613cb1602c836132fe565b9150613cbc82613c55565b604082019050919050565b60006020820190508181036000830152613ce081613ca4565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d436021836132fe565b9150613d4e82613ce7565b604082019050919050565b60006020820190508181036000830152613d7281613d36565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613dd56038836132fe565b9150613de082613d79565b604082019050919050565b60006020820190508181036000830152613e0481613dc8565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613e676031836132fe565b9150613e7282613e0b565b604082019050919050565b60006020820190508181036000830152613e9681613e5a565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613ef9602b836132fe565b9150613f0482613e9d565b604082019050919050565b60006020820190508181036000830152613f2881613eec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f69826133ae565b9150613f74836133ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fa957613fa8613f2f565b5b828201905092915050565b7f4e6f7420656e6f7567682046656c6c6f7773206c65667420696e207075626c6960008201527f632073616c6520746f206d696e74202d207472792061206c6f77657220616d6f60208201527f756e740000000000000000000000000000000000000000000000000000000000604082015250565b60006140366043836132fe565b915061404182613fb4565b606082019050919050565b6000602082019050818103600083015261406581614029565b9050919050565b6000614077826133ae565b9150614082836133ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140bb576140ba613f2f565b5b828202905092915050565b7f596f7520646964206e6f742073656e6420656e6f75676820455448202d20302e60008201527f30382045544820706572206d696e7420283130206d696e7473203d202e38455460208201527f4829000000000000000000000000000000000000000000000000000000000000604082015250565b60006141486042836132fe565b9150614153826140c6565b606082019050919050565b600060208201905081810360008301526141778161413b565b9050919050565b6000614189826133ae565b9150600082141561419d5761419c613f2f565b5b600182039050919050565b60006141b3826133ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141e6576141e5613f2f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061427c602c836132fe565b915061428782614220565b604082019050919050565b600060208201905081810360008301526142ab8161426f565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061430e6029836132fe565b9150614319826142b2565b604082019050919050565b6000602082019050818103600083015261433d81614301565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006143a0602a836132fe565b91506143ab82614344565b604082019050919050565b600060208201905081810360008301526143cf81614393565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061440c6019836132fe565b9150614417826143d6565b602082019050919050565b6000602082019050818103600083015261443b816143ff565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061449e602f836132fe565b91506144a982614442565b604082019050919050565b600060208201905081810360008301526144cd81614491565b9050919050565b600081905092915050565b60006144ea826132f3565b6144f481856144d4565b935061450481856020860161330f565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461453281613c23565b61453c81866144d4565b9450600182166000811461455757600181146145685761459b565b60ff1983168652818601935061459b565b61457185614510565b60005b8381101561459357815481890152600182019150602081019050614574565b838801955050505b50505092915050565b60006145b082866144df565b91506145bc82856144df565b91506145c88284614525565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146316026836132fe565b915061463c826145d5565b604082019050919050565b6000602082019050818103600083015261466081614624565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006146c3602c836132fe565b91506146ce82614667565b604082019050919050565b600060208201905081810360008301526146f2816146b6565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006147556029836132fe565b9150614760826146f9565b604082019050919050565b6000602082019050818103600083015261478481614748565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147e76024836132fe565b91506147f28261478b565b604082019050919050565b60006020820190508181036000830152614816816147da565b9050919050565b6000614828826133ae565b9150614833836133ae565b92508282101561484657614845613f2f565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006148ad6032836132fe565b91506148b882614851565b604082019050919050565b600060208201905081810360008301526148dc816148a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061491d826133ae565b9150614928836133ae565b925082614938576149376148e3565b5b828204905092915050565b600061494e826133ae565b9150614959836133ae565b925082614969576149686148e3565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061499b82614974565b6149a5818561497f565b93506149b581856020860161330f565b6149be81613342565b840191505092915050565b60006080820190506149de6000830187613443565b6149eb6020830186613443565b6149f860408301856134d9565b8181036060830152614a0a8184614990565b905095945050505050565b600081519050614a248161320b565b92915050565b600060208284031215614a4057614a3f6131d5565b5b6000614a4e84828501614a15565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614abc6020836132fe565b9150614ac782614a86565b602082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614b28601c836132fe565b9150614b3382614af2565b602082019050919050565b60006020820190508181036000830152614b5781614b1b565b905091905056fea2646970667358221220da73210d5d4b24073c47e8d219d5801ae174b27c03ea036f99af9b2c8f478b2264736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c59656c6c6f7746656c6c6f770000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000559464e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f79656c6c6f7766656c6c6f77732e696f2f6e6674732f6a736f6e2f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c806370f58c9711610118578063b88d4fde116100a0578063da3ef23f1161006f578063da3ef23f146107a1578063e054ffc3146107ca578063e985e9c5146107f3578063f2fde38b14610830578063f697d48e146108595761020f565b8063b88d4fde146106e5578063bc8893b41461070e578063c668286214610739578063c87b56dd146107645761020f565b80638613e563116100e75780638613e563146106145780638da5cb5b1461063d57806395d89b4114610668578063a22cb46514610693578063aab402e5146106bc5761020f565b806370f58c971461056e578063715018a6146105975780637f00c7a6146105ae5780638462151c146105d75761020f565b80633af32abf1161019b578063438b63001161016a578063438b6300146104515780634f6ccce71461048e57806355f804b3146104cb5780636352211e146104f457806370a08231146105315761020f565b80633af32abf146103c55780633ccfd60b1461040257806340c10f191461040c57806342842e0e146104285761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806323b872dd146103365780632f745c591461035f57806330cc7ae01461039c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613237565b610882565b604051610248919061327f565b60405180910390f35b34801561025d57600080fd5b50610278600480360381019061027391906132c6565b6108fc565b005b34801561028657600080fd5b5061028f610995565b60405161029c919061338c565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c791906133e4565b610a27565b6040516102d99190613452565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613499565b610aac565b005b34801561031757600080fd5b50610320610bc4565b60405161032d91906134e8565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613503565b610bd1565b005b34801561036b57600080fd5b5061038660048036038101906103819190613499565b610c31565b60405161039391906134e8565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190613556565b610cd6565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190613556565b610d9a565b6040516103f991906134e8565b60405180910390f35b61040a610de3565b005b61042660048036038101906104219190613499565b610e9f565b005b34801561043457600080fd5b5061044f600480360381019061044a9190613503565b61117b565b005b34801561045d57600080fd5b5061047860048036038101906104739190613556565b61119b565b6040516104859190613641565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b091906133e4565b611249565b6040516104c291906134e8565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190613798565b6112ba565b005b34801561050057600080fd5b5061051b600480360381019061051691906133e4565b611350565b6040516105289190613452565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190613556565b611402565b60405161056591906134e8565b60405180910390f35b34801561057a57600080fd5b506105956004803603810190610590919061396c565b6114ba565b005b3480156105a357600080fd5b506105ac6115d2565b005b3480156105ba57600080fd5b506105d560048036038101906105d091906133e4565b61165a565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190613556565b6116e0565b60405161060b9190613641565b60405180910390f35b34801561062057600080fd5b5061063b600480360381019061063691906133e4565b6117ea565b005b34801561064957600080fd5b50610652611870565b60405161065f9190613452565b60405180910390f35b34801561067457600080fd5b5061067d61189a565b60405161068a919061338c565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b591906139e4565b61192c565b005b3480156106c857600080fd5b506106e360048036038101906106de91906132c6565b611aad565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613ac5565b611b46565b005b34801561071a57600080fd5b50610723611ba8565b604051610730919061327f565b60405180910390f35b34801561074557600080fd5b5061074e611bbb565b60405161075b919061338c565b60405180910390f35b34801561077057600080fd5b5061078b600480360381019061078691906133e4565b611c49565b604051610798919061338c565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613798565b611cf3565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190613499565b611d89565b005b3480156107ff57600080fd5b5061081a60048036038101906108159190613b48565b611e4d565b604051610827919061327f565b60405180910390f35b34801561083c57600080fd5b5061085760048036038101906108529190613556565b611ee1565b005b34801561086557600080fd5b50610880600480360381019061087b91906133e4565b611fd9565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f557506108f482612077565b5b9050919050565b610904612159565b73ffffffffffffffffffffffffffffffffffffffff16610922611870565b73ffffffffffffffffffffffffffffffffffffffff1614610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f90613bd4565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6060600080546109a490613c23565b80601f01602080910402602001604051908101604052809291908181526020018280546109d090613c23565b8015610a1d5780601f106109f257610100808354040283529160200191610a1d565b820191906000526020600020905b815481529060010190602001808311610a0057829003601f168201915b5050505050905090565b6000610a3282612161565b610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6890613cc7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab782611350565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90613d59565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b47612159565b73ffffffffffffffffffffffffffffffffffffffff161480610b765750610b7581610b70612159565b611e4d565b5b610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90613deb565b60405180910390fd5b610bbf83836121cd565b505050565b6000600880549050905090565b610be2610bdc612159565b82612286565b610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890613e7d565b60405180910390fd5b610c2c838383612364565b505050565b6000610c3c83611402565b8210610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613f0f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cde612159565b73ffffffffffffffffffffffffffffffffffffffff16610cfc611870565b73ffffffffffffffffffffffffffffffffffffffff1614610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990613bd4565b60405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610deb612159565b73ffffffffffffffffffffffffffffffffffffffff16610e09611870565b73ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690613bd4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610e9d57600080fd5b565b6000610ea9610bc4565b9050601160019054906101000a900460ff1615610ec557600080fd5b60008211610ed257600080fd5b610eda611870565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f1c57601054821115610f1b57600080fd5b5b60011515601160009054906101000a900460ff1615151415610f8957600e548282610f479190613f5e565b1115610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f9061404c565b60405180910390fd5b5b610f91611870565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110145781600d54610fd1919061406c565b341015611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a9061415e565b60405180910390fd5b5b6000600190505b8281116111755760001515601160009054906101000a900460ff161515141561114c57611046611870565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156110935761108e8482846110899190613f5e565b6125c0565b611147565b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561114657601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061112b9061417e565b91905055506111458482846111409190613f5e565b6125c0565b5b5b611162565b61116184828461115c9190613f5e565b6125c0565b5b808061116d906141a8565b91505061101b565b50505050565b61119683838360405180602001604052806000815250611b46565b505050565b606060006111a883611402565b905060008167ffffffffffffffff8111156111c6576111c561366d565b5b6040519080825280602002602001820160405280156111f45781602001602082028036833780820191505090505b50905060005b8281101561123e5761120c8582610c31565b82828151811061121f5761121e6141f1565b5b6020026020010181815250508080611236906141a8565b9150506111fa565b508092505050919050565b6000611253610bc4565b8210611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90614292565b60405180910390fd5b600882815481106112a8576112a76141f1565b5b90600052602060002001549050919050565b6112c2612159565b73ffffffffffffffffffffffffffffffffffffffff166112e0611870565b73ffffffffffffffffffffffffffffffffffffffff1614611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90613bd4565b60405180910390fd5b80600b908051906020019061134c929190613128565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090614324565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a906143b6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114c2612159565b73ffffffffffffffffffffffffffffffffffffffff166114e0611870565b73ffffffffffffffffffffffffffffffffffffffff1614611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90613bd4565b60405180910390fd5b60005b82518110156115cd57818181518110611555576115546141f1565b5b602002602001015160126000858481518110611574576115736141f1565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806115c5906141a8565b915050611539565b505050565b6115da612159565b73ffffffffffffffffffffffffffffffffffffffff166115f8611870565b73ffffffffffffffffffffffffffffffffffffffff161461164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164590613bd4565b60405180910390fd5b61165860006125de565b565b611662612159565b73ffffffffffffffffffffffffffffffffffffffff16611680611870565b73ffffffffffffffffffffffffffffffffffffffff16146116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613bd4565b60405180910390fd5b8060108190555050565b606060006116ed83611402565b9050600081141561174a57600067ffffffffffffffff8111156117135761171261366d565b5b6040519080825280602002602001820160405280156117415781602001602082028036833780820191505090505b509150506117e5565b60008167ffffffffffffffff8111156117665761176561366d565b5b6040519080825280602002602001820160405280156117945781602001602082028036833780820191505090505b50905060005b828110156117de576117ac8582610c31565b8282815181106117bf576117be6141f1565b5b60200260200101818152505080806117d6906141a8565b91505061179a565b5080925050505b919050565b6117f2612159565b73ffffffffffffffffffffffffffffffffffffffff16611810611870565b73ffffffffffffffffffffffffffffffffffffffff1614611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d90613bd4565b60405180910390fd5b80600e8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118a990613c23565b80601f01602080910402602001604051908101604052809291908181526020018280546118d590613c23565b80156119225780601f106118f757610100808354040283529160200191611922565b820191906000526020600020905b81548152906001019060200180831161190557829003601f168201915b5050505050905090565b611934612159565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199990614422565b60405180910390fd5b80600560006119af612159565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5c612159565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa1919061327f565b60405180910390a35050565b611ab5612159565b73ffffffffffffffffffffffffffffffffffffffff16611ad3611870565b73ffffffffffffffffffffffffffffffffffffffff1614611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090613bd4565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b611b57611b51612159565b83612286565b611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613e7d565b60405180910390fd5b611ba2848484846126a4565b50505050565b601160009054906101000a900460ff1681565b600c8054611bc890613c23565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf490613c23565b8015611c415780601f10611c1657610100808354040283529160200191611c41565b820191906000526020600020905b815481529060010190602001808311611c2457829003601f168201915b505050505081565b6060611c5482612161565b611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a906144b4565b60405180910390fd5b6000611c9d612700565b90506000815111611cbd5760405180602001604052806000815250611ceb565b80611cc784612792565b600c604051602001611cdb939291906145a4565b6040516020818303038152906040525b915050919050565b611cfb612159565b73ffffffffffffffffffffffffffffffffffffffff16611d19611870565b73ffffffffffffffffffffffffffffffffffffffff1614611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690613bd4565b60405180910390fd5b80600c9080519060200190611d85929190613128565b5050565b611d91612159565b73ffffffffffffffffffffffffffffffffffffffff16611daf611870565b73ffffffffffffffffffffffffffffffffffffffff1614611e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfc90613bd4565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ee9612159565b73ffffffffffffffffffffffffffffffffffffffff16611f07611870565b73ffffffffffffffffffffffffffffffffffffffff1614611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490613bd4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc490614647565b60405180910390fd5b611fd6816125de565b50565b611fe1612159565b73ffffffffffffffffffffffffffffffffffffffff16611fff611870565b73ffffffffffffffffffffffffffffffffffffffff1614612055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204c90613bd4565b60405180910390fd5b80600d8190555050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061214257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121525750612151826128f3565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661224083611350565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061229182612161565b6122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c7906146d9565b60405180910390fd5b60006122db83611350565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061234a57508373ffffffffffffffffffffffffffffffffffffffff1661233284610a27565b73ffffffffffffffffffffffffffffffffffffffff16145b8061235b575061235a8185611e4d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661238482611350565b73ffffffffffffffffffffffffffffffffffffffff16146123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d19061476b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561244a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612441906147fd565b60405180910390fd5b61245583838361295d565b6124606000826121cd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b0919061481d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125079190613f5e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125da828260405180602001604052806000815250612a71565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126af848484612364565b6126bb84848484612acc565b6126fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f1906148c3565b60405180910390fd5b50505050565b6060600b805461270f90613c23565b80601f016020809104026020016040519081016040528092919081815260200182805461273b90613c23565b80156127885780601f1061275d57610100808354040283529160200191612788565b820191906000526020600020905b81548152906001019060200180831161276b57829003601f168201915b5050505050905090565b606060008214156127da576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128ee565b600082905060005b6000821461280c5780806127f5906141a8565b915050600a826128059190614912565b91506127e2565b60008167ffffffffffffffff8111156128285761282761366d565b5b6040519080825280601f01601f19166020018201604052801561285a5781602001600182028036833780820191505090505b5090505b600085146128e757600182612873919061481d565b9150600a856128829190614943565b603061288e9190613f5e565b60f81b8183815181106128a4576128a36141f1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128e09190614912565b945061285e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612968838383612072565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129ab576129a681612c54565b6129ea565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129e9576129e88382612c9d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a2d57612a2881612e0a565b612a6c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a6b57612a6a8282612edb565b5b5b505050565b612a7b8383612f5a565b612a886000848484612acc565b612ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abe906148c3565b60405180910390fd5b505050565b6000612aed8473ffffffffffffffffffffffffffffffffffffffff1661205f565b15612c47578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b16612159565b8786866040518563ffffffff1660e01b8152600401612b3894939291906149c9565b6020604051808303816000875af1925050508015612b7457506040513d601f19601f82011682018060405250810190612b719190614a2a565b60015b612bf7573d8060008114612ba4576040519150601f19603f3d011682016040523d82523d6000602084013e612ba9565b606091505b50600081511415612bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be6906148c3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c4c565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612caa84611402565b612cb4919061481d565b9050600060076000848152602001908152602001600020549050818114612d99576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e1e919061481d565b9050600060096000848152602001908152602001600020549050600060088381548110612e4e57612e4d6141f1565b5b906000526020600020015490508060088381548110612e7057612e6f6141f1565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ebf57612ebe614a57565b5b6001900381819060005260206000200160009055905550505050565b6000612ee683611402565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc190614ad2565b60405180910390fd5b612fd381612161565b15613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a90614b3e565b60405180910390fd5b61301f6000838361295d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461306f9190613f5e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461313490613c23565b90600052602060002090601f016020900481019282613156576000855561319d565b82601f1061316f57805160ff191683800117855561319d565b8280016001018555821561319d579182015b8281111561319c578251825591602001919060010190613181565b5b5090506131aa91906131ae565b5090565b5b808211156131c75760008160009055506001016131af565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613214816131df565b811461321f57600080fd5b50565b6000813590506132318161320b565b92915050565b60006020828403121561324d5761324c6131d5565b5b600061325b84828501613222565b91505092915050565b60008115159050919050565b61327981613264565b82525050565b60006020820190506132946000830184613270565b92915050565b6132a381613264565b81146132ae57600080fd5b50565b6000813590506132c08161329a565b92915050565b6000602082840312156132dc576132db6131d5565b5b60006132ea848285016132b1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561332d578082015181840152602081019050613312565b8381111561333c576000848401525b50505050565b6000601f19601f8301169050919050565b600061335e826132f3565b61336881856132fe565b935061337881856020860161330f565b61338181613342565b840191505092915050565b600060208201905081810360008301526133a68184613353565b905092915050565b6000819050919050565b6133c1816133ae565b81146133cc57600080fd5b50565b6000813590506133de816133b8565b92915050565b6000602082840312156133fa576133f96131d5565b5b6000613408848285016133cf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061343c82613411565b9050919050565b61344c81613431565b82525050565b60006020820190506134676000830184613443565b92915050565b61347681613431565b811461348157600080fd5b50565b6000813590506134938161346d565b92915050565b600080604083850312156134b0576134af6131d5565b5b60006134be85828601613484565b92505060206134cf858286016133cf565b9150509250929050565b6134e2816133ae565b82525050565b60006020820190506134fd60008301846134d9565b92915050565b60008060006060848603121561351c5761351b6131d5565b5b600061352a86828701613484565b935050602061353b86828701613484565b925050604061354c868287016133cf565b9150509250925092565b60006020828403121561356c5761356b6131d5565b5b600061357a84828501613484565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6135b8816133ae565b82525050565b60006135ca83836135af565b60208301905092915050565b6000602082019050919050565b60006135ee82613583565b6135f8818561358e565b93506136038361359f565b8060005b8381101561363457815161361b88826135be565b9750613626836135d6565b925050600181019050613607565b5085935050505092915050565b6000602082019050818103600083015261365b81846135e3565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136a582613342565b810181811067ffffffffffffffff821117156136c4576136c361366d565b5b80604052505050565b60006136d76131cb565b90506136e3828261369c565b919050565b600067ffffffffffffffff8211156137035761370261366d565b5b61370c82613342565b9050602081019050919050565b82818337600083830152505050565b600061373b613736846136e8565b6136cd565b90508281526020810184848401111561375757613756613668565b5b613762848285613719565b509392505050565b600082601f83011261377f5761377e613663565b5b813561378f848260208601613728565b91505092915050565b6000602082840312156137ae576137ad6131d5565b5b600082013567ffffffffffffffff8111156137cc576137cb6131da565b5b6137d88482850161376a565b91505092915050565b600067ffffffffffffffff8211156137fc576137fb61366d565b5b602082029050602081019050919050565b600080fd5b6000613825613820846137e1565b6136cd565b905080838252602082019050602084028301858111156138485761384761380d565b5b835b81811015613871578061385d8882613484565b84526020840193505060208101905061384a565b5050509392505050565b600082601f8301126138905761388f613663565b5b81356138a0848260208601613812565b91505092915050565b600067ffffffffffffffff8211156138c4576138c361366d565b5b602082029050602081019050919050565b60006138e86138e3846138a9565b6136cd565b9050808382526020820190506020840283018581111561390b5761390a61380d565b5b835b81811015613934578061392088826133cf565b84526020840193505060208101905061390d565b5050509392505050565b600082601f83011261395357613952613663565b5b81356139638482602086016138d5565b91505092915050565b60008060408385031215613983576139826131d5565b5b600083013567ffffffffffffffff8111156139a1576139a06131da565b5b6139ad8582860161387b565b925050602083013567ffffffffffffffff8111156139ce576139cd6131da565b5b6139da8582860161393e565b9150509250929050565b600080604083850312156139fb576139fa6131d5565b5b6000613a0985828601613484565b9250506020613a1a858286016132b1565b9150509250929050565b600067ffffffffffffffff821115613a3f57613a3e61366d565b5b613a4882613342565b9050602081019050919050565b6000613a68613a6384613a24565b6136cd565b905082815260208101848484011115613a8457613a83613668565b5b613a8f848285613719565b509392505050565b600082601f830112613aac57613aab613663565b5b8135613abc848260208601613a55565b91505092915050565b60008060008060808587031215613adf57613ade6131d5565b5b6000613aed87828801613484565b9450506020613afe87828801613484565b9350506040613b0f878288016133cf565b925050606085013567ffffffffffffffff811115613b3057613b2f6131da565b5b613b3c87828801613a97565b91505092959194509250565b60008060408385031215613b5f57613b5e6131d5565b5b6000613b6d85828601613484565b9250506020613b7e85828601613484565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bbe6020836132fe565b9150613bc982613b88565b602082019050919050565b60006020820190508181036000830152613bed81613bb1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c3b57607f821691505b60208210811415613c4f57613c4e613bf4565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613cb1602c836132fe565b9150613cbc82613c55565b604082019050919050565b60006020820190508181036000830152613ce081613ca4565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d436021836132fe565b9150613d4e82613ce7565b604082019050919050565b60006020820190508181036000830152613d7281613d36565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613dd56038836132fe565b9150613de082613d79565b604082019050919050565b60006020820190508181036000830152613e0481613dc8565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613e676031836132fe565b9150613e7282613e0b565b604082019050919050565b60006020820190508181036000830152613e9681613e5a565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613ef9602b836132fe565b9150613f0482613e9d565b604082019050919050565b60006020820190508181036000830152613f2881613eec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f69826133ae565b9150613f74836133ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fa957613fa8613f2f565b5b828201905092915050565b7f4e6f7420656e6f7567682046656c6c6f7773206c65667420696e207075626c6960008201527f632073616c6520746f206d696e74202d207472792061206c6f77657220616d6f60208201527f756e740000000000000000000000000000000000000000000000000000000000604082015250565b60006140366043836132fe565b915061404182613fb4565b606082019050919050565b6000602082019050818103600083015261406581614029565b9050919050565b6000614077826133ae565b9150614082836133ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140bb576140ba613f2f565b5b828202905092915050565b7f596f7520646964206e6f742073656e6420656e6f75676820455448202d20302e60008201527f30382045544820706572206d696e7420283130206d696e7473203d202e38455460208201527f4829000000000000000000000000000000000000000000000000000000000000604082015250565b60006141486042836132fe565b9150614153826140c6565b606082019050919050565b600060208201905081810360008301526141778161413b565b9050919050565b6000614189826133ae565b9150600082141561419d5761419c613f2f565b5b600182039050919050565b60006141b3826133ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141e6576141e5613f2f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061427c602c836132fe565b915061428782614220565b604082019050919050565b600060208201905081810360008301526142ab8161426f565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061430e6029836132fe565b9150614319826142b2565b604082019050919050565b6000602082019050818103600083015261433d81614301565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006143a0602a836132fe565b91506143ab82614344565b604082019050919050565b600060208201905081810360008301526143cf81614393565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061440c6019836132fe565b9150614417826143d6565b602082019050919050565b6000602082019050818103600083015261443b816143ff565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061449e602f836132fe565b91506144a982614442565b604082019050919050565b600060208201905081810360008301526144cd81614491565b9050919050565b600081905092915050565b60006144ea826132f3565b6144f481856144d4565b935061450481856020860161330f565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461453281613c23565b61453c81866144d4565b9450600182166000811461455757600181146145685761459b565b60ff1983168652818601935061459b565b61457185614510565b60005b8381101561459357815481890152600182019150602081019050614574565b838801955050505b50505092915050565b60006145b082866144df565b91506145bc82856144df565b91506145c88284614525565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146316026836132fe565b915061463c826145d5565b604082019050919050565b6000602082019050818103600083015261466081614624565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006146c3602c836132fe565b91506146ce82614667565b604082019050919050565b600060208201905081810360008301526146f2816146b6565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006147556029836132fe565b9150614760826146f9565b604082019050919050565b6000602082019050818103600083015261478481614748565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147e76024836132fe565b91506147f28261478b565b604082019050919050565b60006020820190508181036000830152614816816147da565b9050919050565b6000614828826133ae565b9150614833836133ae565b92508282101561484657614845613f2f565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006148ad6032836132fe565b91506148b882614851565b604082019050919050565b600060208201905081810360008301526148dc816148a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061491d826133ae565b9150614928836133ae565b925082614938576149376148e3565b5b828204905092915050565b600061494e826133ae565b9150614959836133ae565b925082614969576149686148e3565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061499b82614974565b6149a5818561497f565b93506149b581856020860161330f565b6149be81613342565b840191505092915050565b60006080820190506149de6000830187613443565b6149eb6020830186613443565b6149f860408301856134d9565b8181036060830152614a0a8184614990565b905095945050505050565b600081519050614a248161320b565b92915050565b600060208284031215614a4057614a3f6131d5565b5b6000614a4e84828501614a15565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614abc6020836132fe565b9150614ac782614a86565b602082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614b28601c836132fe565b9150614b3382614af2565b602082019050919050565b60006020820190508181036000830152614b5781614b1b565b905091905056fea2646970667358221220da73210d5d4b24073c47e8d219d5801ae174b27c03ea036f99af9b2c8f478b2264736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c59656c6c6f7746656c6c6f770000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000559464e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f79656c6c6f7766656c6c6f77732e696f2f6e6674732f6a736f6e2f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): YellowFellow
Arg [1] : _symbol (string): YFNFT
Arg [2] : _initBaseURI (string): https://yellowfellows.io/nfts/json/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 59656c6c6f7746656c6c6f770000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 59464e4654000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [8] : 68747470733a2f2f79656c6c6f7766656c6c6f77732e696f2f6e6674732f6a73
Arg [9] : 6f6e2f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
43224:4759:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34728:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47224:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21629:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23188:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22711:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35368:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24078:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35036:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47639:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47743:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47866:114;;;:::i;:::-;;44021:1179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24488:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45206:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35558:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46898:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21323:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21053:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47301:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42525:94;;;;;;;;;;;;;:::i;:::-;;46652:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46020:506;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46778:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41874:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21798:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23481:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47130:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24744:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43541:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43339:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45560:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47002:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47519:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23847:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42774:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46548:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34728:224;34830:4;34869:35;34854:50;;;:11;:50;;;;:90;;;;34908:36;34932:11;34908:23;:36::i;:::-;34854:90;34847:97;;34728:224;;;:::o;47224:73::-;42105:12;:10;:12::i;:::-;42094:23;;:7;:5;:7::i;:::-;:23;;;42086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47285:6:::1;47276;;:15;;;;;;;;;;;;;;;;;;47224:73:::0;:::o;21629:100::-;21683:13;21716:5;21709:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21629:100;:::o;23188:221::-;23264:7;23292:16;23300:7;23292;:16::i;:::-;23284:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23377:15;:24;23393:7;23377:24;;;;;;;;;;;;;;;;;;;;;23370:31;;23188:221;;;:::o;22711:411::-;22792:13;22808:23;22823:7;22808:14;:23::i;:::-;22792:39;;22856:5;22850:11;;:2;:11;;;;22842:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22950:5;22934:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22959:37;22976:5;22983:12;:10;:12::i;:::-;22959:16;:37::i;:::-;22934:62;22912:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23093:21;23102:2;23106:7;23093:8;:21::i;:::-;22781:341;22711:411;;:::o;35368:113::-;35429:7;35456:10;:17;;;;35449:24;;35368:113;:::o;24078:339::-;24273:41;24292:12;:10;:12::i;:::-;24306:7;24273:18;:41::i;:::-;24265:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24381:28;24391:4;24397:2;24401:7;24381:9;:28::i;:::-;24078:339;;;:::o;35036:256::-;35133:7;35169:23;35186:5;35169:16;:23::i;:::-;35161:5;:31;35153:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35258:12;:19;35271:5;35258:19;;;;;;;;;;;;;;;:26;35278:5;35258:26;;;;;;;;;;;;35251:33;;35036:256;;;;:::o;47639:96::-;42105:12;:10;:12::i;:::-;42094:23;;:7;:5;:7::i;:::-;:23;;;42086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47728:1:::1;47707:11;:18;47719:5;47707:18;;;;;;;;;;;;;;;:22;;;;47639:96:::0;:::o;47743:117::-;47804:7;47831:11;:21;47843:8;47831:21;;;;;;;;;;;;;;;;47824:28;;47743:117;;;:::o;47866:114::-;42105:12;:10;:12::i;:::-;42094:23;;:7;:5;:7::i;:::-;:23;;;42086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47934:10:::1;47926:24;;:47;47951:21;47926:47;;;;;;;;;;;;;;;;;;;;;;;47918:56;;;::::0;::::1;;47866:114::o:0;44021:1179::-;44091:14;44108:13;:11;:13::i;:::-;44091:30;;44139:6;;;;;;;;;;;44138:7;44130:16;;;;;;44175:1;44161:11;:15;44153:24;;;;;;44263:7;:5;:7::i;:::-;44249:21;;:10;:21;;;44245:80;;44303:13;;44288:11;:28;;44280:37;;;;;;44245:80;44399:4;44379:24;;:16;;;;;;;;;;;:24;;;44376:161;;;44445:12;;44430:11;44421:6;:20;;;;:::i;:::-;:36;;44413:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;44376:161;44563:7;:5;:7::i;:::-;44549:21;;:10;:21;;;44545:160;;44615:11;44604:8;;:22;;;;:::i;:::-;44591:9;:35;;44583:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;44545:160;44718:9;44730:1;44718:13;;44713:480;44738:11;44733:1;:16;44713:480;;44812:5;44792:25;;:16;;;;;;;;;;;:25;;;44789:397;;;44888:7;:5;:7::i;:::-;44874:21;;:10;:21;;;44871:198;;;44911:26;44921:3;44935:1;44926:6;:10;;;;:::i;:::-;44911:9;:26::i;:::-;44871:198;;;44985:1;44959:11;:23;44971:10;44959:23;;;;;;;;;;;;;;;;:27;44956:113;;;45003:11;:23;45015:10;45003:23;;;;;;;;;;;;;;;;:25;;;;;;;;;:::i;:::-;;;;;;45030:26;45040:3;45054:1;45045:6;:10;;;;:::i;:::-;45030:9;:26::i;:::-;44956:113;44871:198;44789:397;;;45150:26;45160:3;45174:1;45165:6;:10;;;;:::i;:::-;45150:9;:26::i;:::-;44789:397;44751:3;;;;;:::i;:::-;;;;44713:480;;;;44084:1116;44021:1179;;:::o;24488:185::-;24626:39;24643:4;24649:2;24653:7;24626:39;;;;;;;;;;;;:16;:39::i;:::-;24488:185;;;:::o;45206:348::-;45281:16;45309:23;45335:17;45345:6;45335:9;:17::i;:::-;45309:43;;45359:25;45401:15;45387:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45359:58;;45429:9;45424:103;45444:15;45440:1;:19;45424:103;;;45489:30;45509:6;45517:1;45489:19;:30::i;:::-;45475:8;45484:1;45475:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;45461:3;;;;;:::i;:::-;;;;45424:103;;;;45540:8;45533:15;;;;45206:348;;;:::o;35558:233::-;35633:7;35669:30;:28;:30::i;:::-;35661:5;:38;35653:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35766:10;35777:5;35766:17;;;;;;;;:::i;:::-;;;;;;;;;;35759:24;;35558:233;;;:::o;46898:98::-;42105:12;:10;:12::i;:::-;42094:23;;:7;:5;:7::i;:::-;:23;;;42086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46979:11:::1;46969:7;:21;;;;;;;;;;;;:::i;:::-;;46898:98:::0;:::o;21323:239::-;21395:7;21415:13;21431:7;:16;21439:7;21431:16;;;;;;;;;;;;;;;;;;;;;21415:32;;21483:1;21466:19;;:5;:19;;;;21458:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21549:5;21542:12;;;21323:239;;;:::o;21053:208::-;21125:7;21170:1;21153:19;;:5;:19;;;;21145:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21237:9;:16;21247:5;21237:16;;;;;;;;;;;;;;;;21230:23;;21053:208;;;:::o;47301:213::-;42105:12;:10;:12::i;:::-;42094:23;;:7;:5;:7::i;:::-;:23;;;42086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47414:6:::1;47409:102;47430:5;:12;47426:1;:16;47409:102;;;47488:8;47497:1;47488:11;;;;;;;;:::i;:::-;;;;;;;;47464;:21;47476:5;47482:1;47476:8;;;;;;;;:::i;:::-;;;;;;;;47464:21;;;;;;;;;;;;;;;:35;;;;47444:3;;;;;:::i;:::-;;;;47409:102;;;;47301:213:::0;;:::o;42525:94::-;42105:12;:10;:12::i;:::-;42094:23;;:7;:5;:7::i;:::-;:23;;;42086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42590:21:::1;42608:1;42590:9;:21::i;:::-;42525:94::o:0;46652:118::-;42105:12;:10;:12::i;:::-;42094:23;;:7;:5;:7::i;:::-;:23;;;42086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46747:17:::1;46731:13;:33;;;;46652:118:::0;:::o;46020:506::-;46080:28;46121:18;46142:15;46152:4;46142:9;:15::i;:::-;46121:36;;46188:1;46174:10;:15;46170:349;;;46227:1;46213:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46206:23;;;;;46170:349;46262:23;46302:10;46288:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46262:51;;46335:13;46330:136;46362:10;46354:5;:18;46330:136;;;46418:32;46438:4;46444:5;46418:19;:32::i;:::-;46402:6;46409:5;46402:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;;46374:7;;;;;:::i;:::-;;;;46330:136;;;;46501:6;46494:13;;;;46020:506;;;;:::o;46778:114::-;42105:12;:10;:12::i;:::-;42094:23;;:7;:5;:7::i;:::-;:23;;;42086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46870:16:::1;46855:12;:31;;;;46778:114:::0;:::o;41874:87::-;41920:7;41947:6;;;;;;;;;;;41940:13;;41874:87;:::o;21798:104::-;21854:13;21887:7;21880:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21798:104;:::o;23481:295::-;23596:12;:10;:12::i;:::-;23584:24;;:8;:24;;;;23576:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23696:8;23651:18;:32;23670:12;:10;:12::i;:::-;23651:32;;;;;;;;;;;;;;;:42;23684:8;23651:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23749:8;23720:48;;23735:12;:10;:12::i;:::-;23720:48;;;23759:8;23720:48;;;;;;:::i;:::-;;;;;;;;23481:295;;:::o;47130:88::-;42105:12;:10;:12::i;:::-;42094:23;;:7;:5;:7::i;:::-;:23;;;42086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47206:6:::1;47187:16;;:25;;;;;;;;;;;;;;;;;;47130:88:::0;:::o;24744:328::-;24919:41;24938:12;:10;:12::i;:::-;24952:7;24919:18;:41::i;:::-;24911:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25025:39;25039:4;25045:2;25049:7;25058:5;25025:13;:39::i;:::-;24744:328;;;;:::o;43541:36::-;;;;;;;;;;;;;:::o;43339:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45560:423::-;45658:13;45699:16;45707:7;45699;:16::i;:::-;45683:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;45789:28;45820:10;:8;:10::i;:::-;45789:41;;45875:1;45850:14;45844:28;:32;:133;;;;;;;;;;;;;;;;;45912:14;45928:18;:7;:16;:18::i;:::-;45948:13;45895:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45844:133;45837:140;;;45560:423;;;:::o;47002:122::-;42105:12;:10;:12::i;:::-;42094:23;;:7;:5;:7::i;:::-;:23;;;42086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47101:17:::1;47085:13;:33;;;;;;;;;;;;:::i;:::-;;47002:122:::0;:::o;47519:113::-;42105:12;:10;:12::i;:::-;42094:23;;:7;:5;:7::i;:::-;:23;;;42086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47619:7:::1;47598:11;:18;47610:5;47598:18;;;;;;;;;;;;;;;:28;;;;47519:113:::0;;:::o;23847:164::-;23944:4;23968:18;:25;23987:5;23968:25;;;;;;;;;;;;;;;:35;23994:8;23968:35;;;;;;;;;;;;;;;;;;;;;;;;;23961:42;;23847:164;;;;:::o;42774:192::-;42105:12;:10;:12::i;:::-;42094:23;;:7;:5;:7::i;:::-;:23;;;42086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42883:1:::1;42863:22;;:8;:22;;;;42855:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42939:19;42949:8;42939:9;:19::i;:::-;42774:192:::0;:::o;46548:98::-;42105:12;:10;:12::i;:::-;42094:23;;:7;:5;:7::i;:::-;:23;;;42086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46628:12:::1;46617:8;:23;;;;46548:98:::0;:::o;8150:387::-;8210:4;8418:12;8485:7;8473:20;8465:28;;8528:1;8521:4;:8;8514:15;;;8150:387;;;:::o;32674:126::-;;;;:::o;20684:305::-;20786:4;20838:25;20823:40;;;:11;:40;;;;:105;;;;20895:33;20880:48;;;:11;:48;;;;20823:105;:158;;;;20945:36;20969:11;20945:23;:36::i;:::-;20823:158;20803:178;;20684:305;;;:::o;16106:98::-;16159:7;16186:10;16179:17;;16106:98;:::o;26582:127::-;26647:4;26699:1;26671:30;;:7;:16;26679:7;26671:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26664:37;;26582:127;;;:::o;30564:174::-;30666:2;30639:15;:24;30655:7;30639:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30722:7;30718:2;30684:46;;30693:23;30708:7;30693:14;:23::i;:::-;30684:46;;;;;;;;;;;;30564:174;;:::o;26876:348::-;26969:4;26994:16;27002:7;26994;:16::i;:::-;26986:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27070:13;27086:23;27101:7;27086:14;:23::i;:::-;27070:39;;27139:5;27128:16;;:7;:16;;;:51;;;;27172:7;27148:31;;:20;27160:7;27148:11;:20::i;:::-;:31;;;27128:51;:87;;;;27183:32;27200:5;27207:7;27183:16;:32::i;:::-;27128:87;27120:96;;;26876:348;;;;:::o;29868:578::-;30027:4;30000:31;;:23;30015:7;30000:14;:23::i;:::-;:31;;;29992:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30110:1;30096:16;;:2;:16;;;;30088:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30166:39;30187:4;30193:2;30197:7;30166:20;:39::i;:::-;30270:29;30287:1;30291:7;30270:8;:29::i;:::-;30331:1;30312:9;:15;30322:4;30312:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30360:1;30343:9;:13;30353:2;30343:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30391:2;30372:7;:16;30380:7;30372:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30430:7;30426:2;30411:27;;30420:4;30411:27;;;;;;;;;;;;29868:578;;;:::o;27566:110::-;27642:26;27652:2;27656:7;27642:26;;;;;;;;;;;;:9;:26::i;:::-;27566:110;;:::o;42974:173::-;43030:16;43049:6;;;;;;;;;;;43030:25;;43075:8;43066:6;;:17;;;;;;;;;;;;;;;;;;43130:8;43099:40;;43120:8;43099:40;;;;;;;;;;;;43019:128;42974:173;:::o;25954:315::-;26111:28;26121:4;26127:2;26131:7;26111:9;:28::i;:::-;26158:48;26181:4;26187:2;26191:7;26200:5;26158:22;:48::i;:::-;26150:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25954:315;;;;:::o;43900:102::-;43960:13;43989:7;43982:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43900:102;:::o;16631:723::-;16687:13;16917:1;16908:5;:10;16904:53;;;16935:10;;;;;;;;;;;;;;;;;;;;;16904:53;16967:12;16982:5;16967:20;;16998:14;17023:78;17038:1;17030:4;:9;17023:78;;17056:8;;;;;:::i;:::-;;;;17087:2;17079:10;;;;;:::i;:::-;;;17023:78;;;17111:19;17143:6;17133:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17111:39;;17161:154;17177:1;17168:5;:10;17161:154;;17205:1;17195:11;;;;;:::i;:::-;;;17272:2;17264:5;:10;;;;:::i;:::-;17251:2;:24;;;;:::i;:::-;17238:39;;17221:6;17228;17221:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17301:2;17292:11;;;;;:::i;:::-;;;17161:154;;;17339:6;17325:21;;;;;16631:723;;;;:::o;19188:157::-;19273:4;19312:25;19297:40;;;:11;:40;;;;19290:47;;19188:157;;;:::o;36404:589::-;36548:45;36575:4;36581:2;36585:7;36548:26;:45::i;:::-;36626:1;36610:18;;:4;:18;;;36606:187;;;36645:40;36677:7;36645:31;:40::i;:::-;36606:187;;;36715:2;36707:10;;:4;:10;;;36703:90;;36734:47;36767:4;36773:7;36734:32;:47::i;:::-;36703:90;36606:187;36821:1;36807:16;;:2;:16;;;36803:183;;;36840:45;36877:7;36840:36;:45::i;:::-;36803:183;;;36913:4;36907:10;;:2;:10;;;36903:83;;36934:40;36962:2;36966:7;36934:27;:40::i;:::-;36903:83;36803:183;36404:589;;;:::o;27903:321::-;28033:18;28039:2;28043:7;28033:5;:18::i;:::-;28084:54;28115:1;28119:2;28123:7;28132:5;28084:22;:54::i;:::-;28062:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27903:321;;;:::o;31303:799::-;31458:4;31479:15;:2;:13;;;:15::i;:::-;31475:620;;;31531:2;31515:36;;;31552:12;:10;:12::i;:::-;31566:4;31572:7;31581:5;31515:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31511:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31774:1;31757:6;:13;:18;31753:272;;;31800:60;;;;;;;;;;:::i;:::-;;;;;;;;31753:272;31975:6;31969:13;31960:6;31956:2;31952:15;31945:38;31511:529;31648:41;;;31638:51;;;:6;:51;;;;31631:58;;;;;31475:620;32079:4;32072:11;;31303:799;;;;;;;:::o;37716:164::-;37820:10;:17;;;;37793:15;:24;37809:7;37793:24;;;;;;;;;;;:44;;;;37848:10;37864:7;37848:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37716:164;:::o;38507:988::-;38773:22;38823:1;38798:22;38815:4;38798:16;:22::i;:::-;:26;;;;:::i;:::-;38773:51;;38835:18;38856:17;:26;38874:7;38856:26;;;;;;;;;;;;38835:47;;39003:14;38989:10;:28;38985:328;;39034:19;39056:12;:18;39069:4;39056:18;;;;;;;;;;;;;;;:34;39075:14;39056:34;;;;;;;;;;;;39034:56;;39140:11;39107:12;:18;39120:4;39107:18;;;;;;;;;;;;;;;:30;39126:10;39107:30;;;;;;;;;;;:44;;;;39257:10;39224:17;:30;39242:11;39224:30;;;;;;;;;;;:43;;;;39019:294;38985:328;39409:17;:26;39427:7;39409:26;;;;;;;;;;;39402:33;;;39453:12;:18;39466:4;39453:18;;;;;;;;;;;;;;;:34;39472:14;39453:34;;;;;;;;;;;39446:41;;;38588:907;;38507:988;;:::o;39790:1079::-;40043:22;40088:1;40068:10;:17;;;;:21;;;;:::i;:::-;40043:46;;40100:18;40121:15;:24;40137:7;40121:24;;;;;;;;;;;;40100:45;;40472:19;40494:10;40505:14;40494:26;;;;;;;;:::i;:::-;;;;;;;;;;40472:48;;40558:11;40533:10;40544;40533:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40669:10;40638:15;:28;40654:11;40638:28;;;;;;;;;;;:41;;;;40810:15;:24;40826:7;40810:24;;;;;;;;;;;40803:31;;;40845:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39861:1008;;;39790:1079;:::o;37294:221::-;37379:14;37396:20;37413:2;37396:16;:20::i;:::-;37379:37;;37454:7;37427:12;:16;37440:2;37427:16;;;;;;;;;;;;;;;:24;37444:6;37427:24;;;;;;;;;;;:34;;;;37501:6;37472:17;:26;37490:7;37472:26;;;;;;;;;;;:35;;;;37368:147;37294:221;;:::o;28560:382::-;28654:1;28640:16;;:2;:16;;;;28632:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28713:16;28721:7;28713;:16::i;:::-;28712:17;28704:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28775:45;28804:1;28808:2;28812:7;28775:20;:45::i;:::-;28850:1;28833:9;:13;28843:2;28833:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28881:2;28862:7;:16;28870:7;28862:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28926:7;28922:2;28901:33;;28918:1;28901:33;;;;;;;;;;;;28560:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:114::-;6907:6;6941:5;6935:12;6925:22;;6840:114;;;:::o;6960:184::-;7059:11;7093:6;7088:3;7081:19;7133:4;7128:3;7124:14;7109:29;;6960:184;;;;:::o;7150:132::-;7217:4;7240:3;7232:11;;7270:4;7265:3;7261:14;7253:22;;7150:132;;;:::o;7288:108::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7288:108;;:::o;7402:179::-;7471:10;7492:46;7534:3;7526:6;7492:46;:::i;:::-;7570:4;7565:3;7561:14;7547:28;;7402:179;;;;:::o;7587:113::-;7657:4;7689;7684:3;7680:14;7672:22;;7587:113;;;:::o;7736:732::-;7855:3;7884:54;7932:5;7884:54;:::i;:::-;7954:86;8033:6;8028:3;7954:86;:::i;:::-;7947:93;;8064:56;8114:5;8064:56;:::i;:::-;8143:7;8174:1;8159:284;8184:6;8181:1;8178:13;8159:284;;;8260:6;8254:13;8287:63;8346:3;8331:13;8287:63;:::i;:::-;8280:70;;8373:60;8426:6;8373:60;:::i;:::-;8363:70;;8219:224;8206:1;8203;8199:9;8194:14;;8159:284;;;8163:14;8459:3;8452:10;;7860:608;;;7736:732;;;;:::o;8474:373::-;8617:4;8655:2;8644:9;8640:18;8632:26;;8704:9;8698:4;8694:20;8690:1;8679:9;8675:17;8668:47;8732:108;8835:4;8826:6;8732:108;:::i;:::-;8724:116;;8474:373;;;;:::o;8853:117::-;8962:1;8959;8952:12;8976:117;9085:1;9082;9075:12;9099:180;9147:77;9144:1;9137:88;9244:4;9241:1;9234:15;9268:4;9265:1;9258:15;9285:281;9368:27;9390:4;9368:27;:::i;:::-;9360:6;9356:40;9498:6;9486:10;9483:22;9462:18;9450:10;9447:34;9444:62;9441:88;;;9509:18;;:::i;:::-;9441:88;9549:10;9545:2;9538:22;9328:238;9285:281;;:::o;9572:129::-;9606:6;9633:20;;:::i;:::-;9623:30;;9662:33;9690:4;9682:6;9662:33;:::i;:::-;9572:129;;;:::o;9707:308::-;9769:4;9859:18;9851:6;9848:30;9845:56;;;9881:18;;:::i;:::-;9845:56;9919:29;9941:6;9919:29;:::i;:::-;9911:37;;10003:4;9997;9993:15;9985:23;;9707:308;;;:::o;10021:154::-;10105:6;10100:3;10095;10082:30;10167:1;10158:6;10153:3;10149:16;10142:27;10021:154;;;:::o;10181:412::-;10259:5;10284:66;10300:49;10342:6;10300:49;:::i;:::-;10284:66;:::i;:::-;10275:75;;10373:6;10366:5;10359:21;10411:4;10404:5;10400:16;10449:3;10440:6;10435:3;10431:16;10428:25;10425:112;;;10456:79;;:::i;:::-;10425:112;10546:41;10580:6;10575:3;10570;10546:41;:::i;:::-;10265:328;10181:412;;;;;:::o;10613:340::-;10669:5;10718:3;10711:4;10703:6;10699:17;10695:27;10685:122;;10726:79;;:::i;:::-;10685:122;10843:6;10830:20;10868:79;10943:3;10935:6;10928:4;10920:6;10916:17;10868:79;:::i;:::-;10859:88;;10675:278;10613:340;;;;:::o;10959:509::-;11028:6;11077:2;11065:9;11056:7;11052:23;11048:32;11045:119;;;11083:79;;:::i;:::-;11045:119;11231:1;11220:9;11216:17;11203:31;11261:18;11253:6;11250:30;11247:117;;;11283:79;;:::i;:::-;11247:117;11388:63;11443:7;11434:6;11423:9;11419:22;11388:63;:::i;:::-;11378:73;;11174:287;10959:509;;;;:::o;11474:311::-;11551:4;11641:18;11633:6;11630:30;11627:56;;;11663:18;;:::i;:::-;11627:56;11713:4;11705:6;11701:17;11693:25;;11773:4;11767;11763:15;11755:23;;11474:311;;;:::o;11791:117::-;11900:1;11897;11890:12;11931:710;12027:5;12052:81;12068:64;12125:6;12068:64;:::i;:::-;12052:81;:::i;:::-;12043:90;;12153:5;12182:6;12175:5;12168:21;12216:4;12209:5;12205:16;12198:23;;12269:4;12261:6;12257:17;12249:6;12245:30;12298:3;12290:6;12287:15;12284:122;;;12317:79;;:::i;:::-;12284:122;12432:6;12415:220;12449:6;12444:3;12441:15;12415:220;;;12524:3;12553:37;12586:3;12574:10;12553:37;:::i;:::-;12548:3;12541:50;12620:4;12615:3;12611:14;12604:21;;12491:144;12475:4;12470:3;12466:14;12459:21;;12415:220;;;12419:21;12033:608;;11931:710;;;;;:::o;12664:370::-;12735:5;12784:3;12777:4;12769:6;12765:17;12761:27;12751:122;;12792:79;;:::i;:::-;12751:122;12909:6;12896:20;12934:94;13024:3;13016:6;13009:4;13001:6;12997:17;12934:94;:::i;:::-;12925:103;;12741:293;12664:370;;;;:::o;13040:311::-;13117:4;13207:18;13199:6;13196:30;13193:56;;;13229:18;;:::i;:::-;13193:56;13279:4;13271:6;13267:17;13259:25;;13339:4;13333;13329:15;13321:23;;13040:311;;;:::o;13374:710::-;13470:5;13495:81;13511:64;13568:6;13511:64;:::i;:::-;13495:81;:::i;:::-;13486:90;;13596:5;13625:6;13618:5;13611:21;13659:4;13652:5;13648:16;13641:23;;13712:4;13704:6;13700:17;13692:6;13688:30;13741:3;13733:6;13730:15;13727:122;;;13760:79;;:::i;:::-;13727:122;13875:6;13858:220;13892:6;13887:3;13884:15;13858:220;;;13967:3;13996:37;14029:3;14017:10;13996:37;:::i;:::-;13991:3;13984:50;14063:4;14058:3;14054:14;14047:21;;13934:144;13918:4;13913:3;13909:14;13902:21;;13858:220;;;13862:21;13476:608;;13374:710;;;;;:::o;14107:370::-;14178:5;14227:3;14220:4;14212:6;14208:17;14204:27;14194:122;;14235:79;;:::i;:::-;14194:122;14352:6;14339:20;14377:94;14467:3;14459:6;14452:4;14444:6;14440:17;14377:94;:::i;:::-;14368:103;;14184:293;14107:370;;;;:::o;14483:894::-;14601:6;14609;14658:2;14646:9;14637:7;14633:23;14629:32;14626:119;;;14664:79;;:::i;:::-;14626:119;14812:1;14801:9;14797:17;14784:31;14842:18;14834:6;14831:30;14828:117;;;14864:79;;:::i;:::-;14828:117;14969:78;15039:7;15030:6;15019:9;15015:22;14969:78;:::i;:::-;14959:88;;14755:302;15124:2;15113:9;15109:18;15096:32;15155:18;15147:6;15144:30;15141:117;;;15177:79;;:::i;:::-;15141:117;15282:78;15352:7;15343:6;15332:9;15328:22;15282:78;:::i;:::-;15272:88;;15067:303;14483:894;;;;;:::o;15383:468::-;15448:6;15456;15505:2;15493:9;15484:7;15480:23;15476:32;15473:119;;;15511:79;;:::i;:::-;15473:119;15631:1;15656:53;15701:7;15692:6;15681:9;15677:22;15656:53;:::i;:::-;15646:63;;15602:117;15758:2;15784:50;15826:7;15817:6;15806:9;15802:22;15784:50;:::i;:::-;15774:60;;15729:115;15383:468;;;;;:::o;15857:307::-;15918:4;16008:18;16000:6;15997:30;15994:56;;;16030:18;;:::i;:::-;15994:56;16068:29;16090:6;16068:29;:::i;:::-;16060:37;;16152:4;16146;16142:15;16134:23;;15857:307;;;:::o;16170:410::-;16247:5;16272:65;16288:48;16329:6;16288:48;:::i;:::-;16272:65;:::i;:::-;16263:74;;16360:6;16353:5;16346:21;16398:4;16391:5;16387:16;16436:3;16427:6;16422:3;16418:16;16415:25;16412:112;;;16443:79;;:::i;:::-;16412:112;16533:41;16567:6;16562:3;16557;16533:41;:::i;:::-;16253:327;16170:410;;;;;:::o;16599:338::-;16654:5;16703:3;16696:4;16688:6;16684:17;16680:27;16670:122;;16711:79;;:::i;:::-;16670:122;16828:6;16815:20;16853:78;16927:3;16919:6;16912:4;16904:6;16900:17;16853:78;:::i;:::-;16844:87;;16660:277;16599:338;;;;:::o;16943:943::-;17038:6;17046;17054;17062;17111:3;17099:9;17090:7;17086:23;17082:33;17079:120;;;17118:79;;:::i;:::-;17079:120;17238:1;17263:53;17308:7;17299:6;17288:9;17284:22;17263:53;:::i;:::-;17253:63;;17209:117;17365:2;17391:53;17436:7;17427:6;17416:9;17412:22;17391:53;:::i;:::-;17381:63;;17336:118;17493:2;17519:53;17564:7;17555:6;17544:9;17540:22;17519:53;:::i;:::-;17509:63;;17464:118;17649:2;17638:9;17634:18;17621:32;17680:18;17672:6;17669:30;17666:117;;;17702:79;;:::i;:::-;17666:117;17807:62;17861:7;17852:6;17841:9;17837:22;17807:62;:::i;:::-;17797:72;;17592:287;16943:943;;;;;;;:::o;17892:474::-;17960:6;17968;18017:2;18005:9;17996:7;17992:23;17988:32;17985:119;;;18023:79;;:::i;:::-;17985:119;18143:1;18168:53;18213:7;18204:6;18193:9;18189:22;18168:53;:::i;:::-;18158:63;;18114:117;18270:2;18296:53;18341:7;18332:6;18321:9;18317:22;18296:53;:::i;:::-;18286:63;;18241:118;17892:474;;;;;:::o;18372:182::-;18512:34;18508:1;18500:6;18496:14;18489:58;18372:182;:::o;18560:366::-;18702:3;18723:67;18787:2;18782:3;18723:67;:::i;:::-;18716:74;;18799:93;18888:3;18799:93;:::i;:::-;18917:2;18912:3;18908:12;18901:19;;18560:366;;;:::o;18932:419::-;19098:4;19136:2;19125:9;19121:18;19113:26;;19185:9;19179:4;19175:20;19171:1;19160:9;19156:17;19149:47;19213:131;19339:4;19213:131;:::i;:::-;19205:139;;18932:419;;;:::o;19357:180::-;19405:77;19402:1;19395:88;19502:4;19499:1;19492:15;19526:4;19523:1;19516:15;19543:320;19587:6;19624:1;19618:4;19614:12;19604:22;;19671:1;19665:4;19661:12;19692:18;19682:81;;19748:4;19740:6;19736:17;19726:27;;19682:81;19810:2;19802:6;19799:14;19779:18;19776:38;19773:84;;;19829:18;;:::i;:::-;19773:84;19594:269;19543:320;;;:::o;19869:231::-;20009:34;20005:1;19997:6;19993:14;19986:58;20078:14;20073:2;20065:6;20061:15;20054:39;19869:231;:::o;20106:366::-;20248:3;20269:67;20333:2;20328:3;20269:67;:::i;:::-;20262:74;;20345:93;20434:3;20345:93;:::i;:::-;20463:2;20458:3;20454:12;20447:19;;20106:366;;;:::o;20478:419::-;20644:4;20682:2;20671:9;20667:18;20659:26;;20731:9;20725:4;20721:20;20717:1;20706:9;20702:17;20695:47;20759:131;20885:4;20759:131;:::i;:::-;20751:139;;20478:419;;;:::o;20903:220::-;21043:34;21039:1;21031:6;21027:14;21020:58;21112:3;21107:2;21099:6;21095:15;21088:28;20903:220;:::o;21129:366::-;21271:3;21292:67;21356:2;21351:3;21292:67;:::i;:::-;21285:74;;21368:93;21457:3;21368:93;:::i;:::-;21486:2;21481:3;21477:12;21470:19;;21129:366;;;:::o;21501:419::-;21667:4;21705:2;21694:9;21690:18;21682:26;;21754:9;21748:4;21744:20;21740:1;21729:9;21725:17;21718:47;21782:131;21908:4;21782:131;:::i;:::-;21774:139;;21501:419;;;:::o;21926:243::-;22066:34;22062:1;22054:6;22050:14;22043:58;22135:26;22130:2;22122:6;22118:15;22111:51;21926:243;:::o;22175:366::-;22317:3;22338:67;22402:2;22397:3;22338:67;:::i;:::-;22331:74;;22414:93;22503:3;22414:93;:::i;:::-;22532:2;22527:3;22523:12;22516:19;;22175:366;;;:::o;22547:419::-;22713:4;22751:2;22740:9;22736:18;22728:26;;22800:9;22794:4;22790:20;22786:1;22775:9;22771:17;22764:47;22828:131;22954:4;22828:131;:::i;:::-;22820:139;;22547:419;;;:::o;22972:236::-;23112:34;23108:1;23100:6;23096:14;23089:58;23181:19;23176:2;23168:6;23164:15;23157:44;22972:236;:::o;23214:366::-;23356:3;23377:67;23441:2;23436:3;23377:67;:::i;:::-;23370:74;;23453:93;23542:3;23453:93;:::i;:::-;23571:2;23566:3;23562:12;23555:19;;23214:366;;;:::o;23586:419::-;23752:4;23790:2;23779:9;23775:18;23767:26;;23839:9;23833:4;23829:20;23825:1;23814:9;23810:17;23803:47;23867:131;23993:4;23867:131;:::i;:::-;23859:139;;23586:419;;;:::o;24011:230::-;24151:34;24147:1;24139:6;24135:14;24128:58;24220:13;24215:2;24207:6;24203:15;24196:38;24011:230;:::o;24247:366::-;24389:3;24410:67;24474:2;24469:3;24410:67;:::i;:::-;24403:74;;24486:93;24575:3;24486:93;:::i;:::-;24604:2;24599:3;24595:12;24588:19;;24247:366;;;:::o;24619:419::-;24785:4;24823:2;24812:9;24808:18;24800:26;;24872:9;24866:4;24862:20;24858:1;24847:9;24843:17;24836:47;24900:131;25026:4;24900:131;:::i;:::-;24892:139;;24619:419;;;:::o;25044:180::-;25092:77;25089:1;25082:88;25189:4;25186:1;25179:15;25213:4;25210:1;25203:15;25230:305;25270:3;25289:20;25307:1;25289:20;:::i;:::-;25284:25;;25323:20;25341:1;25323:20;:::i;:::-;25318:25;;25477:1;25409:66;25405:74;25402:1;25399:81;25396:107;;;25483:18;;:::i;:::-;25396:107;25527:1;25524;25520:9;25513:16;;25230:305;;;;:::o;25541:291::-;25681:34;25677:1;25669:6;25665:14;25658:58;25750:34;25745:2;25737:6;25733:15;25726:59;25819:5;25814:2;25806:6;25802:15;25795:30;25541:291;:::o;25838:366::-;25980:3;26001:67;26065:2;26060:3;26001:67;:::i;:::-;25994:74;;26077:93;26166:3;26077:93;:::i;:::-;26195:2;26190:3;26186:12;26179:19;;25838:366;;;:::o;26210:419::-;26376:4;26414:2;26403:9;26399:18;26391:26;;26463:9;26457:4;26453:20;26449:1;26438:9;26434:17;26427:47;26491:131;26617:4;26491:131;:::i;:::-;26483:139;;26210:419;;;:::o;26635:348::-;26675:7;26698:20;26716:1;26698:20;:::i;:::-;26693:25;;26732:20;26750:1;26732:20;:::i;:::-;26727:25;;26920:1;26852:66;26848:74;26845:1;26842:81;26837:1;26830:9;26823:17;26819:105;26816:131;;;26927:18;;:::i;:::-;26816:131;26975:1;26972;26968:9;26957:20;;26635:348;;;;:::o;26989:290::-;27129:34;27125:1;27117:6;27113:14;27106:58;27198:34;27193:2;27185:6;27181:15;27174:59;27267:4;27262:2;27254:6;27250:15;27243:29;26989:290;:::o;27285:366::-;27427:3;27448:67;27512:2;27507:3;27448:67;:::i;:::-;27441:74;;27524:93;27613:3;27524:93;:::i;:::-;27642:2;27637:3;27633:12;27626:19;;27285:366;;;:::o;27657:419::-;27823:4;27861:2;27850:9;27846:18;27838:26;;27910:9;27904:4;27900:20;27896:1;27885:9;27881:17;27874:47;27938:131;28064:4;27938:131;:::i;:::-;27930:139;;27657:419;;;:::o;28082:171::-;28121:3;28144:24;28162:5;28144:24;:::i;:::-;28135:33;;28190:4;28183:5;28180:15;28177:41;;;28198:18;;:::i;:::-;28177:41;28245:1;28238:5;28234:13;28227:20;;28082:171;;;:::o;28259:233::-;28298:3;28321:24;28339:5;28321:24;:::i;:::-;28312:33;;28367:66;28360:5;28357:77;28354:103;;;28437:18;;:::i;:::-;28354:103;28484:1;28477:5;28473:13;28466:20;;28259:233;;;:::o;28498:180::-;28546:77;28543:1;28536:88;28643:4;28640:1;28633:15;28667:4;28664:1;28657:15;28684:231;28824:34;28820:1;28812:6;28808:14;28801:58;28893:14;28888:2;28880:6;28876:15;28869:39;28684:231;:::o;28921:366::-;29063:3;29084:67;29148:2;29143:3;29084:67;:::i;:::-;29077:74;;29160:93;29249:3;29160:93;:::i;:::-;29278:2;29273:3;29269:12;29262:19;;28921:366;;;:::o;29293:419::-;29459:4;29497:2;29486:9;29482:18;29474:26;;29546:9;29540:4;29536:20;29532:1;29521:9;29517:17;29510:47;29574:131;29700:4;29574:131;:::i;:::-;29566:139;;29293:419;;;:::o;29718:228::-;29858:34;29854:1;29846:6;29842:14;29835:58;29927:11;29922:2;29914:6;29910:15;29903:36;29718:228;:::o;29952:366::-;30094:3;30115:67;30179:2;30174:3;30115:67;:::i;:::-;30108:74;;30191:93;30280:3;30191:93;:::i;:::-;30309:2;30304:3;30300:12;30293:19;;29952:366;;;:::o;30324:419::-;30490:4;30528:2;30517:9;30513:18;30505:26;;30577:9;30571:4;30567:20;30563:1;30552:9;30548:17;30541:47;30605:131;30731:4;30605:131;:::i;:::-;30597:139;;30324:419;;;:::o;30749:229::-;30889:34;30885:1;30877:6;30873:14;30866:58;30958:12;30953:2;30945:6;30941:15;30934:37;30749:229;:::o;30984:366::-;31126:3;31147:67;31211:2;31206:3;31147:67;:::i;:::-;31140:74;;31223:93;31312:3;31223:93;:::i;:::-;31341:2;31336:3;31332:12;31325:19;;30984:366;;;:::o;31356:419::-;31522:4;31560:2;31549:9;31545:18;31537:26;;31609:9;31603:4;31599:20;31595:1;31584:9;31580:17;31573:47;31637:131;31763:4;31637:131;:::i;:::-;31629:139;;31356:419;;;:::o;31781:175::-;31921:27;31917:1;31909:6;31905:14;31898:51;31781:175;:::o;31962:366::-;32104:3;32125:67;32189:2;32184:3;32125:67;:::i;:::-;32118:74;;32201:93;32290:3;32201:93;:::i;:::-;32319:2;32314:3;32310:12;32303:19;;31962:366;;;:::o;32334:419::-;32500:4;32538:2;32527:9;32523:18;32515:26;;32587:9;32581:4;32577:20;32573:1;32562:9;32558:17;32551:47;32615:131;32741:4;32615:131;:::i;:::-;32607:139;;32334:419;;;:::o;32759:234::-;32899:34;32895:1;32887:6;32883:14;32876:58;32968:17;32963:2;32955:6;32951:15;32944:42;32759:234;:::o;32999:366::-;33141:3;33162:67;33226:2;33221:3;33162:67;:::i;:::-;33155:74;;33238:93;33327:3;33238:93;:::i;:::-;33356:2;33351:3;33347:12;33340:19;;32999:366;;;:::o;33371:419::-;33537:4;33575:2;33564:9;33560:18;33552:26;;33624:9;33618:4;33614:20;33610:1;33599:9;33595:17;33588:47;33652:131;33778:4;33652:131;:::i;:::-;33644:139;;33371:419;;;:::o;33796:148::-;33898:11;33935:3;33920:18;;33796:148;;;;:::o;33950:377::-;34056:3;34084:39;34117:5;34084:39;:::i;:::-;34139:89;34221:6;34216:3;34139:89;:::i;:::-;34132:96;;34237:52;34282:6;34277:3;34270:4;34263:5;34259:16;34237:52;:::i;:::-;34314:6;34309:3;34305:16;34298:23;;34060:267;33950:377;;;;:::o;34333:141::-;34382:4;34405:3;34397:11;;34428:3;34425:1;34418:14;34462:4;34459:1;34449:18;34441:26;;34333:141;;;:::o;34504:845::-;34607:3;34644:5;34638:12;34673:36;34699:9;34673:36;:::i;:::-;34725:89;34807:6;34802:3;34725:89;:::i;:::-;34718:96;;34845:1;34834:9;34830:17;34861:1;34856:137;;;;35007:1;35002:341;;;;34823:520;;34856:137;34940:4;34936:9;34925;34921:25;34916:3;34909:38;34976:6;34971:3;34967:16;34960:23;;34856:137;;35002:341;35069:38;35101:5;35069:38;:::i;:::-;35129:1;35143:154;35157:6;35154:1;35151:13;35143:154;;;35231:7;35225:14;35221:1;35216:3;35212:11;35205:35;35281:1;35272:7;35268:15;35257:26;;35179:4;35176:1;35172:12;35167:17;;35143:154;;;35326:6;35321:3;35317:16;35310:23;;35009:334;;34823:520;;34611:738;;34504:845;;;;:::o;35355:589::-;35580:3;35602:95;35693:3;35684:6;35602:95;:::i;:::-;35595:102;;35714:95;35805:3;35796:6;35714:95;:::i;:::-;35707:102;;35826:92;35914:3;35905:6;35826:92;:::i;:::-;35819:99;;35935:3;35928:10;;35355:589;;;;;;:::o;35950:225::-;36090:34;36086:1;36078:6;36074:14;36067:58;36159:8;36154:2;36146:6;36142:15;36135:33;35950:225;:::o;36181:366::-;36323:3;36344:67;36408:2;36403:3;36344:67;:::i;:::-;36337:74;;36420:93;36509:3;36420:93;:::i;:::-;36538:2;36533:3;36529:12;36522:19;;36181:366;;;:::o;36553:419::-;36719:4;36757:2;36746:9;36742:18;36734:26;;36806:9;36800:4;36796:20;36792:1;36781:9;36777:17;36770:47;36834:131;36960:4;36834:131;:::i;:::-;36826:139;;36553:419;;;:::o;36978:231::-;37118:34;37114:1;37106:6;37102:14;37095:58;37187:14;37182:2;37174:6;37170:15;37163:39;36978:231;:::o;37215:366::-;37357:3;37378:67;37442:2;37437:3;37378:67;:::i;:::-;37371:74;;37454:93;37543:3;37454:93;:::i;:::-;37572:2;37567:3;37563:12;37556:19;;37215:366;;;:::o;37587:419::-;37753:4;37791:2;37780:9;37776:18;37768:26;;37840:9;37834:4;37830:20;37826:1;37815:9;37811:17;37804:47;37868:131;37994:4;37868:131;:::i;:::-;37860:139;;37587:419;;;:::o;38012:228::-;38152:34;38148:1;38140:6;38136:14;38129:58;38221:11;38216:2;38208:6;38204:15;38197:36;38012:228;:::o;38246:366::-;38388:3;38409:67;38473:2;38468:3;38409:67;:::i;:::-;38402:74;;38485:93;38574:3;38485:93;:::i;:::-;38603:2;38598:3;38594:12;38587:19;;38246:366;;;:::o;38618:419::-;38784:4;38822:2;38811:9;38807:18;38799:26;;38871:9;38865:4;38861:20;38857:1;38846:9;38842:17;38835:47;38899:131;39025:4;38899:131;:::i;:::-;38891:139;;38618:419;;;:::o;39043:223::-;39183:34;39179:1;39171:6;39167:14;39160:58;39252:6;39247:2;39239:6;39235:15;39228:31;39043:223;:::o;39272:366::-;39414:3;39435:67;39499:2;39494:3;39435:67;:::i;:::-;39428:74;;39511:93;39600:3;39511:93;:::i;:::-;39629:2;39624:3;39620:12;39613:19;;39272:366;;;:::o;39644:419::-;39810:4;39848:2;39837:9;39833:18;39825:26;;39897:9;39891:4;39887:20;39883:1;39872:9;39868:17;39861:47;39925:131;40051:4;39925:131;:::i;:::-;39917:139;;39644:419;;;:::o;40069:191::-;40109:4;40129:20;40147:1;40129:20;:::i;:::-;40124:25;;40163:20;40181:1;40163:20;:::i;:::-;40158:25;;40202:1;40199;40196:8;40193:34;;;40207:18;;:::i;:::-;40193:34;40252:1;40249;40245:9;40237:17;;40069:191;;;;:::o;40266:237::-;40406:34;40402:1;40394:6;40390:14;40383:58;40475:20;40470:2;40462:6;40458:15;40451:45;40266:237;:::o;40509:366::-;40651:3;40672:67;40736:2;40731:3;40672:67;:::i;:::-;40665:74;;40748:93;40837:3;40748:93;:::i;:::-;40866:2;40861:3;40857:12;40850:19;;40509:366;;;:::o;40881:419::-;41047:4;41085:2;41074:9;41070:18;41062:26;;41134:9;41128:4;41124:20;41120:1;41109:9;41105:17;41098:47;41162:131;41288:4;41162:131;:::i;:::-;41154:139;;40881:419;;;:::o;41306:180::-;41354:77;41351:1;41344:88;41451:4;41448:1;41441:15;41475:4;41472:1;41465:15;41492:185;41532:1;41549:20;41567:1;41549:20;:::i;:::-;41544:25;;41583:20;41601:1;41583:20;:::i;:::-;41578:25;;41622:1;41612:35;;41627:18;;:::i;:::-;41612:35;41669:1;41666;41662:9;41657:14;;41492:185;;;;:::o;41683:176::-;41715:1;41732:20;41750:1;41732:20;:::i;:::-;41727:25;;41766:20;41784:1;41766:20;:::i;:::-;41761:25;;41805:1;41795:35;;41810:18;;:::i;:::-;41795:35;41851:1;41848;41844:9;41839:14;;41683:176;;;;:::o;41865:98::-;41916:6;41950:5;41944:12;41934:22;;41865:98;;;:::o;41969:168::-;42052:11;42086:6;42081:3;42074:19;42126:4;42121:3;42117:14;42102:29;;41969:168;;;;:::o;42143:360::-;42229:3;42257:38;42289:5;42257:38;:::i;:::-;42311:70;42374:6;42369:3;42311:70;:::i;:::-;42304:77;;42390:52;42435:6;42430:3;42423:4;42416:5;42412:16;42390:52;:::i;:::-;42467:29;42489:6;42467:29;:::i;:::-;42462:3;42458:39;42451:46;;42233:270;42143:360;;;;:::o;42509:640::-;42704:4;42742:3;42731:9;42727:19;42719:27;;42756:71;42824:1;42813:9;42809:17;42800:6;42756:71;:::i;:::-;42837:72;42905:2;42894:9;42890:18;42881:6;42837:72;:::i;:::-;42919;42987:2;42976:9;42972:18;42963:6;42919:72;:::i;:::-;43038:9;43032:4;43028:20;43023:2;43012:9;43008:18;43001:48;43066:76;43137:4;43128:6;43066:76;:::i;:::-;43058:84;;42509:640;;;;;;;:::o;43155:141::-;43211:5;43242:6;43236:13;43227:22;;43258:32;43284:5;43258:32;:::i;:::-;43155:141;;;;:::o;43302:349::-;43371:6;43420:2;43408:9;43399:7;43395:23;43391:32;43388:119;;;43426:79;;:::i;:::-;43388:119;43546:1;43571:63;43626:7;43617:6;43606:9;43602:22;43571:63;:::i;:::-;43561:73;;43517:127;43302:349;;;;:::o;43657:180::-;43705:77;43702:1;43695:88;43802:4;43799:1;43792:15;43826:4;43823:1;43816:15;43843:182;43983:34;43979:1;43971:6;43967:14;43960:58;43843:182;:::o;44031:366::-;44173:3;44194:67;44258:2;44253:3;44194:67;:::i;:::-;44187:74;;44270:93;44359:3;44270:93;:::i;:::-;44388:2;44383:3;44379:12;44372:19;;44031:366;;;:::o;44403:419::-;44569:4;44607:2;44596:9;44592:18;44584:26;;44656:9;44650:4;44646:20;44642:1;44631:9;44627:17;44620:47;44684:131;44810:4;44684:131;:::i;:::-;44676:139;;44403:419;;;:::o;44828:178::-;44968:30;44964:1;44956:6;44952:14;44945:54;44828:178;:::o;45012:366::-;45154:3;45175:67;45239:2;45234:3;45175:67;:::i;:::-;45168:74;;45251:93;45340:3;45251:93;:::i;:::-;45369:2;45364:3;45360:12;45353:19;;45012:366;;;:::o;45384:419::-;45550:4;45588:2;45577:9;45573:18;45565:26;;45637:9;45631:4;45627:20;45623:1;45612:9;45608:17;45601:47;45665:131;45791:4;45665:131;:::i;:::-;45657:139;;45384:419;;;:::o
Swarm Source
ipfs://da73210d5d4b24073c47e8d219d5801ae174b27c03ea036f99af9b2c8f478b22
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.