ERC-721
Overview
Max Total Supply
3,208 Meow
Holders
1,039
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 MeowLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Meowrunners
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-29 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: MutantAIYachtClub.sol pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } //newerc.sol pragma solidity ^0.8.0; contract Meowrunners is ERC721A, Ownable, Pausable, ReentrancyGuard { using Strings for uint256; string public baseURI; uint256 public cost = 0.005 ether; uint256 public maxSupply = 10000; uint256 public maxFree = 3000; uint256 public maxperAddressFreeLimit = 3; uint256 public maxperAddressPublicMint = 40; mapping(address => uint256) public addressFreeMintedBalance; constructor() ERC721A("MeowRunners", "Meow") { setBaseURI("https://meowrunners.mypinata.cloud/ipfs/QmYd44wQAnwErVh5Uxp3eoddjKQExGePsZg7gcfFAV47uT/"); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function MintFree(uint256 _mintAmount) public payable nonReentrant{ uint256 s = totalSupply(); uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender]; require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "max NFT per address exceeded"); require(_mintAmount > 0, "Cant mint 0" ); require(s + _mintAmount <= maxFree, "Cant go over supply" ); for (uint256 i = 0; i < _mintAmount; ++i) { addressFreeMintedBalance[msg.sender]++; } _safeMint(msg.sender, _mintAmount); delete s; delete addressFreeMintedCount; } function mint(uint256 _mintAmount) public payable nonReentrant { uint256 s = totalSupply(); require(_mintAmount > 0, "Cant mint 0"); require(_mintAmount <= maxperAddressPublicMint, "Cant mint more then maxmint" ); require(s + _mintAmount <= maxSupply, "Cant go over supply"); require(msg.value >= cost * _mintAmount); _safeMint(msg.sender, _mintAmount); delete s; } function gift(uint256[] calldata quantity, address[] calldata recipient) external onlyOwner { require( quantity.length == recipient.length, "Provide quantities and recipients" ); uint256 totalQuantity = 0; uint256 s = totalSupply(); for (uint256 i = 0; i < quantity.length; ++i) { totalQuantity += quantity[i]; } require(s + totalQuantity <= maxSupply, "Too many"); delete totalQuantity; for (uint256 i = 0; i < recipient.length; ++i) { _safeMint(recipient[i], quantity[i]); } delete s; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: Nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : ""; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxSupply(uint256 _newMaxSupply) public onlyOwner { require(_newMaxSupply <= maxSupply, "Cannot increase max supply"); maxSupply = _newMaxSupply; } function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner { maxFree = _newMaxFreeSupply; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setMaxperAddressPublicMint(uint256 _amount) public onlyOwner { maxperAddressPublicMint = _amount; } function setMaxperAddressFreeMint(uint256 _amount) public onlyOwner{ maxperAddressFreeLimit = _amount; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } function withdrawAny(uint256 _amount) public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: _amount}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"MintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","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":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressPublicMint","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_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":"_amount","type":"uint256"}],"name":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526611c37937e08000600a55612710600b55610bb8600c556003600d556028600e553480156200003257600080fd5b506040518060400160405280600b81526020017f4d656f7752756e6e6572730000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d656f77000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b7929190620002e9565b508060029080519060200190620000d0929190620002e9565b505050620000f3620000e76200014660201b60201c565b6200014e60201b60201c565b6000600760146101000a81548160ff021916908315150217905550600160088190555062000140604051806080016040528060578152602001620050c3605791396200021460201b60201c565b62000481565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002246200014660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200024a620002bf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029a90620003c0565b60405180910390fd5b8060099080519060200190620002bb929190620002e9565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002f790620003f3565b90600052602060002090601f0160209004810192826200031b576000855562000367565b82601f106200033657805160ff191683800117855562000367565b8280016001018555821562000367579182015b828111156200036657825182559160200191906001019062000349565b5b5090506200037691906200037a565b5090565b5b80821115620003955760008160009055506001016200037b565b5090565b6000620003a8602083620003e2565b9150620003b58262000458565b602082019050919050565b60006020820190508181036000830152620003db8162000399565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200040c57607f821691505b6020821081141562000423576200042262000429565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614c3280620004916000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107bb578063d5abeb01146107f8578063dc4e66b514610823578063e985e9c51461084c578063f2fde38b1461088957610225565b8063a0712d6814610708578063a22cb46514610724578063ad6ac81b1461074d578063b88d4fde14610769578063bde12d731461079257610225565b806377ad99f0116100f257806377ad99f0146106305780637c6b172d1461064c5780638da5cb5b1461068957806395d89b41146106b457806396ea3a47146106df57610225565b80636352211e146105745780636c0360eb146105b157806370a08231146105dc578063715018a61461061957610225565b80632f745c59116101b1578063485a68a311610175578063485a68a31461048d5780634f6ccce7146104b857806355f804b3146104f557806356569a1d1461051e5780635c975abb1461054957610225565b80632f745c59146103c957806334c8fd75146104065780633ccfd60b1461043157806342842e0e1461043b57806344a0d68a1461046457610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c578063228025e81461037757806323b872dd146103a057610225565b806301ffc9a71461022a578063022d67dd1461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906135e4565b6108b2565b60405161025e9190613c26565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613687565b6109fc565b005b34801561029c57600080fd5b506102a5610a82565b6040516102b29190613c41565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613687565b610b14565b6040516102ef9190613bbf565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190613523565b610b99565b005b34801561032d57600080fd5b50610336610cb2565b6040516103439190613fc3565b60405180910390f35b34801561035857600080fd5b50610361610cb8565b60405161036e9190613fc3565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613687565b610cc1565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061340d565b610d8c565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613523565b610d9c565b6040516103fd9190613fc3565b60405180910390f35b34801561041257600080fd5b5061041b610f8e565b6040516104289190613fc3565b60405180910390f35b610439610f94565b005b34801561044757600080fd5b50610462600480360381019061045d919061340d565b611089565b005b34801561047057600080fd5b5061048b60048036038101906104869190613687565b6110a9565b005b34801561049957600080fd5b506104a261112f565b6040516104af9190613fc3565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613687565b611135565b6040516104ec9190613fc3565b60405180910390f35b34801561050157600080fd5b5061051c6004803603810190610517919061363e565b611188565b005b34801561052a57600080fd5b5061053361121e565b6040516105409190613fc3565b60405180910390f35b34801561055557600080fd5b5061055e611224565b60405161056b9190613c26565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613687565b61123b565b6040516105a89190613bbf565b60405180910390f35b3480156105bd57600080fd5b506105c6611251565b6040516105d39190613c41565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe91906133a0565b6112df565b6040516106109190613fc3565b60405180910390f35b34801561062557600080fd5b5061062e6113c8565b005b61064a60048036038101906106459190613687565b611450565b005b34801561065857600080fd5b50610673600480360381019061066e91906133a0565b611546565b6040516106809190613fc3565b60405180910390f35b34801561069557600080fd5b5061069e61155e565b6040516106ab9190613bbf565b60405180910390f35b3480156106c057600080fd5b506106c9611588565b6040516106d69190613c41565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613563565b61161a565b005b610722600480360381019061071d9190613687565b6117fc565b005b34801561073057600080fd5b5061074b600480360381019061074691906134e3565b611962565b005b61076760048036038101906107629190613687565b611ae3565b005b34801561077557600080fd5b50610790600480360381019061078b9190613460565b611cf5565b005b34801561079e57600080fd5b506107b960048036038101906107b49190613687565b611d51565b005b3480156107c757600080fd5b506107e260048036038101906107dd9190613687565b611dd7565b6040516107ef9190613c41565b60405180910390f35b34801561080457600080fd5b5061080d611e7e565b60405161081a9190613fc3565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613687565b611e84565b005b34801561085857600080fd5b50610873600480360381019061086e91906133cd565b611f0a565b6040516108809190613c26565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab91906133a0565b611f9e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f557506109f482612096565b5b9050919050565b610a04612100565b73ffffffffffffffffffffffffffffffffffffffff16610a2261155e565b73ffffffffffffffffffffffffffffffffffffffff1614610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f90613e43565b60405180910390fd5b80600e8190555050565b606060018054610a919061427e565b80601f0160208091040260200160405190810160405280929190818152602001828054610abd9061427e565b8015610b0a5780601f10610adf57610100808354040283529160200191610b0a565b820191906000526020600020905b815481529060010190602001808311610aed57829003601f168201915b5050505050905090565b6000610b1f82612108565b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590613fa3565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba48261123b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90613ea3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c34612100565b73ffffffffffffffffffffffffffffffffffffffff161480610c635750610c6281610c5d612100565b611f0a565b5b610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9990613d83565b60405180910390fd5b610cad838383612115565b505050565b600a5481565b60008054905090565b610cc9612100565b73ffffffffffffffffffffffffffffffffffffffff16610ce761155e565b73ffffffffffffffffffffffffffffffffffffffff1614610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490613e43565b60405180910390fd5b600b54811115610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613da3565b60405180910390fd5b80600b8190555050565b610d978383836121c7565b505050565b6000610da7836112df565b8210610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90613c63565b60405180910390fd5b6000610df2610cb8565b905060008060005b83811015610f4c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eec57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f3e5786841415610f35578195505050505050610f88565b83806001019450505b508080600101915050610dfa565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613f43565b60405180910390fd5b92915050565b600e5481565b610f9c612100565b73ffffffffffffffffffffffffffffffffffffffff16610fba61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790613e43565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161103690613baa565b60006040518083038185875af1925050503d8060008114611073576040519150601f19603f3d011682016040523d82523d6000602084013e611078565b606091505b505090508061108657600080fd5b50565b6110a483838360405180602001604052806000815250611cf5565b505050565b6110b1612100565b73ffffffffffffffffffffffffffffffffffffffff166110cf61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90613e43565b60405180910390fd5b80600a8190555050565b600c5481565b600061113f610cb8565b8210611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790613d23565b60405180910390fd5b819050919050565b611190612100565b73ffffffffffffffffffffffffffffffffffffffff166111ae61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90613e43565b60405180910390fd5b806009908051906020019061121a9291906130ce565b5050565b600d5481565b6000600760149054906101000a900460ff16905090565b600061124682612707565b600001519050919050565b6009805461125e9061427e565b80601f016020809104026020016040519081016040528092919081815260200182805461128a9061427e565b80156112d75780601f106112ac576101008083540402835291602001916112d7565b820191906000526020600020905b8154815290600101906020018083116112ba57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790613dc3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113d0612100565b73ffffffffffffffffffffffffffffffffffffffff166113ee61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90613e43565b60405180910390fd5b61144e60006128a1565b565b611458612100565b73ffffffffffffffffffffffffffffffffffffffff1661147661155e565b73ffffffffffffffffffffffffffffffffffffffff16146114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390613e43565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516114f290613baa565b60006040518083038185875af1925050503d806000811461152f576040519150601f19603f3d011682016040523d82523d6000602084013e611534565b606091505b505090508061154257600080fd5b5050565b600f6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115979061427e565b80601f01602080910402602001604051908101604052809291908181526020018280546115c39061427e565b80156116105780601f106115e557610100808354040283529160200191611610565b820191906000526020600020905b8154815290600101906020018083116115f357829003601f168201915b5050505050905090565b611622612100565b73ffffffffffffffffffffffffffffffffffffffff1661164061155e565b73ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90613e43565b60405180910390fd5b8181905084849050146116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d590613d63565b60405180910390fd5b6000806116e9610cb8565b905060005b868690508110156117315786868281811061170c5761170b6143e8565b5b905060200201358361171e91906140b3565b92508061172a906142e1565b90506116ee565b50600b54828261174191906140b3565b1115611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990613e23565b60405180910390fd5b6000915060005b848490508110156117ef576117de8585838181106117aa576117a96143e8565b5b90506020020160208101906117bf91906133a0565b8888848181106117d2576117d16143e8565b5b90506020020135612967565b806117e8906142e1565b9050611789565b5060009050505050505050565b60026008541415611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990613f63565b60405180910390fd5b60026008819055506000611854610cb8565b905060008211611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090613c83565b60405180910390fd5b600e548211156118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d590613ee3565b60405180910390fd5b600b5482826118ed91906140b3565b111561192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590613de3565b60405180910390fd5b81600a5461193c919061413a565b34101561194857600080fd5b6119523383612967565b6000905050600160088190555050565b61196a612100565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90613e63565b60405180910390fd5b80600660006119e5612100565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a92612100565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad79190613c26565b60405180910390a35050565b60026008541415611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090613f63565b60405180910390fd5b60026008819055506000611b3b610cb8565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611b9091906140b3565b1115611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890613d03565b60405180910390fd5b60008311611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b90613c83565b60405180910390fd5b600c548383611c2391906140b3565b1115611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b90613de3565b60405180910390fd5b60005b83811015611cd557600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611cbf906142e1565b919050555080611cce906142e1565b9050611c67565b50611ce03384612967565b60009150600090505050600160088190555050565b611d008484846121c7565b611d0c84848484612985565b611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4290613ec3565b60405180910390fd5b50505050565b611d59612100565b73ffffffffffffffffffffffffffffffffffffffff16611d7761155e565b73ffffffffffffffffffffffffffffffffffffffff1614611dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc490613e43565b60405180910390fd5b80600c8190555050565b6060611de282612108565b611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613ca3565b60405180910390fd5b6000611e2b612b1c565b90506000815111611e4b5760405180602001604052806000815250611e76565b80611e5584612bae565b604051602001611e66929190613b7b565b6040516020818303038152906040525b915050919050565b600b5481565b611e8c612100565b73ffffffffffffffffffffffffffffffffffffffff16611eaa61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef790613e43565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fa6612100565b73ffffffffffffffffffffffffffffffffffffffff16611fc461155e565b73ffffffffffffffffffffffffffffffffffffffff161461201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190613e43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208190613cc3565b60405180910390fd5b612093816128a1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121d282612707565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121f9612100565b73ffffffffffffffffffffffffffffffffffffffff161480612255575061221e612100565b73ffffffffffffffffffffffffffffffffffffffff1661223d84610b14565b73ffffffffffffffffffffffffffffffffffffffff16145b806122715750612270826000015161226b612100565b611f0a565b5b9050806122b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122aa90613e83565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90613e03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90613d43565b60405180910390fd5b6123a28585856001612d0f565b6123b26000848460000151612115565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612697576125f681612108565b156126965782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127008585856001612d15565b5050505050565b61270f613154565b61271882612108565b612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90613ce3565b60405180910390fd5b60008290505b60008110612860576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461285157809250505061289c565b5080806001900391505061275d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289390613f83565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612981828260405180602001604052806000815250612d1b565b5050565b60006129a68473ffffffffffffffffffffffffffffffffffffffff16612d2d565b15612b0f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129cf612100565b8786866040518563ffffffff1660e01b81526004016129f19493929190613bda565b602060405180830381600087803b158015612a0b57600080fd5b505af1925050508015612a3c57506040513d601f19601f82011682018060405250810190612a399190613611565b60015b612abf573d8060008114612a6c576040519150601f19603f3d011682016040523d82523d6000602084013e612a71565b606091505b50600081511415612ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aae90613ec3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b14565b600190505b949350505050565b606060098054612b2b9061427e565b80601f0160208091040260200160405190810160405280929190818152602001828054612b579061427e565b8015612ba45780601f10612b7957610100808354040283529160200191612ba4565b820191906000526020600020905b815481529060010190602001808311612b8757829003601f168201915b5050505050905090565b60606000821415612bf6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d0a565b600082905060005b60008214612c28578080612c11906142e1565b915050600a82612c219190614109565b9150612bfe565b60008167ffffffffffffffff811115612c4457612c43614417565b5b6040519080825280601f01601f191660200182016040528015612c765781602001600182028036833780820191505090505b5090505b60008514612d0357600182612c8f9190614194565b9150600a85612c9e919061432a565b6030612caa91906140b3565b60f81b818381518110612cc057612cbf6143e8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cfc9190614109565b9450612c7a565b8093505050505b919050565b50505050565b50505050565b612d288383836001612d50565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbd90613f03565b60405180910390fd5b6000841415612e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0190613f23565b60405180910390fd5b612e176000868387612d0f565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156130b157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561309c5761305c6000888488612985565b61309b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309290613ec3565b60405180910390fd5b5b81806001019250508080600101915050612fe5565b5080600081905550506130c76000868387612d15565b5050505050565b8280546130da9061427e565b90600052602060002090601f0160209004810192826130fc5760008555613143565b82601f1061311557805160ff1916838001178555613143565b82800160010185558215613143579182015b82811115613142578251825591602001919060010190613127565b5b509050613150919061318e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131a757600081600090555060010161318f565b5090565b60006131be6131b984614003565b613fde565b9050828152602081018484840111156131da576131d9614455565b5b6131e584828561423c565b509392505050565b60006132006131fb84614034565b613fde565b90508281526020810184848401111561321c5761321b614455565b5b61322784828561423c565b509392505050565b60008135905061323e81614ba0565b92915050565b60008083601f84011261325a5761325961444b565b5b8235905067ffffffffffffffff81111561327757613276614446565b5b60208301915083602082028301111561329357613292614450565b5b9250929050565b60008083601f8401126132b0576132af61444b565b5b8235905067ffffffffffffffff8111156132cd576132cc614446565b5b6020830191508360208202830111156132e9576132e8614450565b5b9250929050565b6000813590506132ff81614bb7565b92915050565b60008135905061331481614bce565b92915050565b60008151905061332981614bce565b92915050565b600082601f8301126133445761334361444b565b5b81356133548482602086016131ab565b91505092915050565b600082601f8301126133725761337161444b565b5b81356133828482602086016131ed565b91505092915050565b60008135905061339a81614be5565b92915050565b6000602082840312156133b6576133b561445f565b5b60006133c48482850161322f565b91505092915050565b600080604083850312156133e4576133e361445f565b5b60006133f28582860161322f565b92505060206134038582860161322f565b9150509250929050565b6000806000606084860312156134265761342561445f565b5b60006134348682870161322f565b93505060206134458682870161322f565b92505060406134568682870161338b565b9150509250925092565b6000806000806080858703121561347a5761347961445f565b5b60006134888782880161322f565b94505060206134998782880161322f565b93505060406134aa8782880161338b565b925050606085013567ffffffffffffffff8111156134cb576134ca61445a565b5b6134d78782880161332f565b91505092959194509250565b600080604083850312156134fa576134f961445f565b5b60006135088582860161322f565b9250506020613519858286016132f0565b9150509250929050565b6000806040838503121561353a5761353961445f565b5b60006135488582860161322f565b92505060206135598582860161338b565b9150509250929050565b6000806000806040858703121561357d5761357c61445f565b5b600085013567ffffffffffffffff81111561359b5761359a61445a565b5b6135a78782880161329a565b9450945050602085013567ffffffffffffffff8111156135ca576135c961445a565b5b6135d687828801613244565b925092505092959194509250565b6000602082840312156135fa576135f961445f565b5b600061360884828501613305565b91505092915050565b6000602082840312156136275761362661445f565b5b60006136358482850161331a565b91505092915050565b6000602082840312156136545761365361445f565b5b600082013567ffffffffffffffff8111156136725761367161445a565b5b61367e8482850161335d565b91505092915050565b60006020828403121561369d5761369c61445f565b5b60006136ab8482850161338b565b91505092915050565b6136bd816141c8565b82525050565b6136cc816141da565b82525050565b60006136dd82614065565b6136e7818561407b565b93506136f781856020860161424b565b61370081614464565b840191505092915050565b600061371682614070565b6137208185614097565b935061373081856020860161424b565b61373981614464565b840191505092915050565b600061374f82614070565b61375981856140a8565b935061376981856020860161424b565b80840191505092915050565b6000613782602283614097565b915061378d82614475565b604082019050919050565b60006137a5600b83614097565b91506137b0826144c4565b602082019050919050565b60006137c8602183614097565b91506137d3826144ed565b604082019050919050565b60006137eb602683614097565b91506137f68261453c565b604082019050919050565b600061380e602a83614097565b91506138198261458b565b604082019050919050565b6000613831601c83614097565b915061383c826145da565b602082019050919050565b6000613854602383614097565b915061385f82614603565b604082019050919050565b6000613877602583614097565b915061388282614652565b604082019050919050565b600061389a602183614097565b91506138a5826146a1565b604082019050919050565b60006138bd603983614097565b91506138c8826146f0565b604082019050919050565b60006138e0601a83614097565b91506138eb8261473f565b602082019050919050565b6000613903602b83614097565b915061390e82614768565b604082019050919050565b6000613926601383614097565b9150613931826147b7565b602082019050919050565b6000613949602683614097565b9150613954826147e0565b604082019050919050565b600061396c6005836140a8565b91506139778261482f565b600582019050919050565b600061398f600883614097565b915061399a82614858565b602082019050919050565b60006139b2602083614097565b91506139bd82614881565b602082019050919050565b60006139d5601a83614097565b91506139e0826148aa565b602082019050919050565b60006139f8603283614097565b9150613a03826148d3565b604082019050919050565b6000613a1b602283614097565b9150613a2682614922565b604082019050919050565b6000613a3e60008361408c565b9150613a4982614971565b600082019050919050565b6000613a61603383614097565b9150613a6c82614974565b604082019050919050565b6000613a84601b83614097565b9150613a8f826149c3565b602082019050919050565b6000613aa7602183614097565b9150613ab2826149ec565b604082019050919050565b6000613aca602883614097565b9150613ad582614a3b565b604082019050919050565b6000613aed602e83614097565b9150613af882614a8a565b604082019050919050565b6000613b10601f83614097565b9150613b1b82614ad9565b602082019050919050565b6000613b33602f83614097565b9150613b3e82614b02565b604082019050919050565b6000613b56602d83614097565b9150613b6182614b51565b604082019050919050565b613b7581614232565b82525050565b6000613b878285613744565b9150613b938284613744565b9150613b9e8261395f565b91508190509392505050565b6000613bb582613a31565b9150819050919050565b6000602082019050613bd460008301846136b4565b92915050565b6000608082019050613bef60008301876136b4565b613bfc60208301866136b4565b613c096040830185613b6c565b8181036060830152613c1b81846136d2565b905095945050505050565b6000602082019050613c3b60008301846136c3565b92915050565b60006020820190508181036000830152613c5b818461370b565b905092915050565b60006020820190508181036000830152613c7c81613775565b9050919050565b60006020820190508181036000830152613c9c81613798565b9050919050565b60006020820190508181036000830152613cbc816137bb565b9050919050565b60006020820190508181036000830152613cdc816137de565b9050919050565b60006020820190508181036000830152613cfc81613801565b9050919050565b60006020820190508181036000830152613d1c81613824565b9050919050565b60006020820190508181036000830152613d3c81613847565b9050919050565b60006020820190508181036000830152613d5c8161386a565b9050919050565b60006020820190508181036000830152613d7c8161388d565b9050919050565b60006020820190508181036000830152613d9c816138b0565b9050919050565b60006020820190508181036000830152613dbc816138d3565b9050919050565b60006020820190508181036000830152613ddc816138f6565b9050919050565b60006020820190508181036000830152613dfc81613919565b9050919050565b60006020820190508181036000830152613e1c8161393c565b9050919050565b60006020820190508181036000830152613e3c81613982565b9050919050565b60006020820190508181036000830152613e5c816139a5565b9050919050565b60006020820190508181036000830152613e7c816139c8565b9050919050565b60006020820190508181036000830152613e9c816139eb565b9050919050565b60006020820190508181036000830152613ebc81613a0e565b9050919050565b60006020820190508181036000830152613edc81613a54565b9050919050565b60006020820190508181036000830152613efc81613a77565b9050919050565b60006020820190508181036000830152613f1c81613a9a565b9050919050565b60006020820190508181036000830152613f3c81613abd565b9050919050565b60006020820190508181036000830152613f5c81613ae0565b9050919050565b60006020820190508181036000830152613f7c81613b03565b9050919050565b60006020820190508181036000830152613f9c81613b26565b9050919050565b60006020820190508181036000830152613fbc81613b49565b9050919050565b6000602082019050613fd86000830184613b6c565b92915050565b6000613fe8613ff9565b9050613ff482826142b0565b919050565b6000604051905090565b600067ffffffffffffffff82111561401e5761401d614417565b5b61402782614464565b9050602081019050919050565b600067ffffffffffffffff82111561404f5761404e614417565b5b61405882614464565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140be82614232565b91506140c983614232565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140fe576140fd61435b565b5b828201905092915050565b600061411482614232565b915061411f83614232565b92508261412f5761412e61438a565b5b828204905092915050565b600061414582614232565b915061415083614232565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141895761418861435b565b5b828202905092915050565b600061419f82614232565b91506141aa83614232565b9250828210156141bd576141bc61435b565b5b828203905092915050565b60006141d382614212565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561426957808201518184015260208101905061424e565b83811115614278576000848401525b50505050565b6000600282049050600182168061429657607f821691505b602082108114156142aa576142a96143b9565b5b50919050565b6142b982614464565b810181811067ffffffffffffffff821117156142d8576142d7614417565b5b80604052505050565b60006142ec82614232565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561431f5761431e61435b565b5b600182019050919050565b600061433582614232565b915061434083614232565b9250826143505761434f61438a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e74206d696e742030000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f43616e6e6f7420696e637265617365206d617820737570706c79000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614ba9816141c8565b8114614bb457600080fd5b50565b614bc0816141da565b8114614bcb57600080fd5b50565b614bd7816141e6565b8114614be257600080fd5b50565b614bee81614232565b8114614bf957600080fd5b5056fea2646970667358221220e2e97fa7df414e3f5833cf7a91d5682d9227cb7a50c78a741b767e3d36bad95b64736f6c6343000807003368747470733a2f2f6d656f7772756e6e6572732e6d7970696e6174612e636c6f75642f697066732f516d596434347751416e77457256683555787033656f64646a4b514578476550735a6737676366464156343775542f
Deployed Bytecode
0x6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107bb578063d5abeb01146107f8578063dc4e66b514610823578063e985e9c51461084c578063f2fde38b1461088957610225565b8063a0712d6814610708578063a22cb46514610724578063ad6ac81b1461074d578063b88d4fde14610769578063bde12d731461079257610225565b806377ad99f0116100f257806377ad99f0146106305780637c6b172d1461064c5780638da5cb5b1461068957806395d89b41146106b457806396ea3a47146106df57610225565b80636352211e146105745780636c0360eb146105b157806370a08231146105dc578063715018a61461061957610225565b80632f745c59116101b1578063485a68a311610175578063485a68a31461048d5780634f6ccce7146104b857806355f804b3146104f557806356569a1d1461051e5780635c975abb1461054957610225565b80632f745c59146103c957806334c8fd75146104065780633ccfd60b1461043157806342842e0e1461043b57806344a0d68a1461046457610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c578063228025e81461037757806323b872dd146103a057610225565b806301ffc9a71461022a578063022d67dd1461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906135e4565b6108b2565b60405161025e9190613c26565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613687565b6109fc565b005b34801561029c57600080fd5b506102a5610a82565b6040516102b29190613c41565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613687565b610b14565b6040516102ef9190613bbf565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190613523565b610b99565b005b34801561032d57600080fd5b50610336610cb2565b6040516103439190613fc3565b60405180910390f35b34801561035857600080fd5b50610361610cb8565b60405161036e9190613fc3565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613687565b610cc1565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061340d565b610d8c565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613523565b610d9c565b6040516103fd9190613fc3565b60405180910390f35b34801561041257600080fd5b5061041b610f8e565b6040516104289190613fc3565b60405180910390f35b610439610f94565b005b34801561044757600080fd5b50610462600480360381019061045d919061340d565b611089565b005b34801561047057600080fd5b5061048b60048036038101906104869190613687565b6110a9565b005b34801561049957600080fd5b506104a261112f565b6040516104af9190613fc3565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613687565b611135565b6040516104ec9190613fc3565b60405180910390f35b34801561050157600080fd5b5061051c6004803603810190610517919061363e565b611188565b005b34801561052a57600080fd5b5061053361121e565b6040516105409190613fc3565b60405180910390f35b34801561055557600080fd5b5061055e611224565b60405161056b9190613c26565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613687565b61123b565b6040516105a89190613bbf565b60405180910390f35b3480156105bd57600080fd5b506105c6611251565b6040516105d39190613c41565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe91906133a0565b6112df565b6040516106109190613fc3565b60405180910390f35b34801561062557600080fd5b5061062e6113c8565b005b61064a60048036038101906106459190613687565b611450565b005b34801561065857600080fd5b50610673600480360381019061066e91906133a0565b611546565b6040516106809190613fc3565b60405180910390f35b34801561069557600080fd5b5061069e61155e565b6040516106ab9190613bbf565b60405180910390f35b3480156106c057600080fd5b506106c9611588565b6040516106d69190613c41565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613563565b61161a565b005b610722600480360381019061071d9190613687565b6117fc565b005b34801561073057600080fd5b5061074b600480360381019061074691906134e3565b611962565b005b61076760048036038101906107629190613687565b611ae3565b005b34801561077557600080fd5b50610790600480360381019061078b9190613460565b611cf5565b005b34801561079e57600080fd5b506107b960048036038101906107b49190613687565b611d51565b005b3480156107c757600080fd5b506107e260048036038101906107dd9190613687565b611dd7565b6040516107ef9190613c41565b60405180910390f35b34801561080457600080fd5b5061080d611e7e565b60405161081a9190613fc3565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613687565b611e84565b005b34801561085857600080fd5b50610873600480360381019061086e91906133cd565b611f0a565b6040516108809190613c26565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab91906133a0565b611f9e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f557506109f482612096565b5b9050919050565b610a04612100565b73ffffffffffffffffffffffffffffffffffffffff16610a2261155e565b73ffffffffffffffffffffffffffffffffffffffff1614610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f90613e43565b60405180910390fd5b80600e8190555050565b606060018054610a919061427e565b80601f0160208091040260200160405190810160405280929190818152602001828054610abd9061427e565b8015610b0a5780601f10610adf57610100808354040283529160200191610b0a565b820191906000526020600020905b815481529060010190602001808311610aed57829003601f168201915b5050505050905090565b6000610b1f82612108565b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590613fa3565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba48261123b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90613ea3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c34612100565b73ffffffffffffffffffffffffffffffffffffffff161480610c635750610c6281610c5d612100565b611f0a565b5b610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9990613d83565b60405180910390fd5b610cad838383612115565b505050565b600a5481565b60008054905090565b610cc9612100565b73ffffffffffffffffffffffffffffffffffffffff16610ce761155e565b73ffffffffffffffffffffffffffffffffffffffff1614610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490613e43565b60405180910390fd5b600b54811115610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613da3565b60405180910390fd5b80600b8190555050565b610d978383836121c7565b505050565b6000610da7836112df565b8210610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90613c63565b60405180910390fd5b6000610df2610cb8565b905060008060005b83811015610f4c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eec57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f3e5786841415610f35578195505050505050610f88565b83806001019450505b508080600101915050610dfa565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613f43565b60405180910390fd5b92915050565b600e5481565b610f9c612100565b73ffffffffffffffffffffffffffffffffffffffff16610fba61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790613e43565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161103690613baa565b60006040518083038185875af1925050503d8060008114611073576040519150601f19603f3d011682016040523d82523d6000602084013e611078565b606091505b505090508061108657600080fd5b50565b6110a483838360405180602001604052806000815250611cf5565b505050565b6110b1612100565b73ffffffffffffffffffffffffffffffffffffffff166110cf61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90613e43565b60405180910390fd5b80600a8190555050565b600c5481565b600061113f610cb8565b8210611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790613d23565b60405180910390fd5b819050919050565b611190612100565b73ffffffffffffffffffffffffffffffffffffffff166111ae61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90613e43565b60405180910390fd5b806009908051906020019061121a9291906130ce565b5050565b600d5481565b6000600760149054906101000a900460ff16905090565b600061124682612707565b600001519050919050565b6009805461125e9061427e565b80601f016020809104026020016040519081016040528092919081815260200182805461128a9061427e565b80156112d75780601f106112ac576101008083540402835291602001916112d7565b820191906000526020600020905b8154815290600101906020018083116112ba57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790613dc3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113d0612100565b73ffffffffffffffffffffffffffffffffffffffff166113ee61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90613e43565b60405180910390fd5b61144e60006128a1565b565b611458612100565b73ffffffffffffffffffffffffffffffffffffffff1661147661155e565b73ffffffffffffffffffffffffffffffffffffffff16146114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390613e43565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516114f290613baa565b60006040518083038185875af1925050503d806000811461152f576040519150601f19603f3d011682016040523d82523d6000602084013e611534565b606091505b505090508061154257600080fd5b5050565b600f6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115979061427e565b80601f01602080910402602001604051908101604052809291908181526020018280546115c39061427e565b80156116105780601f106115e557610100808354040283529160200191611610565b820191906000526020600020905b8154815290600101906020018083116115f357829003601f168201915b5050505050905090565b611622612100565b73ffffffffffffffffffffffffffffffffffffffff1661164061155e565b73ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90613e43565b60405180910390fd5b8181905084849050146116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d590613d63565b60405180910390fd5b6000806116e9610cb8565b905060005b868690508110156117315786868281811061170c5761170b6143e8565b5b905060200201358361171e91906140b3565b92508061172a906142e1565b90506116ee565b50600b54828261174191906140b3565b1115611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990613e23565b60405180910390fd5b6000915060005b848490508110156117ef576117de8585838181106117aa576117a96143e8565b5b90506020020160208101906117bf91906133a0565b8888848181106117d2576117d16143e8565b5b90506020020135612967565b806117e8906142e1565b9050611789565b5060009050505050505050565b60026008541415611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990613f63565b60405180910390fd5b60026008819055506000611854610cb8565b905060008211611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090613c83565b60405180910390fd5b600e548211156118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d590613ee3565b60405180910390fd5b600b5482826118ed91906140b3565b111561192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590613de3565b60405180910390fd5b81600a5461193c919061413a565b34101561194857600080fd5b6119523383612967565b6000905050600160088190555050565b61196a612100565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90613e63565b60405180910390fd5b80600660006119e5612100565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a92612100565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad79190613c26565b60405180910390a35050565b60026008541415611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090613f63565b60405180910390fd5b60026008819055506000611b3b610cb8565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611b9091906140b3565b1115611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890613d03565b60405180910390fd5b60008311611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b90613c83565b60405180910390fd5b600c548383611c2391906140b3565b1115611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b90613de3565b60405180910390fd5b60005b83811015611cd557600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611cbf906142e1565b919050555080611cce906142e1565b9050611c67565b50611ce03384612967565b60009150600090505050600160088190555050565b611d008484846121c7565b611d0c84848484612985565b611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4290613ec3565b60405180910390fd5b50505050565b611d59612100565b73ffffffffffffffffffffffffffffffffffffffff16611d7761155e565b73ffffffffffffffffffffffffffffffffffffffff1614611dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc490613e43565b60405180910390fd5b80600c8190555050565b6060611de282612108565b611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613ca3565b60405180910390fd5b6000611e2b612b1c565b90506000815111611e4b5760405180602001604052806000815250611e76565b80611e5584612bae565b604051602001611e66929190613b7b565b6040516020818303038152906040525b915050919050565b600b5481565b611e8c612100565b73ffffffffffffffffffffffffffffffffffffffff16611eaa61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef790613e43565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fa6612100565b73ffffffffffffffffffffffffffffffffffffffff16611fc461155e565b73ffffffffffffffffffffffffffffffffffffffff161461201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190613e43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208190613cc3565b60405180910390fd5b612093816128a1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121d282612707565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121f9612100565b73ffffffffffffffffffffffffffffffffffffffff161480612255575061221e612100565b73ffffffffffffffffffffffffffffffffffffffff1661223d84610b14565b73ffffffffffffffffffffffffffffffffffffffff16145b806122715750612270826000015161226b612100565b611f0a565b5b9050806122b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122aa90613e83565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90613e03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90613d43565b60405180910390fd5b6123a28585856001612d0f565b6123b26000848460000151612115565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612697576125f681612108565b156126965782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127008585856001612d15565b5050505050565b61270f613154565b61271882612108565b612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90613ce3565b60405180910390fd5b60008290505b60008110612860576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461285157809250505061289c565b5080806001900391505061275d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289390613f83565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612981828260405180602001604052806000815250612d1b565b5050565b60006129a68473ffffffffffffffffffffffffffffffffffffffff16612d2d565b15612b0f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129cf612100565b8786866040518563ffffffff1660e01b81526004016129f19493929190613bda565b602060405180830381600087803b158015612a0b57600080fd5b505af1925050508015612a3c57506040513d601f19601f82011682018060405250810190612a399190613611565b60015b612abf573d8060008114612a6c576040519150601f19603f3d011682016040523d82523d6000602084013e612a71565b606091505b50600081511415612ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aae90613ec3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b14565b600190505b949350505050565b606060098054612b2b9061427e565b80601f0160208091040260200160405190810160405280929190818152602001828054612b579061427e565b8015612ba45780601f10612b7957610100808354040283529160200191612ba4565b820191906000526020600020905b815481529060010190602001808311612b8757829003601f168201915b5050505050905090565b60606000821415612bf6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d0a565b600082905060005b60008214612c28578080612c11906142e1565b915050600a82612c219190614109565b9150612bfe565b60008167ffffffffffffffff811115612c4457612c43614417565b5b6040519080825280601f01601f191660200182016040528015612c765781602001600182028036833780820191505090505b5090505b60008514612d0357600182612c8f9190614194565b9150600a85612c9e919061432a565b6030612caa91906140b3565b60f81b818381518110612cc057612cbf6143e8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cfc9190614109565b9450612c7a565b8093505050505b919050565b50505050565b50505050565b612d288383836001612d50565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbd90613f03565b60405180910390fd5b6000841415612e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0190613f23565b60405180910390fd5b612e176000868387612d0f565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156130b157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561309c5761305c6000888488612985565b61309b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309290613ec3565b60405180910390fd5b5b81806001019250508080600101915050612fe5565b5080600081905550506130c76000868387612d15565b5050505050565b8280546130da9061427e565b90600052602060002090601f0160209004810192826130fc5760008555613143565b82601f1061311557805160ff1916838001178555613143565b82800160010185558215613143579182015b82811115613142578251825591602001919060010190613127565b5b509050613150919061318e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131a757600081600090555060010161318f565b5090565b60006131be6131b984614003565b613fde565b9050828152602081018484840111156131da576131d9614455565b5b6131e584828561423c565b509392505050565b60006132006131fb84614034565b613fde565b90508281526020810184848401111561321c5761321b614455565b5b61322784828561423c565b509392505050565b60008135905061323e81614ba0565b92915050565b60008083601f84011261325a5761325961444b565b5b8235905067ffffffffffffffff81111561327757613276614446565b5b60208301915083602082028301111561329357613292614450565b5b9250929050565b60008083601f8401126132b0576132af61444b565b5b8235905067ffffffffffffffff8111156132cd576132cc614446565b5b6020830191508360208202830111156132e9576132e8614450565b5b9250929050565b6000813590506132ff81614bb7565b92915050565b60008135905061331481614bce565b92915050565b60008151905061332981614bce565b92915050565b600082601f8301126133445761334361444b565b5b81356133548482602086016131ab565b91505092915050565b600082601f8301126133725761337161444b565b5b81356133828482602086016131ed565b91505092915050565b60008135905061339a81614be5565b92915050565b6000602082840312156133b6576133b561445f565b5b60006133c48482850161322f565b91505092915050565b600080604083850312156133e4576133e361445f565b5b60006133f28582860161322f565b92505060206134038582860161322f565b9150509250929050565b6000806000606084860312156134265761342561445f565b5b60006134348682870161322f565b93505060206134458682870161322f565b92505060406134568682870161338b565b9150509250925092565b6000806000806080858703121561347a5761347961445f565b5b60006134888782880161322f565b94505060206134998782880161322f565b93505060406134aa8782880161338b565b925050606085013567ffffffffffffffff8111156134cb576134ca61445a565b5b6134d78782880161332f565b91505092959194509250565b600080604083850312156134fa576134f961445f565b5b60006135088582860161322f565b9250506020613519858286016132f0565b9150509250929050565b6000806040838503121561353a5761353961445f565b5b60006135488582860161322f565b92505060206135598582860161338b565b9150509250929050565b6000806000806040858703121561357d5761357c61445f565b5b600085013567ffffffffffffffff81111561359b5761359a61445a565b5b6135a78782880161329a565b9450945050602085013567ffffffffffffffff8111156135ca576135c961445a565b5b6135d687828801613244565b925092505092959194509250565b6000602082840312156135fa576135f961445f565b5b600061360884828501613305565b91505092915050565b6000602082840312156136275761362661445f565b5b60006136358482850161331a565b91505092915050565b6000602082840312156136545761365361445f565b5b600082013567ffffffffffffffff8111156136725761367161445a565b5b61367e8482850161335d565b91505092915050565b60006020828403121561369d5761369c61445f565b5b60006136ab8482850161338b565b91505092915050565b6136bd816141c8565b82525050565b6136cc816141da565b82525050565b60006136dd82614065565b6136e7818561407b565b93506136f781856020860161424b565b61370081614464565b840191505092915050565b600061371682614070565b6137208185614097565b935061373081856020860161424b565b61373981614464565b840191505092915050565b600061374f82614070565b61375981856140a8565b935061376981856020860161424b565b80840191505092915050565b6000613782602283614097565b915061378d82614475565b604082019050919050565b60006137a5600b83614097565b91506137b0826144c4565b602082019050919050565b60006137c8602183614097565b91506137d3826144ed565b604082019050919050565b60006137eb602683614097565b91506137f68261453c565b604082019050919050565b600061380e602a83614097565b91506138198261458b565b604082019050919050565b6000613831601c83614097565b915061383c826145da565b602082019050919050565b6000613854602383614097565b915061385f82614603565b604082019050919050565b6000613877602583614097565b915061388282614652565b604082019050919050565b600061389a602183614097565b91506138a5826146a1565b604082019050919050565b60006138bd603983614097565b91506138c8826146f0565b604082019050919050565b60006138e0601a83614097565b91506138eb8261473f565b602082019050919050565b6000613903602b83614097565b915061390e82614768565b604082019050919050565b6000613926601383614097565b9150613931826147b7565b602082019050919050565b6000613949602683614097565b9150613954826147e0565b604082019050919050565b600061396c6005836140a8565b91506139778261482f565b600582019050919050565b600061398f600883614097565b915061399a82614858565b602082019050919050565b60006139b2602083614097565b91506139bd82614881565b602082019050919050565b60006139d5601a83614097565b91506139e0826148aa565b602082019050919050565b60006139f8603283614097565b9150613a03826148d3565b604082019050919050565b6000613a1b602283614097565b9150613a2682614922565b604082019050919050565b6000613a3e60008361408c565b9150613a4982614971565b600082019050919050565b6000613a61603383614097565b9150613a6c82614974565b604082019050919050565b6000613a84601b83614097565b9150613a8f826149c3565b602082019050919050565b6000613aa7602183614097565b9150613ab2826149ec565b604082019050919050565b6000613aca602883614097565b9150613ad582614a3b565b604082019050919050565b6000613aed602e83614097565b9150613af882614a8a565b604082019050919050565b6000613b10601f83614097565b9150613b1b82614ad9565b602082019050919050565b6000613b33602f83614097565b9150613b3e82614b02565b604082019050919050565b6000613b56602d83614097565b9150613b6182614b51565b604082019050919050565b613b7581614232565b82525050565b6000613b878285613744565b9150613b938284613744565b9150613b9e8261395f565b91508190509392505050565b6000613bb582613a31565b9150819050919050565b6000602082019050613bd460008301846136b4565b92915050565b6000608082019050613bef60008301876136b4565b613bfc60208301866136b4565b613c096040830185613b6c565b8181036060830152613c1b81846136d2565b905095945050505050565b6000602082019050613c3b60008301846136c3565b92915050565b60006020820190508181036000830152613c5b818461370b565b905092915050565b60006020820190508181036000830152613c7c81613775565b9050919050565b60006020820190508181036000830152613c9c81613798565b9050919050565b60006020820190508181036000830152613cbc816137bb565b9050919050565b60006020820190508181036000830152613cdc816137de565b9050919050565b60006020820190508181036000830152613cfc81613801565b9050919050565b60006020820190508181036000830152613d1c81613824565b9050919050565b60006020820190508181036000830152613d3c81613847565b9050919050565b60006020820190508181036000830152613d5c8161386a565b9050919050565b60006020820190508181036000830152613d7c8161388d565b9050919050565b60006020820190508181036000830152613d9c816138b0565b9050919050565b60006020820190508181036000830152613dbc816138d3565b9050919050565b60006020820190508181036000830152613ddc816138f6565b9050919050565b60006020820190508181036000830152613dfc81613919565b9050919050565b60006020820190508181036000830152613e1c8161393c565b9050919050565b60006020820190508181036000830152613e3c81613982565b9050919050565b60006020820190508181036000830152613e5c816139a5565b9050919050565b60006020820190508181036000830152613e7c816139c8565b9050919050565b60006020820190508181036000830152613e9c816139eb565b9050919050565b60006020820190508181036000830152613ebc81613a0e565b9050919050565b60006020820190508181036000830152613edc81613a54565b9050919050565b60006020820190508181036000830152613efc81613a77565b9050919050565b60006020820190508181036000830152613f1c81613a9a565b9050919050565b60006020820190508181036000830152613f3c81613abd565b9050919050565b60006020820190508181036000830152613f5c81613ae0565b9050919050565b60006020820190508181036000830152613f7c81613b03565b9050919050565b60006020820190508181036000830152613f9c81613b26565b9050919050565b60006020820190508181036000830152613fbc81613b49565b9050919050565b6000602082019050613fd86000830184613b6c565b92915050565b6000613fe8613ff9565b9050613ff482826142b0565b919050565b6000604051905090565b600067ffffffffffffffff82111561401e5761401d614417565b5b61402782614464565b9050602081019050919050565b600067ffffffffffffffff82111561404f5761404e614417565b5b61405882614464565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140be82614232565b91506140c983614232565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140fe576140fd61435b565b5b828201905092915050565b600061411482614232565b915061411f83614232565b92508261412f5761412e61438a565b5b828204905092915050565b600061414582614232565b915061415083614232565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141895761418861435b565b5b828202905092915050565b600061419f82614232565b91506141aa83614232565b9250828210156141bd576141bc61435b565b5b828203905092915050565b60006141d382614212565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561426957808201518184015260208101905061424e565b83811115614278576000848401525b50505050565b6000600282049050600182168061429657607f821691505b602082108114156142aa576142a96143b9565b5b50919050565b6142b982614464565b810181811067ffffffffffffffff821117156142d8576142d7614417565b5b80604052505050565b60006142ec82614232565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561431f5761431e61435b565b5b600182019050919050565b600061433582614232565b915061434083614232565b9250826143505761434f61438a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e74206d696e742030000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f43616e6e6f7420696e637265617365206d617820737570706c79000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614ba9816141c8565b8114614bb457600080fd5b50565b614bc0816141da565b8114614bcb57600080fd5b50565b614bd7816141e6565b8114614be257600080fd5b50565b614bee81614232565b8114614bf957600080fd5b5056fea2646970667358221220e2e97fa7df414e3f5833cf7a91d5682d9227cb7a50c78a741b767e3d36bad95b64736f6c63430008070033
Deployed Bytecode Sourcemap
45155:4056:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24836:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48582:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26722:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28284:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27805:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45290:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23093:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48150:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29160:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23757:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45453:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48836:192;;;:::i;:::-;;29393:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48056:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45369:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23270:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48470:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45405:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39006:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26531:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45262:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25272:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41823:94;;;;;;;;;;;;;:::i;:::-;;49036:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45505:59;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41172:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26891:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46924:667;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46483:433;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28570:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45864:609;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29641:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48339:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47599:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45330:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48712:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28929:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42072:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24836:372;24938:4;24990:25;24975:40;;;:11;:40;;;;:105;;;;25047:33;25032:48;;;:11;:48;;;;24975:105;:172;;;;25112:35;25097:50;;;:11;:50;;;;24975:172;:225;;;;25164:36;25188:11;25164:23;:36::i;:::-;24975:225;24955:245;;24836:372;;;:::o;48582:122::-;41403:12;:10;:12::i;:::-;41392:23;;:7;:5;:7::i;:::-;:23;;;41384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48689:7:::1;48663:23;:33;;;;48582:122:::0;:::o;26722:100::-;26776:13;26809:5;26802:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26722:100;:::o;28284:214::-;28352:7;28380:16;28388:7;28380;:16::i;:::-;28372:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28466:15;:24;28482:7;28466:24;;;;;;;;;;;;;;;;;;;;;28459:31;;28284:214;;;:::o;27805:413::-;27878:13;27894:24;27910:7;27894:15;:24::i;:::-;27878:40;;27943:5;27937:11;;:2;:11;;;;27929:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28038:5;28022:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28047:37;28064:5;28071:12;:10;:12::i;:::-;28047:16;:37::i;:::-;28022:62;28000:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;28182:28;28191:2;28195:7;28204:5;28182:8;:28::i;:::-;27867:351;27805:413;;:::o;45290:33::-;;;;:::o;23093:100::-;23146:7;23173:12;;23166:19;;23093:100;:::o;48150:182::-;41403:12;:10;:12::i;:::-;41392:23;;:7;:5;:7::i;:::-;:23;;;41384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48248:9:::1;;48231:13;:26;;48223:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48311:13;48299:9;:25;;;;48150:182:::0;:::o;29160:162::-;29286:28;29296:4;29302:2;29306:7;29286:9;:28::i;:::-;29160:162;;;:::o;23757:1007::-;23846:7;23882:16;23892:5;23882:9;:16::i;:::-;23874:5;:24;23866:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23948:22;23973:13;:11;:13::i;:::-;23948:38;;23997:19;24027:25;24216:9;24211:466;24231:14;24227:1;:18;24211:466;;;24271:31;24305:11;:14;24317:1;24305:14;;;;;;;;;;;24271:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24368:1;24342:28;;:9;:14;;;:28;;;24338:111;;24415:9;:14;;;24395:34;;24338:111;24492:5;24471:26;;:17;:26;;;24467:195;;;24541:5;24526:11;:20;24522:85;;;24582:1;24575:8;;;;;;;;;24522:85;24629:13;;;;;;;24467:195;24252:425;24247:3;;;;;;;24211:466;;;;24700:56;;;;;;;;;;:::i;:::-;;;;;;;;23757:1007;;;;;:::o;45453:43::-;;;;:::o;48836:192::-;41403:12;:10;:12::i;:::-;41392:23;;:7;:5;:7::i;:::-;:23;;;41384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48893:12:::1;48919:10;48911:24;;48957:21;48911:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48892:101;;;49012:7;49004:16;;;::::0;::::1;;48881:147;48836:192::o:0;29393:177::-;29523:39;29540:4;29546:2;29550:7;29523:39;;;;;;;;;;;;:16;:39::i;:::-;29393:177;;;:::o;48056:86::-;41403:12;:10;:12::i;:::-;41392:23;;:7;:5;:7::i;:::-;:23;;;41384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48126:8:::1;48119:4;:15;;;;48056:86:::0;:::o;45369:29::-;;;;:::o;23270:187::-;23337:7;23373:13;:11;:13::i;:::-;23365:5;:21;23357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23444:5;23437:12;;23270:187;;;:::o;48470:104::-;41403:12;:10;:12::i;:::-;41392:23;;:7;:5;:7::i;:::-;:23;;;41384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48555:11:::1;48545:7;:21;;;;;;;;;;;;:::i;:::-;;48470:104:::0;:::o;45405:41::-;;;;:::o;39006:86::-;39053:4;39077:7;;;;;;;;;;;39070:14;;39006:86;:::o;26531:124::-;26595:7;26622:20;26634:7;26622:11;:20::i;:::-;:25;;;26615:32;;26531:124;;;:::o;45262:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25272:221::-;25336:7;25381:1;25364:19;;:5;:19;;;;25356:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25457:12;:19;25470:5;25457:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25449:36;;25442:43;;25272:221;;;:::o;41823:94::-;41403:12;:10;:12::i;:::-;41392:23;;:7;:5;:7::i;:::-;:23;;;41384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41888:21:::1;41906:1;41888:9;:21::i;:::-;41823:94::o:0;49036:172::-;41403:12;:10;:12::i;:::-;41392:23;;:7;:5;:7::i;:::-;:23;;;41384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49111:12:::1;49137:10;49129:24;;49161:7;49129:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49110:63;;;49192:7;49184:16;;;::::0;::::1;;49099:109;49036:172:::0;:::o;45505:59::-;;;;;;;;;;;;;;;;;:::o;41172:87::-;41218:7;41245:6;;;;;;;;;;;41238:13;;41172:87;:::o;26891:104::-;26947:13;26980:7;26973:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26891:104;:::o;46924:667::-;41403:12;:10;:12::i;:::-;41392:23;;:7;:5;:7::i;:::-;:23;;;41384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47091:9:::1;;:16;;47072:8;;:15;;:35;47050:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;47179:21;47215:9:::0;47227:13:::1;:11;:13::i;:::-;47215:25;;47256:9;47251:101;47275:8;;:15;;47271:1;:19;47251:101;;;47329:8;;47338:1;47329:11;;;;;;;:::i;:::-;;;;;;;;47312:28;;;;;:::i;:::-;;;47292:3;;;;:::i;:::-;;;47251:101;;;;47391:9;;47374:13;47370:1;:17;;;;:::i;:::-;:30;;47362:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;47424:20;;;47460:9;47455:110;47479:9;;:16;;47475:1;:20;47455:110;;;47517:36;47527:9;;47537:1;47527:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;47541:8;;47550:1;47541:11;;;;;;;:::i;:::-;;;;;;;;47517:9;:36::i;:::-;47497:3;;;;:::i;:::-;;;47455:110;;;;47575:8;;;47039:552;;46924:667:::0;;;;:::o;46483:433::-;44167:1;44763:7;;:19;;44755:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44167:1;44896:7;:18;;;;46557:9:::1;46569:13;:11;:13::i;:::-;46557:25;;46615:1;46601:11;:15;46593:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;46666:23;;46651:11;:38;;46643:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;46760:9;;46745:11;46741:1;:15;;;;:::i;:::-;:28;;46733:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;46832:11;46825:4;;:18;;;;:::i;:::-;46812:9;:31;;46804:40;;;::::0;::::1;;46855:34;46865:10;46877:11;46855:9;:34::i;:::-;46900:8;;;46546:370;44123:1:::0;45075:7;:22;;;;46483:433;:::o;28570:288::-;28677:12;:10;:12::i;:::-;28665:24;;:8;:24;;;;28657:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28778:8;28733:18;:32;28752:12;:10;:12::i;:::-;28733:32;;;;;;;;;;;;;;;:42;28766:8;28733:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28831:8;28802:48;;28817:12;:10;:12::i;:::-;28802:48;;;28841:8;28802:48;;;;;;:::i;:::-;;;;;;;;28570:288;;:::o;45864:609::-;44167:1;44763:7;;:19;;44755:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44167:1;44896:7;:18;;;;45935:9:::1;45947:13;:11;:13::i;:::-;45935:25;;45971:30;46004:24;:36;46029:10;46004:36;;;;;;;;;;;;;;;;45971:69;;46099:22;;46084:11;46059:22;:36;;;;:::i;:::-;:62;;46051:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;46181:1;46167:11;:15;46159:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;46231:7;;46216:11;46212:1;:15;;;;:::i;:::-;:26;;46204:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;46273:9;46268:103;46292:11;46288:1;:15;46268:103;;;46325:24;:36;46350:10;46325:36;;;;;;;;;;;;;;;;:38;;;;;;;;;:::i;:::-;;;;;;46305:3;;;;:::i;:::-;;;46268:103;;;;46381:34;46391:10;46403:11;46381:9;:34::i;:::-;46420:8;;;46439:29;;;45930:543;;44123:1:::0;45075:7;:22;;;;45864:609;:::o;29641:355::-;29800:28;29810:4;29816:2;29820:7;29800:9;:28::i;:::-;29861:48;29884:4;29890:2;29894:7;29903:5;29861:22;:48::i;:::-;29839:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;29641:355;;;;:::o;48339:123::-;41403:12;:10;:12::i;:::-;41392:23;;:7;:5;:7::i;:::-;:23;;;41384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48437:17:::1;48427:7;:27;;;;48339:123:::0;:::o;47599:445::-;47717:13;47756:16;47764:7;47756;:16::i;:::-;47748:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47821:28;47852:10;:8;:10::i;:::-;47821:41;;47924:1;47899:14;47893:28;:32;:143;;;;;;;;;;;;;;;;;47969:14;47985:18;:7;:16;:18::i;:::-;47952:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47893:143;47873:163;;;47599:445;;;:::o;45330:32::-;;;;:::o;48712:118::-;41403:12;:10;:12::i;:::-;41392:23;;:7;:5;:7::i;:::-;:23;;;41384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48815:7:::1;48790:22;:32;;;;48712:118:::0;:::o;28929:164::-;29026:4;29050:18;:25;29069:5;29050:25;;;;;;;;;;;;;;;:35;29076:8;29050:35;;;;;;;;;;;;;;;;;;;;;;;;;29043:42;;28929:164;;;;:::o;42072:229::-;41403:12;:10;:12::i;:::-;41392:23;;:7;:5;:7::i;:::-;:23;;;41384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42195:1:::1;42175:22;;:8;:22;;;;42153:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;42274:19;42284:8;42274:9;:19::i;:::-;42072:229:::0;:::o;14356:157::-;14441:4;14480:25;14465:40;;;:11;:40;;;;14458:47;;14356:157;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;30251:111::-;30308:4;30342:12;;30332:7;:22;30325:29;;30251:111;;;:::o;35171:196::-;35313:2;35286:15;:24;35302:7;35286:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35351:7;35347:2;35331:28;;35340:5;35331:28;;;;;;;;;;;;35171:196;;;:::o;33051:2002::-;33166:35;33204:20;33216:7;33204:11;:20::i;:::-;33166:58;;33237:22;33279:13;:18;;;33263:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;33338:12;:10;:12::i;:::-;33314:36;;:20;33326:7;33314:11;:20::i;:::-;:36;;;33263:87;:154;;;;33367:50;33384:13;:18;;;33404:12;:10;:12::i;:::-;33367:16;:50::i;:::-;33263:154;33237:181;;33439:17;33431:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;33554:4;33532:26;;:13;:18;;;:26;;;33524:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;33634:1;33620:16;;:2;:16;;;;33612:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;33691:43;33713:4;33719:2;33723:7;33732:1;33691:21;:43::i;:::-;33799:49;33816:1;33820:7;33829:13;:18;;;33799:8;:49::i;:::-;34174:1;34144:12;:18;34157:4;34144:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34218:1;34190:12;:16;34203:2;34190:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34264:2;34236:11;:20;34248:7;34236:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;34326:15;34281:11;:20;34293:7;34281:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;34594:19;34626:1;34616:7;:11;34594:33;;34687:1;34646:43;;:11;:24;34658:11;34646:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;34642:295;;;34714:20;34722:11;34714:7;:20::i;:::-;34710:212;;;34791:13;:18;;;34759:11;:24;34771:11;34759:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;34874:13;:28;;;34832:11;:24;34844:11;34832:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;34710:212;34642:295;34119:829;34984:7;34980:2;34965:27;;34974:4;34965:27;;;;;;;;;;;;35003:42;35024:4;35030:2;35034:7;35043:1;35003:20;:42::i;:::-;33155:1898;;33051:2002;;;:::o;25932:537::-;25993:21;;:::i;:::-;26035:16;26043:7;26035;:16::i;:::-;26027:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26141:12;26156:7;26141:22;;26136:245;26173:1;26165:4;:9;26136:245;;26203:31;26237:11;:17;26249:4;26237:17;;;;;;;;;;;26203:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26303:1;26277:28;;:9;:14;;;:28;;;26273:93;;26337:9;26330:16;;;;;;26273:93;26184:197;26176:6;;;;;;;;26136:245;;;;26404:57;;;;;;;;;;:::i;:::-;;;;;;;;25932:537;;;;:::o;42309:173::-;42365:16;42384:6;;;;;;;;;;;42365:25;;42410:8;42401:6;;:17;;;;;;;;;;;;;;;;;;42465:8;42434:40;;42455:8;42434:40;;;;;;;;;;;;42354:128;42309:173;:::o;30370:104::-;30439:27;30449:2;30453:8;30439:27;;;;;;;;;;;;:9;:27::i;:::-;30370:104;;:::o;35932:804::-;36087:4;36108:15;:2;:13;;;:15::i;:::-;36104:625;;;36160:2;36144:36;;;36181:12;:10;:12::i;:::-;36195:4;36201:7;36210:5;36144:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36140:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36407:1;36390:6;:13;:18;36386:273;;;36433:61;;;;;;;;;;:::i;:::-;;;;;;;;36386:273;36609:6;36603:13;36594:6;36590:2;36586:15;36579:38;36140:534;36277:45;;;36267:55;;;:6;:55;;;;36260:62;;;;;36104:625;36713:4;36706:11;;35932:804;;;;;;;:::o;45748:108::-;45808:13;45841:7;45834:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45748:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;37224:159::-;;;;;:::o;37795:158::-;;;;;:::o;30837:163::-;30960:32;30966:2;30970:8;30980:5;30987:4;30960:5;:32::i;:::-;30837:163;;;:::o;4250:326::-;4310:4;4567:1;4545:7;:19;;;:23;4538:30;;4250:326;;;:::o;31259:1538::-;31398:20;31421:12;;31398:35;;31466:1;31452:16;;:2;:16;;;;31444:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31537:1;31525:8;:13;;31517:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31596:61;31626:1;31630:2;31634:12;31648:8;31596:21;:61::i;:::-;31971:8;31935:12;:16;31948:2;31935:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32036:8;31995:12;:16;32008:2;31995:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32095:2;32062:11;:25;32074:12;32062:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32162:15;32112:11;:25;32124:12;32112:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32195:20;32218:12;32195:35;;32252:9;32247:415;32267:8;32263:1;:12;32247:415;;;32331:12;32327:2;32306:38;;32323:1;32306:38;;;;;;;;;;;;32367:4;32363:249;;;32430:59;32461:1;32465:2;32469:12;32483:5;32430:22;:59::i;:::-;32396:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;32363:249;32632:14;;;;;;;32277:3;;;;;;;32247:415;;;;32693:12;32678;:27;;;;31910:807;32729:60;32758:1;32762:2;32766:12;32780:8;32729:20;:60::i;:::-;31387:1410;31259:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::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;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:137::-;2352:5;2390:6;2377:20;2368:29;;2406:32;2432:5;2406:32;:::i;:::-;2307:137;;;;:::o;2450:141::-;2506:5;2537:6;2531:13;2522:22;;2553:32;2579:5;2553:32;:::i;:::-;2450:141;;;;:::o;2610:338::-;2665:5;2714:3;2707:4;2699:6;2695:17;2691:27;2681:122;;2722:79;;:::i;:::-;2681:122;2839:6;2826:20;2864:78;2938:3;2930:6;2923:4;2915:6;2911:17;2864:78;:::i;:::-;2855:87;;2671:277;2610:338;;;;:::o;2968:340::-;3024:5;3073:3;3066:4;3058:6;3054:17;3050:27;3040:122;;3081:79;;:::i;:::-;3040:122;3198:6;3185:20;3223:79;3298:3;3290:6;3283:4;3275:6;3271:17;3223:79;:::i;:::-;3214:88;;3030:278;2968:340;;;;:::o;3314:139::-;3360:5;3398:6;3385:20;3376:29;;3414:33;3441:5;3414:33;:::i;:::-;3314:139;;;;:::o;3459:329::-;3518:6;3567:2;3555:9;3546:7;3542:23;3538:32;3535:119;;;3573:79;;:::i;:::-;3535:119;3693:1;3718:53;3763:7;3754:6;3743:9;3739:22;3718:53;:::i;:::-;3708:63;;3664:117;3459:329;;;;:::o;3794:474::-;3862:6;3870;3919:2;3907:9;3898:7;3894:23;3890:32;3887:119;;;3925:79;;:::i;:::-;3887:119;4045:1;4070:53;4115:7;4106:6;4095:9;4091:22;4070:53;:::i;:::-;4060:63;;4016:117;4172:2;4198:53;4243:7;4234:6;4223:9;4219:22;4198:53;:::i;:::-;4188:63;;4143:118;3794:474;;;;;:::o;4274:619::-;4351:6;4359;4367;4416:2;4404:9;4395:7;4391:23;4387:32;4384:119;;;4422:79;;:::i;:::-;4384:119;4542:1;4567:53;4612:7;4603:6;4592:9;4588:22;4567:53;:::i;:::-;4557:63;;4513:117;4669:2;4695:53;4740:7;4731:6;4720:9;4716:22;4695:53;:::i;:::-;4685:63;;4640:118;4797:2;4823:53;4868:7;4859:6;4848:9;4844:22;4823:53;:::i;:::-;4813:63;;4768:118;4274:619;;;;;:::o;4899:943::-;4994:6;5002;5010;5018;5067:3;5055:9;5046:7;5042:23;5038:33;5035:120;;;5074:79;;:::i;:::-;5035:120;5194:1;5219:53;5264:7;5255:6;5244:9;5240:22;5219:53;:::i;:::-;5209:63;;5165:117;5321:2;5347:53;5392:7;5383:6;5372:9;5368:22;5347:53;:::i;:::-;5337:63;;5292:118;5449:2;5475:53;5520:7;5511:6;5500:9;5496:22;5475:53;:::i;:::-;5465:63;;5420:118;5605:2;5594:9;5590:18;5577:32;5636:18;5628:6;5625:30;5622:117;;;5658:79;;:::i;:::-;5622:117;5763:62;5817:7;5808:6;5797:9;5793:22;5763:62;:::i;:::-;5753:72;;5548:287;4899:943;;;;;;;:::o;5848:468::-;5913:6;5921;5970:2;5958:9;5949:7;5945:23;5941:32;5938:119;;;5976:79;;:::i;:::-;5938:119;6096:1;6121:53;6166:7;6157:6;6146:9;6142:22;6121:53;:::i;:::-;6111:63;;6067:117;6223:2;6249:50;6291:7;6282:6;6271:9;6267:22;6249:50;:::i;:::-;6239:60;;6194:115;5848:468;;;;;:::o;6322:474::-;6390:6;6398;6447:2;6435:9;6426:7;6422:23;6418:32;6415:119;;;6453:79;;:::i;:::-;6415:119;6573:1;6598:53;6643:7;6634:6;6623:9;6619:22;6598:53;:::i;:::-;6588:63;;6544:117;6700:2;6726:53;6771:7;6762:6;6751:9;6747:22;6726:53;:::i;:::-;6716:63;;6671:118;6322:474;;;;;:::o;6802:934::-;6924:6;6932;6940;6948;6997:2;6985:9;6976:7;6972:23;6968:32;6965:119;;;7003:79;;:::i;:::-;6965:119;7151:1;7140:9;7136:17;7123:31;7181:18;7173:6;7170:30;7167:117;;;7203:79;;:::i;:::-;7167:117;7316:80;7388:7;7379:6;7368:9;7364:22;7316:80;:::i;:::-;7298:98;;;;7094:312;7473:2;7462:9;7458:18;7445:32;7504:18;7496:6;7493:30;7490:117;;;7526:79;;:::i;:::-;7490:117;7639:80;7711:7;7702:6;7691:9;7687:22;7639:80;:::i;:::-;7621:98;;;;7416:313;6802:934;;;;;;;:::o;7742:327::-;7800:6;7849:2;7837:9;7828:7;7824:23;7820:32;7817:119;;;7855:79;;:::i;:::-;7817:119;7975:1;8000:52;8044:7;8035:6;8024:9;8020:22;8000:52;:::i;:::-;7990:62;;7946:116;7742:327;;;;:::o;8075:349::-;8144:6;8193:2;8181:9;8172:7;8168:23;8164:32;8161:119;;;8199:79;;:::i;:::-;8161:119;8319:1;8344:63;8399:7;8390:6;8379:9;8375:22;8344:63;:::i;:::-;8334:73;;8290:127;8075:349;;;;:::o;8430:509::-;8499:6;8548:2;8536:9;8527:7;8523:23;8519:32;8516:119;;;8554:79;;:::i;:::-;8516:119;8702:1;8691:9;8687:17;8674:31;8732:18;8724:6;8721:30;8718:117;;;8754:79;;:::i;:::-;8718:117;8859:63;8914:7;8905:6;8894:9;8890:22;8859:63;:::i;:::-;8849:73;;8645:287;8430:509;;;;:::o;8945:329::-;9004:6;9053:2;9041:9;9032:7;9028:23;9024:32;9021:119;;;9059:79;;:::i;:::-;9021:119;9179:1;9204:53;9249:7;9240:6;9229:9;9225:22;9204:53;:::i;:::-;9194:63;;9150:117;8945:329;;;;:::o;9280:118::-;9367:24;9385:5;9367:24;:::i;:::-;9362:3;9355:37;9280:118;;:::o;9404:109::-;9485:21;9500:5;9485:21;:::i;:::-;9480:3;9473:34;9404:109;;:::o;9519:360::-;9605:3;9633:38;9665:5;9633:38;:::i;:::-;9687:70;9750:6;9745:3;9687:70;:::i;:::-;9680:77;;9766:52;9811:6;9806:3;9799:4;9792:5;9788:16;9766:52;:::i;:::-;9843:29;9865:6;9843:29;:::i;:::-;9838:3;9834:39;9827:46;;9609:270;9519:360;;;;:::o;9885:364::-;9973:3;10001:39;10034:5;10001:39;:::i;:::-;10056:71;10120:6;10115:3;10056:71;:::i;:::-;10049:78;;10136:52;10181:6;10176:3;10169:4;10162:5;10158:16;10136:52;:::i;:::-;10213:29;10235:6;10213:29;:::i;:::-;10208:3;10204:39;10197:46;;9977:272;9885:364;;;;:::o;10255:377::-;10361:3;10389:39;10422:5;10389:39;:::i;:::-;10444:89;10526:6;10521:3;10444:89;:::i;:::-;10437:96;;10542:52;10587:6;10582:3;10575:4;10568:5;10564:16;10542:52;:::i;:::-;10619:6;10614:3;10610:16;10603:23;;10365:267;10255:377;;;;:::o;10638:366::-;10780:3;10801:67;10865:2;10860:3;10801:67;:::i;:::-;10794:74;;10877:93;10966:3;10877:93;:::i;:::-;10995:2;10990:3;10986:12;10979:19;;10638:366;;;:::o;11010:::-;11152:3;11173:67;11237:2;11232:3;11173:67;:::i;:::-;11166:74;;11249:93;11338:3;11249:93;:::i;:::-;11367:2;11362:3;11358:12;11351:19;;11010:366;;;:::o;11382:::-;11524:3;11545:67;11609:2;11604:3;11545:67;:::i;:::-;11538:74;;11621:93;11710:3;11621:93;:::i;:::-;11739:2;11734:3;11730:12;11723:19;;11382:366;;;:::o;11754:::-;11896:3;11917:67;11981:2;11976:3;11917:67;:::i;:::-;11910:74;;11993:93;12082:3;11993:93;:::i;:::-;12111:2;12106:3;12102:12;12095:19;;11754:366;;;:::o;12126:::-;12268:3;12289:67;12353:2;12348:3;12289:67;:::i;:::-;12282:74;;12365:93;12454:3;12365:93;:::i;:::-;12483:2;12478:3;12474:12;12467:19;;12126:366;;;:::o;12498:::-;12640:3;12661:67;12725:2;12720:3;12661:67;:::i;:::-;12654:74;;12737:93;12826:3;12737:93;:::i;:::-;12855:2;12850:3;12846:12;12839:19;;12498:366;;;:::o;12870:::-;13012:3;13033:67;13097:2;13092:3;13033:67;:::i;:::-;13026:74;;13109:93;13198:3;13109:93;:::i;:::-;13227:2;13222:3;13218:12;13211:19;;12870:366;;;:::o;13242:::-;13384:3;13405:67;13469:2;13464:3;13405:67;:::i;:::-;13398:74;;13481:93;13570:3;13481:93;:::i;:::-;13599:2;13594:3;13590:12;13583:19;;13242:366;;;:::o;13614:::-;13756:3;13777:67;13841:2;13836:3;13777:67;:::i;:::-;13770:74;;13853:93;13942:3;13853:93;:::i;:::-;13971:2;13966:3;13962:12;13955:19;;13614:366;;;:::o;13986:::-;14128:3;14149:67;14213:2;14208:3;14149:67;:::i;:::-;14142:74;;14225:93;14314:3;14225:93;:::i;:::-;14343:2;14338:3;14334:12;14327:19;;13986:366;;;:::o;14358:::-;14500:3;14521:67;14585:2;14580:3;14521:67;:::i;:::-;14514:74;;14597:93;14686:3;14597:93;:::i;:::-;14715:2;14710:3;14706:12;14699:19;;14358:366;;;:::o;14730:::-;14872:3;14893:67;14957:2;14952:3;14893:67;:::i;:::-;14886:74;;14969:93;15058:3;14969:93;:::i;:::-;15087:2;15082:3;15078:12;15071:19;;14730:366;;;:::o;15102:::-;15244:3;15265:67;15329:2;15324:3;15265:67;:::i;:::-;15258:74;;15341:93;15430:3;15341:93;:::i;:::-;15459:2;15454:3;15450:12;15443:19;;15102:366;;;:::o;15474:::-;15616:3;15637:67;15701:2;15696:3;15637:67;:::i;:::-;15630:74;;15713:93;15802:3;15713:93;:::i;:::-;15831:2;15826:3;15822:12;15815:19;;15474:366;;;:::o;15846:400::-;16006:3;16027:84;16109:1;16104:3;16027:84;:::i;:::-;16020:91;;16120:93;16209:3;16120:93;:::i;:::-;16238:1;16233:3;16229:11;16222:18;;15846:400;;;:::o;16252:365::-;16394:3;16415:66;16479:1;16474:3;16415:66;:::i;:::-;16408:73;;16490:93;16579:3;16490:93;:::i;:::-;16608:2;16603:3;16599:12;16592:19;;16252:365;;;:::o;16623:366::-;16765:3;16786:67;16850:2;16845:3;16786:67;:::i;:::-;16779:74;;16862:93;16951:3;16862:93;:::i;:::-;16980:2;16975:3;16971:12;16964:19;;16623:366;;;:::o;16995:::-;17137:3;17158:67;17222:2;17217:3;17158:67;:::i;:::-;17151:74;;17234:93;17323:3;17234:93;:::i;:::-;17352:2;17347:3;17343:12;17336:19;;16995:366;;;:::o;17367:::-;17509:3;17530:67;17594:2;17589:3;17530:67;:::i;:::-;17523:74;;17606:93;17695:3;17606:93;:::i;:::-;17724:2;17719:3;17715:12;17708:19;;17367:366;;;:::o;17739:::-;17881:3;17902:67;17966:2;17961:3;17902:67;:::i;:::-;17895:74;;17978:93;18067:3;17978:93;:::i;:::-;18096:2;18091:3;18087:12;18080:19;;17739:366;;;:::o;18111:398::-;18270:3;18291:83;18372:1;18367:3;18291:83;:::i;:::-;18284:90;;18383:93;18472:3;18383:93;:::i;:::-;18501:1;18496:3;18492:11;18485:18;;18111:398;;;:::o;18515:366::-;18657:3;18678:67;18742:2;18737:3;18678:67;:::i;:::-;18671:74;;18754:93;18843:3;18754:93;:::i;:::-;18872:2;18867:3;18863:12;18856:19;;18515:366;;;:::o;18887:::-;19029:3;19050:67;19114:2;19109:3;19050:67;:::i;:::-;19043:74;;19126:93;19215:3;19126:93;:::i;:::-;19244:2;19239:3;19235:12;19228:19;;18887:366;;;:::o;19259:::-;19401:3;19422:67;19486:2;19481:3;19422:67;:::i;:::-;19415:74;;19498:93;19587:3;19498:93;:::i;:::-;19616:2;19611:3;19607:12;19600:19;;19259:366;;;:::o;19631:::-;19773:3;19794:67;19858:2;19853:3;19794:67;:::i;:::-;19787:74;;19870:93;19959:3;19870:93;:::i;:::-;19988:2;19983:3;19979:12;19972:19;;19631:366;;;:::o;20003:::-;20145:3;20166:67;20230:2;20225:3;20166:67;:::i;:::-;20159:74;;20242:93;20331:3;20242:93;:::i;:::-;20360:2;20355:3;20351:12;20344:19;;20003:366;;;:::o;20375:::-;20517:3;20538:67;20602:2;20597:3;20538:67;:::i;:::-;20531:74;;20614:93;20703:3;20614:93;:::i;:::-;20732:2;20727:3;20723:12;20716:19;;20375:366;;;:::o;20747:::-;20889:3;20910:67;20974:2;20969:3;20910:67;:::i;:::-;20903:74;;20986:93;21075:3;20986:93;:::i;:::-;21104:2;21099:3;21095:12;21088:19;;20747:366;;;:::o;21119:::-;21261:3;21282:67;21346:2;21341:3;21282:67;:::i;:::-;21275:74;;21358:93;21447:3;21358:93;:::i;:::-;21476:2;21471:3;21467:12;21460:19;;21119:366;;;:::o;21491:118::-;21578:24;21596:5;21578:24;:::i;:::-;21573:3;21566:37;21491:118;;:::o;21615:701::-;21896:3;21918:95;22009:3;22000:6;21918:95;:::i;:::-;21911:102;;22030:95;22121:3;22112:6;22030:95;:::i;:::-;22023:102;;22142:148;22286:3;22142:148;:::i;:::-;22135:155;;22307:3;22300:10;;21615:701;;;;;:::o;22322:379::-;22506:3;22528:147;22671:3;22528:147;:::i;:::-;22521:154;;22692:3;22685:10;;22322:379;;;:::o;22707:222::-;22800:4;22838:2;22827:9;22823:18;22815:26;;22851:71;22919:1;22908:9;22904:17;22895:6;22851:71;:::i;:::-;22707:222;;;;:::o;22935:640::-;23130:4;23168:3;23157:9;23153:19;23145:27;;23182:71;23250:1;23239:9;23235:17;23226:6;23182:71;:::i;:::-;23263:72;23331:2;23320:9;23316:18;23307:6;23263:72;:::i;:::-;23345;23413:2;23402:9;23398:18;23389:6;23345:72;:::i;:::-;23464:9;23458:4;23454:20;23449:2;23438:9;23434:18;23427:48;23492:76;23563:4;23554:6;23492:76;:::i;:::-;23484:84;;22935:640;;;;;;;:::o;23581:210::-;23668:4;23706:2;23695:9;23691:18;23683:26;;23719:65;23781:1;23770:9;23766:17;23757:6;23719:65;:::i;:::-;23581:210;;;;:::o;23797:313::-;23910:4;23948:2;23937:9;23933:18;23925:26;;23997:9;23991:4;23987:20;23983:1;23972:9;23968:17;23961:47;24025:78;24098:4;24089:6;24025:78;:::i;:::-;24017:86;;23797:313;;;;:::o;24116:419::-;24282:4;24320:2;24309:9;24305:18;24297:26;;24369:9;24363:4;24359:20;24355:1;24344:9;24340:17;24333:47;24397:131;24523:4;24397:131;:::i;:::-;24389:139;;24116:419;;;:::o;24541:::-;24707:4;24745:2;24734:9;24730:18;24722:26;;24794:9;24788:4;24784:20;24780:1;24769:9;24765:17;24758:47;24822:131;24948:4;24822:131;:::i;:::-;24814:139;;24541:419;;;:::o;24966:::-;25132:4;25170:2;25159:9;25155:18;25147:26;;25219:9;25213:4;25209:20;25205:1;25194:9;25190:17;25183:47;25247:131;25373:4;25247:131;:::i;:::-;25239:139;;24966:419;;;:::o;25391:::-;25557:4;25595:2;25584:9;25580:18;25572:26;;25644:9;25638:4;25634:20;25630:1;25619:9;25615:17;25608:47;25672:131;25798:4;25672:131;:::i;:::-;25664:139;;25391:419;;;:::o;25816:::-;25982:4;26020:2;26009:9;26005:18;25997:26;;26069:9;26063:4;26059:20;26055:1;26044:9;26040:17;26033:47;26097:131;26223:4;26097:131;:::i;:::-;26089:139;;25816:419;;;:::o;26241:::-;26407:4;26445:2;26434:9;26430:18;26422:26;;26494:9;26488:4;26484:20;26480:1;26469:9;26465:17;26458:47;26522:131;26648:4;26522:131;:::i;:::-;26514:139;;26241:419;;;:::o;26666:::-;26832:4;26870:2;26859:9;26855:18;26847:26;;26919:9;26913:4;26909:20;26905:1;26894:9;26890:17;26883:47;26947:131;27073:4;26947:131;:::i;:::-;26939:139;;26666:419;;;:::o;27091:::-;27257:4;27295:2;27284:9;27280:18;27272:26;;27344:9;27338:4;27334:20;27330:1;27319:9;27315:17;27308:47;27372:131;27498:4;27372:131;:::i;:::-;27364:139;;27091:419;;;:::o;27516:::-;27682:4;27720:2;27709:9;27705:18;27697:26;;27769:9;27763:4;27759:20;27755:1;27744:9;27740:17;27733:47;27797:131;27923:4;27797:131;:::i;:::-;27789:139;;27516:419;;;:::o;27941:::-;28107:4;28145:2;28134:9;28130:18;28122:26;;28194:9;28188:4;28184:20;28180:1;28169:9;28165:17;28158:47;28222:131;28348:4;28222:131;:::i;:::-;28214:139;;27941:419;;;:::o;28366:::-;28532:4;28570:2;28559:9;28555:18;28547:26;;28619:9;28613:4;28609:20;28605:1;28594:9;28590:17;28583:47;28647:131;28773:4;28647:131;:::i;:::-;28639:139;;28366:419;;;:::o;28791:::-;28957:4;28995:2;28984:9;28980:18;28972:26;;29044:9;29038:4;29034:20;29030:1;29019:9;29015:17;29008:47;29072:131;29198:4;29072:131;:::i;:::-;29064:139;;28791:419;;;:::o;29216:::-;29382:4;29420:2;29409:9;29405:18;29397:26;;29469:9;29463:4;29459:20;29455:1;29444:9;29440:17;29433:47;29497:131;29623:4;29497:131;:::i;:::-;29489:139;;29216:419;;;:::o;29641:::-;29807:4;29845:2;29834:9;29830:18;29822:26;;29894:9;29888:4;29884:20;29880:1;29869:9;29865:17;29858:47;29922:131;30048:4;29922:131;:::i;:::-;29914:139;;29641:419;;;:::o;30066:::-;30232:4;30270:2;30259:9;30255:18;30247:26;;30319:9;30313:4;30309:20;30305:1;30294:9;30290:17;30283:47;30347:131;30473:4;30347:131;:::i;:::-;30339:139;;30066:419;;;:::o;30491:::-;30657:4;30695:2;30684:9;30680:18;30672:26;;30744:9;30738:4;30734:20;30730:1;30719:9;30715:17;30708:47;30772:131;30898:4;30772:131;:::i;:::-;30764:139;;30491:419;;;:::o;30916:::-;31082:4;31120:2;31109:9;31105:18;31097:26;;31169:9;31163:4;31159:20;31155:1;31144:9;31140:17;31133:47;31197:131;31323:4;31197:131;:::i;:::-;31189:139;;30916:419;;;:::o;31341:::-;31507:4;31545:2;31534:9;31530:18;31522:26;;31594:9;31588:4;31584:20;31580:1;31569:9;31565:17;31558:47;31622:131;31748:4;31622:131;:::i;:::-;31614:139;;31341:419;;;:::o;31766:::-;31932:4;31970:2;31959:9;31955:18;31947:26;;32019:9;32013:4;32009:20;32005:1;31994:9;31990:17;31983:47;32047:131;32173:4;32047:131;:::i;:::-;32039:139;;31766:419;;;:::o;32191:::-;32357:4;32395:2;32384:9;32380:18;32372:26;;32444:9;32438:4;32434:20;32430:1;32419:9;32415:17;32408:47;32472:131;32598:4;32472:131;:::i;:::-;32464:139;;32191:419;;;:::o;32616:::-;32782:4;32820:2;32809:9;32805:18;32797:26;;32869:9;32863:4;32859:20;32855:1;32844:9;32840:17;32833:47;32897:131;33023:4;32897:131;:::i;:::-;32889:139;;32616:419;;;:::o;33041:::-;33207:4;33245:2;33234:9;33230:18;33222:26;;33294:9;33288:4;33284:20;33280:1;33269:9;33265:17;33258:47;33322:131;33448:4;33322:131;:::i;:::-;33314:139;;33041:419;;;:::o;33466:::-;33632:4;33670:2;33659:9;33655:18;33647:26;;33719:9;33713:4;33709:20;33705:1;33694:9;33690:17;33683:47;33747:131;33873:4;33747:131;:::i;:::-;33739:139;;33466:419;;;:::o;33891:::-;34057:4;34095:2;34084:9;34080:18;34072:26;;34144:9;34138:4;34134:20;34130:1;34119:9;34115:17;34108:47;34172:131;34298:4;34172:131;:::i;:::-;34164:139;;33891:419;;;:::o;34316:::-;34482:4;34520:2;34509:9;34505:18;34497:26;;34569:9;34563:4;34559:20;34555:1;34544:9;34540:17;34533:47;34597:131;34723:4;34597:131;:::i;:::-;34589:139;;34316:419;;;:::o;34741:::-;34907:4;34945:2;34934:9;34930:18;34922:26;;34994:9;34988:4;34984:20;34980:1;34969:9;34965:17;34958:47;35022:131;35148:4;35022:131;:::i;:::-;35014:139;;34741:419;;;:::o;35166:::-;35332:4;35370:2;35359:9;35355:18;35347:26;;35419:9;35413:4;35409:20;35405:1;35394:9;35390:17;35383:47;35447:131;35573:4;35447:131;:::i;:::-;35439:139;;35166:419;;;:::o;35591:222::-;35684:4;35722:2;35711:9;35707:18;35699:26;;35735:71;35803:1;35792:9;35788:17;35779:6;35735:71;:::i;:::-;35591:222;;;;:::o;35819:129::-;35853:6;35880:20;;:::i;:::-;35870:30;;35909:33;35937:4;35929:6;35909:33;:::i;:::-;35819:129;;;:::o;35954:75::-;35987:6;36020:2;36014:9;36004:19;;35954:75;:::o;36035:307::-;36096:4;36186:18;36178:6;36175:30;36172:56;;;36208:18;;:::i;:::-;36172:56;36246:29;36268:6;36246:29;:::i;:::-;36238:37;;36330:4;36324;36320:15;36312:23;;36035:307;;;:::o;36348:308::-;36410:4;36500:18;36492:6;36489:30;36486:56;;;36522:18;;:::i;:::-;36486:56;36560:29;36582:6;36560:29;:::i;:::-;36552:37;;36644:4;36638;36634:15;36626:23;;36348:308;;;:::o;36662:98::-;36713:6;36747:5;36741:12;36731:22;;36662:98;;;:::o;36766:99::-;36818:6;36852:5;36846:12;36836:22;;36766:99;;;:::o;36871:168::-;36954:11;36988:6;36983:3;36976:19;37028:4;37023:3;37019:14;37004:29;;36871:168;;;;:::o;37045:147::-;37146:11;37183:3;37168:18;;37045:147;;;;:::o;37198:169::-;37282:11;37316:6;37311:3;37304:19;37356:4;37351:3;37347:14;37332:29;;37198:169;;;;:::o;37373:148::-;37475:11;37512:3;37497:18;;37373:148;;;;:::o;37527:305::-;37567:3;37586:20;37604:1;37586:20;:::i;:::-;37581:25;;37620:20;37638:1;37620:20;:::i;:::-;37615:25;;37774:1;37706:66;37702:74;37699:1;37696:81;37693:107;;;37780:18;;:::i;:::-;37693:107;37824:1;37821;37817:9;37810:16;;37527:305;;;;:::o;37838:185::-;37878:1;37895:20;37913:1;37895:20;:::i;:::-;37890:25;;37929:20;37947:1;37929:20;:::i;:::-;37924:25;;37968:1;37958:35;;37973:18;;:::i;:::-;37958:35;38015:1;38012;38008:9;38003:14;;37838:185;;;;:::o;38029:348::-;38069:7;38092:20;38110:1;38092:20;:::i;:::-;38087:25;;38126:20;38144:1;38126:20;:::i;:::-;38121:25;;38314:1;38246:66;38242:74;38239:1;38236:81;38231:1;38224:9;38217:17;38213:105;38210:131;;;38321:18;;:::i;:::-;38210:131;38369:1;38366;38362:9;38351:20;;38029:348;;;;:::o;38383:191::-;38423:4;38443:20;38461:1;38443:20;:::i;:::-;38438:25;;38477:20;38495:1;38477:20;:::i;:::-;38472:25;;38516:1;38513;38510:8;38507:34;;;38521:18;;:::i;:::-;38507:34;38566:1;38563;38559:9;38551:17;;38383:191;;;;:::o;38580:96::-;38617:7;38646:24;38664:5;38646:24;:::i;:::-;38635:35;;38580:96;;;:::o;38682:90::-;38716:7;38759:5;38752:13;38745:21;38734:32;;38682:90;;;:::o;38778:149::-;38814:7;38854:66;38847:5;38843:78;38832:89;;38778:149;;;:::o;38933:126::-;38970:7;39010:42;39003:5;38999:54;38988:65;;38933:126;;;:::o;39065:77::-;39102:7;39131:5;39120:16;;39065:77;;;:::o;39148:154::-;39232:6;39227:3;39222;39209:30;39294:1;39285:6;39280:3;39276:16;39269:27;39148:154;;;:::o;39308:307::-;39376:1;39386:113;39400:6;39397:1;39394:13;39386:113;;;39485:1;39480:3;39476:11;39470:18;39466:1;39461:3;39457:11;39450:39;39422:2;39419:1;39415:10;39410:15;;39386:113;;;39517:6;39514:1;39511:13;39508:101;;;39597:1;39588:6;39583:3;39579:16;39572:27;39508:101;39357:258;39308:307;;;:::o;39621:320::-;39665:6;39702:1;39696:4;39692:12;39682:22;;39749:1;39743:4;39739:12;39770:18;39760:81;;39826:4;39818:6;39814:17;39804:27;;39760:81;39888:2;39880:6;39877:14;39857:18;39854:38;39851:84;;;39907:18;;:::i;:::-;39851:84;39672:269;39621:320;;;:::o;39947:281::-;40030:27;40052:4;40030:27;:::i;:::-;40022:6;40018:40;40160:6;40148:10;40145:22;40124:18;40112:10;40109:34;40106:62;40103:88;;;40171:18;;:::i;:::-;40103:88;40211:10;40207:2;40200:22;39990:238;39947:281;;:::o;40234:233::-;40273:3;40296:24;40314:5;40296:24;:::i;:::-;40287:33;;40342:66;40335:5;40332:77;40329:103;;;40412:18;;:::i;:::-;40329:103;40459:1;40452:5;40448:13;40441:20;;40234:233;;;:::o;40473:176::-;40505:1;40522:20;40540:1;40522:20;:::i;:::-;40517:25;;40556:20;40574:1;40556:20;:::i;:::-;40551:25;;40595:1;40585:35;;40600:18;;:::i;:::-;40585:35;40641:1;40638;40634:9;40629:14;;40473:176;;;;:::o;40655:180::-;40703:77;40700:1;40693:88;40800:4;40797:1;40790:15;40824:4;40821:1;40814:15;40841:180;40889:77;40886:1;40879:88;40986:4;40983:1;40976:15;41010:4;41007:1;41000:15;41027:180;41075:77;41072:1;41065:88;41172:4;41169:1;41162:15;41196:4;41193:1;41186:15;41213:180;41261:77;41258:1;41251:88;41358:4;41355:1;41348:15;41382:4;41379:1;41372:15;41399:180;41447:77;41444:1;41437:88;41544:4;41541:1;41534:15;41568:4;41565:1;41558:15;41585:117;41694:1;41691;41684:12;41708:117;41817:1;41814;41807:12;41831:117;41940:1;41937;41930:12;41954:117;42063:1;42060;42053:12;42077:117;42186:1;42183;42176:12;42200:117;42309:1;42306;42299:12;42323:102;42364:6;42415:2;42411:7;42406:2;42399:5;42395:14;42391:28;42381:38;;42323:102;;;:::o;42431:221::-;42571:34;42567:1;42559:6;42555:14;42548:58;42640:4;42635:2;42627:6;42623:15;42616:29;42431:221;:::o;42658:161::-;42798:13;42794:1;42786:6;42782:14;42775:37;42658:161;:::o;42825:220::-;42965:34;42961:1;42953:6;42949:14;42942:58;43034:3;43029:2;43021:6;43017:15;43010:28;42825:220;:::o;43051:225::-;43191:34;43187:1;43179:6;43175:14;43168:58;43260:8;43255:2;43247:6;43243:15;43236:33;43051:225;:::o;43282:229::-;43422:34;43418:1;43410:6;43406:14;43399:58;43491:12;43486:2;43478:6;43474:15;43467:37;43282:229;:::o;43517:178::-;43657:30;43653:1;43645:6;43641:14;43634:54;43517:178;:::o;43701:222::-;43841:34;43837:1;43829:6;43825:14;43818:58;43910:5;43905:2;43897:6;43893:15;43886:30;43701:222;:::o;43929:224::-;44069:34;44065:1;44057:6;44053:14;44046:58;44138:7;44133:2;44125:6;44121:15;44114:32;43929:224;:::o;44159:220::-;44299:34;44295:1;44287:6;44283:14;44276:58;44368:3;44363:2;44355:6;44351:15;44344:28;44159:220;:::o;44385:244::-;44525:34;44521:1;44513:6;44509:14;44502:58;44594:27;44589:2;44581:6;44577:15;44570:52;44385:244;:::o;44635:176::-;44775:28;44771:1;44763:6;44759:14;44752:52;44635:176;:::o;44817:230::-;44957:34;44953:1;44945:6;44941:14;44934:58;45026:13;45021:2;45013:6;45009:15;45002:38;44817:230;:::o;45053:169::-;45193:21;45189:1;45181:6;45177:14;45170:45;45053:169;:::o;45228:225::-;45368:34;45364:1;45356:6;45352:14;45345:58;45437:8;45432:2;45424:6;45420:15;45413:33;45228:225;:::o;45459:155::-;45599:7;45595:1;45587:6;45583:14;45576:31;45459:155;:::o;45620:158::-;45760:10;45756:1;45748:6;45744:14;45737:34;45620:158;:::o;45784:182::-;45924:34;45920:1;45912:6;45908:14;45901:58;45784:182;:::o;45972:176::-;46112:28;46108:1;46100:6;46096:14;46089:52;45972:176;:::o;46154:237::-;46294:34;46290:1;46282:6;46278:14;46271:58;46363:20;46358:2;46350:6;46346:15;46339:45;46154:237;:::o;46397:221::-;46537:34;46533:1;46525:6;46521:14;46514:58;46606:4;46601:2;46593:6;46589:15;46582:29;46397:221;:::o;46624:114::-;;:::o;46744:238::-;46884:34;46880:1;46872:6;46868:14;46861:58;46953:21;46948:2;46940:6;46936:15;46929:46;46744:238;:::o;46988:177::-;47128:29;47124:1;47116:6;47112:14;47105:53;46988:177;:::o;47171:220::-;47311:34;47307:1;47299:6;47295:14;47288:58;47380:3;47375:2;47367:6;47363:15;47356:28;47171:220;:::o;47397:227::-;47537:34;47533:1;47525:6;47521:14;47514:58;47606:10;47601:2;47593:6;47589:15;47582:35;47397:227;:::o;47630:233::-;47770:34;47766:1;47758:6;47754:14;47747:58;47839:16;47834:2;47826:6;47822:15;47815:41;47630:233;:::o;47869:181::-;48009:33;48005:1;47997:6;47993:14;47986:57;47869:181;:::o;48056:234::-;48196:34;48192:1;48184:6;48180:14;48173:58;48265:17;48260:2;48252:6;48248:15;48241:42;48056:234;:::o;48296:232::-;48436:34;48432:1;48424:6;48420:14;48413:58;48505:15;48500:2;48492:6;48488:15;48481:40;48296:232;:::o;48534:122::-;48607:24;48625:5;48607:24;:::i;:::-;48600:5;48597:35;48587:63;;48646:1;48643;48636:12;48587:63;48534:122;:::o;48662:116::-;48732:21;48747:5;48732:21;:::i;:::-;48725:5;48722:32;48712:60;;48768:1;48765;48758:12;48712:60;48662:116;:::o;48784:120::-;48856:23;48873:5;48856:23;:::i;:::-;48849:5;48846:34;48836:62;;48894:1;48891;48884:12;48836:62;48784:120;:::o;48910:122::-;48983:24;49001:5;48983:24;:::i;:::-;48976:5;48973:35;48963:63;;49022:1;49019;49012:12;48963:63;48910:122;:::o
Swarm Source
ipfs://e2e97fa7df414e3f5833cf7a91d5682d9227cb7a50c78a741b767e3d36bad95b
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.