Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
48 CLION
Holders
25
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CLIONLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoLionsNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-21 */ pragma solidity >=0.7.0 <0.9.0; 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); } 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; } 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); /** * @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); } 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); } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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); } } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @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 { _setApprovalForAll(_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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @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(); } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract CryptoLionsNFT is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.10 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmount = 20; uint256 public nftPerAddressLimit = 50; bool public paused = false; bool public revealed = false; bool public onlyWhitelisted = false; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { if (onlyWhitelisted == true) { require(isWhitelisted(msg.sender), "user is not whitelisted"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); require(supply + _mintAmount <= 1000, "First whitelist limit exceeded (1000)"); } require(msg.value >= cost * _mintAmount, "insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function isWhitelisted(address _user) public view returns (bool) { if (onlyWhitelisted == true) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } } return false; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal(bool _reveal) public onlyOwner { revealed = _reveal; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; setCost(50000000000000000); } function endOnlyWhitelisted() public onlyOwner { onlyWhitelisted = false; setCost(100000000000000000); } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
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"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620003c2565b5067016345785d8a0000600e55612710600f55601460105560326011556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff021916908315150217905550348015620000cc57600080fd5b5060405162005a5f38038062005a5f8339818101604052810190620000f29190620004f0565b838381600090805190602001906200010c929190620003c2565b50806001908051906020019062000125929190620003c2565b505050620001486200013c6200017460201b60201c565b6200017c60201b60201c565b62000159826200024260201b60201c565b6200016a81620002ed60201b60201c565b50505050620007e5565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002526200017460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002786200039860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c89062000605565b60405180910390fd5b80600b9080519060200190620002e9929190620003c2565b5050565b620002fd6200017460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003236200039860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003739062000605565b60405180910390fd5b80600d908051906020019062000394929190620003c2565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003d090620006cd565b90600052602060002090601f016020900481019282620003f4576000855562000440565b82601f106200040f57805160ff191683800117855562000440565b8280016001018555821562000440579182015b828111156200043f57825182559160200191906001019062000422565b5b5090506200044f919062000453565b5090565b5b808211156200046e57600081600090555060010162000454565b5090565b600062000489620004838462000650565b62000627565b905082815260208101848484011115620004a857620004a76200079c565b5b620004b584828562000697565b509392505050565b600082601f830112620004d557620004d462000797565b5b8151620004e784826020860162000472565b91505092915050565b600080600080608085870312156200050d576200050c620007a6565b5b600085015167ffffffffffffffff8111156200052e576200052d620007a1565b5b6200053c87828801620004bd565b945050602085015167ffffffffffffffff81111562000560576200055f620007a1565b5b6200056e87828801620004bd565b935050604085015167ffffffffffffffff811115620005925762000591620007a1565b5b620005a087828801620004bd565b925050606085015167ffffffffffffffff811115620005c457620005c3620007a1565b5b620005d287828801620004bd565b91505092959194509250565b6000620005ed60208362000686565b9150620005fa82620007bc565b602082019050919050565b600060208201905081810360008301526200062081620005de565b9050919050565b60006200063362000646565b905062000641828262000703565b919050565b6000604051905090565b600067ffffffffffffffff8211156200066e576200066d62000768565b5b6200067982620007ab565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006b75780820151818401526020810190506200069a565b83811115620006c7576000848401525b50505050565b60006002820490506001821680620006e657607f821691505b60208210811415620006fd57620006fc62000739565b5b50919050565b6200070e82620007ab565b810181811067ffffffffffffffff8211171562000730576200072f62000768565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61526a80620007f56000396000f3fe60806040526004361061027d5760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610990578063da3ef23f146109bb578063e985e9c5146109e4578063edec5f2714610a21578063f2c4ce1e14610a4a578063f2fde38b14610a735761027d565b8063b88d4fde1461086e578063ba4e5c4914610897578063ba7d2c76146108d4578063c6682862146108ff578063c87b56dd1461092a578063d0eb26b0146109675761027d565b80638da5cb5b116101135780638da5cb5b1461077f578063940cd05b146107aa57806395d89b41146107d35780639c70b512146107fe578063a0712d6814610829578063a22cb465146108455761027d565b80636352211e1461069a5780636c0360eb146106d757806370a0823114610702578063715018a61461073f5780637f00c7a6146107565761027d565b806328fb1eff116101f3578063438b6300116101ac578063438b63001461057857806344a0d68a146105b55780634f6ccce7146105de578063518302271461061b57806355f804b3146106465780635c975abb1461066f5761027d565b806328fb1eff1461048b5780632f745c59146104a25780633af32abf146104df5780633c9527641461051c5780633ccfd60b1461054557806342842e0e1461054f5761027d565b8063095ea7b311610245578063095ea7b31461037b57806313faede6146103a457806318160ddd146103cf57806318cae269146103fa578063239c70ae1461043757806323b872dd146104625761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063081c8c4414610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613b7b565b610a9c565b6040516102b6919061429f565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613b4e565b610b16565b005b3480156102f457600080fd5b506102fd610baf565b60405161030a91906142ba565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613c1e565b610c41565b6040516103479190614216565b60405180910390f35b34801561035c57600080fd5b50610365610cc6565b60405161037291906142ba565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613ac1565b610d54565b005b3480156103b057600080fd5b506103b9610e6c565b6040516103c6919061461c565b60405180910390f35b3480156103db57600080fd5b506103e4610e72565b6040516103f1919061461c565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c919061393e565b610e7f565b60405161042e919061461c565b60405180910390f35b34801561044357600080fd5b5061044c610e97565b604051610459919061461c565b60405180910390f35b34801561046e57600080fd5b50610489600480360381019061048491906139ab565b610e9d565b005b34801561049757600080fd5b506104a0610efd565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190613ac1565b610fa7565b6040516104d6919061461c565b60405180910390f35b3480156104eb57600080fd5b506105066004803603810190610501919061393e565b61104c565b604051610513919061429f565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190613b4e565b611115565b005b61054d6111be565b005b34801561055b57600080fd5b50610576600480360381019061057191906139ab565b6112ba565b005b34801561058457600080fd5b5061059f600480360381019061059a919061393e565b6112da565b6040516105ac919061427d565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190613c1e565b611388565b005b3480156105ea57600080fd5b5061060560048036038101906106009190613c1e565b61140e565b604051610612919061461c565b60405180910390f35b34801561062757600080fd5b5061063061147f565b60405161063d919061429f565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613bd5565b611492565b005b34801561067b57600080fd5b50610684611528565b604051610691919061429f565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613c1e565b61153b565b6040516106ce9190614216565b60405180910390f35b3480156106e357600080fd5b506106ec6115ed565b6040516106f991906142ba565b60405180910390f35b34801561070e57600080fd5b506107296004803603810190610724919061393e565b61167b565b604051610736919061461c565b60405180910390f35b34801561074b57600080fd5b50610754611733565b005b34801561076257600080fd5b5061077d60048036038101906107789190613c1e565b6117bb565b005b34801561078b57600080fd5b50610794611841565b6040516107a19190614216565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190613b4e565b61186b565b005b3480156107df57600080fd5b506107e8611904565b6040516107f591906142ba565b60405180910390f35b34801561080a57600080fd5b50610813611996565b604051610820919061429f565b60405180910390f35b610843600480360381019061083e9190613c1e565b6119a9565b005b34801561085157600080fd5b5061086c60048036038101906108679190613a81565b611d42565b005b34801561087a57600080fd5b50610895600480360381019061089091906139fe565b611d58565b005b3480156108a357600080fd5b506108be60048036038101906108b99190613c1e565b611dba565b6040516108cb9190614216565b60405180910390f35b3480156108e057600080fd5b506108e9611df9565b6040516108f6919061461c565b60405180910390f35b34801561090b57600080fd5b50610914611dff565b60405161092191906142ba565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c9190613c1e565b611e8d565b60405161095e91906142ba565b60405180910390f35b34801561097357600080fd5b5061098e60048036038101906109899190613c1e565b611fe6565b005b34801561099c57600080fd5b506109a561206c565b6040516109b2919061461c565b60405180910390f35b3480156109c757600080fd5b506109e260048036038101906109dd9190613bd5565b612072565b005b3480156109f057600080fd5b50610a0b6004803603810190610a06919061396b565b612108565b604051610a18919061429f565b60405180910390f35b348015610a2d57600080fd5b50610a486004803603810190610a439190613b01565b61219c565b005b348015610a5657600080fd5b50610a716004803603810190610a6c9190613bd5565b61223c565b005b348015610a7f57600080fd5b50610a9a6004803603810190610a95919061393e565b6122d2565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0f5750610b0e826123ca565b5b9050919050565b610b1e6124ac565b73ffffffffffffffffffffffffffffffffffffffff16610b3c611841565b73ffffffffffffffffffffffffffffffffffffffff1614610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b89906144dc565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060008054610bbe90614925565b80601f0160208091040260200160405190810160405280929190818152602001828054610bea90614925565b8015610c375780601f10610c0c57610100808354040283529160200191610c37565b820191906000526020600020905b815481529060010190602001808311610c1a57829003601f168201915b5050505050905090565b6000610c4c826124b4565b610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c82906144bc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610cd390614925565b80601f0160208091040260200160405190810160405280929190818152602001828054610cff90614925565b8015610d4c5780601f10610d2157610100808354040283529160200191610d4c565b820191906000526020600020905b815481529060010190602001808311610d2f57829003601f168201915b505050505081565b6000610d5f8261153b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc79061453c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610def6124ac565b73ffffffffffffffffffffffffffffffffffffffff161480610e1e5750610e1d81610e186124ac565b612108565b5b610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906143fc565b60405180910390fd5b610e678383612520565b505050565b600e5481565b6000600880549050905090565b60146020528060005260406000206000915090505481565b60105481565b610eae610ea86124ac565b826125d9565b610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee49061457c565b60405180910390fd5b610ef88383836126b7565b505050565b610f056124ac565b73ffffffffffffffffffffffffffffffffffffffff16610f23611841565b73ffffffffffffffffffffffffffffffffffffffff1614610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f70906144dc565b60405180910390fd5b6000601260026101000a81548160ff021916908315150217905550610fa567016345785d8a0000611388565b565b6000610fb28361167b565b8210610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea906142dc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600060011515601260029054906101000a900460ff161515141561110b5760005b601380549050811015611109578273ffffffffffffffffffffffffffffffffffffffff16601382815481106110a5576110a4614abe565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156110f6576001915050611110565b808061110190614988565b91505061106d565b505b600090505b919050565b61111d6124ac565b73ffffffffffffffffffffffffffffffffffffffff1661113b611841565b73ffffffffffffffffffffffffffffffffffffffff1614611191576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611188906144dc565b60405180910390fd5b80601260026101000a81548160ff0219169083151502179055506111bb66b1a2bc2ec50000611388565b50565b6111c66124ac565b73ffffffffffffffffffffffffffffffffffffffff166111e4611841565b73ffffffffffffffffffffffffffffffffffffffff161461123a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611231906144dc565b60405180910390fd5b6000611244611841565b73ffffffffffffffffffffffffffffffffffffffff164760405161126790614201565b60006040518083038185875af1925050503d80600081146112a4576040519150601f19603f3d011682016040523d82523d6000602084013e6112a9565b606091505b50509050806112b757600080fd5b50565b6112d583838360405180602001604052806000815250611d58565b505050565b606060006112e78361167b565b905060008167ffffffffffffffff81111561130557611304614aed565b5b6040519080825280602002602001820160405280156113335781602001602082028036833780820191505090505b50905060005b8281101561137d5761134b8582610fa7565b82828151811061135e5761135d614abe565b5b602002602001018181525050808061137590614988565b915050611339565b508092505050919050565b6113906124ac565b73ffffffffffffffffffffffffffffffffffffffff166113ae611841565b73ffffffffffffffffffffffffffffffffffffffff1614611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb906144dc565b60405180910390fd5b80600e8190555050565b6000611418610e72565b8210611459576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114509061459c565b60405180910390fd5b6008828154811061146d5761146c614abe565b5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b61149a6124ac565b73ffffffffffffffffffffffffffffffffffffffff166114b8611841565b73ffffffffffffffffffffffffffffffffffffffff161461150e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611505906144dc565b60405180910390fd5b80600b908051906020019061152492919061363b565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db9061443c565b60405180910390fd5b80915050919050565b600b80546115fa90614925565b80601f016020809104026020016040519081016040528092919081815260200182805461162690614925565b80156116735780601f1061164857610100808354040283529160200191611673565b820191906000526020600020905b81548152906001019060200180831161165657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e39061441c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61173b6124ac565b73ffffffffffffffffffffffffffffffffffffffff16611759611841565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a6906144dc565b60405180910390fd5b6117b9600061291e565b565b6117c36124ac565b73ffffffffffffffffffffffffffffffffffffffff166117e1611841565b73ffffffffffffffffffffffffffffffffffffffff1614611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e906144dc565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118736124ac565b73ffffffffffffffffffffffffffffffffffffffff16611891611841565b73ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de906144dc565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b60606001805461191390614925565b80601f016020809104026020016040519081016040528092919081815260200182805461193f90614925565b801561198c5780601f106119615761010080835404028352916020019161198c565b820191906000526020600020905b81548152906001019060200180831161196f57829003601f168201915b5050505050905090565b601260029054906101000a900460ff1681565b601260009054906101000a900460ff16156119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f0906144fc565b60405180910390fd5b6000611a03610e72565b905060008211611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f906145fc565b60405180910390fd5b601054821115611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a849061447c565b60405180910390fd5b600f548282611a9c919061475a565b1115611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad49061445c565b60405180910390fd5b611ae5611841565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cb25760011515601260029054906101000a900460ff1615151415611c6157611b3c3361104c565b611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b72906145dc565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506011548382611bce919061475a565b1115611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c069061437c565b60405180910390fd5b6103e88383611c1e919061475a565b1115611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c56906145bc565b60405180910390fd5b505b81600e54611c6f91906147e1565b341015611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca89061455c565b60405180910390fd5b5b6000600190505b828111611d3d57601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611d1090614988565b9190505550611d2a338284611d25919061475a565b6129e4565b8080611d3590614988565b915050611cb9565b505050565b611d54611d4d6124ac565b8383612a02565b5050565b611d69611d636124ac565b836125d9565b611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f9061457c565b60405180910390fd5b611db484848484612b6f565b50505050565b60138181548110611dca57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600c8054611e0c90614925565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3890614925565b8015611e855780601f10611e5a57610100808354040283529160200191611e85565b820191906000526020600020905b815481529060010190602001808311611e6857829003601f168201915b505050505081565b6060611e98826124b4565b611ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ece9061451c565b60405180910390fd5b60001515601260019054906101000a900460ff1615151415611f8557600d8054611f0090614925565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2c90614925565b8015611f795780601f10611f4e57610100808354040283529160200191611f79565b820191906000526020600020905b815481529060010190602001808311611f5c57829003601f168201915b50505050509050611fe1565b6000611f8f612bcb565b90506000815111611faf5760405180602001604052806000815250611fdd565b80611fb984612c5d565b600c604051602001611fcd939291906141d0565b6040516020818303038152906040525b9150505b919050565b611fee6124ac565b73ffffffffffffffffffffffffffffffffffffffff1661200c611841565b73ffffffffffffffffffffffffffffffffffffffff1614612062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612059906144dc565b60405180910390fd5b8060118190555050565b600f5481565b61207a6124ac565b73ffffffffffffffffffffffffffffffffffffffff16612098611841565b73ffffffffffffffffffffffffffffffffffffffff16146120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e5906144dc565b60405180910390fd5b80600c908051906020019061210492919061363b565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121a46124ac565b73ffffffffffffffffffffffffffffffffffffffff166121c2611841565b73ffffffffffffffffffffffffffffffffffffffff1614612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f906144dc565b60405180910390fd5b6013600061222691906136c1565b8181601391906122379291906136e2565b505050565b6122446124ac565b73ffffffffffffffffffffffffffffffffffffffff16612262611841565b73ffffffffffffffffffffffffffffffffffffffff16146122b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122af906144dc565b60405180910390fd5b80600d90805190602001906122ce92919061363b565b5050565b6122da6124ac565b73ffffffffffffffffffffffffffffffffffffffff166122f8611841565b73ffffffffffffffffffffffffffffffffffffffff161461234e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612345906144dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b59061431c565b60405180910390fd5b6123c78161291e565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061249557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806124a557506124a482612dbe565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125938361153b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125e4826124b4565b612623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261a906143dc565b60405180910390fd5b600061262e8361153b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061269d57508373ffffffffffffffffffffffffffffffffffffffff1661268584610c41565b73ffffffffffffffffffffffffffffffffffffffff16145b806126ae57506126ad8185612108565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126d78261153b565b73ffffffffffffffffffffffffffffffffffffffff161461272d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127249061433c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127949061439c565b60405180910390fd5b6127a8838383612e28565b6127b3600082612520565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612803919061483b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461285a919061475a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612919838383612f3c565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129fe828260405180602001604052806000815250612f41565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a68906143bc565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b62919061429f565b60405180910390a3505050565b612b7a8484846126b7565b612b8684848484612f9c565b612bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbc906142fc565b60405180910390fd5b50505050565b6060600b8054612bda90614925565b80601f0160208091040260200160405190810160405280929190818152602001828054612c0690614925565b8015612c535780601f10612c2857610100808354040283529160200191612c53565b820191906000526020600020905b815481529060010190602001808311612c3657829003601f168201915b5050505050905090565b60606000821415612ca5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612db9565b600082905060005b60008214612cd7578080612cc090614988565b915050600a82612cd091906147b0565b9150612cad565b60008167ffffffffffffffff811115612cf357612cf2614aed565b5b6040519080825280601f01601f191660200182016040528015612d255781602001600182028036833780820191505090505b5090505b60008514612db257600182612d3e919061483b565b9150600a85612d4d91906149d1565b6030612d59919061475a565b60f81b818381518110612d6f57612d6e614abe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dab91906147b0565b9450612d29565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e33838383613133565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e7657612e7181613138565b612eb5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612eb457612eb38382613181565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef857612ef3816132ee565b612f37565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f3657612f3582826133bf565b5b5b505050565b505050565b612f4b838361343e565b612f586000848484612f9c565b612f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8e906142fc565b60405180910390fd5b505050565b6000612fbd8473ffffffffffffffffffffffffffffffffffffffff16613618565b15613126578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fe66124ac565b8786866040518563ffffffff1660e01b81526004016130089493929190614231565b602060405180830381600087803b15801561302257600080fd5b505af192505050801561305357506040513d601f19601f820116820180604052508101906130509190613ba8565b60015b6130d6573d8060008114613083576040519150601f19603f3d011682016040523d82523d6000602084013e613088565b606091505b506000815114156130ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c5906142fc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061312b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161318e8461167b565b613198919061483b565b905060006007600084815260200190815260200160002054905081811461327d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613302919061483b565b905060006009600084815260200190815260200160002054905060006008838154811061333257613331614abe565b5b90600052602060002001549050806008838154811061335457613353614abe565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133a3576133a2614a8f565b5b6001900381819060005260206000200160009055905550505050565b60006133ca8361167b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a59061449c565b60405180910390fd5b6134b7816124b4565b156134f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ee9061435c565b60405180910390fd5b61350360008383612e28565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613553919061475a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461361460008383612f3c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461364790614925565b90600052602060002090601f01602090048101928261366957600085556136b0565b82601f1061368257805160ff19168380011785556136b0565b828001600101855582156136b0579182015b828111156136af578251825591602001919060010190613694565b5b5090506136bd9190613782565b5090565b50805460008255906000526020600020908101906136df9190613782565b50565b828054828255906000526020600020908101928215613771579160200282015b8281111561377057823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613702565b5b50905061377e9190613782565b5090565b5b8082111561379b576000816000905550600101613783565b5090565b60006137b26137ad8461465c565b614637565b9050828152602081018484840111156137ce576137cd614b2b565b5b6137d98482856148e3565b509392505050565b60006137f46137ef8461468d565b614637565b9050828152602081018484840111156138105761380f614b2b565b5b61381b8482856148e3565b509392505050565b600081359050613832816151d8565b92915050565b60008083601f84011261384e5761384d614b21565b5b8235905067ffffffffffffffff81111561386b5761386a614b1c565b5b60208301915083602082028301111561388757613886614b26565b5b9250929050565b60008135905061389d816151ef565b92915050565b6000813590506138b281615206565b92915050565b6000815190506138c781615206565b92915050565b600082601f8301126138e2576138e1614b21565b5b81356138f284826020860161379f565b91505092915050565b600082601f8301126139105761390f614b21565b5b81356139208482602086016137e1565b91505092915050565b6000813590506139388161521d565b92915050565b60006020828403121561395457613953614b35565b5b600061396284828501613823565b91505092915050565b6000806040838503121561398257613981614b35565b5b600061399085828601613823565b92505060206139a185828601613823565b9150509250929050565b6000806000606084860312156139c4576139c3614b35565b5b60006139d286828701613823565b93505060206139e386828701613823565b92505060406139f486828701613929565b9150509250925092565b60008060008060808587031215613a1857613a17614b35565b5b6000613a2687828801613823565b9450506020613a3787828801613823565b9350506040613a4887828801613929565b925050606085013567ffffffffffffffff811115613a6957613a68614b30565b5b613a75878288016138cd565b91505092959194509250565b60008060408385031215613a9857613a97614b35565b5b6000613aa685828601613823565b9250506020613ab78582860161388e565b9150509250929050565b60008060408385031215613ad857613ad7614b35565b5b6000613ae685828601613823565b9250506020613af785828601613929565b9150509250929050565b60008060208385031215613b1857613b17614b35565b5b600083013567ffffffffffffffff811115613b3657613b35614b30565b5b613b4285828601613838565b92509250509250929050565b600060208284031215613b6457613b63614b35565b5b6000613b728482850161388e565b91505092915050565b600060208284031215613b9157613b90614b35565b5b6000613b9f848285016138a3565b91505092915050565b600060208284031215613bbe57613bbd614b35565b5b6000613bcc848285016138b8565b91505092915050565b600060208284031215613beb57613bea614b35565b5b600082013567ffffffffffffffff811115613c0957613c08614b30565b5b613c15848285016138fb565b91505092915050565b600060208284031215613c3457613c33614b35565b5b6000613c4284828501613929565b91505092915050565b6000613c5783836141b2565b60208301905092915050565b613c6c8161486f565b82525050565b6000613c7d826146e3565b613c878185614711565b9350613c92836146be565b8060005b83811015613cc3578151613caa8882613c4b565b9750613cb583614704565b925050600181019050613c96565b5085935050505092915050565b613cd981614881565b82525050565b6000613cea826146ee565b613cf48185614722565b9350613d048185602086016148f2565b613d0d81614b3a565b840191505092915050565b6000613d23826146f9565b613d2d818561473e565b9350613d3d8185602086016148f2565b613d4681614b3a565b840191505092915050565b6000613d5c826146f9565b613d66818561474f565b9350613d768185602086016148f2565b80840191505092915050565b60008154613d8f81614925565b613d99818661474f565b94506001821660008114613db45760018114613dc557613df8565b60ff19831686528186019350613df8565b613dce856146ce565b60005b83811015613df057815481890152600182019150602081019050613dd1565b838801955050505b50505092915050565b6000613e0e602b8361473e565b9150613e1982614b4b565b604082019050919050565b6000613e3160328361473e565b9150613e3c82614b9a565b604082019050919050565b6000613e5460268361473e565b9150613e5f82614be9565b604082019050919050565b6000613e7760258361473e565b9150613e8282614c38565b604082019050919050565b6000613e9a601c8361473e565b9150613ea582614c87565b602082019050919050565b6000613ebd601c8361473e565b9150613ec882614cb0565b602082019050919050565b6000613ee060248361473e565b9150613eeb82614cd9565b604082019050919050565b6000613f0360198361473e565b9150613f0e82614d28565b602082019050919050565b6000613f26602c8361473e565b9150613f3182614d51565b604082019050919050565b6000613f4960388361473e565b9150613f5482614da0565b604082019050919050565b6000613f6c602a8361473e565b9150613f7782614def565b604082019050919050565b6000613f8f60298361473e565b9150613f9a82614e3e565b604082019050919050565b6000613fb260168361473e565b9150613fbd82614e8d565b602082019050919050565b6000613fd560248361473e565b9150613fe082614eb6565b604082019050919050565b6000613ff860208361473e565b915061400382614f05565b602082019050919050565b600061401b602c8361473e565b915061402682614f2e565b604082019050919050565b600061403e60208361473e565b915061404982614f7d565b602082019050919050565b600061406160168361473e565b915061406c82614fa6565b602082019050919050565b6000614084602f8361473e565b915061408f82614fcf565b604082019050919050565b60006140a760218361473e565b91506140b28261501e565b604082019050919050565b60006140ca600083614733565b91506140d58261506d565b600082019050919050565b60006140ed60128361473e565b91506140f882615070565b602082019050919050565b600061411060318361473e565b915061411b82615099565b604082019050919050565b6000614133602c8361473e565b915061413e826150e8565b604082019050919050565b600061415660258361473e565b915061416182615137565b604082019050919050565b600061417960178361473e565b915061418482615186565b602082019050919050565b600061419c601b8361473e565b91506141a7826151af565b602082019050919050565b6141bb816148d9565b82525050565b6141ca816148d9565b82525050565b60006141dc8286613d51565b91506141e88285613d51565b91506141f48284613d82565b9150819050949350505050565b600061420c826140bd565b9150819050919050565b600060208201905061422b6000830184613c63565b92915050565b60006080820190506142466000830187613c63565b6142536020830186613c63565b61426060408301856141c1565b81810360608301526142728184613cdf565b905095945050505050565b600060208201905081810360008301526142978184613c72565b905092915050565b60006020820190506142b46000830184613cd0565b92915050565b600060208201905081810360008301526142d48184613d18565b905092915050565b600060208201905081810360008301526142f581613e01565b9050919050565b6000602082019050818103600083015261431581613e24565b9050919050565b6000602082019050818103600083015261433581613e47565b9050919050565b6000602082019050818103600083015261435581613e6a565b9050919050565b6000602082019050818103600083015261437581613e8d565b9050919050565b6000602082019050818103600083015261439581613eb0565b9050919050565b600060208201905081810360008301526143b581613ed3565b9050919050565b600060208201905081810360008301526143d581613ef6565b9050919050565b600060208201905081810360008301526143f581613f19565b9050919050565b6000602082019050818103600083015261441581613f3c565b9050919050565b6000602082019050818103600083015261443581613f5f565b9050919050565b6000602082019050818103600083015261445581613f82565b9050919050565b6000602082019050818103600083015261447581613fa5565b9050919050565b6000602082019050818103600083015261449581613fc8565b9050919050565b600060208201905081810360008301526144b581613feb565b9050919050565b600060208201905081810360008301526144d58161400e565b9050919050565b600060208201905081810360008301526144f581614031565b9050919050565b6000602082019050818103600083015261451581614054565b9050919050565b6000602082019050818103600083015261453581614077565b9050919050565b600060208201905081810360008301526145558161409a565b9050919050565b60006020820190508181036000830152614575816140e0565b9050919050565b6000602082019050818103600083015261459581614103565b9050919050565b600060208201905081810360008301526145b581614126565b9050919050565b600060208201905081810360008301526145d581614149565b9050919050565b600060208201905081810360008301526145f58161416c565b9050919050565b600060208201905081810360008301526146158161418f565b9050919050565b600060208201905061463160008301846141c1565b92915050565b6000614641614652565b905061464d8282614957565b919050565b6000604051905090565b600067ffffffffffffffff82111561467757614676614aed565b5b61468082614b3a565b9050602081019050919050565b600067ffffffffffffffff8211156146a8576146a7614aed565b5b6146b182614b3a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614765826148d9565b9150614770836148d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147a5576147a4614a02565b5b828201905092915050565b60006147bb826148d9565b91506147c6836148d9565b9250826147d6576147d5614a31565b5b828204905092915050565b60006147ec826148d9565b91506147f7836148d9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148305761482f614a02565b5b828202905092915050565b6000614846826148d9565b9150614851836148d9565b92508282101561486457614863614a02565b5b828203905092915050565b600061487a826148b9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156149105780820151818401526020810190506148f5565b8381111561491f576000848401525b50505050565b6000600282049050600182168061493d57607f821691505b6020821081141561495157614950614a60565b5b50919050565b61496082614b3a565b810181811067ffffffffffffffff8211171561497f5761497e614aed565b5b80604052505050565b6000614993826148d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149c6576149c5614a02565b5b600182019050919050565b60006149dc826148d9565b91506149e7836148d9565b9250826149f7576149f6614a31565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f46697273742077686974656c697374206c696d6974206578636565646564202860008201527f3130303029000000000000000000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6151e18161486f565b81146151ec57600080fd5b50565b6151f881614881565b811461520357600080fd5b50565b61520f8161488d565b811461521a57600080fd5b50565b615226816148d9565b811461523157600080fd5b5056fea2646970667358221220c113959b411ea66b7444a25398f4a28d7b137df14a5536576036e5850e7943e864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000c43727970746f204c696f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005434c494f4e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d534e6e385238464d79577266546234776b486d454136695162336166317a3275784a70393647476369566b4a2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061027d5760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610990578063da3ef23f146109bb578063e985e9c5146109e4578063edec5f2714610a21578063f2c4ce1e14610a4a578063f2fde38b14610a735761027d565b8063b88d4fde1461086e578063ba4e5c4914610897578063ba7d2c76146108d4578063c6682862146108ff578063c87b56dd1461092a578063d0eb26b0146109675761027d565b80638da5cb5b116101135780638da5cb5b1461077f578063940cd05b146107aa57806395d89b41146107d35780639c70b512146107fe578063a0712d6814610829578063a22cb465146108455761027d565b80636352211e1461069a5780636c0360eb146106d757806370a0823114610702578063715018a61461073f5780637f00c7a6146107565761027d565b806328fb1eff116101f3578063438b6300116101ac578063438b63001461057857806344a0d68a146105b55780634f6ccce7146105de578063518302271461061b57806355f804b3146106465780635c975abb1461066f5761027d565b806328fb1eff1461048b5780632f745c59146104a25780633af32abf146104df5780633c9527641461051c5780633ccfd60b1461054557806342842e0e1461054f5761027d565b8063095ea7b311610245578063095ea7b31461037b57806313faede6146103a457806318160ddd146103cf57806318cae269146103fa578063239c70ae1461043757806323b872dd146104625761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063081c8c4414610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613b7b565b610a9c565b6040516102b6919061429f565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613b4e565b610b16565b005b3480156102f457600080fd5b506102fd610baf565b60405161030a91906142ba565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613c1e565b610c41565b6040516103479190614216565b60405180910390f35b34801561035c57600080fd5b50610365610cc6565b60405161037291906142ba565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613ac1565b610d54565b005b3480156103b057600080fd5b506103b9610e6c565b6040516103c6919061461c565b60405180910390f35b3480156103db57600080fd5b506103e4610e72565b6040516103f1919061461c565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c919061393e565b610e7f565b60405161042e919061461c565b60405180910390f35b34801561044357600080fd5b5061044c610e97565b604051610459919061461c565b60405180910390f35b34801561046e57600080fd5b50610489600480360381019061048491906139ab565b610e9d565b005b34801561049757600080fd5b506104a0610efd565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190613ac1565b610fa7565b6040516104d6919061461c565b60405180910390f35b3480156104eb57600080fd5b506105066004803603810190610501919061393e565b61104c565b604051610513919061429f565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190613b4e565b611115565b005b61054d6111be565b005b34801561055b57600080fd5b50610576600480360381019061057191906139ab565b6112ba565b005b34801561058457600080fd5b5061059f600480360381019061059a919061393e565b6112da565b6040516105ac919061427d565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190613c1e565b611388565b005b3480156105ea57600080fd5b5061060560048036038101906106009190613c1e565b61140e565b604051610612919061461c565b60405180910390f35b34801561062757600080fd5b5061063061147f565b60405161063d919061429f565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613bd5565b611492565b005b34801561067b57600080fd5b50610684611528565b604051610691919061429f565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613c1e565b61153b565b6040516106ce9190614216565b60405180910390f35b3480156106e357600080fd5b506106ec6115ed565b6040516106f991906142ba565b60405180910390f35b34801561070e57600080fd5b506107296004803603810190610724919061393e565b61167b565b604051610736919061461c565b60405180910390f35b34801561074b57600080fd5b50610754611733565b005b34801561076257600080fd5b5061077d60048036038101906107789190613c1e565b6117bb565b005b34801561078b57600080fd5b50610794611841565b6040516107a19190614216565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190613b4e565b61186b565b005b3480156107df57600080fd5b506107e8611904565b6040516107f591906142ba565b60405180910390f35b34801561080a57600080fd5b50610813611996565b604051610820919061429f565b60405180910390f35b610843600480360381019061083e9190613c1e565b6119a9565b005b34801561085157600080fd5b5061086c60048036038101906108679190613a81565b611d42565b005b34801561087a57600080fd5b50610895600480360381019061089091906139fe565b611d58565b005b3480156108a357600080fd5b506108be60048036038101906108b99190613c1e565b611dba565b6040516108cb9190614216565b60405180910390f35b3480156108e057600080fd5b506108e9611df9565b6040516108f6919061461c565b60405180910390f35b34801561090b57600080fd5b50610914611dff565b60405161092191906142ba565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c9190613c1e565b611e8d565b60405161095e91906142ba565b60405180910390f35b34801561097357600080fd5b5061098e60048036038101906109899190613c1e565b611fe6565b005b34801561099c57600080fd5b506109a561206c565b6040516109b2919061461c565b60405180910390f35b3480156109c757600080fd5b506109e260048036038101906109dd9190613bd5565b612072565b005b3480156109f057600080fd5b50610a0b6004803603810190610a06919061396b565b612108565b604051610a18919061429f565b60405180910390f35b348015610a2d57600080fd5b50610a486004803603810190610a439190613b01565b61219c565b005b348015610a5657600080fd5b50610a716004803603810190610a6c9190613bd5565b61223c565b005b348015610a7f57600080fd5b50610a9a6004803603810190610a95919061393e565b6122d2565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0f5750610b0e826123ca565b5b9050919050565b610b1e6124ac565b73ffffffffffffffffffffffffffffffffffffffff16610b3c611841565b73ffffffffffffffffffffffffffffffffffffffff1614610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b89906144dc565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060008054610bbe90614925565b80601f0160208091040260200160405190810160405280929190818152602001828054610bea90614925565b8015610c375780601f10610c0c57610100808354040283529160200191610c37565b820191906000526020600020905b815481529060010190602001808311610c1a57829003601f168201915b5050505050905090565b6000610c4c826124b4565b610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c82906144bc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610cd390614925565b80601f0160208091040260200160405190810160405280929190818152602001828054610cff90614925565b8015610d4c5780601f10610d2157610100808354040283529160200191610d4c565b820191906000526020600020905b815481529060010190602001808311610d2f57829003601f168201915b505050505081565b6000610d5f8261153b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc79061453c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610def6124ac565b73ffffffffffffffffffffffffffffffffffffffff161480610e1e5750610e1d81610e186124ac565b612108565b5b610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906143fc565b60405180910390fd5b610e678383612520565b505050565b600e5481565b6000600880549050905090565b60146020528060005260406000206000915090505481565b60105481565b610eae610ea86124ac565b826125d9565b610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee49061457c565b60405180910390fd5b610ef88383836126b7565b505050565b610f056124ac565b73ffffffffffffffffffffffffffffffffffffffff16610f23611841565b73ffffffffffffffffffffffffffffffffffffffff1614610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f70906144dc565b60405180910390fd5b6000601260026101000a81548160ff021916908315150217905550610fa567016345785d8a0000611388565b565b6000610fb28361167b565b8210610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea906142dc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600060011515601260029054906101000a900460ff161515141561110b5760005b601380549050811015611109578273ffffffffffffffffffffffffffffffffffffffff16601382815481106110a5576110a4614abe565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156110f6576001915050611110565b808061110190614988565b91505061106d565b505b600090505b919050565b61111d6124ac565b73ffffffffffffffffffffffffffffffffffffffff1661113b611841565b73ffffffffffffffffffffffffffffffffffffffff1614611191576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611188906144dc565b60405180910390fd5b80601260026101000a81548160ff0219169083151502179055506111bb66b1a2bc2ec50000611388565b50565b6111c66124ac565b73ffffffffffffffffffffffffffffffffffffffff166111e4611841565b73ffffffffffffffffffffffffffffffffffffffff161461123a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611231906144dc565b60405180910390fd5b6000611244611841565b73ffffffffffffffffffffffffffffffffffffffff164760405161126790614201565b60006040518083038185875af1925050503d80600081146112a4576040519150601f19603f3d011682016040523d82523d6000602084013e6112a9565b606091505b50509050806112b757600080fd5b50565b6112d583838360405180602001604052806000815250611d58565b505050565b606060006112e78361167b565b905060008167ffffffffffffffff81111561130557611304614aed565b5b6040519080825280602002602001820160405280156113335781602001602082028036833780820191505090505b50905060005b8281101561137d5761134b8582610fa7565b82828151811061135e5761135d614abe565b5b602002602001018181525050808061137590614988565b915050611339565b508092505050919050565b6113906124ac565b73ffffffffffffffffffffffffffffffffffffffff166113ae611841565b73ffffffffffffffffffffffffffffffffffffffff1614611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb906144dc565b60405180910390fd5b80600e8190555050565b6000611418610e72565b8210611459576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114509061459c565b60405180910390fd5b6008828154811061146d5761146c614abe565b5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b61149a6124ac565b73ffffffffffffffffffffffffffffffffffffffff166114b8611841565b73ffffffffffffffffffffffffffffffffffffffff161461150e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611505906144dc565b60405180910390fd5b80600b908051906020019061152492919061363b565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db9061443c565b60405180910390fd5b80915050919050565b600b80546115fa90614925565b80601f016020809104026020016040519081016040528092919081815260200182805461162690614925565b80156116735780601f1061164857610100808354040283529160200191611673565b820191906000526020600020905b81548152906001019060200180831161165657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e39061441c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61173b6124ac565b73ffffffffffffffffffffffffffffffffffffffff16611759611841565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a6906144dc565b60405180910390fd5b6117b9600061291e565b565b6117c36124ac565b73ffffffffffffffffffffffffffffffffffffffff166117e1611841565b73ffffffffffffffffffffffffffffffffffffffff1614611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e906144dc565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118736124ac565b73ffffffffffffffffffffffffffffffffffffffff16611891611841565b73ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de906144dc565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b60606001805461191390614925565b80601f016020809104026020016040519081016040528092919081815260200182805461193f90614925565b801561198c5780601f106119615761010080835404028352916020019161198c565b820191906000526020600020905b81548152906001019060200180831161196f57829003601f168201915b5050505050905090565b601260029054906101000a900460ff1681565b601260009054906101000a900460ff16156119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f0906144fc565b60405180910390fd5b6000611a03610e72565b905060008211611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f906145fc565b60405180910390fd5b601054821115611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a849061447c565b60405180910390fd5b600f548282611a9c919061475a565b1115611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad49061445c565b60405180910390fd5b611ae5611841565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cb25760011515601260029054906101000a900460ff1615151415611c6157611b3c3361104c565b611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b72906145dc565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506011548382611bce919061475a565b1115611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c069061437c565b60405180910390fd5b6103e88383611c1e919061475a565b1115611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c56906145bc565b60405180910390fd5b505b81600e54611c6f91906147e1565b341015611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca89061455c565b60405180910390fd5b5b6000600190505b828111611d3d57601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611d1090614988565b9190505550611d2a338284611d25919061475a565b6129e4565b8080611d3590614988565b915050611cb9565b505050565b611d54611d4d6124ac565b8383612a02565b5050565b611d69611d636124ac565b836125d9565b611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f9061457c565b60405180910390fd5b611db484848484612b6f565b50505050565b60138181548110611dca57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600c8054611e0c90614925565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3890614925565b8015611e855780601f10611e5a57610100808354040283529160200191611e85565b820191906000526020600020905b815481529060010190602001808311611e6857829003601f168201915b505050505081565b6060611e98826124b4565b611ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ece9061451c565b60405180910390fd5b60001515601260019054906101000a900460ff1615151415611f8557600d8054611f0090614925565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2c90614925565b8015611f795780601f10611f4e57610100808354040283529160200191611f79565b820191906000526020600020905b815481529060010190602001808311611f5c57829003601f168201915b50505050509050611fe1565b6000611f8f612bcb565b90506000815111611faf5760405180602001604052806000815250611fdd565b80611fb984612c5d565b600c604051602001611fcd939291906141d0565b6040516020818303038152906040525b9150505b919050565b611fee6124ac565b73ffffffffffffffffffffffffffffffffffffffff1661200c611841565b73ffffffffffffffffffffffffffffffffffffffff1614612062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612059906144dc565b60405180910390fd5b8060118190555050565b600f5481565b61207a6124ac565b73ffffffffffffffffffffffffffffffffffffffff16612098611841565b73ffffffffffffffffffffffffffffffffffffffff16146120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e5906144dc565b60405180910390fd5b80600c908051906020019061210492919061363b565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121a46124ac565b73ffffffffffffffffffffffffffffffffffffffff166121c2611841565b73ffffffffffffffffffffffffffffffffffffffff1614612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f906144dc565b60405180910390fd5b6013600061222691906136c1565b8181601391906122379291906136e2565b505050565b6122446124ac565b73ffffffffffffffffffffffffffffffffffffffff16612262611841565b73ffffffffffffffffffffffffffffffffffffffff16146122b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122af906144dc565b60405180910390fd5b80600d90805190602001906122ce92919061363b565b5050565b6122da6124ac565b73ffffffffffffffffffffffffffffffffffffffff166122f8611841565b73ffffffffffffffffffffffffffffffffffffffff161461234e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612345906144dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b59061431c565b60405180910390fd5b6123c78161291e565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061249557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806124a557506124a482612dbe565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125938361153b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125e4826124b4565b612623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261a906143dc565b60405180910390fd5b600061262e8361153b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061269d57508373ffffffffffffffffffffffffffffffffffffffff1661268584610c41565b73ffffffffffffffffffffffffffffffffffffffff16145b806126ae57506126ad8185612108565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126d78261153b565b73ffffffffffffffffffffffffffffffffffffffff161461272d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127249061433c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127949061439c565b60405180910390fd5b6127a8838383612e28565b6127b3600082612520565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612803919061483b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461285a919061475a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612919838383612f3c565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129fe828260405180602001604052806000815250612f41565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a68906143bc565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b62919061429f565b60405180910390a3505050565b612b7a8484846126b7565b612b8684848484612f9c565b612bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbc906142fc565b60405180910390fd5b50505050565b6060600b8054612bda90614925565b80601f0160208091040260200160405190810160405280929190818152602001828054612c0690614925565b8015612c535780601f10612c2857610100808354040283529160200191612c53565b820191906000526020600020905b815481529060010190602001808311612c3657829003601f168201915b5050505050905090565b60606000821415612ca5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612db9565b600082905060005b60008214612cd7578080612cc090614988565b915050600a82612cd091906147b0565b9150612cad565b60008167ffffffffffffffff811115612cf357612cf2614aed565b5b6040519080825280601f01601f191660200182016040528015612d255781602001600182028036833780820191505090505b5090505b60008514612db257600182612d3e919061483b565b9150600a85612d4d91906149d1565b6030612d59919061475a565b60f81b818381518110612d6f57612d6e614abe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dab91906147b0565b9450612d29565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e33838383613133565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e7657612e7181613138565b612eb5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612eb457612eb38382613181565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef857612ef3816132ee565b612f37565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f3657612f3582826133bf565b5b5b505050565b505050565b612f4b838361343e565b612f586000848484612f9c565b612f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8e906142fc565b60405180910390fd5b505050565b6000612fbd8473ffffffffffffffffffffffffffffffffffffffff16613618565b15613126578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fe66124ac565b8786866040518563ffffffff1660e01b81526004016130089493929190614231565b602060405180830381600087803b15801561302257600080fd5b505af192505050801561305357506040513d601f19601f820116820180604052508101906130509190613ba8565b60015b6130d6573d8060008114613083576040519150601f19603f3d011682016040523d82523d6000602084013e613088565b606091505b506000815114156130ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c5906142fc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061312b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161318e8461167b565b613198919061483b565b905060006007600084815260200190815260200160002054905081811461327d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613302919061483b565b905060006009600084815260200190815260200160002054905060006008838154811061333257613331614abe565b5b90600052602060002001549050806008838154811061335457613353614abe565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133a3576133a2614a8f565b5b6001900381819060005260206000200160009055905550505050565b60006133ca8361167b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a59061449c565b60405180910390fd5b6134b7816124b4565b156134f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ee9061435c565b60405180910390fd5b61350360008383612e28565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613553919061475a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461361460008383612f3c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461364790614925565b90600052602060002090601f01602090048101928261366957600085556136b0565b82601f1061368257805160ff19168380011785556136b0565b828001600101855582156136b0579182015b828111156136af578251825591602001919060010190613694565b5b5090506136bd9190613782565b5090565b50805460008255906000526020600020908101906136df9190613782565b50565b828054828255906000526020600020908101928215613771579160200282015b8281111561377057823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613702565b5b50905061377e9190613782565b5090565b5b8082111561379b576000816000905550600101613783565b5090565b60006137b26137ad8461465c565b614637565b9050828152602081018484840111156137ce576137cd614b2b565b5b6137d98482856148e3565b509392505050565b60006137f46137ef8461468d565b614637565b9050828152602081018484840111156138105761380f614b2b565b5b61381b8482856148e3565b509392505050565b600081359050613832816151d8565b92915050565b60008083601f84011261384e5761384d614b21565b5b8235905067ffffffffffffffff81111561386b5761386a614b1c565b5b60208301915083602082028301111561388757613886614b26565b5b9250929050565b60008135905061389d816151ef565b92915050565b6000813590506138b281615206565b92915050565b6000815190506138c781615206565b92915050565b600082601f8301126138e2576138e1614b21565b5b81356138f284826020860161379f565b91505092915050565b600082601f8301126139105761390f614b21565b5b81356139208482602086016137e1565b91505092915050565b6000813590506139388161521d565b92915050565b60006020828403121561395457613953614b35565b5b600061396284828501613823565b91505092915050565b6000806040838503121561398257613981614b35565b5b600061399085828601613823565b92505060206139a185828601613823565b9150509250929050565b6000806000606084860312156139c4576139c3614b35565b5b60006139d286828701613823565b93505060206139e386828701613823565b92505060406139f486828701613929565b9150509250925092565b60008060008060808587031215613a1857613a17614b35565b5b6000613a2687828801613823565b9450506020613a3787828801613823565b9350506040613a4887828801613929565b925050606085013567ffffffffffffffff811115613a6957613a68614b30565b5b613a75878288016138cd565b91505092959194509250565b60008060408385031215613a9857613a97614b35565b5b6000613aa685828601613823565b9250506020613ab78582860161388e565b9150509250929050565b60008060408385031215613ad857613ad7614b35565b5b6000613ae685828601613823565b9250506020613af785828601613929565b9150509250929050565b60008060208385031215613b1857613b17614b35565b5b600083013567ffffffffffffffff811115613b3657613b35614b30565b5b613b4285828601613838565b92509250509250929050565b600060208284031215613b6457613b63614b35565b5b6000613b728482850161388e565b91505092915050565b600060208284031215613b9157613b90614b35565b5b6000613b9f848285016138a3565b91505092915050565b600060208284031215613bbe57613bbd614b35565b5b6000613bcc848285016138b8565b91505092915050565b600060208284031215613beb57613bea614b35565b5b600082013567ffffffffffffffff811115613c0957613c08614b30565b5b613c15848285016138fb565b91505092915050565b600060208284031215613c3457613c33614b35565b5b6000613c4284828501613929565b91505092915050565b6000613c5783836141b2565b60208301905092915050565b613c6c8161486f565b82525050565b6000613c7d826146e3565b613c878185614711565b9350613c92836146be565b8060005b83811015613cc3578151613caa8882613c4b565b9750613cb583614704565b925050600181019050613c96565b5085935050505092915050565b613cd981614881565b82525050565b6000613cea826146ee565b613cf48185614722565b9350613d048185602086016148f2565b613d0d81614b3a565b840191505092915050565b6000613d23826146f9565b613d2d818561473e565b9350613d3d8185602086016148f2565b613d4681614b3a565b840191505092915050565b6000613d5c826146f9565b613d66818561474f565b9350613d768185602086016148f2565b80840191505092915050565b60008154613d8f81614925565b613d99818661474f565b94506001821660008114613db45760018114613dc557613df8565b60ff19831686528186019350613df8565b613dce856146ce565b60005b83811015613df057815481890152600182019150602081019050613dd1565b838801955050505b50505092915050565b6000613e0e602b8361473e565b9150613e1982614b4b565b604082019050919050565b6000613e3160328361473e565b9150613e3c82614b9a565b604082019050919050565b6000613e5460268361473e565b9150613e5f82614be9565b604082019050919050565b6000613e7760258361473e565b9150613e8282614c38565b604082019050919050565b6000613e9a601c8361473e565b9150613ea582614c87565b602082019050919050565b6000613ebd601c8361473e565b9150613ec882614cb0565b602082019050919050565b6000613ee060248361473e565b9150613eeb82614cd9565b604082019050919050565b6000613f0360198361473e565b9150613f0e82614d28565b602082019050919050565b6000613f26602c8361473e565b9150613f3182614d51565b604082019050919050565b6000613f4960388361473e565b9150613f5482614da0565b604082019050919050565b6000613f6c602a8361473e565b9150613f7782614def565b604082019050919050565b6000613f8f60298361473e565b9150613f9a82614e3e565b604082019050919050565b6000613fb260168361473e565b9150613fbd82614e8d565b602082019050919050565b6000613fd560248361473e565b9150613fe082614eb6565b604082019050919050565b6000613ff860208361473e565b915061400382614f05565b602082019050919050565b600061401b602c8361473e565b915061402682614f2e565b604082019050919050565b600061403e60208361473e565b915061404982614f7d565b602082019050919050565b600061406160168361473e565b915061406c82614fa6565b602082019050919050565b6000614084602f8361473e565b915061408f82614fcf565b604082019050919050565b60006140a760218361473e565b91506140b28261501e565b604082019050919050565b60006140ca600083614733565b91506140d58261506d565b600082019050919050565b60006140ed60128361473e565b91506140f882615070565b602082019050919050565b600061411060318361473e565b915061411b82615099565b604082019050919050565b6000614133602c8361473e565b915061413e826150e8565b604082019050919050565b600061415660258361473e565b915061416182615137565b604082019050919050565b600061417960178361473e565b915061418482615186565b602082019050919050565b600061419c601b8361473e565b91506141a7826151af565b602082019050919050565b6141bb816148d9565b82525050565b6141ca816148d9565b82525050565b60006141dc8286613d51565b91506141e88285613d51565b91506141f48284613d82565b9150819050949350505050565b600061420c826140bd565b9150819050919050565b600060208201905061422b6000830184613c63565b92915050565b60006080820190506142466000830187613c63565b6142536020830186613c63565b61426060408301856141c1565b81810360608301526142728184613cdf565b905095945050505050565b600060208201905081810360008301526142978184613c72565b905092915050565b60006020820190506142b46000830184613cd0565b92915050565b600060208201905081810360008301526142d48184613d18565b905092915050565b600060208201905081810360008301526142f581613e01565b9050919050565b6000602082019050818103600083015261431581613e24565b9050919050565b6000602082019050818103600083015261433581613e47565b9050919050565b6000602082019050818103600083015261435581613e6a565b9050919050565b6000602082019050818103600083015261437581613e8d565b9050919050565b6000602082019050818103600083015261439581613eb0565b9050919050565b600060208201905081810360008301526143b581613ed3565b9050919050565b600060208201905081810360008301526143d581613ef6565b9050919050565b600060208201905081810360008301526143f581613f19565b9050919050565b6000602082019050818103600083015261441581613f3c565b9050919050565b6000602082019050818103600083015261443581613f5f565b9050919050565b6000602082019050818103600083015261445581613f82565b9050919050565b6000602082019050818103600083015261447581613fa5565b9050919050565b6000602082019050818103600083015261449581613fc8565b9050919050565b600060208201905081810360008301526144b581613feb565b9050919050565b600060208201905081810360008301526144d58161400e565b9050919050565b600060208201905081810360008301526144f581614031565b9050919050565b6000602082019050818103600083015261451581614054565b9050919050565b6000602082019050818103600083015261453581614077565b9050919050565b600060208201905081810360008301526145558161409a565b9050919050565b60006020820190508181036000830152614575816140e0565b9050919050565b6000602082019050818103600083015261459581614103565b9050919050565b600060208201905081810360008301526145b581614126565b9050919050565b600060208201905081810360008301526145d581614149565b9050919050565b600060208201905081810360008301526145f58161416c565b9050919050565b600060208201905081810360008301526146158161418f565b9050919050565b600060208201905061463160008301846141c1565b92915050565b6000614641614652565b905061464d8282614957565b919050565b6000604051905090565b600067ffffffffffffffff82111561467757614676614aed565b5b61468082614b3a565b9050602081019050919050565b600067ffffffffffffffff8211156146a8576146a7614aed565b5b6146b182614b3a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614765826148d9565b9150614770836148d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147a5576147a4614a02565b5b828201905092915050565b60006147bb826148d9565b91506147c6836148d9565b9250826147d6576147d5614a31565b5b828204905092915050565b60006147ec826148d9565b91506147f7836148d9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148305761482f614a02565b5b828202905092915050565b6000614846826148d9565b9150614851836148d9565b92508282101561486457614863614a02565b5b828203905092915050565b600061487a826148b9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156149105780820151818401526020810190506148f5565b8381111561491f576000848401525b50505050565b6000600282049050600182168061493d57607f821691505b6020821081141561495157614950614a60565b5b50919050565b61496082614b3a565b810181811067ffffffffffffffff8211171561497f5761497e614aed565b5b80604052505050565b6000614993826148d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149c6576149c5614a02565b5b600182019050919050565b60006149dc826148d9565b91506149e7836148d9565b9250826149f7576149f6614a31565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f46697273742077686974656c697374206c696d6974206578636565646564202860008201527f3130303029000000000000000000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6151e18161486f565b81146151ec57600080fd5b50565b6151f881614881565b811461520357600080fd5b50565b61520f8161488d565b811461521a57600080fd5b50565b615226816148d9565b811461523157600080fd5b5056fea2646970667358221220c113959b411ea66b7444a25398f4a28d7b137df14a5536576036e5850e7943e864736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000c43727970746f204c696f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005434c494f4e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d534e6e385238464d79577266546234776b486d454136695162336166317a3275784a70393647476369566b4a2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Crypto Lions
Arg [1] : _symbol (string): CLION
Arg [2] : _initBaseURI (string): ipfs://QmSNn8R8FMyWrfTb4wkHmEA6iQb3af1z2uxJp96GGciVkJ/
Arg [3] : _initNotRevealedUri (string):
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 43727970746f204c696f6e730000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 434c494f4e000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d534e6e385238464d79577266546234776b486d45413669
Arg [10] : 5162336166317a3275784a70393647476369566b4a2f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
40987:4516:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32957:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44869:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19972:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21531:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41145:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21054:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41178:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33597:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41479:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41252:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22281:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45082:117;;;;;;;;;;;;;:::i;:::-;;33265:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42943:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44948:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45355:145;;;:::i;:::-;;22691:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43239:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44303:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33787:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41364:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44511:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41333:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19666:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41077:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19396:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40170:103;;;;;;;;;;;;;:::i;:::-;;44389:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39519:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44107:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20141:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41397:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41934:1003;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21824:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22947:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41437:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41290:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41103:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43593:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44193:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41215:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44615:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22050:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45205:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44743:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40428:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32957:224;33059:4;33098:35;33083:50;;;:11;:50;;;;:90;;;;33137:36;33161:11;33137:23;:36::i;:::-;33083:90;33076:97;;32957:224;;;:::o;44869:73::-;39750:12;:10;:12::i;:::-;39739:23;;:7;:5;:7::i;:::-;:23;;;39731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44930:6:::1;44921;;:15;;;;;;;;;;;;;;;;;;44869:73:::0;:::o;19972:100::-;20026:13;20059:5;20052:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19972:100;:::o;21531:221::-;21607:7;21635:16;21643:7;21635;:16::i;:::-;21627:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21720:15;:24;21736:7;21720:24;;;;;;;;;;;;;;;;;;;;;21713:31;;21531:221;;;:::o;41145:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21054:411::-;21135:13;21151:23;21166:7;21151:14;:23::i;:::-;21135:39;;21199:5;21193:11;;:2;:11;;;;21185:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21293:5;21277:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21302:37;21319:5;21326:12;:10;:12::i;:::-;21302:16;:37::i;:::-;21277:62;21255:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;21436:21;21445:2;21449:7;21436:8;:21::i;:::-;21124:341;21054:411;;:::o;41178:32::-;;;;:::o;33597:113::-;33658:7;33685:10;:17;;;;33678:24;;33597:113;:::o;41479:55::-;;;;;;;;;;;;;;;;;:::o;41252:33::-;;;;:::o;22281:339::-;22476:41;22495:12;:10;:12::i;:::-;22509:7;22476:18;:41::i;:::-;22468:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;22584:28;22594:4;22600:2;22604:7;22584:9;:28::i;:::-;22281:339;;;:::o;45082:117::-;39750:12;:10;:12::i;:::-;39739:23;;:7;:5;:7::i;:::-;:23;;;39731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45154:5:::1;45136:15;;:23;;;;;;;;;;;;;;;;;;45166:27;45174:18;45166:7;:27::i;:::-;45082:117::o:0;33265:256::-;33362:7;33398:23;33415:5;33398:16;:23::i;:::-;33390:5;:31;33382:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;33487:12;:19;33500:5;33487:19;;;;;;;;;;;;;;;:26;33507:5;33487:26;;;;;;;;;;;;33480:33;;33265:256;;;;:::o;42943:290::-;43002:4;43038;43019:23;;:15;;;;;;;;;;;:23;;;43015:194;;;43058:6;43053:149;43074:20;:27;;;;43070:1;:31;43053:149;;;43150:5;43123:32;;:20;43144:1;43123:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;43119:74;;;43177:4;43170:11;;;;;43119:74;43103:3;;;;;:::i;:::-;;;;43053:149;;;;43015:194;43222:5;43215:12;;42943:290;;;;:::o;44948:128::-;39750:12;:10;:12::i;:::-;39739:23;;:7;:5;:7::i;:::-;:23;;;39731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45031:6:::1;45013:15;;:24;;;;;;;;;;;;;;;;;;45044:26;45052:17;45044:7;:26::i;:::-;44948:128:::0;:::o;45355:145::-;39750:12;:10;:12::i;:::-;39739:23;;:7;:5;:7::i;:::-;:23;;;39731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45408:7:::1;45429;:5;:7::i;:::-;45421:21;;45450;45421:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45407:69;;;45491:2;45483:11;;;::::0;::::1;;45400:100;45355:145::o:0;22691:185::-;22829:39;22846:4;22852:2;22856:7;22829:39;;;;;;;;;;;;:16;:39::i;:::-;22691:185;;;:::o;43239:348::-;43314:16;43342:23;43368:17;43378:6;43368:9;:17::i;:::-;43342:43;;43392:25;43434:15;43420:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43392:58;;43462:9;43457:103;43477:15;43473:1;:19;43457:103;;;43522:30;43542:6;43550:1;43522:19;:30::i;:::-;43508:8;43517:1;43508:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;43494:3;;;;;:::i;:::-;;;;43457:103;;;;43573:8;43566:15;;;;43239:348;;;:::o;44303:80::-;39750:12;:10;:12::i;:::-;39739:23;;:7;:5;:7::i;:::-;:23;;;39731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44369:8:::1;44362:4;:15;;;;44303:80:::0;:::o;33787:233::-;33862:7;33898:30;:28;:30::i;:::-;33890:5;:38;33882:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;33995:10;34006:5;33995:17;;;;;;;;:::i;:::-;;;;;;;;;;33988:24;;33787:233;;;:::o;41364:28::-;;;;;;;;;;;;;:::o;44511:98::-;39750:12;:10;:12::i;:::-;39739:23;;:7;:5;:7::i;:::-;:23;;;39731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44592:11:::1;44582:7;:21;;;;;;;;;;;;:::i;:::-;;44511:98:::0;:::o;41333:26::-;;;;;;;;;;;;;:::o;19666:239::-;19738:7;19758:13;19774:7;:16;19782:7;19774:16;;;;;;;;;;;;;;;;;;;;;19758:32;;19826:1;19809:19;;:5;:19;;;;19801:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19892:5;19885:12;;;19666:239;;;:::o;41077:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19396:208::-;19468:7;19513:1;19496:19;;:5;:19;;;;19488:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;19580:9;:16;19590:5;19580:16;;;;;;;;;;;;;;;;19573:23;;19396:208;;;:::o;40170:103::-;39750:12;:10;:12::i;:::-;39739:23;;:7;:5;:7::i;:::-;:23;;;39731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40235:30:::1;40262:1;40235:18;:30::i;:::-;40170:103::o:0;44389:116::-;39750:12;:10;:12::i;:::-;39739:23;;:7;:5;:7::i;:::-;:23;;;39731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44482:17:::1;44466:13;:33;;;;44389:116:::0;:::o;39519:87::-;39565:7;39592:6;;;;;;;;;;;39585:13;;39519:87;:::o;44107:80::-;39750:12;:10;:12::i;:::-;39739:23;;:7;:5;:7::i;:::-;:23;;;39731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44174:7:::1;44163:8;;:18;;;;;;;;;;;;;;;;;;44107:80:::0;:::o;20141:104::-;20197:13;20230:7;20223:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20141:104;:::o;41397:35::-;;;;;;;;;;;;;:::o;41934:1003::-;42000:6;;;;;;;;;;;41999:7;41991:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;42040:14;42057:13;:11;:13::i;:::-;42040:30;;42099:1;42085:11;:15;42077:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;42162:13;;42147:11;:28;;42139:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;42255:9;;42240:11;42231:6;:20;;;;:::i;:::-;:33;;42223:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42318:7;:5;:7::i;:::-;42304:21;;:10;:21;;;42300:488;;42359:4;42340:23;;:15;;;;;;;;;;;:23;;;42336:374;;;42384:25;42398:10;42384:13;:25::i;:::-;42376:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;42448:24;42475:20;:32;42496:10;42475:32;;;;;;;;;;;;;;;;42448:59;;42560:18;;42545:11;42526:16;:30;;;;:::i;:::-;:52;;42518:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;42654:4;42639:11;42630:6;:20;;;;:::i;:::-;:28;;42622:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;42365:345;42336:374;42746:11;42739:4;;:18;;;;:::i;:::-;42726:9;:31;;42718:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;42300:488;42801:9;42813:1;42801:13;;42796:136;42821:11;42816:1;:16;42796:136;;42848:20;:32;42869:10;42848:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;42891:33;42901:10;42922:1;42913:6;:10;;;;:::i;:::-;42891:9;:33::i;:::-;42834:3;;;;;:::i;:::-;;;;42796:136;;;;41984:953;41934:1003;:::o;21824:155::-;21919:52;21938:12;:10;:12::i;:::-;21952:8;21962;21919:18;:52::i;:::-;21824:155;;:::o;22947:328::-;23122:41;23141:12;:10;:12::i;:::-;23155:7;23122:18;:41::i;:::-;23114:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23228:39;23242:4;23248:2;23252:7;23261:5;23228:13;:39::i;:::-;22947:328;;;;:::o;41437:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41290:38::-;;;;:::o;41103:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43593:492::-;43691:13;43732:16;43740:7;43732;:16::i;:::-;43716:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;43838:5;43826:17;;:8;;;;;;;;;;;:17;;;43822:61;;;43861:14;43854:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43822:61;43891:28;43922:10;:8;:10::i;:::-;43891:41;;43977:1;43952:14;43946:28;:32;:133;;;;;;;;;;;;;;;;;44014:14;44030:18;:7;:16;:18::i;:::-;44050:13;43997:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43946:133;43939:140;;;43593:492;;;;:::o;44193:104::-;39750:12;:10;:12::i;:::-;39739:23;;:7;:5;:7::i;:::-;:23;;;39731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44285:6:::1;44264:18;:27;;;;44193:104:::0;:::o;41215:32::-;;;;:::o;44615:122::-;39750:12;:10;:12::i;:::-;39739:23;;:7;:5;:7::i;:::-;:23;;;39731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44714:17:::1;44698:13;:33;;;;;;;;;;;;:::i;:::-;;44615:122:::0;:::o;22050:164::-;22147:4;22171:18;:25;22190:5;22171:25;;;;;;;;;;;;;;;:35;22197:8;22171:35;;;;;;;;;;;;;;;;;;;;;;;;;22164:42;;22050:164;;;;:::o;45205:144::-;39750:12;:10;:12::i;:::-;39739:23;;:7;:5;:7::i;:::-;:23;;;39731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45287:20:::1;;45280:27;;;;:::i;:::-;45337:6;;45314:20;:29;;;;;;;:::i;:::-;;45205:144:::0;;:::o;44743:120::-;39750:12;:10;:12::i;:::-;39739:23;;:7;:5;:7::i;:::-;:23;;;39731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44842:15:::1;44825:14;:32;;;;;;;;;;;;:::i;:::-;;44743:120:::0;:::o;40428:201::-;39750:12;:10;:12::i;:::-;39739:23;;:7;:5;:7::i;:::-;:23;;;39731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40537:1:::1;40517:22;;:8;:22;;;;40509:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40593:28;40612:8;40593:18;:28::i;:::-;40428:201:::0;:::o;19027:305::-;19129:4;19181:25;19166:40;;;:11;:40;;;;:105;;;;19238:33;19223:48;;;:11;:48;;;;19166:105;:158;;;;19288:36;19312:11;19288:23;:36::i;:::-;19166:158;19146:178;;19027:305;;;:::o;7086:98::-;7139:7;7166:10;7159:17;;7086:98;:::o;24785:127::-;24850:4;24902:1;24874:30;;:7;:16;24882:7;24874:16;;;;;;;;;;;;;;;;;;;;;:30;;;;24867:37;;24785:127;;;:::o;28931:174::-;29033:2;29006:15;:24;29022:7;29006:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29089:7;29085:2;29051:46;;29060:23;29075:7;29060:14;:23::i;:::-;29051:46;;;;;;;;;;;;28931:174;;:::o;25079:348::-;25172:4;25197:16;25205:7;25197;:16::i;:::-;25189:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25273:13;25289:23;25304:7;25289:14;:23::i;:::-;25273:39;;25342:5;25331:16;;:7;:16;;;:51;;;;25375:7;25351:31;;:20;25363:7;25351:11;:20::i;:::-;:31;;;25331:51;:87;;;;25386:32;25403:5;25410:7;25386:16;:32::i;:::-;25331:87;25323:96;;;25079:348;;;;:::o;28188:625::-;28347:4;28320:31;;:23;28335:7;28320:14;:23::i;:::-;:31;;;28312:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;28426:1;28412:16;;:2;:16;;;;28404:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;28482:39;28503:4;28509:2;28513:7;28482:20;:39::i;:::-;28586:29;28603:1;28607:7;28586:8;:29::i;:::-;28647:1;28628:9;:15;28638:4;28628:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;28676:1;28659:9;:13;28669:2;28659:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28707:2;28688:7;:16;28696:7;28688:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28746:7;28742:2;28727:27;;28736:4;28727:27;;;;;;;;;;;;28767:38;28787:4;28793:2;28797:7;28767:19;:38::i;:::-;28188:625;;;:::o;40789:191::-;40863:16;40882:6;;;;;;;;;;;40863:25;;40908:8;40899:6;;:17;;;;;;;;;;;;;;;;;;40963:8;40932:40;;40953:8;40932:40;;;;;;;;;;;;40852:128;40789:191;:::o;25769:110::-;25845:26;25855:2;25859:7;25845:26;;;;;;;;;;;;:9;:26::i;:::-;25769:110;;:::o;29247:315::-;29402:8;29393:17;;:5;:17;;;;29385:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;29489:8;29451:18;:25;29470:5;29451:25;;;;;;;;;;;;;;;:35;29477:8;29451:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;29535:8;29513:41;;29528:5;29513:41;;;29545:8;29513:41;;;;;;:::i;:::-;;;;;;;;29247:315;;;:::o;24157:::-;24314:28;24324:4;24330:2;24334:7;24314:9;:28::i;:::-;24361:48;24384:4;24390:2;24394:7;24403:5;24361:22;:48::i;:::-;24353:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24157:315;;;;:::o;41813:102::-;41873:13;41902:7;41895:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41813:102;:::o;7492:723::-;7548:13;7778:1;7769:5;:10;7765:53;;;7796:10;;;;;;;;;;;;;;;;;;;;;7765:53;7828:12;7843:5;7828:20;;7859:14;7884:78;7899:1;7891:4;:9;7884:78;;7917:8;;;;;:::i;:::-;;;;7948:2;7940:10;;;;;:::i;:::-;;;7884:78;;;7972:19;8004:6;7994:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7972:39;;8022:154;8038:1;8029:5;:10;8022:154;;8066:1;8056:11;;;;;:::i;:::-;;;8133:2;8125:5;:10;;;;:::i;:::-;8112:2;:24;;;;:::i;:::-;8099:39;;8082:6;8089;8082:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8162:2;8153:11;;;;;:::i;:::-;;;8022:154;;;8200:6;8186:21;;;;;7492:723;;;;:::o;17636:157::-;17721:4;17760:25;17745:40;;;:11;:40;;;;17738:47;;17636:157;;;:::o;34633:589::-;34777:45;34804:4;34810:2;34814:7;34777:26;:45::i;:::-;34855:1;34839:18;;:4;:18;;;34835:187;;;34874:40;34906:7;34874:31;:40::i;:::-;34835:187;;;34944:2;34936:10;;:4;:10;;;34932:90;;34963:47;34996:4;35002:7;34963:32;:47::i;:::-;34932:90;34835:187;35050:1;35036:16;;:2;:16;;;35032:183;;;35069:45;35106:7;35069:36;:45::i;:::-;35032:183;;;35142:4;35136:10;;:2;:10;;;35132:83;;35163:40;35191:2;35195:7;35163:27;:40::i;:::-;35132:83;35032:183;34633:589;;;:::o;32009:125::-;;;;:::o;26106:321::-;26236:18;26242:2;26246:7;26236:5;:18::i;:::-;26287:54;26318:1;26322:2;26326:7;26335:5;26287:22;:54::i;:::-;26265:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;26106:321;;;:::o;30127:799::-;30282:4;30303:15;:2;:13;;;:15::i;:::-;30299:620;;;30355:2;30339:36;;;30376:12;:10;:12::i;:::-;30390:4;30396:7;30405:5;30339:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30335:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30598:1;30581:6;:13;:18;30577:272;;;30624:60;;;;;;;;;;:::i;:::-;;;;;;;;30577:272;30799:6;30793:13;30784:6;30780:2;30776:15;30769:38;30335:529;30472:41;;;30462:51;;;:6;:51;;;;30455:58;;;;;30299:620;30903:4;30896:11;;30127:799;;;;;;;:::o;31498:126::-;;;;:::o;35945:164::-;36049:10;:17;;;;36022:15;:24;36038:7;36022:24;;;;;;;;;;;:44;;;;36077:10;36093:7;36077:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35945:164;:::o;36736:988::-;37002:22;37052:1;37027:22;37044:4;37027:16;:22::i;:::-;:26;;;;:::i;:::-;37002:51;;37064:18;37085:17;:26;37103:7;37085:26;;;;;;;;;;;;37064:47;;37232:14;37218:10;:28;37214:328;;37263:19;37285:12;:18;37298:4;37285:18;;;;;;;;;;;;;;;:34;37304:14;37285:34;;;;;;;;;;;;37263:56;;37369:11;37336:12;:18;37349:4;37336:18;;;;;;;;;;;;;;;:30;37355:10;37336:30;;;;;;;;;;;:44;;;;37486:10;37453:17;:30;37471:11;37453:30;;;;;;;;;;;:43;;;;37248:294;37214:328;37638:17;:26;37656:7;37638:26;;;;;;;;;;;37631:33;;;37682:12;:18;37695:4;37682:18;;;;;;;;;;;;;;;:34;37701:14;37682:34;;;;;;;;;;;37675:41;;;36817:907;;36736:988;;:::o;38019:1079::-;38272:22;38317:1;38297:10;:17;;;;:21;;;;:::i;:::-;38272:46;;38329:18;38350:15;:24;38366:7;38350:24;;;;;;;;;;;;38329:45;;38701:19;38723:10;38734:14;38723:26;;;;;;;;:::i;:::-;;;;;;;;;;38701:48;;38787:11;38762:10;38773;38762:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;38898:10;38867:15;:28;38883:11;38867:28;;;;;;;;;;;:41;;;;39039:15;:24;39055:7;39039:24;;;;;;;;;;;39032:31;;;39074:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38090:1008;;;38019:1079;:::o;35523:221::-;35608:14;35625:20;35642:2;35625:16;:20::i;:::-;35608:37;;35683:7;35656:12;:16;35669:2;35656:16;;;;;;;;;;;;;;;:24;35673:6;35656:24;;;;;;;;;;;:34;;;;35730:6;35701:17;:26;35719:7;35701:26;;;;;;;;;;;:35;;;;35597:147;35523:221;;:::o;26763:439::-;26857:1;26843:16;;:2;:16;;;;26835:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;26916:16;26924:7;26916;:16::i;:::-;26915:17;26907:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;26978:45;27007:1;27011:2;27015:7;26978:20;:45::i;:::-;27053:1;27036:9;:13;27046:2;27036:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27084:2;27065:7;:16;27073:7;27065:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27129:7;27125:2;27104:33;;27121:1;27104:33;;;;;;;;;;;;27150:44;27178:1;27182:2;27186:7;27150:19;:44::i;:::-;26763:439;;:::o;10259:326::-;10319:4;10576:1;10554:7;:19;;;:23;10547:30;;10259:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:179::-;8712:10;8733:46;8775:3;8767:6;8733:46;:::i;:::-;8811:4;8806:3;8802:14;8788:28;;8643:179;;;;:::o;8828:118::-;8915:24;8933:5;8915:24;:::i;:::-;8910:3;8903:37;8828:118;;:::o;8982:732::-;9101:3;9130:54;9178:5;9130:54;:::i;:::-;9200:86;9279:6;9274:3;9200:86;:::i;:::-;9193:93;;9310:56;9360:5;9310:56;:::i;:::-;9389:7;9420:1;9405:284;9430:6;9427:1;9424:13;9405:284;;;9506:6;9500:13;9533:63;9592:3;9577:13;9533:63;:::i;:::-;9526:70;;9619:60;9672:6;9619:60;:::i;:::-;9609:70;;9465:224;9452:1;9449;9445:9;9440:14;;9405:284;;;9409:14;9705:3;9698:10;;9106:608;;;8982:732;;;;:::o;9720:109::-;9801:21;9816:5;9801:21;:::i;:::-;9796:3;9789:34;9720:109;;:::o;9835:360::-;9921:3;9949:38;9981:5;9949:38;:::i;:::-;10003:70;10066:6;10061:3;10003:70;:::i;:::-;9996:77;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9925:270;9835:360;;;;:::o;10201:364::-;10289:3;10317:39;10350:5;10317:39;:::i;:::-;10372:71;10436:6;10431:3;10372:71;:::i;:::-;10365:78;;10452:52;10497:6;10492:3;10485:4;10478:5;10474:16;10452:52;:::i;:::-;10529:29;10551:6;10529:29;:::i;:::-;10524:3;10520:39;10513:46;;10293:272;10201:364;;;;:::o;10571:377::-;10677:3;10705:39;10738:5;10705:39;:::i;:::-;10760:89;10842:6;10837:3;10760:89;:::i;:::-;10753:96;;10858:52;10903:6;10898:3;10891:4;10884:5;10880:16;10858:52;:::i;:::-;10935:6;10930:3;10926:16;10919:23;;10681:267;10571:377;;;;:::o;10978:845::-;11081:3;11118:5;11112:12;11147:36;11173:9;11147:36;:::i;:::-;11199:89;11281:6;11276:3;11199:89;:::i;:::-;11192:96;;11319:1;11308:9;11304:17;11335:1;11330:137;;;;11481:1;11476:341;;;;11297:520;;11330:137;11414:4;11410:9;11399;11395:25;11390:3;11383:38;11450:6;11445:3;11441:16;11434:23;;11330:137;;11476:341;11543:38;11575:5;11543:38;:::i;:::-;11603:1;11617:154;11631:6;11628:1;11625:13;11617:154;;;11705:7;11699:14;11695:1;11690:3;11686:11;11679:35;11755:1;11746:7;11742:15;11731:26;;11653:4;11650:1;11646:12;11641:17;;11617:154;;;11800:6;11795:3;11791:16;11784:23;;11483:334;;11297:520;;11085:738;;10978:845;;;;:::o;11829:366::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17037:366;;;:::o;17409:::-;17551:3;17572:67;17636:2;17631:3;17572:67;:::i;:::-;17565:74;;17648:93;17737:3;17648:93;:::i;:::-;17766:2;17761:3;17757:12;17750:19;;17409:366;;;:::o;17781:::-;17923:3;17944:67;18008:2;18003:3;17944:67;:::i;:::-;17937:74;;18020:93;18109:3;18020:93;:::i;:::-;18138:2;18133:3;18129:12;18122:19;;17781:366;;;:::o;18153:::-;18295:3;18316:67;18380:2;18375:3;18316:67;:::i;:::-;18309:74;;18392:93;18481:3;18392:93;:::i;:::-;18510:2;18505:3;18501:12;18494:19;;18153:366;;;:::o;18525:::-;18667:3;18688:67;18752:2;18747:3;18688:67;:::i;:::-;18681:74;;18764:93;18853:3;18764:93;:::i;:::-;18882:2;18877:3;18873:12;18866:19;;18525:366;;;:::o;18897:::-;19039:3;19060:67;19124:2;19119:3;19060:67;:::i;:::-;19053:74;;19136:93;19225:3;19136:93;:::i;:::-;19254:2;19249:3;19245:12;19238:19;;18897:366;;;:::o;19269:398::-;19428:3;19449:83;19530:1;19525:3;19449:83;:::i;:::-;19442:90;;19541:93;19630:3;19541:93;:::i;:::-;19659:1;19654:3;19650:11;19643:18;;19269:398;;;:::o;19673:366::-;19815:3;19836:67;19900:2;19895:3;19836:67;:::i;:::-;19829:74;;19912:93;20001:3;19912:93;:::i;:::-;20030:2;20025:3;20021:12;20014:19;;19673:366;;;:::o;20045:::-;20187:3;20208:67;20272:2;20267:3;20208:67;:::i;:::-;20201:74;;20284:93;20373:3;20284:93;:::i;:::-;20402:2;20397:3;20393:12;20386:19;;20045:366;;;:::o;20417:::-;20559:3;20580:67;20644:2;20639:3;20580:67;:::i;:::-;20573:74;;20656:93;20745:3;20656:93;:::i;:::-;20774:2;20769:3;20765:12;20758:19;;20417:366;;;:::o;20789:::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:::-;21303:3;21324:67;21388:2;21383:3;21324:67;:::i;:::-;21317:74;;21400:93;21489:3;21400:93;:::i;:::-;21518:2;21513:3;21509:12;21502:19;;21161:366;;;:::o;21533:::-;21675:3;21696:67;21760:2;21755:3;21696:67;:::i;:::-;21689:74;;21772:93;21861:3;21772:93;:::i;:::-;21890:2;21885:3;21881:12;21874:19;;21533:366;;;:::o;21905:108::-;21982:24;22000:5;21982:24;:::i;:::-;21977:3;21970:37;21905:108;;:::o;22019:118::-;22106:24;22124:5;22106:24;:::i;:::-;22101:3;22094:37;22019:118;;:::o;22143:589::-;22368:3;22390:95;22481:3;22472:6;22390:95;:::i;:::-;22383:102;;22502:95;22593:3;22584:6;22502:95;:::i;:::-;22495:102;;22614:92;22702:3;22693:6;22614:92;:::i;:::-;22607:99;;22723:3;22716:10;;22143:589;;;;;;:::o;22738:379::-;22922:3;22944:147;23087:3;22944:147;:::i;:::-;22937:154;;23108:3;23101:10;;22738:379;;;:::o;23123:222::-;23216:4;23254:2;23243:9;23239:18;23231:26;;23267:71;23335:1;23324:9;23320:17;23311:6;23267:71;:::i;:::-;23123:222;;;;:::o;23351:640::-;23546:4;23584:3;23573:9;23569:19;23561:27;;23598:71;23666:1;23655:9;23651:17;23642:6;23598:71;:::i;:::-;23679:72;23747:2;23736:9;23732:18;23723:6;23679:72;:::i;:::-;23761;23829:2;23818:9;23814:18;23805:6;23761:72;:::i;:::-;23880:9;23874:4;23870:20;23865:2;23854:9;23850:18;23843:48;23908:76;23979:4;23970:6;23908:76;:::i;:::-;23900:84;;23351:640;;;;;;;:::o;23997:373::-;24140:4;24178:2;24167:9;24163:18;24155:26;;24227:9;24221:4;24217:20;24213:1;24202:9;24198:17;24191:47;24255:108;24358:4;24349:6;24255:108;:::i;:::-;24247:116;;23997:373;;;;:::o;24376:210::-;24463:4;24501:2;24490:9;24486:18;24478:26;;24514:65;24576:1;24565:9;24561:17;24552:6;24514:65;:::i;:::-;24376:210;;;;:::o;24592:313::-;24705:4;24743:2;24732:9;24728:18;24720:26;;24792:9;24786:4;24782:20;24778:1;24767:9;24763:17;24756:47;24820:78;24893:4;24884:6;24820:78;:::i;:::-;24812:86;;24592:313;;;;:::o;24911:419::-;25077:4;25115:2;25104:9;25100:18;25092:26;;25164:9;25158:4;25154:20;25150:1;25139:9;25135:17;25128:47;25192:131;25318:4;25192:131;:::i;:::-;25184:139;;24911:419;;;:::o;25336:::-;25502:4;25540:2;25529:9;25525:18;25517:26;;25589:9;25583:4;25579:20;25575:1;25564:9;25560:17;25553:47;25617:131;25743:4;25617:131;:::i;:::-;25609:139;;25336:419;;;:::o;25761:::-;25927:4;25965:2;25954:9;25950:18;25942:26;;26014:9;26008:4;26004:20;26000:1;25989:9;25985:17;25978:47;26042:131;26168:4;26042:131;:::i;:::-;26034:139;;25761:419;;;:::o;26186:::-;26352:4;26390:2;26379:9;26375:18;26367:26;;26439:9;26433:4;26429:20;26425:1;26414:9;26410:17;26403:47;26467:131;26593:4;26467:131;:::i;:::-;26459:139;;26186:419;;;:::o;26611:::-;26777:4;26815:2;26804:9;26800:18;26792:26;;26864:9;26858:4;26854:20;26850:1;26839:9;26835:17;26828:47;26892:131;27018:4;26892:131;:::i;:::-;26884:139;;26611:419;;;:::o;27036:::-;27202:4;27240:2;27229:9;27225:18;27217:26;;27289:9;27283:4;27279:20;27275:1;27264:9;27260:17;27253:47;27317:131;27443:4;27317:131;:::i;:::-;27309:139;;27036:419;;;:::o;27461:::-;27627:4;27665:2;27654:9;27650:18;27642:26;;27714:9;27708:4;27704:20;27700:1;27689:9;27685:17;27678:47;27742:131;27868:4;27742:131;:::i;:::-;27734:139;;27461:419;;;:::o;27886:::-;28052:4;28090:2;28079:9;28075:18;28067:26;;28139:9;28133:4;28129:20;28125:1;28114:9;28110:17;28103:47;28167:131;28293:4;28167:131;:::i;:::-;28159:139;;27886:419;;;:::o;28311:::-;28477:4;28515:2;28504:9;28500:18;28492:26;;28564:9;28558:4;28554:20;28550:1;28539:9;28535:17;28528:47;28592:131;28718:4;28592:131;:::i;:::-;28584:139;;28311:419;;;:::o;28736:::-;28902:4;28940:2;28929:9;28925:18;28917:26;;28989:9;28983:4;28979:20;28975:1;28964:9;28960:17;28953:47;29017:131;29143:4;29017:131;:::i;:::-;29009:139;;28736:419;;;:::o;29161:::-;29327:4;29365:2;29354:9;29350:18;29342:26;;29414:9;29408:4;29404:20;29400:1;29389:9;29385:17;29378:47;29442:131;29568:4;29442:131;:::i;:::-;29434:139;;29161:419;;;:::o;29586:::-;29752:4;29790:2;29779:9;29775:18;29767:26;;29839:9;29833:4;29829:20;29825:1;29814:9;29810:17;29803:47;29867:131;29993:4;29867:131;:::i;:::-;29859:139;;29586:419;;;:::o;30011:::-;30177:4;30215:2;30204:9;30200:18;30192:26;;30264:9;30258:4;30254:20;30250:1;30239:9;30235:17;30228:47;30292:131;30418:4;30292:131;:::i;:::-;30284:139;;30011:419;;;:::o;30436:::-;30602:4;30640:2;30629:9;30625:18;30617:26;;30689:9;30683:4;30679:20;30675:1;30664:9;30660:17;30653:47;30717:131;30843:4;30717:131;:::i;:::-;30709:139;;30436:419;;;:::o;30861:::-;31027:4;31065:2;31054:9;31050:18;31042:26;;31114:9;31108:4;31104:20;31100:1;31089:9;31085:17;31078:47;31142:131;31268:4;31142:131;:::i;:::-;31134:139;;30861:419;;;:::o;31286:::-;31452:4;31490:2;31479:9;31475:18;31467:26;;31539:9;31533:4;31529:20;31525:1;31514:9;31510:17;31503:47;31567:131;31693:4;31567:131;:::i;:::-;31559:139;;31286:419;;;:::o;31711:::-;31877:4;31915:2;31904:9;31900:18;31892:26;;31964:9;31958:4;31954:20;31950:1;31939:9;31935:17;31928:47;31992:131;32118:4;31992:131;:::i;:::-;31984:139;;31711:419;;;:::o;32136:::-;32302:4;32340:2;32329:9;32325:18;32317:26;;32389:9;32383:4;32379:20;32375:1;32364:9;32360:17;32353:47;32417:131;32543:4;32417:131;:::i;:::-;32409:139;;32136:419;;;:::o;32561:::-;32727:4;32765:2;32754:9;32750:18;32742:26;;32814:9;32808:4;32804:20;32800:1;32789:9;32785:17;32778:47;32842:131;32968:4;32842:131;:::i;:::-;32834:139;;32561:419;;;:::o;32986:::-;33152:4;33190:2;33179:9;33175:18;33167:26;;33239:9;33233:4;33229:20;33225:1;33214:9;33210:17;33203:47;33267:131;33393:4;33267:131;:::i;:::-;33259:139;;32986:419;;;:::o;33411:::-;33577:4;33615:2;33604:9;33600:18;33592:26;;33664:9;33658:4;33654:20;33650:1;33639:9;33635:17;33628:47;33692:131;33818:4;33692:131;:::i;:::-;33684:139;;33411:419;;;:::o;33836:::-;34002:4;34040:2;34029:9;34025:18;34017:26;;34089:9;34083:4;34079:20;34075:1;34064:9;34060:17;34053:47;34117:131;34243:4;34117:131;:::i;:::-;34109:139;;33836:419;;;:::o;34261:::-;34427:4;34465:2;34454:9;34450:18;34442:26;;34514:9;34508:4;34504:20;34500:1;34489:9;34485:17;34478:47;34542:131;34668:4;34542:131;:::i;:::-;34534:139;;34261:419;;;:::o;34686:::-;34852:4;34890:2;34879:9;34875:18;34867:26;;34939:9;34933:4;34929:20;34925:1;34914:9;34910:17;34903:47;34967:131;35093:4;34967:131;:::i;:::-;34959:139;;34686:419;;;:::o;35111:::-;35277:4;35315:2;35304:9;35300:18;35292:26;;35364:9;35358:4;35354:20;35350:1;35339:9;35335:17;35328:47;35392:131;35518:4;35392:131;:::i;:::-;35384:139;;35111:419;;;:::o;35536:::-;35702:4;35740:2;35729:9;35725:18;35717:26;;35789:9;35783:4;35779:20;35775:1;35764:9;35760:17;35753:47;35817:131;35943:4;35817:131;:::i;:::-;35809:139;;35536:419;;;:::o;35961:222::-;36054:4;36092:2;36081:9;36077:18;36069:26;;36105:71;36173:1;36162:9;36158:17;36149:6;36105:71;:::i;:::-;35961:222;;;;:::o;36189:129::-;36223:6;36250:20;;:::i;:::-;36240:30;;36279:33;36307:4;36299:6;36279:33;:::i;:::-;36189:129;;;:::o;36324:75::-;36357:6;36390:2;36384:9;36374:19;;36324:75;:::o;36405:307::-;36466:4;36556:18;36548:6;36545:30;36542:56;;;36578:18;;:::i;:::-;36542:56;36616:29;36638:6;36616:29;:::i;:::-;36608:37;;36700:4;36694;36690:15;36682:23;;36405:307;;;:::o;36718:308::-;36780:4;36870:18;36862:6;36859:30;36856:56;;;36892:18;;:::i;:::-;36856:56;36930:29;36952:6;36930:29;:::i;:::-;36922:37;;37014:4;37008;37004:15;36996:23;;36718:308;;;:::o;37032:132::-;37099:4;37122:3;37114:11;;37152:4;37147:3;37143:14;37135:22;;37032:132;;;:::o;37170:141::-;37219:4;37242:3;37234:11;;37265:3;37262:1;37255:14;37299:4;37296:1;37286:18;37278:26;;37170:141;;;:::o;37317:114::-;37384:6;37418:5;37412:12;37402:22;;37317:114;;;:::o;37437:98::-;37488:6;37522:5;37516:12;37506:22;;37437:98;;;:::o;37541:99::-;37593:6;37627:5;37621:12;37611:22;;37541:99;;;:::o;37646:113::-;37716:4;37748;37743:3;37739:14;37731:22;;37646:113;;;:::o;37765:184::-;37864:11;37898:6;37893:3;37886:19;37938:4;37933:3;37929:14;37914:29;;37765:184;;;;:::o;37955:168::-;38038:11;38072:6;38067:3;38060:19;38112:4;38107:3;38103:14;38088:29;;37955:168;;;;:::o;38129:147::-;38230:11;38267:3;38252:18;;38129:147;;;;:::o;38282:169::-;38366:11;38400:6;38395:3;38388:19;38440:4;38435:3;38431:14;38416:29;;38282:169;;;;:::o;38457:148::-;38559:11;38596:3;38581:18;;38457:148;;;;:::o;38611:305::-;38651:3;38670:20;38688:1;38670:20;:::i;:::-;38665:25;;38704:20;38722:1;38704:20;:::i;:::-;38699:25;;38858:1;38790:66;38786:74;38783:1;38780:81;38777:107;;;38864:18;;:::i;:::-;38777:107;38908:1;38905;38901:9;38894:16;;38611:305;;;;:::o;38922:185::-;38962:1;38979:20;38997:1;38979:20;:::i;:::-;38974:25;;39013:20;39031:1;39013:20;:::i;:::-;39008:25;;39052:1;39042:35;;39057:18;;:::i;:::-;39042:35;39099:1;39096;39092:9;39087:14;;38922:185;;;;:::o;39113:348::-;39153:7;39176:20;39194:1;39176:20;:::i;:::-;39171:25;;39210:20;39228:1;39210:20;:::i;:::-;39205:25;;39398:1;39330:66;39326:74;39323:1;39320:81;39315:1;39308:9;39301:17;39297:105;39294:131;;;39405:18;;:::i;:::-;39294:131;39453:1;39450;39446:9;39435:20;;39113:348;;;;:::o;39467:191::-;39507:4;39527:20;39545:1;39527:20;:::i;:::-;39522:25;;39561:20;39579:1;39561:20;:::i;:::-;39556:25;;39600:1;39597;39594:8;39591:34;;;39605:18;;:::i;:::-;39591:34;39650:1;39647;39643:9;39635:17;;39467:191;;;;:::o;39664:96::-;39701:7;39730:24;39748:5;39730:24;:::i;:::-;39719:35;;39664:96;;;:::o;39766:90::-;39800:7;39843:5;39836:13;39829:21;39818:32;;39766:90;;;:::o;39862:149::-;39898:7;39938:66;39931:5;39927:78;39916:89;;39862:149;;;:::o;40017:126::-;40054:7;40094:42;40087:5;40083:54;40072:65;;40017:126;;;:::o;40149:77::-;40186:7;40215:5;40204:16;;40149:77;;;:::o;40232:154::-;40316:6;40311:3;40306;40293:30;40378:1;40369:6;40364:3;40360:16;40353:27;40232:154;;;:::o;40392:307::-;40460:1;40470:113;40484:6;40481:1;40478:13;40470:113;;;40569:1;40564:3;40560:11;40554:18;40550:1;40545:3;40541:11;40534:39;40506:2;40503:1;40499:10;40494:15;;40470:113;;;40601:6;40598:1;40595:13;40592:101;;;40681:1;40672:6;40667:3;40663:16;40656:27;40592:101;40441:258;40392:307;;;:::o;40705:320::-;40749:6;40786:1;40780:4;40776:12;40766:22;;40833:1;40827:4;40823:12;40854:18;40844:81;;40910:4;40902:6;40898:17;40888:27;;40844:81;40972:2;40964:6;40961:14;40941:18;40938:38;40935:84;;;40991:18;;:::i;:::-;40935:84;40756:269;40705:320;;;:::o;41031:281::-;41114:27;41136:4;41114:27;:::i;:::-;41106:6;41102:40;41244:6;41232:10;41229:22;41208:18;41196:10;41193:34;41190:62;41187:88;;;41255:18;;:::i;:::-;41187:88;41295:10;41291:2;41284:22;41074:238;41031:281;;:::o;41318:233::-;41357:3;41380:24;41398:5;41380:24;:::i;:::-;41371:33;;41426:66;41419:5;41416:77;41413:103;;;41496:18;;:::i;:::-;41413:103;41543:1;41536:5;41532:13;41525:20;;41318:233;;;:::o;41557:176::-;41589:1;41606:20;41624:1;41606:20;:::i;:::-;41601:25;;41640:20;41658:1;41640:20;:::i;:::-;41635:25;;41679:1;41669:35;;41684:18;;:::i;:::-;41669:35;41725:1;41722;41718:9;41713:14;;41557:176;;;;:::o;41739:180::-;41787:77;41784:1;41777:88;41884:4;41881:1;41874:15;41908:4;41905:1;41898:15;41925:180;41973:77;41970:1;41963:88;42070:4;42067:1;42060:15;42094:4;42091:1;42084:15;42111:180;42159:77;42156:1;42149:88;42256:4;42253:1;42246:15;42280:4;42277:1;42270:15;42297:180;42345:77;42342:1;42335:88;42442:4;42439:1;42432:15;42466:4;42463:1;42456:15;42483:180;42531:77;42528:1;42521:88;42628:4;42625:1;42618:15;42652:4;42649:1;42642:15;42669:180;42717:77;42714:1;42707:88;42814:4;42811:1;42804:15;42838:4;42835:1;42828:15;42855:117;42964:1;42961;42954:12;42978:117;43087:1;43084;43077:12;43101:117;43210:1;43207;43200:12;43224:117;43333:1;43330;43323:12;43347:117;43456:1;43453;43446:12;43470:117;43579:1;43576;43569:12;43593:102;43634:6;43685:2;43681:7;43676:2;43669:5;43665:14;43661:28;43651:38;;43593:102;;;:::o;43701:230::-;43841:34;43837:1;43829:6;43825:14;43818:58;43910:13;43905:2;43897:6;43893:15;43886:38;43701:230;:::o;43937:237::-;44077:34;44073:1;44065:6;44061:14;44054:58;44146:20;44141:2;44133:6;44129:15;44122:45;43937:237;:::o;44180:225::-;44320:34;44316:1;44308:6;44304:14;44297:58;44389:8;44384:2;44376:6;44372:15;44365:33;44180:225;:::o;44411:224::-;44551:34;44547:1;44539:6;44535:14;44528:58;44620:7;44615:2;44607:6;44603:15;44596:32;44411:224;:::o;44641:178::-;44781:30;44777:1;44769:6;44765:14;44758:54;44641:178;:::o;44825:::-;44965:30;44961:1;44953:6;44949:14;44942:54;44825:178;:::o;45009:223::-;45149:34;45145:1;45137:6;45133:14;45126:58;45218:6;45213:2;45205:6;45201:15;45194:31;45009:223;:::o;45238:175::-;45378:27;45374:1;45366:6;45362:14;45355:51;45238:175;:::o;45419:231::-;45559:34;45555:1;45547:6;45543:14;45536:58;45628:14;45623:2;45615:6;45611:15;45604:39;45419:231;:::o;45656:243::-;45796:34;45792:1;45784:6;45780:14;45773:58;45865:26;45860:2;45852:6;45848:15;45841:51;45656:243;:::o;45905:229::-;46045:34;46041:1;46033:6;46029:14;46022:58;46114:12;46109:2;46101:6;46097:15;46090:37;45905:229;:::o;46140:228::-;46280:34;46276:1;46268:6;46264:14;46257:58;46349:11;46344:2;46336:6;46332:15;46325:36;46140:228;:::o;46374:172::-;46514:24;46510:1;46502:6;46498:14;46491:48;46374:172;:::o;46552:223::-;46692:34;46688:1;46680:6;46676:14;46669:58;46761:6;46756:2;46748:6;46744:15;46737:31;46552:223;:::o;46781:182::-;46921:34;46917:1;46909:6;46905:14;46898:58;46781:182;:::o;46969:231::-;47109:34;47105:1;47097:6;47093:14;47086:58;47178:14;47173:2;47165:6;47161:15;47154:39;46969:231;:::o;47206:182::-;47346:34;47342:1;47334:6;47330:14;47323:58;47206:182;:::o;47394:172::-;47534:24;47530:1;47522:6;47518:14;47511:48;47394:172;:::o;47572:234::-;47712:34;47708:1;47700:6;47696:14;47689:58;47781:17;47776:2;47768:6;47764:15;47757:42;47572:234;:::o;47812:220::-;47952:34;47948:1;47940:6;47936:14;47929:58;48021:3;48016:2;48008:6;48004:15;47997:28;47812:220;:::o;48038:114::-;;:::o;48158:168::-;48298:20;48294:1;48286:6;48282:14;48275:44;48158:168;:::o;48332:236::-;48472:34;48468:1;48460:6;48456:14;48449:58;48541:19;48536:2;48528:6;48524:15;48517:44;48332:236;:::o;48574:231::-;48714:34;48710:1;48702:6;48698:14;48691:58;48783:14;48778:2;48770:6;48766:15;48759:39;48574:231;:::o;48811:224::-;48951:34;48947:1;48939:6;48935:14;48928:58;49020:7;49015:2;49007:6;49003:15;48996:32;48811:224;:::o;49041:173::-;49181:25;49177:1;49169:6;49165:14;49158:49;49041:173;:::o;49220:177::-;49360:29;49356:1;49348:6;49344:14;49337:53;49220:177;:::o;49403:122::-;49476:24;49494:5;49476:24;:::i;:::-;49469:5;49466:35;49456:63;;49515:1;49512;49505:12;49456:63;49403:122;:::o;49531:116::-;49601:21;49616:5;49601:21;:::i;:::-;49594:5;49591:32;49581:60;;49637:1;49634;49627:12;49581:60;49531:116;:::o;49653:120::-;49725:23;49742:5;49725:23;:::i;:::-;49718:5;49715:34;49705:62;;49763:1;49760;49753:12;49705:62;49653:120;:::o;49779:122::-;49852:24;49870:5;49852:24;:::i;:::-;49845:5;49842:35;49832:63;;49891:1;49888;49881:12;49832:63;49779:122;:::o
Swarm Source
ipfs://c113959b411ea66b7444a25398f4a28d7b137df14a5536576036e5850e7943e8
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.