ERC-721
Overview
Max Total Supply
5,000 Degens
Holders
289
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 DegensLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DegeneratesClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-27 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/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 v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/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: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) 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 making 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; } } // 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: contracts/ERC721A.sol 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..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ 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 private currentIndex = 0; uint256 internal collectionSize; uint256 internal maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See maxBatchSize Functionality.. */ function changeMaxBatchSize(uint256 newBatch) public{ maxBatchSize = newBatch; } function changeCollectionSize(uint256 newCollectionSize) public{ collectionSize = newCollectionSize; } /** * @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(collectionSize). 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 = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; 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); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; 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 Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); 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); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership( prevOwnership.addr, 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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/DegeneratesClub.sol pragma solidity ^0.8.0; contract DegeneratesClub is Ownable, ERC721A, ReentrancyGuard { constructor( uint256 maxBatchSize_, uint256 collectionSize_, uint256 amountForAuctionAndDev_, uint256 amountForDevs_ ) ERC721A("Degenerates Club", "Degens", maxBatchSize_, collectionSize_) { require(amountForAuctionAndDev_ <= collectionSize_, "larger collection size needed" ); } uint256 pricePer = 0.04 ether; uint256 totalCost; uint256 maxSupply = 5000; uint256 saleIsActive = 0; function flipSaleState(uint256 num) public onlyOwner { saleIsActive = num; } function setMintPrice(uint256 price) public onlyOwner { pricePer = price; } function maxSupplyChange(uint256 newMax) public onlyOwner { maxSupply = newMax; } /** * @dev Public sale mint * @param quantity Number of tokens to mint * * * - Degenerates Club members cost 0.04 per mint. * - 10 can be minted per transaction. Gas fees are real small, if you want more just send another transaction. * - The contract is constructed to optimize gas. */ function mint(uint256 quantity) external payable { require(saleIsActive == 1, 'Sale is not active'); require(quantity <= 10, 'Cant mint more than 10'); require(totalSupply() + quantity <= maxSupply); require(msg.value >= (pricePer*quantity), 'Not enough Eth sent'); _safeMint(msg.sender, quantity); } function mintMarketing(address toPerson, uint256 quantity) external onlyOwner { require(saleIsActive == 1, 'Sale is not active'); require(quantity <= 10, 'Cant mint more than 10'); require(totalSupply() + quantity <= maxSupply); _safeMint(toPerson, quantity); } // // metadata URI string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForAuctionAndDev_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCollectionSize","type":"uint256"}],"name":"changeCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBatch","type":"uint256"}],"name":"changeMaxBatchSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"maxSupplyChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"toPerson","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006001556000600a55668e1bc9bf040000600c55611388600e556000600f553480156200003157600080fd5b5060405162005206380380620052068339818101604052810190620000579190620003a0565b6040518060400160405280601081526020017f446567656e65726174657320436c7562000000000000000000000000000000008152506040518060400160405280600681526020017f446567656e7300000000000000000000000000000000000000000000000000008152508585620000e5620000d96200020d60201b60201c565b6200021560201b60201c565b600081116200012b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012290620004cb565b60405180910390fd5b6000821162000171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001689062000487565b60405180910390fd5b836004908051906020019062000189929190620002d9565b508260059080519060200190620001a2929190620002d9565b508160038190555080600281905550505050506001600b819055508282111562000203576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001fa90620004a9565b60405180910390fd5b5050505062000653565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e79062000508565b90600052602060002090601f0160209004810192826200030b576000855562000357565b82601f106200032657805160ff191683800117855562000357565b8280016001018555821562000357579182015b828111156200035657825182559160200191906001019062000339565b5b5090506200036691906200036a565b5090565b5b80821115620003855760008160009055506001016200036b565b5090565b6000815190506200039a8162000639565b92915050565b60008060008060808587031215620003bd57620003bc6200056d565b5b6000620003cd8782880162000389565b9450506020620003e08782880162000389565b9350506040620003f38782880162000389565b9250506060620004068782880162000389565b91505092959194509250565b600062000421602783620004ed565b91506200042e8262000572565b604082019050919050565b600062000448601d83620004ed565b91506200045582620005c1565b602082019050919050565b60006200046f602e83620004ed565b91506200047c82620005ea565b604082019050919050565b60006020820190508181036000830152620004a28162000412565b9050919050565b60006020820190508181036000830152620004c48162000439565b9050919050565b60006020820190508181036000830152620004e68162000460565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200052157607f821691505b602082108114156200053857620005376200053e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000600082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b6200064481620004fe565b81146200065057600080fd5b50565b614ba380620006636000396000f3fe6080604052600436106101e35760003560e01c8063763f401111610102578063b88d4fde11610095578063dc33e68111610064578063dc33e681146106dd578063e985e9c51461071a578063f2fde38b14610757578063f4a0a52814610780576101e3565b8063b88d4fde14610623578063b8fb3d671461064c578063c87b56dd14610675578063d7224ba0146106b2576101e3565b80639801b11c116100d15780639801b11c1461059e578063a0712d68146105c7578063a22cb465146105e3578063ac4460021461060c576101e3565b8063763f4011146104e25780638da5cb5b1461050b5780639231ab2a1461053657806395d89b4114610573576101e3565b8063313112ce1161017a5780636352211e116101495780636352211e146104285780636ebfd34d1461046557806370a082311461048e578063715018a6146104cb576101e3565b8063313112ce1461037057806342842e0e146103995780634f6ccce7146103c257806355f804b3146103ff576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632d20fb601461030a5780632f745c5914610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061340b565b6107a9565b60405161021c9190613a93565b60405180910390f35b34801561023157600080fd5b5061023a6108f3565b6040516102479190613aae565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906134b2565b610985565b6040516102849190613a2c565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906133cb565b610a0a565b005b3480156102c257600080fd5b506102cb610b23565b6040516102d89190613e6b565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906132b5565b610b2d565b005b34801561031657600080fd5b50610331600480360381019061032c91906134b2565b610b3d565b005b34801561033f57600080fd5b5061035a600480360381019061035591906133cb565b610c1b565b6040516103679190613e6b565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906134b2565b610e19565b005b3480156103a557600080fd5b506103c060048036038101906103bb91906132b5565b610e9f565b005b3480156103ce57600080fd5b506103e960048036038101906103e491906134b2565b610ebf565b6040516103f69190613e6b565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190613465565b610f12565b005b34801561043457600080fd5b5061044f600480360381019061044a91906134b2565b610fa4565b60405161045c9190613a2c565b60405180910390f35b34801561047157600080fd5b5061048c600480360381019061048791906134b2565b610fba565b005b34801561049a57600080fd5b506104b560048036038101906104b09190613248565b610fc4565b6040516104c29190613e6b565b60405180910390f35b3480156104d757600080fd5b506104e06110ad565b005b3480156104ee57600080fd5b50610509600480360381019061050491906133cb565b611135565b005b34801561051757600080fd5b50610520611269565b60405161052d9190613a2c565b60405180910390f35b34801561054257600080fd5b5061055d600480360381019061055891906134b2565b611292565b60405161056a9190613e50565b60405180910390f35b34801561057f57600080fd5b506105886112aa565b6040516105959190613aae565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c091906134b2565b61133c565b005b6105e160048036038101906105dc91906134b2565b611346565b005b3480156105ef57600080fd5b5061060a6004803603810190610605919061338b565b61144d565b005b34801561061857600080fd5b506106216115ce565b005b34801561062f57600080fd5b5061064a60048036038101906106459190613308565b61174f565b005b34801561065857600080fd5b50610673600480360381019061066e91906134b2565b6117ab565b005b34801561068157600080fd5b5061069c600480360381019061069791906134b2565b611831565b6040516106a99190613aae565b60405180910390f35b3480156106be57600080fd5b506106c76118d8565b6040516106d49190613e6b565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190613248565b6118de565b6040516107119190613e6b565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190613275565b6118f0565b60405161074e9190613a93565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190613248565b611984565b005b34801561078c57600080fd5b506107a760048036038101906107a291906134b2565b611a7c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108dc57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ec57506108eb82611b02565b5b9050919050565b606060048054610902906141c9565b80601f016020809104026020016040519081016040528092919081815260200182805461092e906141c9565b801561097b5780601f106109505761010080835404028352916020019161097b565b820191906000526020600020905b81548152906001019060200180831161095e57829003601f168201915b5050505050905090565b600061099082611b6c565b6109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c690613df0565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1582610fa4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90613cd0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa5611b7a565b73ffffffffffffffffffffffffffffffffffffffff161480610ad45750610ad381610ace611b7a565b6118f0565b5b610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90613bd0565b60405180910390fd5b610b1e838383611b82565b505050565b6000600154905090565b610b38838383611c34565b505050565b610b45611b7a565b73ffffffffffffffffffffffffffffffffffffffff16610b63611269565b73ffffffffffffffffffffffffffffffffffffffff1614610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090613c50565b60405180910390fd5b6002600b541415610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613db0565b60405180910390fd5b6002600b81905550610c10816121ed565b6001600b8190555050565b6000610c2683610fc4565b8210610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e90613ad0565b60405180910390fd5b6000610c71610b23565b905060008060005b83811015610dd7576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d6b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc35786841415610db4578195505050505050610e13565b8380610dbf9061422c565b9450505b508080610dcf9061422c565b915050610c79565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90613d70565b60405180910390fd5b92915050565b610e21611b7a565b73ffffffffffffffffffffffffffffffffffffffff16610e3f611269565b73ffffffffffffffffffffffffffffffffffffffff1614610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c90613c50565b60405180910390fd5b80600f8190555050565b610eba8383836040518060200160405280600081525061174f565b505050565b6000610ec9610b23565b8210610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190613b50565b60405180910390fd5b819050919050565b610f1a611b7a565b73ffffffffffffffffffffffffffffffffffffffff16610f38611269565b73ffffffffffffffffffffffffffffffffffffffff1614610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8590613c50565b60405180910390fd5b818160109190610f9f92919061303c565b505050565b6000610faf8261243f565b600001519050919050565b8060038190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90613c10565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110b5611b7a565b73ffffffffffffffffffffffffffffffffffffffff166110d3611269565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090613c50565b60405180910390fd5b6111336000612606565b565b61113d611b7a565b73ffffffffffffffffffffffffffffffffffffffff1661115b611269565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890613c50565b60405180910390fd5b6001600f54146111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90613bb0565b60405180910390fd5b600a81111561123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190613b10565b60405180910390fd5b600e5481611246610b23565b6112509190613f70565b111561125b57600080fd5b61126582826126ca565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61129a6130c2565b6112a38261243f565b9050919050565b6060600580546112b9906141c9565b80601f01602080910402602001604051908101604052809291908181526020018280546112e5906141c9565b80156113325780601f1061130757610100808354040283529160200191611332565b820191906000526020600020905b81548152906001019060200180831161131557829003601f168201915b5050505050905090565b8060028190555050565b6001600f541461138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290613bb0565b60405180910390fd5b600a8111156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690613b10565b60405180910390fd5b600e54816113db610b23565b6113e59190613f70565b11156113f057600080fd5b80600c546113fe9190613ff7565b341015611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143790613e10565b60405180910390fd5b61144a33826126ca565b50565b611455611b7a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba90613c90565b60405180910390fd5b80600960006114d0611b7a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157d611b7a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c29190613a93565b60405180910390a35050565b6115d6611b7a565b73ffffffffffffffffffffffffffffffffffffffff166115f4611269565b73ffffffffffffffffffffffffffffffffffffffff161461164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190613c50565b60405180910390fd5b6002600b541415611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790613db0565b60405180910390fd5b6002600b8190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516116be90613a17565b60006040518083038185875af1925050503d80600081146116fb576040519150601f19603f3d011682016040523d82523d6000602084013e611700565b606091505b5050905080611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b90613cf0565b60405180910390fd5b506001600b81905550565b61175a848484611c34565b611766848484846126e8565b6117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c90613d10565b60405180910390fd5b50505050565b6117b3611b7a565b73ffffffffffffffffffffffffffffffffffffffff166117d1611269565b73ffffffffffffffffffffffffffffffffffffffff1614611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e90613c50565b60405180910390fd5b80600e8190555050565b606061183c82611b6c565b61187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290613c70565b60405180910390fd5b600061188561287f565b905060008151116118a557604051806020016040528060008152506118d0565b806118af84612911565b6040516020016118c09291906139f3565b6040516020818303038152906040525b915050919050565b600a5481565b60006118e982612a72565b9050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61198c611b7a565b73ffffffffffffffffffffffffffffffffffffffff166119aa611269565b73ffffffffffffffffffffffffffffffffffffffff1614611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790613c50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6790613af0565b60405180910390fd5b611a7981612606565b50565b611a84611b7a565b73ffffffffffffffffffffffffffffffffffffffff16611aa2611269565b73ffffffffffffffffffffffffffffffffffffffff1614611af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aef90613c50565b60405180910390fd5b80600c8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c3f8261243f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c66611b7a565b73ffffffffffffffffffffffffffffffffffffffff161480611cc25750611c8b611b7a565b73ffffffffffffffffffffffffffffffffffffffff16611caa84610985565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cde5750611cdd8260000151611cd8611b7a565b6118f0565b5b905080611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1790613cb0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990613c30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df990613b70565b60405180910390fd5b611e0f8585856001612b5b565b611e1f6000848460000151611b82565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e8d9190614051565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f319190613f2a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120379190613f70565b9050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561217d576120ad81611b6c565b1561217c576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506006600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121e58686866001612b61565b505050505050565b6000600a54905060008211612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222e90613bf0565b60405180910390fd5b6000600183836122479190613f70565b6122519190614085565b905060016002546122629190614085565b81111561227b5760016002546122789190614085565b90505b61228481611b6c565b6122c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ba90613d90565b60405180910390fd5b60008290505b81811161242657600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124135760006123468261243f565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b808061241e9061422c565b9150506122c9565b506001816124349190613f70565b600a81905550505050565b6124476130c2565b61245082611b6c565b61248f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248690613b30565b60405180910390fd5b600060035483106124b7576001600354846124aa9190614085565b6124b49190613f70565b90505b60008390505b8181106125c5576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125b157809350505050612601565b5080806125bd9061419f565b9150506124bd565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f890613dd0565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126e4828260405180602001604052806000815250612b67565b5050565b60006127098473ffffffffffffffffffffffffffffffffffffffff16613029565b15612872578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612732611b7a565b8786866040518563ffffffff1660e01b81526004016127549493929190613a47565b602060405180830381600087803b15801561276e57600080fd5b505af192505050801561279f57506040513d601f19601f8201168201806040525081019061279c9190613438565b60015b612822573d80600081146127cf576040519150601f19603f3d011682016040523d82523d6000602084013e6127d4565b606091505b5060008151141561281a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281190613d10565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612877565b600190505b949350505050565b60606010805461288e906141c9565b80601f01602080910402602001604051908101604052809291908181526020018280546128ba906141c9565b80156129075780601f106128dc57610100808354040283529160200191612907565b820191906000526020600020905b8154815290600101906020018083116128ea57829003601f168201915b5050505050905090565b60606000821415612959576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a6d565b600082905060005b6000821461298b5780806129749061422c565b915050600a826129849190613fc6565b9150612961565b60008167ffffffffffffffff8111156129a7576129a6614362565b5b6040519080825280601f01601f1916602001820160405280156129d95781602001600182028036833780820191505090505b5090505b60008514612a66576001826129f29190614085565b9150600a85612a019190614275565b6030612a0d9190613f70565b60f81b818381518110612a2357612a22614333565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a5f9190613fc6565b94506129dd565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada90613b90565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd590613d50565b60405180910390fd5b612be781611b6c565b15612c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1e90613d30565b60405180910390fd5b600354831115612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6390613e30565b60405180910390fd5b612c796000858386612b5b565b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d769190613f2a565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d9d9190613f2a565b6fffffffffffffffffffffffffffffffff16815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561300c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fac60008884886126e8565b612feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe290613d10565b60405180910390fd5b8180612ff69061422c565b92505080806130049061422c565b915050612f3b565b50806001819055506130216000878588612b61565b505050505050565b600080823b905060008111915050919050565b828054613048906141c9565b90600052602060002090601f01602090048101928261306a57600085556130b1565b82601f1061308357803560ff19168380011785556130b1565b828001600101855582156130b1579182015b828111156130b0578235825591602001919060010190613095565b5b5090506130be91906130fc565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131155760008160009055506001016130fd565b5090565b600061312c61312784613eab565b613e86565b905082815260208101848484011115613148576131476143a0565b5b61315384828561415d565b509392505050565b60008135905061316a81614b11565b92915050565b60008135905061317f81614b28565b92915050565b60008135905061319481614b3f565b92915050565b6000815190506131a981614b3f565b92915050565b600082601f8301126131c4576131c3614396565b5b81356131d4848260208601613119565b91505092915050565b60008083601f8401126131f3576131f2614396565b5b8235905067ffffffffffffffff8111156132105761320f614391565b5b60208301915083600182028301111561322c5761322b61439b565b5b9250929050565b60008135905061324281614b56565b92915050565b60006020828403121561325e5761325d6143aa565b5b600061326c8482850161315b565b91505092915050565b6000806040838503121561328c5761328b6143aa565b5b600061329a8582860161315b565b92505060206132ab8582860161315b565b9150509250929050565b6000806000606084860312156132ce576132cd6143aa565b5b60006132dc8682870161315b565b93505060206132ed8682870161315b565b92505060406132fe86828701613233565b9150509250925092565b60008060008060808587031215613322576133216143aa565b5b60006133308782880161315b565b94505060206133418782880161315b565b935050604061335287828801613233565b925050606085013567ffffffffffffffff811115613373576133726143a5565b5b61337f878288016131af565b91505092959194509250565b600080604083850312156133a2576133a16143aa565b5b60006133b08582860161315b565b92505060206133c185828601613170565b9150509250929050565b600080604083850312156133e2576133e16143aa565b5b60006133f08582860161315b565b925050602061340185828601613233565b9150509250929050565b600060208284031215613421576134206143aa565b5b600061342f84828501613185565b91505092915050565b60006020828403121561344e5761344d6143aa565b5b600061345c8482850161319a565b91505092915050565b6000806020838503121561347c5761347b6143aa565b5b600083013567ffffffffffffffff81111561349a576134996143a5565b5b6134a6858286016131dd565b92509250509250929050565b6000602082840312156134c8576134c76143aa565b5b60006134d684828501613233565b91505092915050565b6134e8816140b9565b82525050565b6134f7816140b9565b82525050565b613506816140cb565b82525050565b600061351782613edc565b6135218185613ef2565b935061353181856020860161416c565b61353a816143af565b840191505092915050565b600061355082613ee7565b61355a8185613f0e565b935061356a81856020860161416c565b613573816143af565b840191505092915050565b600061358982613ee7565b6135938185613f1f565b93506135a381856020860161416c565b80840191505092915050565b60006135bc602283613f0e565b91506135c7826143c0565b604082019050919050565b60006135df602683613f0e565b91506135ea8261440f565b604082019050919050565b6000613602601683613f0e565b915061360d8261445e565b602082019050919050565b6000613625602a83613f0e565b915061363082614487565b604082019050919050565b6000613648602383613f0e565b9150613653826144d6565b604082019050919050565b600061366b602583613f0e565b915061367682614525565b604082019050919050565b600061368e603183613f0e565b915061369982614574565b604082019050919050565b60006136b1601283613f0e565b91506136bc826145c3565b602082019050919050565b60006136d4603983613f0e565b91506136df826145ec565b604082019050919050565b60006136f7601883613f0e565b91506137028261463b565b602082019050919050565b600061371a602b83613f0e565b915061372582614664565b604082019050919050565b600061373d602683613f0e565b9150613748826146b3565b604082019050919050565b6000613760602083613f0e565b915061376b82614702565b602082019050919050565b6000613783602f83613f0e565b915061378e8261472b565b604082019050919050565b60006137a6601a83613f0e565b91506137b18261477a565b602082019050919050565b60006137c9603283613f0e565b91506137d4826147a3565b604082019050919050565b60006137ec602283613f0e565b91506137f7826147f2565b604082019050919050565b600061380f600083613f03565b915061381a82614841565b600082019050919050565b6000613832601083613f0e565b915061383d82614844565b602082019050919050565b6000613855603383613f0e565b91506138608261486d565b604082019050919050565b6000613878601d83613f0e565b9150613883826148bc565b602082019050919050565b600061389b602183613f0e565b91506138a6826148e5565b604082019050919050565b60006138be602e83613f0e565b91506138c982614934565b604082019050919050565b60006138e1602683613f0e565b91506138ec82614983565b604082019050919050565b6000613904601f83613f0e565b915061390f826149d2565b602082019050919050565b6000613927602f83613f0e565b9150613932826149fb565b604082019050919050565b600061394a602d83613f0e565b915061395582614a4a565b604082019050919050565b600061396d601383613f0e565b915061397882614a99565b602082019050919050565b6000613990602283613f0e565b915061399b82614ac2565b604082019050919050565b6040820160008201516139bc60008501826134df565b5060208201516139cf60208501826139e4565b50505050565b6139de8161413f565b82525050565b6139ed81614149565b82525050565b60006139ff828561357e565b9150613a0b828461357e565b91508190509392505050565b6000613a2282613802565b9150819050919050565b6000602082019050613a4160008301846134ee565b92915050565b6000608082019050613a5c60008301876134ee565b613a6960208301866134ee565b613a7660408301856139d5565b8181036060830152613a88818461350c565b905095945050505050565b6000602082019050613aa860008301846134fd565b92915050565b60006020820190508181036000830152613ac88184613545565b905092915050565b60006020820190508181036000830152613ae9816135af565b9050919050565b60006020820190508181036000830152613b09816135d2565b9050919050565b60006020820190508181036000830152613b29816135f5565b9050919050565b60006020820190508181036000830152613b4981613618565b9050919050565b60006020820190508181036000830152613b698161363b565b9050919050565b60006020820190508181036000830152613b898161365e565b9050919050565b60006020820190508181036000830152613ba981613681565b9050919050565b60006020820190508181036000830152613bc9816136a4565b9050919050565b60006020820190508181036000830152613be9816136c7565b9050919050565b60006020820190508181036000830152613c09816136ea565b9050919050565b60006020820190508181036000830152613c298161370d565b9050919050565b60006020820190508181036000830152613c4981613730565b9050919050565b60006020820190508181036000830152613c6981613753565b9050919050565b60006020820190508181036000830152613c8981613776565b9050919050565b60006020820190508181036000830152613ca981613799565b9050919050565b60006020820190508181036000830152613cc9816137bc565b9050919050565b60006020820190508181036000830152613ce9816137df565b9050919050565b60006020820190508181036000830152613d0981613825565b9050919050565b60006020820190508181036000830152613d2981613848565b9050919050565b60006020820190508181036000830152613d498161386b565b9050919050565b60006020820190508181036000830152613d698161388e565b9050919050565b60006020820190508181036000830152613d89816138b1565b9050919050565b60006020820190508181036000830152613da9816138d4565b9050919050565b60006020820190508181036000830152613dc9816138f7565b9050919050565b60006020820190508181036000830152613de98161391a565b9050919050565b60006020820190508181036000830152613e098161393d565b9050919050565b60006020820190508181036000830152613e2981613960565b9050919050565b60006020820190508181036000830152613e4981613983565b9050919050565b6000604082019050613e6560008301846139a6565b92915050565b6000602082019050613e8060008301846139d5565b92915050565b6000613e90613ea1565b9050613e9c82826141fb565b919050565b6000604051905090565b600067ffffffffffffffff821115613ec657613ec5614362565b5b613ecf826143af565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f3582614103565b9150613f4083614103565b9250826fffffffffffffffffffffffffffffffff03821115613f6557613f646142a6565b5b828201905092915050565b6000613f7b8261413f565b9150613f868361413f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fbb57613fba6142a6565b5b828201905092915050565b6000613fd18261413f565b9150613fdc8361413f565b925082613fec57613feb6142d5565b5b828204905092915050565b60006140028261413f565b915061400d8361413f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614046576140456142a6565b5b828202905092915050565b600061405c82614103565b915061406783614103565b92508282101561407a576140796142a6565b5b828203905092915050565b60006140908261413f565b915061409b8361413f565b9250828210156140ae576140ad6142a6565b5b828203905092915050565b60006140c48261411f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561418a57808201518184015260208101905061416f565b83811115614199576000848401525b50505050565b60006141aa8261413f565b915060008214156141be576141bd6142a6565b5b600182039050919050565b600060028204905060018216806141e157607f821691505b602082108114156141f5576141f4614304565b5b50919050565b614204826143af565b810181811067ffffffffffffffff8211171561422357614222614362565b5b80604052505050565b60006142378261413f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561426a576142696142a6565b5b600182019050919050565b60006142808261413f565b915061428b8361413f565b92508261429b5761429a6142d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e74206d696e74206d6f7265207468616e20313000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204574682073656e7400000000000000000000000000600082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614b1a816140b9565b8114614b2557600080fd5b50565b614b31816140cb565b8114614b3c57600080fd5b50565b614b48816140d7565b8114614b5357600080fd5b50565b614b5f8161413f565b8114614b6a57600080fd5b5056fea2646970667358221220fc42d96e69c46b4d6c9ef7d4f1ef98c705f737b3d4d8aae4e19e1120edb0d45564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101e35760003560e01c8063763f401111610102578063b88d4fde11610095578063dc33e68111610064578063dc33e681146106dd578063e985e9c51461071a578063f2fde38b14610757578063f4a0a52814610780576101e3565b8063b88d4fde14610623578063b8fb3d671461064c578063c87b56dd14610675578063d7224ba0146106b2576101e3565b80639801b11c116100d15780639801b11c1461059e578063a0712d68146105c7578063a22cb465146105e3578063ac4460021461060c576101e3565b8063763f4011146104e25780638da5cb5b1461050b5780639231ab2a1461053657806395d89b4114610573576101e3565b8063313112ce1161017a5780636352211e116101495780636352211e146104285780636ebfd34d1461046557806370a082311461048e578063715018a6146104cb576101e3565b8063313112ce1461037057806342842e0e146103995780634f6ccce7146103c257806355f804b3146103ff576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632d20fb601461030a5780632f745c5914610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061340b565b6107a9565b60405161021c9190613a93565b60405180910390f35b34801561023157600080fd5b5061023a6108f3565b6040516102479190613aae565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906134b2565b610985565b6040516102849190613a2c565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906133cb565b610a0a565b005b3480156102c257600080fd5b506102cb610b23565b6040516102d89190613e6b565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906132b5565b610b2d565b005b34801561031657600080fd5b50610331600480360381019061032c91906134b2565b610b3d565b005b34801561033f57600080fd5b5061035a600480360381019061035591906133cb565b610c1b565b6040516103679190613e6b565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906134b2565b610e19565b005b3480156103a557600080fd5b506103c060048036038101906103bb91906132b5565b610e9f565b005b3480156103ce57600080fd5b506103e960048036038101906103e491906134b2565b610ebf565b6040516103f69190613e6b565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190613465565b610f12565b005b34801561043457600080fd5b5061044f600480360381019061044a91906134b2565b610fa4565b60405161045c9190613a2c565b60405180910390f35b34801561047157600080fd5b5061048c600480360381019061048791906134b2565b610fba565b005b34801561049a57600080fd5b506104b560048036038101906104b09190613248565b610fc4565b6040516104c29190613e6b565b60405180910390f35b3480156104d757600080fd5b506104e06110ad565b005b3480156104ee57600080fd5b50610509600480360381019061050491906133cb565b611135565b005b34801561051757600080fd5b50610520611269565b60405161052d9190613a2c565b60405180910390f35b34801561054257600080fd5b5061055d600480360381019061055891906134b2565b611292565b60405161056a9190613e50565b60405180910390f35b34801561057f57600080fd5b506105886112aa565b6040516105959190613aae565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c091906134b2565b61133c565b005b6105e160048036038101906105dc91906134b2565b611346565b005b3480156105ef57600080fd5b5061060a6004803603810190610605919061338b565b61144d565b005b34801561061857600080fd5b506106216115ce565b005b34801561062f57600080fd5b5061064a60048036038101906106459190613308565b61174f565b005b34801561065857600080fd5b50610673600480360381019061066e91906134b2565b6117ab565b005b34801561068157600080fd5b5061069c600480360381019061069791906134b2565b611831565b6040516106a99190613aae565b60405180910390f35b3480156106be57600080fd5b506106c76118d8565b6040516106d49190613e6b565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190613248565b6118de565b6040516107119190613e6b565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190613275565b6118f0565b60405161074e9190613a93565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190613248565b611984565b005b34801561078c57600080fd5b506107a760048036038101906107a291906134b2565b611a7c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108dc57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ec57506108eb82611b02565b5b9050919050565b606060048054610902906141c9565b80601f016020809104026020016040519081016040528092919081815260200182805461092e906141c9565b801561097b5780601f106109505761010080835404028352916020019161097b565b820191906000526020600020905b81548152906001019060200180831161095e57829003601f168201915b5050505050905090565b600061099082611b6c565b6109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c690613df0565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1582610fa4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90613cd0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa5611b7a565b73ffffffffffffffffffffffffffffffffffffffff161480610ad45750610ad381610ace611b7a565b6118f0565b5b610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90613bd0565b60405180910390fd5b610b1e838383611b82565b505050565b6000600154905090565b610b38838383611c34565b505050565b610b45611b7a565b73ffffffffffffffffffffffffffffffffffffffff16610b63611269565b73ffffffffffffffffffffffffffffffffffffffff1614610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090613c50565b60405180910390fd5b6002600b541415610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613db0565b60405180910390fd5b6002600b81905550610c10816121ed565b6001600b8190555050565b6000610c2683610fc4565b8210610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e90613ad0565b60405180910390fd5b6000610c71610b23565b905060008060005b83811015610dd7576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d6b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc35786841415610db4578195505050505050610e13565b8380610dbf9061422c565b9450505b508080610dcf9061422c565b915050610c79565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90613d70565b60405180910390fd5b92915050565b610e21611b7a565b73ffffffffffffffffffffffffffffffffffffffff16610e3f611269565b73ffffffffffffffffffffffffffffffffffffffff1614610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c90613c50565b60405180910390fd5b80600f8190555050565b610eba8383836040518060200160405280600081525061174f565b505050565b6000610ec9610b23565b8210610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190613b50565b60405180910390fd5b819050919050565b610f1a611b7a565b73ffffffffffffffffffffffffffffffffffffffff16610f38611269565b73ffffffffffffffffffffffffffffffffffffffff1614610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8590613c50565b60405180910390fd5b818160109190610f9f92919061303c565b505050565b6000610faf8261243f565b600001519050919050565b8060038190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90613c10565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110b5611b7a565b73ffffffffffffffffffffffffffffffffffffffff166110d3611269565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090613c50565b60405180910390fd5b6111336000612606565b565b61113d611b7a565b73ffffffffffffffffffffffffffffffffffffffff1661115b611269565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890613c50565b60405180910390fd5b6001600f54146111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90613bb0565b60405180910390fd5b600a81111561123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190613b10565b60405180910390fd5b600e5481611246610b23565b6112509190613f70565b111561125b57600080fd5b61126582826126ca565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61129a6130c2565b6112a38261243f565b9050919050565b6060600580546112b9906141c9565b80601f01602080910402602001604051908101604052809291908181526020018280546112e5906141c9565b80156113325780601f1061130757610100808354040283529160200191611332565b820191906000526020600020905b81548152906001019060200180831161131557829003601f168201915b5050505050905090565b8060028190555050565b6001600f541461138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290613bb0565b60405180910390fd5b600a8111156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690613b10565b60405180910390fd5b600e54816113db610b23565b6113e59190613f70565b11156113f057600080fd5b80600c546113fe9190613ff7565b341015611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143790613e10565b60405180910390fd5b61144a33826126ca565b50565b611455611b7a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba90613c90565b60405180910390fd5b80600960006114d0611b7a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157d611b7a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c29190613a93565b60405180910390a35050565b6115d6611b7a565b73ffffffffffffffffffffffffffffffffffffffff166115f4611269565b73ffffffffffffffffffffffffffffffffffffffff161461164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190613c50565b60405180910390fd5b6002600b541415611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790613db0565b60405180910390fd5b6002600b8190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516116be90613a17565b60006040518083038185875af1925050503d80600081146116fb576040519150601f19603f3d011682016040523d82523d6000602084013e611700565b606091505b5050905080611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b90613cf0565b60405180910390fd5b506001600b81905550565b61175a848484611c34565b611766848484846126e8565b6117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c90613d10565b60405180910390fd5b50505050565b6117b3611b7a565b73ffffffffffffffffffffffffffffffffffffffff166117d1611269565b73ffffffffffffffffffffffffffffffffffffffff1614611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e90613c50565b60405180910390fd5b80600e8190555050565b606061183c82611b6c565b61187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290613c70565b60405180910390fd5b600061188561287f565b905060008151116118a557604051806020016040528060008152506118d0565b806118af84612911565b6040516020016118c09291906139f3565b6040516020818303038152906040525b915050919050565b600a5481565b60006118e982612a72565b9050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61198c611b7a565b73ffffffffffffffffffffffffffffffffffffffff166119aa611269565b73ffffffffffffffffffffffffffffffffffffffff1614611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790613c50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6790613af0565b60405180910390fd5b611a7981612606565b50565b611a84611b7a565b73ffffffffffffffffffffffffffffffffffffffff16611aa2611269565b73ffffffffffffffffffffffffffffffffffffffff1614611af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aef90613c50565b60405180910390fd5b80600c8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c3f8261243f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c66611b7a565b73ffffffffffffffffffffffffffffffffffffffff161480611cc25750611c8b611b7a565b73ffffffffffffffffffffffffffffffffffffffff16611caa84610985565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cde5750611cdd8260000151611cd8611b7a565b6118f0565b5b905080611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1790613cb0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990613c30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df990613b70565b60405180910390fd5b611e0f8585856001612b5b565b611e1f6000848460000151611b82565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e8d9190614051565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f319190613f2a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120379190613f70565b9050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561217d576120ad81611b6c565b1561217c576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506006600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121e58686866001612b61565b505050505050565b6000600a54905060008211612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222e90613bf0565b60405180910390fd5b6000600183836122479190613f70565b6122519190614085565b905060016002546122629190614085565b81111561227b5760016002546122789190614085565b90505b61228481611b6c565b6122c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ba90613d90565b60405180910390fd5b60008290505b81811161242657600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124135760006123468261243f565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b808061241e9061422c565b9150506122c9565b506001816124349190613f70565b600a81905550505050565b6124476130c2565b61245082611b6c565b61248f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248690613b30565b60405180910390fd5b600060035483106124b7576001600354846124aa9190614085565b6124b49190613f70565b90505b60008390505b8181106125c5576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125b157809350505050612601565b5080806125bd9061419f565b9150506124bd565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f890613dd0565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126e4828260405180602001604052806000815250612b67565b5050565b60006127098473ffffffffffffffffffffffffffffffffffffffff16613029565b15612872578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612732611b7a565b8786866040518563ffffffff1660e01b81526004016127549493929190613a47565b602060405180830381600087803b15801561276e57600080fd5b505af192505050801561279f57506040513d601f19601f8201168201806040525081019061279c9190613438565b60015b612822573d80600081146127cf576040519150601f19603f3d011682016040523d82523d6000602084013e6127d4565b606091505b5060008151141561281a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281190613d10565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612877565b600190505b949350505050565b60606010805461288e906141c9565b80601f01602080910402602001604051908101604052809291908181526020018280546128ba906141c9565b80156129075780601f106128dc57610100808354040283529160200191612907565b820191906000526020600020905b8154815290600101906020018083116128ea57829003601f168201915b5050505050905090565b60606000821415612959576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a6d565b600082905060005b6000821461298b5780806129749061422c565b915050600a826129849190613fc6565b9150612961565b60008167ffffffffffffffff8111156129a7576129a6614362565b5b6040519080825280601f01601f1916602001820160405280156129d95781602001600182028036833780820191505090505b5090505b60008514612a66576001826129f29190614085565b9150600a85612a019190614275565b6030612a0d9190613f70565b60f81b818381518110612a2357612a22614333565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a5f9190613fc6565b94506129dd565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada90613b90565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd590613d50565b60405180910390fd5b612be781611b6c565b15612c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1e90613d30565b60405180910390fd5b600354831115612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6390613e30565b60405180910390fd5b612c796000858386612b5b565b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d769190613f2a565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d9d9190613f2a565b6fffffffffffffffffffffffffffffffff16815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561300c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fac60008884886126e8565b612feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe290613d10565b60405180910390fd5b8180612ff69061422c565b92505080806130049061422c565b915050612f3b565b50806001819055506130216000878588612b61565b505050505050565b600080823b905060008111915050919050565b828054613048906141c9565b90600052602060002090601f01602090048101928261306a57600085556130b1565b82601f1061308357803560ff19168380011785556130b1565b828001600101855582156130b1579182015b828111156130b0578235825591602001919060010190613095565b5b5090506130be91906130fc565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131155760008160009055506001016130fd565b5090565b600061312c61312784613eab565b613e86565b905082815260208101848484011115613148576131476143a0565b5b61315384828561415d565b509392505050565b60008135905061316a81614b11565b92915050565b60008135905061317f81614b28565b92915050565b60008135905061319481614b3f565b92915050565b6000815190506131a981614b3f565b92915050565b600082601f8301126131c4576131c3614396565b5b81356131d4848260208601613119565b91505092915050565b60008083601f8401126131f3576131f2614396565b5b8235905067ffffffffffffffff8111156132105761320f614391565b5b60208301915083600182028301111561322c5761322b61439b565b5b9250929050565b60008135905061324281614b56565b92915050565b60006020828403121561325e5761325d6143aa565b5b600061326c8482850161315b565b91505092915050565b6000806040838503121561328c5761328b6143aa565b5b600061329a8582860161315b565b92505060206132ab8582860161315b565b9150509250929050565b6000806000606084860312156132ce576132cd6143aa565b5b60006132dc8682870161315b565b93505060206132ed8682870161315b565b92505060406132fe86828701613233565b9150509250925092565b60008060008060808587031215613322576133216143aa565b5b60006133308782880161315b565b94505060206133418782880161315b565b935050604061335287828801613233565b925050606085013567ffffffffffffffff811115613373576133726143a5565b5b61337f878288016131af565b91505092959194509250565b600080604083850312156133a2576133a16143aa565b5b60006133b08582860161315b565b92505060206133c185828601613170565b9150509250929050565b600080604083850312156133e2576133e16143aa565b5b60006133f08582860161315b565b925050602061340185828601613233565b9150509250929050565b600060208284031215613421576134206143aa565b5b600061342f84828501613185565b91505092915050565b60006020828403121561344e5761344d6143aa565b5b600061345c8482850161319a565b91505092915050565b6000806020838503121561347c5761347b6143aa565b5b600083013567ffffffffffffffff81111561349a576134996143a5565b5b6134a6858286016131dd565b92509250509250929050565b6000602082840312156134c8576134c76143aa565b5b60006134d684828501613233565b91505092915050565b6134e8816140b9565b82525050565b6134f7816140b9565b82525050565b613506816140cb565b82525050565b600061351782613edc565b6135218185613ef2565b935061353181856020860161416c565b61353a816143af565b840191505092915050565b600061355082613ee7565b61355a8185613f0e565b935061356a81856020860161416c565b613573816143af565b840191505092915050565b600061358982613ee7565b6135938185613f1f565b93506135a381856020860161416c565b80840191505092915050565b60006135bc602283613f0e565b91506135c7826143c0565b604082019050919050565b60006135df602683613f0e565b91506135ea8261440f565b604082019050919050565b6000613602601683613f0e565b915061360d8261445e565b602082019050919050565b6000613625602a83613f0e565b915061363082614487565b604082019050919050565b6000613648602383613f0e565b9150613653826144d6565b604082019050919050565b600061366b602583613f0e565b915061367682614525565b604082019050919050565b600061368e603183613f0e565b915061369982614574565b604082019050919050565b60006136b1601283613f0e565b91506136bc826145c3565b602082019050919050565b60006136d4603983613f0e565b91506136df826145ec565b604082019050919050565b60006136f7601883613f0e565b91506137028261463b565b602082019050919050565b600061371a602b83613f0e565b915061372582614664565b604082019050919050565b600061373d602683613f0e565b9150613748826146b3565b604082019050919050565b6000613760602083613f0e565b915061376b82614702565b602082019050919050565b6000613783602f83613f0e565b915061378e8261472b565b604082019050919050565b60006137a6601a83613f0e565b91506137b18261477a565b602082019050919050565b60006137c9603283613f0e565b91506137d4826147a3565b604082019050919050565b60006137ec602283613f0e565b91506137f7826147f2565b604082019050919050565b600061380f600083613f03565b915061381a82614841565b600082019050919050565b6000613832601083613f0e565b915061383d82614844565b602082019050919050565b6000613855603383613f0e565b91506138608261486d565b604082019050919050565b6000613878601d83613f0e565b9150613883826148bc565b602082019050919050565b600061389b602183613f0e565b91506138a6826148e5565b604082019050919050565b60006138be602e83613f0e565b91506138c982614934565b604082019050919050565b60006138e1602683613f0e565b91506138ec82614983565b604082019050919050565b6000613904601f83613f0e565b915061390f826149d2565b602082019050919050565b6000613927602f83613f0e565b9150613932826149fb565b604082019050919050565b600061394a602d83613f0e565b915061395582614a4a565b604082019050919050565b600061396d601383613f0e565b915061397882614a99565b602082019050919050565b6000613990602283613f0e565b915061399b82614ac2565b604082019050919050565b6040820160008201516139bc60008501826134df565b5060208201516139cf60208501826139e4565b50505050565b6139de8161413f565b82525050565b6139ed81614149565b82525050565b60006139ff828561357e565b9150613a0b828461357e565b91508190509392505050565b6000613a2282613802565b9150819050919050565b6000602082019050613a4160008301846134ee565b92915050565b6000608082019050613a5c60008301876134ee565b613a6960208301866134ee565b613a7660408301856139d5565b8181036060830152613a88818461350c565b905095945050505050565b6000602082019050613aa860008301846134fd565b92915050565b60006020820190508181036000830152613ac88184613545565b905092915050565b60006020820190508181036000830152613ae9816135af565b9050919050565b60006020820190508181036000830152613b09816135d2565b9050919050565b60006020820190508181036000830152613b29816135f5565b9050919050565b60006020820190508181036000830152613b4981613618565b9050919050565b60006020820190508181036000830152613b698161363b565b9050919050565b60006020820190508181036000830152613b898161365e565b9050919050565b60006020820190508181036000830152613ba981613681565b9050919050565b60006020820190508181036000830152613bc9816136a4565b9050919050565b60006020820190508181036000830152613be9816136c7565b9050919050565b60006020820190508181036000830152613c09816136ea565b9050919050565b60006020820190508181036000830152613c298161370d565b9050919050565b60006020820190508181036000830152613c4981613730565b9050919050565b60006020820190508181036000830152613c6981613753565b9050919050565b60006020820190508181036000830152613c8981613776565b9050919050565b60006020820190508181036000830152613ca981613799565b9050919050565b60006020820190508181036000830152613cc9816137bc565b9050919050565b60006020820190508181036000830152613ce9816137df565b9050919050565b60006020820190508181036000830152613d0981613825565b9050919050565b60006020820190508181036000830152613d2981613848565b9050919050565b60006020820190508181036000830152613d498161386b565b9050919050565b60006020820190508181036000830152613d698161388e565b9050919050565b60006020820190508181036000830152613d89816138b1565b9050919050565b60006020820190508181036000830152613da9816138d4565b9050919050565b60006020820190508181036000830152613dc9816138f7565b9050919050565b60006020820190508181036000830152613de98161391a565b9050919050565b60006020820190508181036000830152613e098161393d565b9050919050565b60006020820190508181036000830152613e2981613960565b9050919050565b60006020820190508181036000830152613e4981613983565b9050919050565b6000604082019050613e6560008301846139a6565b92915050565b6000602082019050613e8060008301846139d5565b92915050565b6000613e90613ea1565b9050613e9c82826141fb565b919050565b6000604051905090565b600067ffffffffffffffff821115613ec657613ec5614362565b5b613ecf826143af565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f3582614103565b9150613f4083614103565b9250826fffffffffffffffffffffffffffffffff03821115613f6557613f646142a6565b5b828201905092915050565b6000613f7b8261413f565b9150613f868361413f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fbb57613fba6142a6565b5b828201905092915050565b6000613fd18261413f565b9150613fdc8361413f565b925082613fec57613feb6142d5565b5b828204905092915050565b60006140028261413f565b915061400d8361413f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614046576140456142a6565b5b828202905092915050565b600061405c82614103565b915061406783614103565b92508282101561407a576140796142a6565b5b828203905092915050565b60006140908261413f565b915061409b8361413f565b9250828210156140ae576140ad6142a6565b5b828203905092915050565b60006140c48261411f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561418a57808201518184015260208101905061416f565b83811115614199576000848401525b50505050565b60006141aa8261413f565b915060008214156141be576141bd6142a6565b5b600182039050919050565b600060028204905060018216806141e157607f821691505b602082108114156141f5576141f4614304565b5b50919050565b614204826143af565b810181811067ffffffffffffffff8211171561422357614222614362565b5b80604052505050565b60006142378261413f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561426a576142696142a6565b5b600182019050919050565b60006142808261413f565b915061428b8361413f565b92508261429b5761429a6142d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e74206d696e74206d6f7265207468616e20313000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204574682073656e7400000000000000000000000000600082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614b1a816140b9565b8114614b2557600080fd5b50565b614b31816140cb565b8114614b3c57600080fd5b50565b614b48816140d7565b8114614b5357600080fd5b50565b614b5f8161413f565b8114614b6a57600080fd5b5056fea2646970667358221220fc42d96e69c46b4d6c9ef7d4f1ef98c705f737b3d4d8aae4e19e1120edb0d45564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 5000
Arg [2] : amountForAuctionAndDev_ (uint256): 0
Arg [3] : amountForDevs_ (uint256): 0
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
42569:2623:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27656:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29382:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30907:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30470:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26217:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31757:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44805:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26848:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43084:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31962:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26380:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44512:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29205:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25945:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28082:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41671:103;;;;;;;;;;;;;:::i;:::-;;44051:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41020:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45042:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29537:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26039:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43717:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31175:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44618:181;;;;;;;;;;;;;:::i;:::-;;32182:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43275:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29698:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36597:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44929:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31512:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41929:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43180:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27656:370;27783:4;27828:25;27813:40;;;:11;:40;;;;:99;;;;27879:33;27864:48;;;:11;:48;;;;27813:99;:160;;;;27938:35;27923:50;;;:11;:50;;;;27813:160;:207;;;;27984:36;28008:11;27984:23;:36::i;:::-;27813:207;27799:221;;27656:370;;;:::o;29382:94::-;29436:13;29465:5;29458:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29382:94;:::o;30907:204::-;30975:7;30999:16;31007:7;30999;:16::i;:::-;30991:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31081:15;:24;31097:7;31081:24;;;;;;;;;;;;;;;;;;;;;31074:31;;30907:204;;;:::o;30470:379::-;30539:13;30555:24;30571:7;30555:15;:24::i;:::-;30539:40;;30600:5;30594:11;;:2;:11;;;;30586:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30685:5;30669:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30694:37;30711:5;30718:12;:10;:12::i;:::-;30694:16;:37::i;:::-;30669:62;30653:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;30815:28;30824:2;30828:7;30837:5;30815:8;:28::i;:::-;30532:317;30470:379;;:::o;26217:94::-;26270:7;26293:12;;26286:19;;26217:94;:::o;31757:142::-;31865:28;31875:4;31881:2;31885:7;31865:9;:28::i;:::-;31757:142;;;:::o;44805:118::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21812:1:::1;22410:7;;:19;;22402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;21812:1;22543:7;:18;;;;44889:28:::2;44908:8;44889:18;:28::i;:::-;21768:1:::1;22722:7;:22;;;;44805:118:::0;:::o;26848:744::-;26957:7;26992:16;27002:5;26992:9;:16::i;:::-;26984:5;:24;26976:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27054:22;27079:13;:11;:13::i;:::-;27054:38;;27099:19;27129:25;27179:9;27174:350;27198:14;27194:1;:18;27174:350;;;27228:31;27262:11;:14;27274:1;27262:14;;;;;;;;;;;27228:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27315:1;27289:28;;:9;:14;;;:28;;;27285:89;;27350:9;:14;;;27330:34;;27285:89;27407:5;27386:26;;:17;:26;;;27382:135;;;27444:5;27429:11;:20;27425:59;;;27471:1;27464:8;;;;;;;;;27425:59;27494:13;;;;;:::i;:::-;;;;27382:135;27219:305;27214:3;;;;;:::i;:::-;;;;27174:350;;;;27530:56;;;;;;;;;;:::i;:::-;;;;;;;;26848:744;;;;;:::o;43084:90::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43163:3:::1;43148:12;:18;;;;43084:90:::0;:::o;31962:157::-;32074:39;32091:4;32097:2;32101:7;32074:39;;;;;;;;;;;;:16;:39::i;:::-;31962:157;;;:::o;26380:177::-;26447:7;26479:13;:11;:13::i;:::-;26471:5;:21;26463:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26546:5;26539:12;;26380:177;;;:::o;44512:100::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44599:7:::1;;44583:13;:23;;;;;;;:::i;:::-;;44512:100:::0;;:::o;29205:118::-;29269:7;29292:20;29304:7;29292:11;:20::i;:::-;:25;;;29285:32;;29205:118;;;:::o;25945:88::-;26019:8;26004:12;:23;;;;25945:88;:::o;28082:211::-;28146:7;28187:1;28170:19;;:5;:19;;;;28162:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28259:12;:19;28272:5;28259:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28251:36;;28244:43;;28082:211;;;:::o;41671:103::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41736:30:::1;41763:1;41736:18;:30::i;:::-;41671:103::o:0;44051:284::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44160:1:::1;44144:12;;:17;44136:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;44211:2;44199:8;:14;;44191:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44283:9;;44271:8;44255:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;44247:46;;;::::0;::::1;;44300:29;44310:8;44320;44300:9;:29::i;:::-;44051:284:::0;;:::o;41020:87::-;41066:7;41093:6;;;;;;;;;;;41086:13;;41020:87;:::o;45042:147::-;45123:21;;:::i;:::-;45163:20;45175:7;45163:11;:20::i;:::-;45156:27;;45042:147;;;:::o;29537:98::-;29593:13;29622:7;29615:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29537:98;:::o;26039:110::-;26126:17;26109:14;:34;;;;26039:110;:::o;43717:328::-;43797:1;43781:12;;:17;43773:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43848:2;43836:8;:14;;43828:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;43920:9;;43908:8;43892:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;43884:46;;;;;;43968:8;43959;;:17;;;;:::i;:::-;43945:9;:32;;43937:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44008:31;44018:10;44030:8;44008:9;:31::i;:::-;43717:328;:::o;31175:274::-;31278:12;:10;:12::i;:::-;31266:24;;:8;:24;;;;31258:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31375:8;31330:18;:32;31349:12;:10;:12::i;:::-;31330:32;;;;;;;;;;;;;;;:42;31363:8;31330:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31424:8;31395:48;;31410:12;:10;:12::i;:::-;31395:48;;;31434:8;31395:48;;;;;;:::i;:::-;;;;;;;;31175:274;;:::o;44618:181::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21812:1:::1;22410:7;;:19;;22402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;21812:1;22543:7;:18;;;;44683:12:::2;44701:10;:15;;44724:21;44701:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44682:68;;;44765:7;44757:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;44675:124;21768:1:::1;22722:7;:22;;;;44618:181::o:0;32182:311::-;32319:28;32329:4;32335:2;32339:7;32319:9;:28::i;:::-;32370:48;32393:4;32399:2;32403:7;32412:5;32370:22;:48::i;:::-;32354:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32182:311;;;;:::o;43275:95::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43356:6:::1;43344:9;:18;;;;43275:95:::0;:::o;29698:394::-;29796:13;29837:16;29845:7;29837;:16::i;:::-;29821:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;29927:21;29951:10;:8;:10::i;:::-;29927:34;;30006:1;29988:7;29982:21;:25;:104;;;;;;;;;;;;;;;;;30043:7;30052:18;:7;:16;:18::i;:::-;30026:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29982:104;29968:118;;;29698:394;;;:::o;36597:43::-;;;;:::o;44929:107::-;44987:7;45010:20;45024:5;45010:13;:20::i;:::-;45003:27;;44929:107;;;:::o;31512:186::-;31634:4;31657:18;:25;31676:5;31657:25;;;;;;;;;;;;;;;:35;31683:8;31657:35;;;;;;;;;;;;;;;;;;;;;;;;;31650:42;;31512:186;;;;:::o;41929:201::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42038:1:::1;42018:22;;:8;:22;;;;42010:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42094:28;42113:8;42094:18;:28::i;:::-;41929:201:::0;:::o;43180:89::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43256:5:::1;43245:8;:16;;;;43180:89:::0;:::o;13088:157::-;13173:4;13212:25;13197:40;;;:11;:40;;;;13190:47;;13088:157;;;:::o;32732:105::-;32789:4;32819:12;;32809:7;:22;32802:29;;32732:105;;;:::o;23438:98::-;23491:7;23518:10;23511:17;;23438:98;:::o;36419:172::-;36543:2;36516:15;:24;36532:7;36516:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36577:7;36573:2;36557:28;;36566:5;36557:28;;;;;;;;;;;;36419:172;;;:::o;34784:1529::-;34881:35;34919:20;34931:7;34919:11;:20::i;:::-;34881:58;;34948:22;34990:13;:18;;;34974:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;35043:12;:10;:12::i;:::-;35019:36;;:20;35031:7;35019:11;:20::i;:::-;:36;;;34974:81;:142;;;;35066:50;35083:13;:18;;;35103:12;:10;:12::i;:::-;35066:16;:50::i;:::-;34974:142;34948:169;;35142:17;35126:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35274:4;35252:26;;:13;:18;;;:26;;;35236:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35363:1;35349:16;;:2;:16;;;;35341:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35416:43;35438:4;35444:2;35448:7;35457:1;35416:21;:43::i;:::-;35516:49;35533:1;35537:7;35546:13;:18;;;35516:8;:49::i;:::-;35604:1;35574:12;:18;35587:4;35574:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35640:1;35612:12;:16;35625:2;35612:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35671:43;;;;;;;;35686:2;35671:43;;;;;;35697:15;35671:43;;;;;35648:11;:20;35660:7;35648:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35942:19;35974:1;35964:7;:11;;;;:::i;:::-;35942:33;;36027:1;35986:43;;:11;:24;35998:11;35986:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35982:236;;;36044:20;36052:11;36044:7;:20::i;:::-;36040:171;;;36104:97;;;;;;;;36131:13;:18;;;36104:97;;;;;;36162:13;:28;;;36104:97;;;;;36077:11;:24;36089:11;36077:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36040:171;35982:236;36250:7;36246:2;36231:27;;36240:4;36231:27;;;;;;;;;;;;36265:42;36286:4;36292:2;36296:7;36305:1;36265:20;:42::i;:::-;34874:1439;;;34784:1529;;;:::o;36745:846::-;36807:25;36835:24;;36807:52;;36885:1;36874:8;:12;36866:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;36922:16;36972:1;36961:8;36941:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;36922:51;;37012:1;36995:14;;:18;;;;:::i;:::-;36984:8;:29;36980:81;;;37052:1;37035:14;;:18;;;;:::i;:::-;37024:29;;36980:81;37176:17;37184:8;37176:7;:17::i;:::-;37168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37248:9;37260:17;37248:29;;37243:297;37284:8;37279:1;:13;37243:297;;37343:1;37312:33;;:11;:14;37324:1;37312:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;37308:225;;;37358:31;37392:14;37404:1;37392:11;:14::i;:::-;37358:48;;37434:89;;;;;;;;37461:9;:14;;;37434:89;;;;;;37488:9;:24;;;37434:89;;;;;37417:11;:14;37429:1;37417:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37347:186;37308:225;37294:3;;;;;:::i;:::-;;;;37243:297;;;;37584:1;37573:8;:12;;;;:::i;:::-;37546:24;:39;;;;36800:791;;36745:846;:::o;28545:606::-;28621:21;;:::i;:::-;28662:16;28670:7;28662;:16::i;:::-;28654:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28734:26;28782:12;;28771:7;:23;28767:93;;28851:1;28836:12;;28826:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;28805:47;;28767:93;28873:12;28888:7;28873:22;;28868:212;28905:18;28897:4;:26;28868:212;;28942:31;28976:11;:17;28988:4;28976:17;;;;;;;;;;;28942:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29032:1;29006:28;;:9;:14;;;:28;;;29002:71;;29054:9;29047:16;;;;;;;29002:71;28933:147;28925:6;;;;;:::i;:::-;;;;28868:212;;;;29088:57;;;;;;;;;;:::i;:::-;;;;;;;;28545:606;;;;:::o;42290:191::-;42364:16;42383:6;;;;;;;;;;;42364:25;;42409:8;42400:6;;:17;;;;;;;;;;;;;;;;;;42464:8;42433:40;;42454:8;42433:40;;;;;;;;;;;;42353:128;42290:191;:::o;32843:98::-;32908:27;32918:2;32922:8;32908:27;;;;;;;;;;;;:9;:27::i;:::-;32843:98;;:::o;38134:690::-;38271:4;38288:15;:2;:13;;;:15::i;:::-;38284:535;;;38343:2;38327:36;;;38364:12;:10;:12::i;:::-;38378:4;38384:7;38393:5;38327:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38314:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38575:1;38558:6;:13;:18;38554:215;;;38591:61;;;;;;;;;;:::i;:::-;;;;;;;;38554:215;38737:6;38731:13;38722:6;38718:2;38714:15;38707:38;38314:464;38459:45;;;38449:55;;;:6;:55;;;;38442:62;;;;;38284:535;38807:4;38800:11;;38134:690;;;;;;;:::o;44398:108::-;44458:13;44487;44480:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44398: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;28299:240::-;28360:7;28409:1;28392:19;;:5;:19;;;;28376:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;28500:12;:19;28513:5;28500:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;28492:41;;28485:48;;28299:240;;;:::o;39286:141::-;;;;;:::o;39813:140::-;;;;;:::o;33280:1272::-;33385:20;33408:12;;33385:35;;33449:1;33435:16;;:2;:16;;;;33427:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33626:21;33634:12;33626:7;:21::i;:::-;33625:22;33617:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33708:12;;33696:8;:24;;33688:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33768:61;33798:1;33802:2;33806:12;33820:8;33768:21;:61::i;:::-;33838:30;33871:12;:16;33884:2;33871:16;;;;;;;;;;;;;;;33838:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33913:119;;;;;;;;33963:8;33933:11;:19;;;:39;;;;:::i;:::-;33913:119;;;;;;34016:8;33981:11;:24;;;:44;;;;:::i;:::-;33913:119;;;;;33894:12;:16;33907:2;33894:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34067:43;;;;;;;;34082:2;34067:43;;;;;;34093:15;34067:43;;;;;34039:11;:25;34051:12;34039:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34119:20;34142:12;34119:35;;34168:9;34163:281;34187:8;34183:1;:12;34163:281;;;34241:12;34237:2;34216:38;;34233:1;34216:38;;;;;;;;;;;;34281:59;34312:1;34316:2;34320:12;34334:5;34281:22;:59::i;:::-;34263:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34422:14;;;;;:::i;:::-;;;;34197:3;;;;;:::i;:::-;;;;34163:281;;;;34467:12;34452;:27;;;;34486:60;34515:1;34519:2;34523:12;34537:8;34486:20;:60::i;:::-;33378:1174;;;33280:1272;;;:::o;2944:387::-;3004:4;3212:12;3279:7;3267:20;3259:28;;3322:1;3315:4;:8;3308:15;;;2944:387;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:::-;11935:3;11956:67;12020:2;12015:3;11956:67;:::i;:::-;11949:74;;12032:93;12121:3;12032:93;:::i;:::-;12150:2;12145:3;12141:12;12134:19;;11793:366;;;:::o;12165:::-;12307:3;12328:67;12392:2;12387:3;12328:67;:::i;:::-;12321:74;;12404:93;12493:3;12404:93;:::i;:::-;12522:2;12517:3;12513:12;12506:19;;12165:366;;;:::o;12537:::-;12679:3;12700:67;12764:2;12759:3;12700:67;:::i;:::-;12693:74;;12776:93;12865:3;12776:93;:::i;:::-;12894:2;12889:3;12885:12;12878:19;;12537:366;;;:::o;12909:::-;13051:3;13072:67;13136:2;13131:3;13072:67;:::i;:::-;13065:74;;13148:93;13237:3;13148:93;:::i;:::-;13266:2;13261:3;13257:12;13250:19;;12909:366;;;:::o;13281:::-;13423:3;13444:67;13508:2;13503:3;13444:67;:::i;:::-;13437:74;;13520:93;13609:3;13520:93;:::i;:::-;13638:2;13633:3;13629:12;13622:19;;13281:366;;;:::o;13653:::-;13795:3;13816:67;13880:2;13875:3;13816:67;:::i;:::-;13809:74;;13892:93;13981:3;13892:93;:::i;:::-;14010:2;14005:3;14001:12;13994:19;;13653:366;;;:::o;14025:::-;14167:3;14188:67;14252:2;14247:3;14188:67;:::i;:::-;14181:74;;14264:93;14353:3;14264:93;:::i;:::-;14382:2;14377:3;14373:12;14366:19;;14025:366;;;:::o;14397:::-;14539:3;14560:67;14624:2;14619:3;14560:67;:::i;:::-;14553:74;;14636:93;14725:3;14636:93;:::i;:::-;14754:2;14749:3;14745:12;14738:19;;14397:366;;;:::o;14769:398::-;14928:3;14949:83;15030:1;15025:3;14949:83;:::i;:::-;14942:90;;15041:93;15130:3;15041:93;:::i;:::-;15159:1;15154:3;15150:11;15143:18;;14769:398;;;:::o;15173:366::-;15315:3;15336:67;15400:2;15395:3;15336:67;:::i;:::-;15329:74;;15412:93;15501:3;15412:93;:::i;:::-;15530:2;15525:3;15521:12;15514:19;;15173:366;;;:::o;15545:::-;15687:3;15708:67;15772:2;15767:3;15708:67;:::i;:::-;15701:74;;15784:93;15873:3;15784:93;:::i;:::-;15902:2;15897:3;15893:12;15886:19;;15545:366;;;:::o;15917:::-;16059:3;16080:67;16144:2;16139:3;16080:67;:::i;:::-;16073:74;;16156:93;16245:3;16156:93;:::i;:::-;16274:2;16269:3;16265:12;16258:19;;15917:366;;;:::o;16289:::-;16431:3;16452:67;16516:2;16511:3;16452:67;:::i;:::-;16445:74;;16528:93;16617:3;16528:93;:::i;:::-;16646:2;16641:3;16637:12;16630:19;;16289:366;;;:::o;16661:::-;16803:3;16824:67;16888:2;16883:3;16824:67;:::i;:::-;16817:74;;16900:93;16989:3;16900:93;:::i;:::-;17018:2;17013:3;17009:12;17002:19;;16661:366;;;:::o;17033:::-;17175:3;17196:67;17260:2;17255:3;17196:67;:::i;:::-;17189:74;;17272:93;17361:3;17272:93;:::i;:::-;17390:2;17385:3;17381:12;17374:19;;17033:366;;;:::o;17405:::-;17547:3;17568:67;17632:2;17627:3;17568:67;:::i;:::-;17561:74;;17644:93;17733:3;17644:93;:::i;:::-;17762:2;17757:3;17753:12;17746:19;;17405:366;;;:::o;17777:::-;17919:3;17940:67;18004:2;17999:3;17940:67;:::i;:::-;17933:74;;18016:93;18105:3;18016:93;:::i;:::-;18134:2;18129:3;18125:12;18118:19;;17777:366;;;:::o;18149:::-;18291:3;18312:67;18376:2;18371:3;18312:67;:::i;:::-;18305:74;;18388:93;18477:3;18388:93;:::i;:::-;18506:2;18501:3;18497:12;18490:19;;18149:366;;;:::o;18521:::-;18663:3;18684:67;18748:2;18743:3;18684:67;:::i;:::-;18677:74;;18760:93;18849:3;18760:93;:::i;:::-;18878:2;18873:3;18869:12;18862:19;;18521:366;;;:::o;18893:::-;19035:3;19056:67;19120:2;19115:3;19056:67;:::i;:::-;19049:74;;19132:93;19221:3;19132:93;:::i;:::-;19250:2;19245:3;19241:12;19234:19;;18893:366;;;:::o;19335:527::-;19494:4;19489:3;19485:14;19581:4;19574:5;19570:16;19564:23;19600:63;19657:4;19652:3;19648:14;19634:12;19600:63;:::i;:::-;19509:164;19765:4;19758:5;19754:16;19748:23;19784:61;19839:4;19834:3;19830:14;19816:12;19784:61;:::i;:::-;19683:172;19463:399;19335:527;;:::o;19868:118::-;19955:24;19973:5;19955:24;:::i;:::-;19950:3;19943:37;19868:118;;:::o;19992:105::-;20067:23;20084:5;20067:23;:::i;:::-;20062:3;20055:36;19992:105;;:::o;20103:435::-;20283:3;20305:95;20396:3;20387:6;20305:95;:::i;:::-;20298:102;;20417:95;20508:3;20499:6;20417:95;:::i;:::-;20410:102;;20529:3;20522:10;;20103:435;;;;;:::o;20544:379::-;20728:3;20750:147;20893:3;20750:147;:::i;:::-;20743:154;;20914:3;20907:10;;20544:379;;;:::o;20929:222::-;21022:4;21060:2;21049:9;21045:18;21037:26;;21073:71;21141:1;21130:9;21126:17;21117:6;21073:71;:::i;:::-;20929:222;;;;:::o;21157:640::-;21352:4;21390:3;21379:9;21375:19;21367:27;;21404:71;21472:1;21461:9;21457:17;21448:6;21404:71;:::i;:::-;21485:72;21553:2;21542:9;21538:18;21529:6;21485:72;:::i;:::-;21567;21635:2;21624:9;21620:18;21611:6;21567:72;:::i;:::-;21686:9;21680:4;21676:20;21671:2;21660:9;21656:18;21649:48;21714:76;21785:4;21776:6;21714:76;:::i;:::-;21706:84;;21157:640;;;;;;;:::o;21803:210::-;21890:4;21928:2;21917:9;21913:18;21905:26;;21941:65;22003:1;21992:9;21988:17;21979:6;21941:65;:::i;:::-;21803:210;;;;:::o;22019:313::-;22132:4;22170:2;22159:9;22155:18;22147:26;;22219:9;22213:4;22209:20;22205:1;22194:9;22190:17;22183:47;22247:78;22320:4;22311:6;22247:78;:::i;:::-;22239:86;;22019:313;;;;:::o;22338:419::-;22504:4;22542:2;22531:9;22527:18;22519:26;;22591:9;22585:4;22581:20;22577:1;22566:9;22562:17;22555:47;22619:131;22745:4;22619:131;:::i;:::-;22611:139;;22338:419;;;:::o;22763:::-;22929:4;22967:2;22956:9;22952:18;22944:26;;23016:9;23010:4;23006:20;23002:1;22991:9;22987:17;22980:47;23044:131;23170:4;23044:131;:::i;:::-;23036:139;;22763:419;;;:::o;23188:::-;23354:4;23392:2;23381:9;23377:18;23369:26;;23441:9;23435:4;23431:20;23427:1;23416:9;23412:17;23405:47;23469:131;23595:4;23469:131;:::i;:::-;23461:139;;23188:419;;;:::o;23613:::-;23779:4;23817:2;23806:9;23802:18;23794:26;;23866:9;23860:4;23856:20;23852:1;23841:9;23837:17;23830:47;23894:131;24020:4;23894:131;:::i;:::-;23886:139;;23613:419;;;:::o;24038:::-;24204:4;24242:2;24231:9;24227:18;24219:26;;24291:9;24285:4;24281:20;24277:1;24266:9;24262:17;24255:47;24319:131;24445:4;24319:131;:::i;:::-;24311:139;;24038:419;;;:::o;24463:::-;24629:4;24667:2;24656:9;24652:18;24644:26;;24716:9;24710:4;24706:20;24702:1;24691:9;24687:17;24680:47;24744:131;24870:4;24744:131;:::i;:::-;24736:139;;24463:419;;;:::o;24888:::-;25054:4;25092:2;25081:9;25077:18;25069:26;;25141:9;25135:4;25131:20;25127:1;25116:9;25112:17;25105:47;25169:131;25295:4;25169:131;:::i;:::-;25161:139;;24888:419;;;:::o;25313:::-;25479:4;25517:2;25506:9;25502:18;25494:26;;25566:9;25560:4;25556:20;25552:1;25541:9;25537:17;25530:47;25594:131;25720:4;25594:131;:::i;:::-;25586:139;;25313:419;;;:::o;25738:::-;25904:4;25942:2;25931:9;25927:18;25919:26;;25991:9;25985:4;25981:20;25977:1;25966:9;25962:17;25955:47;26019:131;26145:4;26019:131;:::i;:::-;26011:139;;25738:419;;;:::o;26163:::-;26329:4;26367:2;26356:9;26352:18;26344:26;;26416:9;26410:4;26406:20;26402:1;26391:9;26387:17;26380:47;26444:131;26570:4;26444:131;:::i;:::-;26436:139;;26163:419;;;:::o;26588:::-;26754:4;26792:2;26781:9;26777:18;26769:26;;26841:9;26835:4;26831:20;26827:1;26816:9;26812:17;26805:47;26869:131;26995:4;26869:131;:::i;:::-;26861:139;;26588:419;;;:::o;27013:::-;27179:4;27217:2;27206:9;27202:18;27194:26;;27266:9;27260:4;27256:20;27252:1;27241:9;27237:17;27230:47;27294:131;27420:4;27294:131;:::i;:::-;27286:139;;27013:419;;;:::o;27438:::-;27604:4;27642:2;27631:9;27627:18;27619:26;;27691:9;27685:4;27681:20;27677:1;27666:9;27662:17;27655:47;27719:131;27845:4;27719:131;:::i;:::-;27711:139;;27438:419;;;:::o;27863:::-;28029:4;28067:2;28056:9;28052:18;28044:26;;28116:9;28110:4;28106:20;28102:1;28091:9;28087:17;28080:47;28144:131;28270:4;28144:131;:::i;:::-;28136:139;;27863:419;;;:::o;28288:::-;28454:4;28492:2;28481:9;28477:18;28469:26;;28541:9;28535:4;28531:20;28527:1;28516:9;28512:17;28505:47;28569:131;28695:4;28569:131;:::i;:::-;28561:139;;28288:419;;;:::o;28713:::-;28879:4;28917:2;28906:9;28902:18;28894:26;;28966:9;28960:4;28956:20;28952:1;28941:9;28937:17;28930:47;28994:131;29120:4;28994:131;:::i;:::-;28986:139;;28713:419;;;:::o;29138:::-;29304:4;29342:2;29331:9;29327:18;29319:26;;29391:9;29385:4;29381:20;29377:1;29366:9;29362:17;29355:47;29419:131;29545:4;29419:131;:::i;:::-;29411:139;;29138:419;;;:::o;29563:::-;29729:4;29767:2;29756:9;29752:18;29744:26;;29816:9;29810:4;29806:20;29802:1;29791:9;29787:17;29780:47;29844:131;29970:4;29844:131;:::i;:::-;29836:139;;29563:419;;;:::o;29988:::-;30154:4;30192:2;30181:9;30177:18;30169:26;;30241:9;30235:4;30231:20;30227:1;30216:9;30212:17;30205:47;30269:131;30395:4;30269:131;:::i;:::-;30261:139;;29988:419;;;:::o;30413:::-;30579:4;30617:2;30606:9;30602:18;30594:26;;30666:9;30660:4;30656:20;30652:1;30641:9;30637:17;30630:47;30694:131;30820:4;30694:131;:::i;:::-;30686:139;;30413:419;;;:::o;30838:::-;31004:4;31042:2;31031:9;31027:18;31019:26;;31091:9;31085:4;31081:20;31077:1;31066:9;31062:17;31055:47;31119:131;31245:4;31119:131;:::i;:::-;31111:139;;30838:419;;;:::o;31263:::-;31429:4;31467:2;31456:9;31452:18;31444:26;;31516:9;31510:4;31506:20;31502:1;31491:9;31487:17;31480:47;31544:131;31670:4;31544:131;:::i;:::-;31536:139;;31263:419;;;:::o;31688:::-;31854:4;31892:2;31881:9;31877:18;31869:26;;31941:9;31935:4;31931:20;31927:1;31916:9;31912:17;31905:47;31969:131;32095:4;31969:131;:::i;:::-;31961:139;;31688:419;;;:::o;32113:::-;32279:4;32317:2;32306:9;32302:18;32294:26;;32366:9;32360:4;32356:20;32352:1;32341:9;32337:17;32330:47;32394:131;32520:4;32394:131;:::i;:::-;32386:139;;32113:419;;;:::o;32538:::-;32704:4;32742:2;32731:9;32727:18;32719:26;;32791:9;32785:4;32781:20;32777:1;32766:9;32762:17;32755:47;32819:131;32945:4;32819:131;:::i;:::-;32811:139;;32538:419;;;:::o;32963:::-;33129:4;33167:2;33156:9;33152:18;33144:26;;33216:9;33210:4;33206:20;33202:1;33191:9;33187:17;33180:47;33244:131;33370:4;33244:131;:::i;:::-;33236:139;;32963:419;;;:::o;33388:::-;33554:4;33592:2;33581:9;33577:18;33569:26;;33641:9;33635:4;33631:20;33627:1;33616:9;33612:17;33605:47;33669:131;33795:4;33669:131;:::i;:::-;33661:139;;33388:419;;;:::o;33813:::-;33979:4;34017:2;34006:9;34002:18;33994:26;;34066:9;34060:4;34056:20;34052:1;34041:9;34037:17;34030:47;34094:131;34220:4;34094:131;:::i;:::-;34086:139;;33813:419;;;:::o;34238:346::-;34393:4;34431:2;34420:9;34416:18;34408:26;;34444:133;34574:1;34563:9;34559:17;34550:6;34444:133;:::i;:::-;34238:346;;;;:::o;34590:222::-;34683:4;34721:2;34710:9;34706:18;34698:26;;34734:71;34802:1;34791:9;34787:17;34778:6;34734:71;:::i;:::-;34590:222;;;;:::o;34818:129::-;34852:6;34879:20;;:::i;:::-;34869:30;;34908:33;34936:4;34928:6;34908:33;:::i;:::-;34818:129;;;:::o;34953:75::-;34986:6;35019:2;35013:9;35003:19;;34953:75;:::o;35034:307::-;35095:4;35185:18;35177:6;35174:30;35171:56;;;35207:18;;:::i;:::-;35171:56;35245:29;35267:6;35245:29;:::i;:::-;35237:37;;35329:4;35323;35319:15;35311:23;;35034:307;;;:::o;35347:98::-;35398:6;35432:5;35426:12;35416:22;;35347:98;;;:::o;35451:99::-;35503:6;35537:5;35531:12;35521:22;;35451:99;;;:::o;35556:168::-;35639:11;35673:6;35668:3;35661:19;35713:4;35708:3;35704:14;35689:29;;35556:168;;;;:::o;35730:147::-;35831:11;35868:3;35853:18;;35730:147;;;;:::o;35883:169::-;35967:11;36001:6;35996:3;35989:19;36041:4;36036:3;36032:14;36017:29;;35883:169;;;;:::o;36058:148::-;36160:11;36197:3;36182:18;;36058:148;;;;:::o;36212:273::-;36252:3;36271:20;36289:1;36271:20;:::i;:::-;36266:25;;36305:20;36323:1;36305:20;:::i;:::-;36300:25;;36427:1;36391:34;36387:42;36384:1;36381:49;36378:75;;;36433:18;;:::i;:::-;36378:75;36477:1;36474;36470:9;36463:16;;36212:273;;;;:::o;36491:305::-;36531:3;36550:20;36568:1;36550:20;:::i;:::-;36545:25;;36584:20;36602:1;36584:20;:::i;:::-;36579:25;;36738:1;36670:66;36666:74;36663:1;36660:81;36657:107;;;36744:18;;:::i;:::-;36657:107;36788:1;36785;36781:9;36774:16;;36491:305;;;;:::o;36802:185::-;36842:1;36859:20;36877:1;36859:20;:::i;:::-;36854:25;;36893:20;36911:1;36893:20;:::i;:::-;36888:25;;36932:1;36922:35;;36937:18;;:::i;:::-;36922:35;36979:1;36976;36972:9;36967:14;;36802:185;;;;:::o;36993:348::-;37033:7;37056:20;37074:1;37056:20;:::i;:::-;37051:25;;37090:20;37108:1;37090:20;:::i;:::-;37085:25;;37278:1;37210:66;37206:74;37203:1;37200:81;37195:1;37188:9;37181:17;37177:105;37174:131;;;37285:18;;:::i;:::-;37174:131;37333:1;37330;37326:9;37315:20;;36993:348;;;;:::o;37347:191::-;37387:4;37407:20;37425:1;37407:20;:::i;:::-;37402:25;;37441:20;37459:1;37441:20;:::i;:::-;37436:25;;37480:1;37477;37474:8;37471:34;;;37485:18;;:::i;:::-;37471:34;37530:1;37527;37523:9;37515:17;;37347:191;;;;:::o;37544:::-;37584:4;37604:20;37622:1;37604:20;:::i;:::-;37599:25;;37638:20;37656:1;37638:20;:::i;:::-;37633:25;;37677:1;37674;37671:8;37668:34;;;37682:18;;:::i;:::-;37668:34;37727:1;37724;37720:9;37712:17;;37544:191;;;;:::o;37741:96::-;37778:7;37807:24;37825:5;37807:24;:::i;:::-;37796:35;;37741:96;;;:::o;37843:90::-;37877:7;37920:5;37913:13;37906:21;37895:32;;37843:90;;;:::o;37939:149::-;37975:7;38015:66;38008:5;38004:78;37993:89;;37939:149;;;:::o;38094:118::-;38131:7;38171:34;38164:5;38160:46;38149:57;;38094:118;;;:::o;38218:126::-;38255:7;38295:42;38288:5;38284:54;38273:65;;38218:126;;;:::o;38350:77::-;38387:7;38416:5;38405:16;;38350:77;;;:::o;38433:101::-;38469:7;38509:18;38502:5;38498:30;38487:41;;38433:101;;;:::o;38540:154::-;38624:6;38619:3;38614;38601:30;38686:1;38677:6;38672:3;38668:16;38661:27;38540:154;;;:::o;38700:307::-;38768:1;38778:113;38792:6;38789:1;38786:13;38778:113;;;38877:1;38872:3;38868:11;38862:18;38858:1;38853:3;38849:11;38842:39;38814:2;38811:1;38807:10;38802:15;;38778:113;;;38909:6;38906:1;38903:13;38900:101;;;38989:1;38980:6;38975:3;38971:16;38964:27;38900:101;38749:258;38700:307;;;:::o;39013:171::-;39052:3;39075:24;39093:5;39075:24;:::i;:::-;39066:33;;39121:4;39114:5;39111:15;39108:41;;;39129:18;;:::i;:::-;39108:41;39176:1;39169:5;39165:13;39158:20;;39013:171;;;:::o;39190:320::-;39234:6;39271:1;39265:4;39261:12;39251:22;;39318:1;39312:4;39308:12;39339:18;39329:81;;39395:4;39387:6;39383:17;39373:27;;39329:81;39457:2;39449:6;39446:14;39426:18;39423:38;39420:84;;;39476:18;;:::i;:::-;39420:84;39241:269;39190:320;;;:::o;39516:281::-;39599:27;39621:4;39599:27;:::i;:::-;39591:6;39587:40;39729:6;39717:10;39714:22;39693:18;39681:10;39678:34;39675:62;39672:88;;;39740:18;;:::i;:::-;39672:88;39780:10;39776:2;39769:22;39559:238;39516:281;;:::o;39803:233::-;39842:3;39865:24;39883:5;39865:24;:::i;:::-;39856:33;;39911:66;39904:5;39901:77;39898:103;;;39981:18;;:::i;:::-;39898:103;40028:1;40021:5;40017:13;40010:20;;39803:233;;;:::o;40042:176::-;40074:1;40091:20;40109:1;40091:20;:::i;:::-;40086:25;;40125:20;40143:1;40125:20;:::i;:::-;40120:25;;40164:1;40154:35;;40169:18;;:::i;:::-;40154:35;40210:1;40207;40203:9;40198:14;;40042:176;;;;:::o;40224:180::-;40272:77;40269:1;40262:88;40369:4;40366:1;40359:15;40393:4;40390:1;40383:15;40410:180;40458:77;40455:1;40448:88;40555:4;40552:1;40545:15;40579:4;40576:1;40569:15;40596:180;40644:77;40641:1;40634:88;40741:4;40738:1;40731:15;40765:4;40762:1;40755:15;40782:180;40830:77;40827:1;40820:88;40927:4;40924:1;40917:15;40951:4;40948:1;40941:15;40968:180;41016:77;41013:1;41006:88;41113:4;41110:1;41103:15;41137:4;41134:1;41127:15;41154:117;41263:1;41260;41253:12;41277:117;41386:1;41383;41376:12;41400:117;41509:1;41506;41499:12;41523:117;41632:1;41629;41622:12;41646:117;41755:1;41752;41745:12;41769:117;41878:1;41875;41868:12;41892:102;41933:6;41984:2;41980:7;41975:2;41968:5;41964:14;41960:28;41950:38;;41892:102;;;:::o;42000:221::-;42140:34;42136:1;42128:6;42124:14;42117:58;42209:4;42204:2;42196:6;42192:15;42185:29;42000:221;:::o;42227:225::-;42367:34;42363:1;42355:6;42351:14;42344:58;42436:8;42431:2;42423:6;42419:15;42412:33;42227:225;:::o;42458:172::-;42598:24;42594:1;42586:6;42582:14;42575:48;42458:172;:::o;42636:229::-;42776:34;42772:1;42764:6;42760:14;42753:58;42845:12;42840:2;42832:6;42828:15;42821:37;42636:229;:::o;42871:222::-;43011:34;43007:1;42999:6;42995:14;42988:58;43080:5;43075:2;43067:6;43063:15;43056:30;42871:222;:::o;43099:224::-;43239:34;43235:1;43227:6;43223:14;43216:58;43308:7;43303:2;43295:6;43291:15;43284:32;43099:224;:::o;43329:236::-;43469:34;43465:1;43457:6;43453:14;43446:58;43538:19;43533:2;43525:6;43521:15;43514:44;43329:236;:::o;43571:168::-;43711:20;43707:1;43699:6;43695:14;43688:44;43571:168;:::o;43745:244::-;43885:34;43881:1;43873:6;43869:14;43862:58;43954:27;43949:2;43941:6;43937:15;43930:52;43745:244;:::o;43995:174::-;44135:26;44131:1;44123:6;44119:14;44112:50;43995:174;:::o;44175:230::-;44315:34;44311:1;44303:6;44299:14;44292:58;44384:13;44379:2;44371:6;44367:15;44360:38;44175:230;:::o;44411:225::-;44551:34;44547:1;44539:6;44535:14;44528:58;44620:8;44615:2;44607:6;44603:15;44596:33;44411:225;:::o;44642:182::-;44782:34;44778:1;44770:6;44766:14;44759:58;44642:182;:::o;44830:234::-;44970:34;44966:1;44958:6;44954:14;44947:58;45039:17;45034:2;45026:6;45022:15;45015:42;44830:234;:::o;45070:176::-;45210:28;45206:1;45198:6;45194:14;45187:52;45070:176;:::o;45252:237::-;45392:34;45388:1;45380:6;45376:14;45369:58;45461:20;45456:2;45448:6;45444:15;45437:45;45252:237;:::o;45495:221::-;45635:34;45631:1;45623:6;45619:14;45612:58;45704:4;45699:2;45691:6;45687:15;45680:29;45495:221;:::o;45722:114::-;;:::o;45842:166::-;45982:18;45978:1;45970:6;45966:14;45959:42;45842:166;:::o;46014:238::-;46154:34;46150:1;46142:6;46138:14;46131:58;46223:21;46218:2;46210:6;46206:15;46199:46;46014:238;:::o;46258:179::-;46398:31;46394:1;46386:6;46382:14;46375:55;46258:179;:::o;46443:220::-;46583:34;46579:1;46571:6;46567:14;46560:58;46652:3;46647:2;46639:6;46635:15;46628:28;46443:220;:::o;46669:233::-;46809:34;46805:1;46797:6;46793:14;46786:58;46878:16;46873:2;46865:6;46861:15;46854:41;46669:233;:::o;46908:225::-;47048:34;47044:1;47036:6;47032:14;47025:58;47117:8;47112:2;47104:6;47100:15;47093:33;46908:225;:::o;47139:181::-;47279:33;47275:1;47267:6;47263:14;47256:57;47139:181;:::o;47326:234::-;47466:34;47462:1;47454:6;47450:14;47443:58;47535:17;47530:2;47522:6;47518:15;47511:42;47326:234;:::o;47566:232::-;47706:34;47702:1;47694:6;47690:14;47683:58;47775:15;47770:2;47762:6;47758:15;47751:40;47566:232;:::o;47804:169::-;47944:21;47940:1;47932:6;47928:14;47921:45;47804:169;:::o;47979:221::-;48119:34;48115:1;48107:6;48103:14;48096:58;48188:4;48183:2;48175:6;48171:15;48164:29;47979:221;:::o;48206:122::-;48279:24;48297:5;48279:24;:::i;:::-;48272:5;48269:35;48259:63;;48318:1;48315;48308:12;48259:63;48206:122;:::o;48334:116::-;48404:21;48419:5;48404:21;:::i;:::-;48397:5;48394:32;48384:60;;48440:1;48437;48430:12;48384:60;48334:116;:::o;48456:120::-;48528:23;48545:5;48528:23;:::i;:::-;48521:5;48518:34;48508:62;;48566:1;48563;48556:12;48508:62;48456:120;:::o;48582:122::-;48655:24;48673:5;48655:24;:::i;:::-;48648:5;48645:35;48635:63;;48694:1;48691;48684:12;48635:63;48582:122;:::o
Swarm Source
ipfs://fc42d96e69c46b4d6c9ef7d4f1ef98c705f737b3d4d8aae4e19e1120edb0d455
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.