Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,317 FF
Holders
181
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 FFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FudFrens
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
/* _____ _ _ ____ _____ ____ U _____ u _ _ ____ |" ___|U |"|u| | | _"\ |" ___|U | _"\ u \| ___"|/| \ |"| / __"| u U| |_ u \| |\| |/| | | | U| |_ u \| |_) |/ | _|" <| \| |><\___ \/ \| _|/ | |_| |U| |_| |\ \| _|/ | _ < | |___ U| |\ |u u___) | |_| <<\___/ |____/ u |_| |_| \_\ |_____| |_| \_| |____/>> )(\\,- (__) )( |||_ )(\\,- // \\_ << >> || \\,-.)( (__) (__)(_/ (__) (__)_) (__)(_/ (__) (__)(__) (__)(_") (_/(__) */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Ownable.sol"; import "./ERC721A.sol"; interface IFud { function mint(address to, uint256 value) external; function burn(address user, uint256 amount) external; } contract FudFrens is Ownable, ERC721A { IFud public Fud; uint256 public immutable maxPerAddress; uint256 public maxFree = 3; uint256 public maxPerTransaction = 20; uint256 public mintPrice = 0.004 ether; bool public mintActive = false; bool public claimingActive = false; string private _baseTokenURI; uint256 public maxFreeSupply = 1000; uint256 public maxGenesis = 10000; uint256 public startTime; mapping(address => uint256) public outstandingFud; constructor( uint256 maxBatchSize_, uint256 collectionSize_ ) ERC721A("Fud Frens", "FF", maxBatchSize_, collectionSize_) { maxPerAddress = maxBatchSize_; startTime = block.timestamp; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function freeMint(uint256 quantity) external callerIsUser { require(mintActive, "mint is not active"); require(totalSupply() + quantity <= maxFreeSupply, "max supply has been reached"); require(quantity + numberMinted(msg.sender) <= maxFree, "max 3 free per wallet"); _safeMint(msg.sender, quantity); } function mint(uint256 quantity) external payable callerIsUser { require(mintActive, "mint is not active"); require(totalSupply() + quantity <= maxGenesis, "max supply has been reached"); require( quantity <= maxPerTransaction, "max 20 per address"); require(msg.value >= mintPrice * quantity, "not enough eth sent"); _safeMint(msg.sender, quantity); } function devMint(uint256 quantity) external onlyOwner { require(quantity % maxBatchSize == 0,"can only mint a multiple of the maxBatchSize"); require(totalSupply() + quantity <= maxGenesis, "max supply has been reached"); uint256 numChunks = quantity / maxBatchSize; for (uint256 i = 0; i < numChunks; i++) { _safeMint(msg.sender, maxBatchSize); } } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner { require(address(this).balance > 0); payable(msg.sender).transfer(address(this).balance); } function setOwnersExplicit(uint256 quantity) external onlyOwner { _setOwnersExplicit(quantity); } function toggleMintActive() external onlyOwner { mintActive = !mintActive; } function setFudAddress(address _fudAddress) external onlyOwner { Fud = IFud(_fudAddress); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./IERC721Enumerable.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @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 immutable collectionSize; uint256 internal immutable 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 {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 virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); 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 {} }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // 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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","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":[],"name":"Fud","outputs":[{"internalType":"contract IFud","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","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":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"outstandingFud","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":"address","name":"_fudAddress","type":"address"}],"name":"setFudAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"toggleMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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
60e0604052600060015560006008556003600a556014600b55660e35fa931a0000600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506103e8600f556127106010553480156200007257600080fd5b5060405162005778380380620057788339818101604052810190620000989190620003a2565b6040518060400160405280600981526020017f467564204672656e7300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f46460000000000000000000000000000000000000000000000000000000000008152508383620001266200011a6200020f60201b60201c565b6200021760201b60201c565b600081116200016c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001639062000459565b60405180910390fd5b60008211620001b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001a99062000437565b60405180910390fd5b8360029080519060200190620001ca929190620002db565b508260039080519060200190620001e3929190620002db565b508160a081815250508060808181525050505050508160c08181525050426011819055505050620005b8565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e99062000496565b90600052602060002090601f0160209004810192826200030d576000855562000359565b82601f106200032857805160ff191683800117855562000359565b8280016001018555821562000359579182015b82811115620003585782518255916020019190600101906200033b565b5b5090506200036891906200036c565b5090565b5b80821115620003875760008160009055506001016200036d565b5090565b6000815190506200039c816200059e565b92915050565b60008060408385031215620003bc57620003bb620004fb565b5b6000620003cc858286016200038b565b9250506020620003df858286016200038b565b9150509250929050565b6000620003f86027836200047b565b9150620004058262000500565b604082019050919050565b60006200041f602e836200047b565b91506200042c826200054f565b604082019050919050565b600060208201905081810360008301526200045281620003e9565b9050919050565b60006020820190508181036000830152620004748162000410565b9050919050565b600082825260208201905092915050565b6000819050919050565b60006002820490506001821680620004af57607f821691505b60208210811415620004c657620004c5620004cc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b620005a9816200048c565b8114620005b557600080fd5b50565b60805160a05160c0516151666200061260003960006112b30152600081816110400152818161110501528181611142015281816128f20152818161291b01526130a601526000818161265c015261269001526151666000f3fe6080604052600436106102465760003560e01c80636ccd5e5011610139578063ac446002116100b6578063dc33e6811161007a578063dc33e6811461085f578063dc37c6d81461089c578063e985e9c5146108d9578063eb59ccfa14610916578063edce4e6d14610941578063f2fde38b1461096a57610246565b8063ac446002146107a0578063b88d4fde146107b7578063c87b56dd146107e0578063d02c2bf21461081d578063d7224ba01461083457610246565b80638da5cb5b116100fd5780638da5cb5b146106c85780639231ab2a146106f357806395d89b4114610730578063a0712d681461075b578063a22cb4651461077757610246565b80636ccd5e50146105f557806370a0823114610620578063715018a61461065d57806378e97925146106745780637c928fe91461069f57610246565b806342842e0e116101c757806355f804b31161018b57806355f804b31461050e5780635fabe446146105375780636352211e14610562578063639814e01461059f5780636817c76c146105ca57610246565b806342842e0e146104275780634751333414610450578063485a68a31461047b5780634b980d67146104a65780634f6ccce7146104d157610246565b806323b872dd1161020e57806323b872dd1461034457806325fd90f31461036d5780632d20fb60146103985780632f745c59146103c1578063375a069a146103fe57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906138b6565b610993565b60405161027f9190613f5b565b60405180910390f35b34801561029457600080fd5b5061029d610add565b6040516102aa9190613f91565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d5919061395d565b610b6f565b6040516102e79190613ef4565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613876565b610bf4565b005b34801561032557600080fd5b5061032e610d0d565b60405161033b919061438e565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613760565b610d17565b005b34801561037957600080fd5b50610382610d27565b60405161038f9190613f5b565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba919061395d565b610d3a565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613876565b610dc2565b6040516103f5919061438e565b60405180910390f35b34801561040a57600080fd5b506104256004803603810190610420919061395d565b610fc0565b005b34801561043357600080fd5b5061044e60048036038101906104499190613760565b61117e565b005b34801561045c57600080fd5b5061046561119e565b604051610472919061438e565b60405180910390f35b34801561048757600080fd5b506104906111a4565b60405161049d919061438e565b60405180910390f35b3480156104b257600080fd5b506104bb6111aa565b6040516104c8919061438e565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f3919061395d565b6111b0565b604051610505919061438e565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190613910565b611203565b005b34801561054357600080fd5b5061054c611295565b604051610559919061438e565b60405180910390f35b34801561056e57600080fd5b506105896004803603810190610584919061395d565b61129b565b6040516105969190613ef4565b60405180910390f35b3480156105ab57600080fd5b506105b46112b1565b6040516105c1919061438e565b60405180910390f35b3480156105d657600080fd5b506105df6112d5565b6040516105ec919061438e565b60405180910390f35b34801561060157600080fd5b5061060a6112db565b6040516106179190613f5b565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906136f3565b6112ee565b604051610654919061438e565b60405180910390f35b34801561066957600080fd5b506106726113d7565b005b34801561068057600080fd5b5061068961145f565b604051610696919061438e565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061395d565b611465565b005b3480156106d457600080fd5b506106dd6115de565b6040516106ea9190613ef4565b60405180910390f35b3480156106ff57600080fd5b5061071a6004803603810190610715919061395d565b611607565b6040516107279190614373565b60405180910390f35b34801561073c57600080fd5b5061074561161f565b6040516107529190613f91565b60405180910390f35b6107756004803603810190610770919061395d565b6116b1565b005b34801561078357600080fd5b5061079e60048036038101906107999190613836565b611867565b005b3480156107ac57600080fd5b506107b56119e8565b005b3480156107c357600080fd5b506107de60048036038101906107d991906137b3565b611aba565b005b3480156107ec57600080fd5b506108076004803603810190610802919061395d565b611b16565b6040516108149190613f91565b60405180910390f35b34801561082957600080fd5b50610832611bbd565b005b34801561084057600080fd5b50610849611c65565b604051610856919061438e565b60405180910390f35b34801561086b57600080fd5b50610886600480360381019061088191906136f3565b611c6b565b604051610893919061438e565b60405180910390f35b3480156108a857600080fd5b506108c360048036038101906108be91906136f3565b611c7d565b6040516108d0919061438e565b60405180910390f35b3480156108e557600080fd5b5061090060048036038101906108fb9190613720565b611c95565b60405161090d9190613f5b565b60405180910390f35b34801561092257600080fd5b5061092b611d29565b6040516109389190613f76565b60405180910390f35b34801561094d57600080fd5b50610968600480360381019061096391906136f3565b611d4f565b005b34801561097657600080fd5b50610991600480360381019061098c91906136f3565b611e0f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad65750610ad582611f07565b5b9050919050565b606060028054610aec90614717565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1890614717565b8015610b655780601f10610b3a57610100808354040283529160200191610b65565b820191906000526020600020905b815481529060010190602001808311610b4857829003601f168201915b5050505050905090565b6000610b7a82611f71565b610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090614333565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bff8261129b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6790614233565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c8f611f7f565b73ffffffffffffffffffffffffffffffffffffffff161480610cbe5750610cbd81610cb8611f7f565b611c95565b5b610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf4906140d3565b60405180910390fd5b610d08838383611f87565b505050565b6000600154905090565b610d22838383612039565b505050565b600d60009054906101000a900460ff1681565b610d42611f7f565b73ffffffffffffffffffffffffffffffffffffffff16610d606115de565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90614193565b60405180910390fd5b610dbf816125f2565b50565b6000610dcd836112ee565b8210610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590613fb3565b60405180910390fd5b6000610e18610d0d565b905060008060005b83811015610f7e576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f1257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f6a5786841415610f5b578195505050505050610fba565b8380610f669061477a565b9450505b508080610f769061477a565b915050610e20565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb1906142b3565b60405180910390fd5b92915050565b610fc8611f7f565b73ffffffffffffffffffffffffffffffffffffffff16610fe66115de565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390614193565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008261106a91906147c3565b146110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190614033565b60405180910390fd5b601054816110b6610d0d565b6110c09190614488565b1115611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890614113565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008261112f91906144de565b905060005b8181101561117957611166337f0000000000000000000000000000000000000000000000000000000000000000612880565b80806111719061477a565b915050611134565b505050565b61119983838360405180602001604052806000815250611aba565b505050565b600f5481565b600a5481565b600b5481565b60006111ba610d0d565b82106111fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f290614053565b60405180910390fd5b819050919050565b61120b611f7f565b73ffffffffffffffffffffffffffffffffffffffff166112296115de565b73ffffffffffffffffffffffffffffffffffffffff161461127f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127690614193565b60405180910390fd5b8181600e91906112909291906134e7565b505050565b60105481565b60006112a68261289e565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c5481565b600d60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690614153565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113df611f7f565b73ffffffffffffffffffffffffffffffffffffffff166113fd6115de565b73ffffffffffffffffffffffffffffffffffffffff1614611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90614193565b60405180910390fd5b61145d6000612aa1565b565b60115481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca906140b3565b60405180910390fd5b600d60009054906101000a900460ff16611522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151990614213565b60405180910390fd5b600f548161152e610d0d565b6115389190614488565b1115611579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157090614113565b60405180910390fd5b600a5461158533611c6b565b826115909190614488565b11156115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c890613fd3565b60405180910390fd5b6115db3382612880565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61160f61356d565b6116188261289e565b9050919050565b60606003805461162e90614717565b80601f016020809104026020016040519081016040528092919081815260200182805461165a90614717565b80156116a75780601f1061167c576101008083540402835291602001916116a7565b820191906000526020600020905b81548152906001019060200180831161168a57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906140b3565b60405180910390fd5b600d60009054906101000a900460ff1661176e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176590614213565b60405180910390fd5b6010548161177a610d0d565b6117849190614488565b11156117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90614113565b60405180910390fd5b600b5481111561180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190614133565b60405180910390fd5b80600c54611818919061450f565b34101561185a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611851906142f3565b60405180910390fd5b6118643382612880565b50565b61186f611f7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d4906141d3565b60405180910390fd5b80600760006118ea611f7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611997611f7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119dc9190613f5b565b60405180910390a35050565b6119f0611f7f565b73ffffffffffffffffffffffffffffffffffffffff16611a0e6115de565b73ffffffffffffffffffffffffffffffffffffffff1614611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90614193565b60405180910390fd5b60004711611a7157600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611ab7573d6000803e3d6000fd5b50565b611ac5848484612039565b611ad184848484612b65565b611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0790614253565b60405180910390fd5b50505050565b6060611b2182611f71565b611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b57906141b3565b60405180910390fd5b6000611b6a612cfc565b90506000815111611b8a5760405180602001604052806000815250611bb5565b80611b9484612d8e565b604051602001611ba5929190613ed0565b6040516020818303038152906040525b915050919050565b611bc5611f7f565b73ffffffffffffffffffffffffffffffffffffffff16611be36115de565b73ffffffffffffffffffffffffffffffffffffffff1614611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090614193565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60085481565b6000611c7682612eef565b9050919050565b60126020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611d57611f7f565b73ffffffffffffffffffffffffffffffffffffffff16611d756115de565b73ffffffffffffffffffffffffffffffffffffffff1614611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290614193565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611e17611f7f565b73ffffffffffffffffffffffffffffffffffffffff16611e356115de565b73ffffffffffffffffffffffffffffffffffffffff1614611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8290614193565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290613ff3565b60405180910390fd5b611f0481612aa1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120448261289e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661206b611f7f565b73ffffffffffffffffffffffffffffffffffffffff1614806120c75750612090611f7f565b73ffffffffffffffffffffffffffffffffffffffff166120af84610b6f565b73ffffffffffffffffffffffffffffffffffffffff16145b806120e357506120e282600001516120dd611f7f565b611c95565b5b905080612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c906141f3565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e90614173565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fe90614073565b60405180910390fd5b6122148585856001612fd8565b6122246000848460000151611f87565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122929190614569565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123369190614442565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461243c9190614488565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612582576124b281611f71565b15612581576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125ea8686866001612fde565b505050505050565b600060085490506000821161263c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612633906140f3565b60405180910390fd5b60006001838361264c9190614488565b612656919061459d565b905060017f0000000000000000000000000000000000000000000000000000000000000000612685919061459d565b8111156126bc5760017f00000000000000000000000000000000000000000000000000000000000000006126b9919061459d565b90505b6126c581611f71565b612704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fb906142d3565b60405180910390fd5b60008290505b81811161286757600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128545760006127878261289e565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b808061285f9061477a565b91505061270a565b506001816128759190614488565b600881905550505050565b61289a828260405180602001604052806000815250612fe4565b5050565b6128a661356d565b6128af82611f71565b6128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590614013565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106129525760017f000000000000000000000000000000000000000000000000000000000000000084612945919061459d565b61294f9190614488565b90505b60008390505b818110612a60576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a4c57809350505050612a9c565b508080612a58906146ed565b915050612958565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9390614313565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612b868473ffffffffffffffffffffffffffffffffffffffff166134c4565b15612cef578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612baf611f7f565b8786866040518563ffffffff1660e01b8152600401612bd19493929190613f0f565b602060405180830381600087803b158015612beb57600080fd5b505af1925050508015612c1c57506040513d601f19601f82011682018060405250810190612c1991906138e3565b60015b612c9f573d8060008114612c4c576040519150601f19603f3d011682016040523d82523d6000602084013e612c51565b606091505b50600081511415612c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8e90614253565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cf4565b600190505b949350505050565b6060600e8054612d0b90614717565b80601f0160208091040260200160405190810160405280929190818152602001828054612d3790614717565b8015612d845780601f10612d5957610100808354040283529160200191612d84565b820191906000526020600020905b815481529060010190602001808311612d6757829003601f168201915b5050505050905090565b60606000821415612dd6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612eea565b600082905060005b60008214612e08578080612df19061477a565b915050600a82612e0191906144de565b9150612dde565b60008167ffffffffffffffff811115612e2457612e236148b0565b5b6040519080825280601f01601f191660200182016040528015612e565781602001600182028036833780820191505090505b5090505b60008514612ee357600182612e6f919061459d565b9150600a85612e7e91906147c3565b6030612e8a9190614488565b60f81b818381518110612ea057612e9f614881565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612edc91906144de565b9450612e5a565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5790614093565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561305b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305290614293565b60405180910390fd5b61306481611f71565b156130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b90614273565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fe90614353565b60405180910390fd5b6131146000858386612fd8565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516132119190614442565b6fffffffffffffffffffffffffffffffff1681526020018583602001516132389190614442565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156134a757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134476000888488612b65565b613486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347d90614253565b60405180910390fd5b81806134919061477a565b925050808061349f9061477a565b9150506133d6565b50806001819055506134bc6000878588612fde565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546134f390614717565b90600052602060002090601f016020900481019282613515576000855561355c565b82601f1061352e57803560ff191683800117855561355c565b8280016001018555821561355c579182015b8281111561355b578235825591602001919060010190613540565b5b50905061356991906135a7565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156135c05760008160009055506001016135a8565b5090565b60006135d76135d2846143ce565b6143a9565b9050828152602081018484840111156135f3576135f26148ee565b5b6135fe8482856146ab565b509392505050565b600081359050613615816150d4565b92915050565b60008135905061362a816150eb565b92915050565b60008135905061363f81615102565b92915050565b60008151905061365481615102565b92915050565b600082601f83011261366f5761366e6148e4565b5b813561367f8482602086016135c4565b91505092915050565b60008083601f84011261369e5761369d6148e4565b5b8235905067ffffffffffffffff8111156136bb576136ba6148df565b5b6020830191508360018202830111156136d7576136d66148e9565b5b9250929050565b6000813590506136ed81615119565b92915050565b600060208284031215613709576137086148f8565b5b600061371784828501613606565b91505092915050565b60008060408385031215613737576137366148f8565b5b600061374585828601613606565b925050602061375685828601613606565b9150509250929050565b600080600060608486031215613779576137786148f8565b5b600061378786828701613606565b935050602061379886828701613606565b92505060406137a9868287016136de565b9150509250925092565b600080600080608085870312156137cd576137cc6148f8565b5b60006137db87828801613606565b94505060206137ec87828801613606565b93505060406137fd878288016136de565b925050606085013567ffffffffffffffff81111561381e5761381d6148f3565b5b61382a8782880161365a565b91505092959194509250565b6000806040838503121561384d5761384c6148f8565b5b600061385b85828601613606565b925050602061386c8582860161361b565b9150509250929050565b6000806040838503121561388d5761388c6148f8565b5b600061389b85828601613606565b92505060206138ac858286016136de565b9150509250929050565b6000602082840312156138cc576138cb6148f8565b5b60006138da84828501613630565b91505092915050565b6000602082840312156138f9576138f86148f8565b5b600061390784828501613645565b91505092915050565b60008060208385031215613927576139266148f8565b5b600083013567ffffffffffffffff811115613945576139446148f3565b5b61395185828601613688565b92509250509250929050565b600060208284031215613973576139726148f8565b5b6000613981848285016136de565b91505092915050565b613993816145d1565b82525050565b6139a2816145d1565b82525050565b6139b1816145e3565b82525050565b60006139c2826143ff565b6139cc8185614415565b93506139dc8185602086016146ba565b6139e5816148fd565b840191505092915050565b6139f981614675565b82525050565b6000613a0a8261440a565b613a148185614426565b9350613a248185602086016146ba565b613a2d816148fd565b840191505092915050565b6000613a438261440a565b613a4d8185614437565b9350613a5d8185602086016146ba565b80840191505092915050565b6000613a76602283614426565b9150613a818261490e565b604082019050919050565b6000613a99601583614426565b9150613aa48261495d565b602082019050919050565b6000613abc602683614426565b9150613ac782614986565b604082019050919050565b6000613adf602a83614426565b9150613aea826149d5565b604082019050919050565b6000613b02602c83614426565b9150613b0d82614a24565b604082019050919050565b6000613b25602383614426565b9150613b3082614a73565b604082019050919050565b6000613b48602583614426565b9150613b5382614ac2565b604082019050919050565b6000613b6b603183614426565b9150613b7682614b11565b604082019050919050565b6000613b8e601e83614426565b9150613b9982614b60565b602082019050919050565b6000613bb1603983614426565b9150613bbc82614b89565b604082019050919050565b6000613bd4601883614426565b9150613bdf82614bd8565b602082019050919050565b6000613bf7601b83614426565b9150613c0282614c01565b602082019050919050565b6000613c1a601283614426565b9150613c2582614c2a565b602082019050919050565b6000613c3d602b83614426565b9150613c4882614c53565b604082019050919050565b6000613c60602683614426565b9150613c6b82614ca2565b604082019050919050565b6000613c83602083614426565b9150613c8e82614cf1565b602082019050919050565b6000613ca6602f83614426565b9150613cb182614d1a565b604082019050919050565b6000613cc9601a83614426565b9150613cd482614d69565b602082019050919050565b6000613cec603283614426565b9150613cf782614d92565b604082019050919050565b6000613d0f601283614426565b9150613d1a82614de1565b602082019050919050565b6000613d32602283614426565b9150613d3d82614e0a565b604082019050919050565b6000613d55603383614426565b9150613d6082614e59565b604082019050919050565b6000613d78601d83614426565b9150613d8382614ea8565b602082019050919050565b6000613d9b602183614426565b9150613da682614ed1565b604082019050919050565b6000613dbe602e83614426565b9150613dc982614f20565b604082019050919050565b6000613de1602683614426565b9150613dec82614f6f565b604082019050919050565b6000613e04601383614426565b9150613e0f82614fbe565b602082019050919050565b6000613e27602f83614426565b9150613e3282614fe7565b604082019050919050565b6000613e4a602d83614426565b9150613e5582615036565b604082019050919050565b6000613e6d602283614426565b9150613e7882615085565b604082019050919050565b604082016000820151613e99600085018261398a565b506020820151613eac6020850182613ec1565b50505050565b613ebb81614657565b82525050565b613eca81614661565b82525050565b6000613edc8285613a38565b9150613ee88284613a38565b91508190509392505050565b6000602082019050613f096000830184613999565b92915050565b6000608082019050613f246000830187613999565b613f316020830186613999565b613f3e6040830185613eb2565b8181036060830152613f5081846139b7565b905095945050505050565b6000602082019050613f7060008301846139a8565b92915050565b6000602082019050613f8b60008301846139f0565b92915050565b60006020820190508181036000830152613fab81846139ff565b905092915050565b60006020820190508181036000830152613fcc81613a69565b9050919050565b60006020820190508181036000830152613fec81613a8c565b9050919050565b6000602082019050818103600083015261400c81613aaf565b9050919050565b6000602082019050818103600083015261402c81613ad2565b9050919050565b6000602082019050818103600083015261404c81613af5565b9050919050565b6000602082019050818103600083015261406c81613b18565b9050919050565b6000602082019050818103600083015261408c81613b3b565b9050919050565b600060208201905081810360008301526140ac81613b5e565b9050919050565b600060208201905081810360008301526140cc81613b81565b9050919050565b600060208201905081810360008301526140ec81613ba4565b9050919050565b6000602082019050818103600083015261410c81613bc7565b9050919050565b6000602082019050818103600083015261412c81613bea565b9050919050565b6000602082019050818103600083015261414c81613c0d565b9050919050565b6000602082019050818103600083015261416c81613c30565b9050919050565b6000602082019050818103600083015261418c81613c53565b9050919050565b600060208201905081810360008301526141ac81613c76565b9050919050565b600060208201905081810360008301526141cc81613c99565b9050919050565b600060208201905081810360008301526141ec81613cbc565b9050919050565b6000602082019050818103600083015261420c81613cdf565b9050919050565b6000602082019050818103600083015261422c81613d02565b9050919050565b6000602082019050818103600083015261424c81613d25565b9050919050565b6000602082019050818103600083015261426c81613d48565b9050919050565b6000602082019050818103600083015261428c81613d6b565b9050919050565b600060208201905081810360008301526142ac81613d8e565b9050919050565b600060208201905081810360008301526142cc81613db1565b9050919050565b600060208201905081810360008301526142ec81613dd4565b9050919050565b6000602082019050818103600083015261430c81613df7565b9050919050565b6000602082019050818103600083015261432c81613e1a565b9050919050565b6000602082019050818103600083015261434c81613e3d565b9050919050565b6000602082019050818103600083015261436c81613e60565b9050919050565b60006040820190506143886000830184613e83565b92915050565b60006020820190506143a36000830184613eb2565b92915050565b60006143b36143c4565b90506143bf8282614749565b919050565b6000604051905090565b600067ffffffffffffffff8211156143e9576143e86148b0565b5b6143f2826148fd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061444d8261461b565b91506144588361461b565b9250826fffffffffffffffffffffffffffffffff0382111561447d5761447c6147f4565b5b828201905092915050565b600061449382614657565b915061449e83614657565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144d3576144d26147f4565b5b828201905092915050565b60006144e982614657565b91506144f483614657565b92508261450457614503614823565b5b828204905092915050565b600061451a82614657565b915061452583614657565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561455e5761455d6147f4565b5b828202905092915050565b60006145748261461b565b915061457f8361461b565b925082821015614592576145916147f4565b5b828203905092915050565b60006145a882614657565b91506145b383614657565b9250828210156145c6576145c56147f4565b5b828203905092915050565b60006145dc82614637565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600061468082614687565b9050919050565b600061469282614699565b9050919050565b60006146a482614637565b9050919050565b82818337600083830152505050565b60005b838110156146d85780820151818401526020810190506146bd565b838111156146e7576000848401525b50505050565b60006146f882614657565b9150600082141561470c5761470b6147f4565b5b600182039050919050565b6000600282049050600182168061472f57607f821691505b6020821081141561474357614742614852565b5b50919050565b614752826148fd565b810181811067ffffffffffffffff82111715614771576147706148b0565b5b80604052505050565b600061478582614657565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147b8576147b76147f4565b5b600182019050919050565b60006147ce82614657565b91506147d983614657565b9250826147e9576147e8614823565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d617820332066726565207065722077616c6c65740000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f6d617820737570706c7920686173206265656e20726561636865640000000000600082015250565b7f6d61782032302070657220616464726573730000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f6d696e74206973206e6f74206163746976650000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206574682073656e7400000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6150dd816145d1565b81146150e857600080fd5b50565b6150f4816145e3565b81146150ff57600080fd5b50565b61510b816145ef565b811461511657600080fd5b50565b61512281614657565b811461512d57600080fd5b5056fea26469706673582212208307c94cb91caf5efc26d1bcf50fb3e96840cbdce2730ee2faa909b77167bd3b64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000002710
Deployed Bytecode
0x6080604052600436106102465760003560e01c80636ccd5e5011610139578063ac446002116100b6578063dc33e6811161007a578063dc33e6811461085f578063dc37c6d81461089c578063e985e9c5146108d9578063eb59ccfa14610916578063edce4e6d14610941578063f2fde38b1461096a57610246565b8063ac446002146107a0578063b88d4fde146107b7578063c87b56dd146107e0578063d02c2bf21461081d578063d7224ba01461083457610246565b80638da5cb5b116100fd5780638da5cb5b146106c85780639231ab2a146106f357806395d89b4114610730578063a0712d681461075b578063a22cb4651461077757610246565b80636ccd5e50146105f557806370a0823114610620578063715018a61461065d57806378e97925146106745780637c928fe91461069f57610246565b806342842e0e116101c757806355f804b31161018b57806355f804b31461050e5780635fabe446146105375780636352211e14610562578063639814e01461059f5780636817c76c146105ca57610246565b806342842e0e146104275780634751333414610450578063485a68a31461047b5780634b980d67146104a65780634f6ccce7146104d157610246565b806323b872dd1161020e57806323b872dd1461034457806325fd90f31461036d5780632d20fb60146103985780632f745c59146103c1578063375a069a146103fe57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906138b6565b610993565b60405161027f9190613f5b565b60405180910390f35b34801561029457600080fd5b5061029d610add565b6040516102aa9190613f91565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d5919061395d565b610b6f565b6040516102e79190613ef4565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613876565b610bf4565b005b34801561032557600080fd5b5061032e610d0d565b60405161033b919061438e565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613760565b610d17565b005b34801561037957600080fd5b50610382610d27565b60405161038f9190613f5b565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba919061395d565b610d3a565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613876565b610dc2565b6040516103f5919061438e565b60405180910390f35b34801561040a57600080fd5b506104256004803603810190610420919061395d565b610fc0565b005b34801561043357600080fd5b5061044e60048036038101906104499190613760565b61117e565b005b34801561045c57600080fd5b5061046561119e565b604051610472919061438e565b60405180910390f35b34801561048757600080fd5b506104906111a4565b60405161049d919061438e565b60405180910390f35b3480156104b257600080fd5b506104bb6111aa565b6040516104c8919061438e565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f3919061395d565b6111b0565b604051610505919061438e565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190613910565b611203565b005b34801561054357600080fd5b5061054c611295565b604051610559919061438e565b60405180910390f35b34801561056e57600080fd5b506105896004803603810190610584919061395d565b61129b565b6040516105969190613ef4565b60405180910390f35b3480156105ab57600080fd5b506105b46112b1565b6040516105c1919061438e565b60405180910390f35b3480156105d657600080fd5b506105df6112d5565b6040516105ec919061438e565b60405180910390f35b34801561060157600080fd5b5061060a6112db565b6040516106179190613f5b565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906136f3565b6112ee565b604051610654919061438e565b60405180910390f35b34801561066957600080fd5b506106726113d7565b005b34801561068057600080fd5b5061068961145f565b604051610696919061438e565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061395d565b611465565b005b3480156106d457600080fd5b506106dd6115de565b6040516106ea9190613ef4565b60405180910390f35b3480156106ff57600080fd5b5061071a6004803603810190610715919061395d565b611607565b6040516107279190614373565b60405180910390f35b34801561073c57600080fd5b5061074561161f565b6040516107529190613f91565b60405180910390f35b6107756004803603810190610770919061395d565b6116b1565b005b34801561078357600080fd5b5061079e60048036038101906107999190613836565b611867565b005b3480156107ac57600080fd5b506107b56119e8565b005b3480156107c357600080fd5b506107de60048036038101906107d991906137b3565b611aba565b005b3480156107ec57600080fd5b506108076004803603810190610802919061395d565b611b16565b6040516108149190613f91565b60405180910390f35b34801561082957600080fd5b50610832611bbd565b005b34801561084057600080fd5b50610849611c65565b604051610856919061438e565b60405180910390f35b34801561086b57600080fd5b50610886600480360381019061088191906136f3565b611c6b565b604051610893919061438e565b60405180910390f35b3480156108a857600080fd5b506108c360048036038101906108be91906136f3565b611c7d565b6040516108d0919061438e565b60405180910390f35b3480156108e557600080fd5b5061090060048036038101906108fb9190613720565b611c95565b60405161090d9190613f5b565b60405180910390f35b34801561092257600080fd5b5061092b611d29565b6040516109389190613f76565b60405180910390f35b34801561094d57600080fd5b50610968600480360381019061096391906136f3565b611d4f565b005b34801561097657600080fd5b50610991600480360381019061098c91906136f3565b611e0f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad65750610ad582611f07565b5b9050919050565b606060028054610aec90614717565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1890614717565b8015610b655780601f10610b3a57610100808354040283529160200191610b65565b820191906000526020600020905b815481529060010190602001808311610b4857829003601f168201915b5050505050905090565b6000610b7a82611f71565b610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090614333565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bff8261129b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6790614233565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c8f611f7f565b73ffffffffffffffffffffffffffffffffffffffff161480610cbe5750610cbd81610cb8611f7f565b611c95565b5b610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf4906140d3565b60405180910390fd5b610d08838383611f87565b505050565b6000600154905090565b610d22838383612039565b505050565b600d60009054906101000a900460ff1681565b610d42611f7f565b73ffffffffffffffffffffffffffffffffffffffff16610d606115de565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90614193565b60405180910390fd5b610dbf816125f2565b50565b6000610dcd836112ee565b8210610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590613fb3565b60405180910390fd5b6000610e18610d0d565b905060008060005b83811015610f7e576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f1257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f6a5786841415610f5b578195505050505050610fba565b8380610f669061477a565b9450505b508080610f769061477a565b915050610e20565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb1906142b3565b60405180910390fd5b92915050565b610fc8611f7f565b73ffffffffffffffffffffffffffffffffffffffff16610fe66115de565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390614193565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000148261106a91906147c3565b146110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190614033565b60405180910390fd5b601054816110b6610d0d565b6110c09190614488565b1115611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890614113565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000148261112f91906144de565b905060005b8181101561117957611166337f0000000000000000000000000000000000000000000000000000000000000014612880565b80806111719061477a565b915050611134565b505050565b61119983838360405180602001604052806000815250611aba565b505050565b600f5481565b600a5481565b600b5481565b60006111ba610d0d565b82106111fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f290614053565b60405180910390fd5b819050919050565b61120b611f7f565b73ffffffffffffffffffffffffffffffffffffffff166112296115de565b73ffffffffffffffffffffffffffffffffffffffff161461127f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127690614193565b60405180910390fd5b8181600e91906112909291906134e7565b505050565b60105481565b60006112a68261289e565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000001481565b600c5481565b600d60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690614153565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113df611f7f565b73ffffffffffffffffffffffffffffffffffffffff166113fd6115de565b73ffffffffffffffffffffffffffffffffffffffff1614611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90614193565b60405180910390fd5b61145d6000612aa1565b565b60115481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca906140b3565b60405180910390fd5b600d60009054906101000a900460ff16611522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151990614213565b60405180910390fd5b600f548161152e610d0d565b6115389190614488565b1115611579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157090614113565b60405180910390fd5b600a5461158533611c6b565b826115909190614488565b11156115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c890613fd3565b60405180910390fd5b6115db3382612880565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61160f61356d565b6116188261289e565b9050919050565b60606003805461162e90614717565b80601f016020809104026020016040519081016040528092919081815260200182805461165a90614717565b80156116a75780601f1061167c576101008083540402835291602001916116a7565b820191906000526020600020905b81548152906001019060200180831161168a57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906140b3565b60405180910390fd5b600d60009054906101000a900460ff1661176e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176590614213565b60405180910390fd5b6010548161177a610d0d565b6117849190614488565b11156117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90614113565b60405180910390fd5b600b5481111561180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190614133565b60405180910390fd5b80600c54611818919061450f565b34101561185a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611851906142f3565b60405180910390fd5b6118643382612880565b50565b61186f611f7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d4906141d3565b60405180910390fd5b80600760006118ea611f7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611997611f7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119dc9190613f5b565b60405180910390a35050565b6119f0611f7f565b73ffffffffffffffffffffffffffffffffffffffff16611a0e6115de565b73ffffffffffffffffffffffffffffffffffffffff1614611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90614193565b60405180910390fd5b60004711611a7157600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611ab7573d6000803e3d6000fd5b50565b611ac5848484612039565b611ad184848484612b65565b611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0790614253565b60405180910390fd5b50505050565b6060611b2182611f71565b611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b57906141b3565b60405180910390fd5b6000611b6a612cfc565b90506000815111611b8a5760405180602001604052806000815250611bb5565b80611b9484612d8e565b604051602001611ba5929190613ed0565b6040516020818303038152906040525b915050919050565b611bc5611f7f565b73ffffffffffffffffffffffffffffffffffffffff16611be36115de565b73ffffffffffffffffffffffffffffffffffffffff1614611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090614193565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60085481565b6000611c7682612eef565b9050919050565b60126020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611d57611f7f565b73ffffffffffffffffffffffffffffffffffffffff16611d756115de565b73ffffffffffffffffffffffffffffffffffffffff1614611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290614193565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611e17611f7f565b73ffffffffffffffffffffffffffffffffffffffff16611e356115de565b73ffffffffffffffffffffffffffffffffffffffff1614611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8290614193565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290613ff3565b60405180910390fd5b611f0481612aa1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120448261289e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661206b611f7f565b73ffffffffffffffffffffffffffffffffffffffff1614806120c75750612090611f7f565b73ffffffffffffffffffffffffffffffffffffffff166120af84610b6f565b73ffffffffffffffffffffffffffffffffffffffff16145b806120e357506120e282600001516120dd611f7f565b611c95565b5b905080612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c906141f3565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e90614173565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fe90614073565b60405180910390fd5b6122148585856001612fd8565b6122246000848460000151611f87565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122929190614569565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123369190614442565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461243c9190614488565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612582576124b281611f71565b15612581576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125ea8686866001612fde565b505050505050565b600060085490506000821161263c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612633906140f3565b60405180910390fd5b60006001838361264c9190614488565b612656919061459d565b905060017f0000000000000000000000000000000000000000000000000000000000002710612685919061459d565b8111156126bc5760017f00000000000000000000000000000000000000000000000000000000000027106126b9919061459d565b90505b6126c581611f71565b612704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fb906142d3565b60405180910390fd5b60008290505b81811161286757600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128545760006127878261289e565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b808061285f9061477a565b91505061270a565b506001816128759190614488565b600881905550505050565b61289a828260405180602001604052806000815250612fe4565b5050565b6128a661356d565b6128af82611f71565b6128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590614013565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001483106129525760017f000000000000000000000000000000000000000000000000000000000000001484612945919061459d565b61294f9190614488565b90505b60008390505b818110612a60576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a4c57809350505050612a9c565b508080612a58906146ed565b915050612958565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9390614313565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612b868473ffffffffffffffffffffffffffffffffffffffff166134c4565b15612cef578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612baf611f7f565b8786866040518563ffffffff1660e01b8152600401612bd19493929190613f0f565b602060405180830381600087803b158015612beb57600080fd5b505af1925050508015612c1c57506040513d601f19601f82011682018060405250810190612c1991906138e3565b60015b612c9f573d8060008114612c4c576040519150601f19603f3d011682016040523d82523d6000602084013e612c51565b606091505b50600081511415612c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8e90614253565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cf4565b600190505b949350505050565b6060600e8054612d0b90614717565b80601f0160208091040260200160405190810160405280929190818152602001828054612d3790614717565b8015612d845780601f10612d5957610100808354040283529160200191612d84565b820191906000526020600020905b815481529060010190602001808311612d6757829003601f168201915b5050505050905090565b60606000821415612dd6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612eea565b600082905060005b60008214612e08578080612df19061477a565b915050600a82612e0191906144de565b9150612dde565b60008167ffffffffffffffff811115612e2457612e236148b0565b5b6040519080825280601f01601f191660200182016040528015612e565781602001600182028036833780820191505090505b5090505b60008514612ee357600182612e6f919061459d565b9150600a85612e7e91906147c3565b6030612e8a9190614488565b60f81b818381518110612ea057612e9f614881565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612edc91906144de565b9450612e5a565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5790614093565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561305b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305290614293565b60405180910390fd5b61306481611f71565b156130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b90614273565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115613107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fe90614353565b60405180910390fd5b6131146000858386612fd8565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516132119190614442565b6fffffffffffffffffffffffffffffffff1681526020018583602001516132389190614442565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156134a757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134476000888488612b65565b613486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347d90614253565b60405180910390fd5b81806134919061477a565b925050808061349f9061477a565b9150506133d6565b50806001819055506134bc6000878588612fde565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546134f390614717565b90600052602060002090601f016020900481019282613515576000855561355c565b82601f1061352e57803560ff191683800117855561355c565b8280016001018555821561355c579182015b8281111561355b578235825591602001919060010190613540565b5b50905061356991906135a7565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156135c05760008160009055506001016135a8565b5090565b60006135d76135d2846143ce565b6143a9565b9050828152602081018484840111156135f3576135f26148ee565b5b6135fe8482856146ab565b509392505050565b600081359050613615816150d4565b92915050565b60008135905061362a816150eb565b92915050565b60008135905061363f81615102565b92915050565b60008151905061365481615102565b92915050565b600082601f83011261366f5761366e6148e4565b5b813561367f8482602086016135c4565b91505092915050565b60008083601f84011261369e5761369d6148e4565b5b8235905067ffffffffffffffff8111156136bb576136ba6148df565b5b6020830191508360018202830111156136d7576136d66148e9565b5b9250929050565b6000813590506136ed81615119565b92915050565b600060208284031215613709576137086148f8565b5b600061371784828501613606565b91505092915050565b60008060408385031215613737576137366148f8565b5b600061374585828601613606565b925050602061375685828601613606565b9150509250929050565b600080600060608486031215613779576137786148f8565b5b600061378786828701613606565b935050602061379886828701613606565b92505060406137a9868287016136de565b9150509250925092565b600080600080608085870312156137cd576137cc6148f8565b5b60006137db87828801613606565b94505060206137ec87828801613606565b93505060406137fd878288016136de565b925050606085013567ffffffffffffffff81111561381e5761381d6148f3565b5b61382a8782880161365a565b91505092959194509250565b6000806040838503121561384d5761384c6148f8565b5b600061385b85828601613606565b925050602061386c8582860161361b565b9150509250929050565b6000806040838503121561388d5761388c6148f8565b5b600061389b85828601613606565b92505060206138ac858286016136de565b9150509250929050565b6000602082840312156138cc576138cb6148f8565b5b60006138da84828501613630565b91505092915050565b6000602082840312156138f9576138f86148f8565b5b600061390784828501613645565b91505092915050565b60008060208385031215613927576139266148f8565b5b600083013567ffffffffffffffff811115613945576139446148f3565b5b61395185828601613688565b92509250509250929050565b600060208284031215613973576139726148f8565b5b6000613981848285016136de565b91505092915050565b613993816145d1565b82525050565b6139a2816145d1565b82525050565b6139b1816145e3565b82525050565b60006139c2826143ff565b6139cc8185614415565b93506139dc8185602086016146ba565b6139e5816148fd565b840191505092915050565b6139f981614675565b82525050565b6000613a0a8261440a565b613a148185614426565b9350613a248185602086016146ba565b613a2d816148fd565b840191505092915050565b6000613a438261440a565b613a4d8185614437565b9350613a5d8185602086016146ba565b80840191505092915050565b6000613a76602283614426565b9150613a818261490e565b604082019050919050565b6000613a99601583614426565b9150613aa48261495d565b602082019050919050565b6000613abc602683614426565b9150613ac782614986565b604082019050919050565b6000613adf602a83614426565b9150613aea826149d5565b604082019050919050565b6000613b02602c83614426565b9150613b0d82614a24565b604082019050919050565b6000613b25602383614426565b9150613b3082614a73565b604082019050919050565b6000613b48602583614426565b9150613b5382614ac2565b604082019050919050565b6000613b6b603183614426565b9150613b7682614b11565b604082019050919050565b6000613b8e601e83614426565b9150613b9982614b60565b602082019050919050565b6000613bb1603983614426565b9150613bbc82614b89565b604082019050919050565b6000613bd4601883614426565b9150613bdf82614bd8565b602082019050919050565b6000613bf7601b83614426565b9150613c0282614c01565b602082019050919050565b6000613c1a601283614426565b9150613c2582614c2a565b602082019050919050565b6000613c3d602b83614426565b9150613c4882614c53565b604082019050919050565b6000613c60602683614426565b9150613c6b82614ca2565b604082019050919050565b6000613c83602083614426565b9150613c8e82614cf1565b602082019050919050565b6000613ca6602f83614426565b9150613cb182614d1a565b604082019050919050565b6000613cc9601a83614426565b9150613cd482614d69565b602082019050919050565b6000613cec603283614426565b9150613cf782614d92565b604082019050919050565b6000613d0f601283614426565b9150613d1a82614de1565b602082019050919050565b6000613d32602283614426565b9150613d3d82614e0a565b604082019050919050565b6000613d55603383614426565b9150613d6082614e59565b604082019050919050565b6000613d78601d83614426565b9150613d8382614ea8565b602082019050919050565b6000613d9b602183614426565b9150613da682614ed1565b604082019050919050565b6000613dbe602e83614426565b9150613dc982614f20565b604082019050919050565b6000613de1602683614426565b9150613dec82614f6f565b604082019050919050565b6000613e04601383614426565b9150613e0f82614fbe565b602082019050919050565b6000613e27602f83614426565b9150613e3282614fe7565b604082019050919050565b6000613e4a602d83614426565b9150613e5582615036565b604082019050919050565b6000613e6d602283614426565b9150613e7882615085565b604082019050919050565b604082016000820151613e99600085018261398a565b506020820151613eac6020850182613ec1565b50505050565b613ebb81614657565b82525050565b613eca81614661565b82525050565b6000613edc8285613a38565b9150613ee88284613a38565b91508190509392505050565b6000602082019050613f096000830184613999565b92915050565b6000608082019050613f246000830187613999565b613f316020830186613999565b613f3e6040830185613eb2565b8181036060830152613f5081846139b7565b905095945050505050565b6000602082019050613f7060008301846139a8565b92915050565b6000602082019050613f8b60008301846139f0565b92915050565b60006020820190508181036000830152613fab81846139ff565b905092915050565b60006020820190508181036000830152613fcc81613a69565b9050919050565b60006020820190508181036000830152613fec81613a8c565b9050919050565b6000602082019050818103600083015261400c81613aaf565b9050919050565b6000602082019050818103600083015261402c81613ad2565b9050919050565b6000602082019050818103600083015261404c81613af5565b9050919050565b6000602082019050818103600083015261406c81613b18565b9050919050565b6000602082019050818103600083015261408c81613b3b565b9050919050565b600060208201905081810360008301526140ac81613b5e565b9050919050565b600060208201905081810360008301526140cc81613b81565b9050919050565b600060208201905081810360008301526140ec81613ba4565b9050919050565b6000602082019050818103600083015261410c81613bc7565b9050919050565b6000602082019050818103600083015261412c81613bea565b9050919050565b6000602082019050818103600083015261414c81613c0d565b9050919050565b6000602082019050818103600083015261416c81613c30565b9050919050565b6000602082019050818103600083015261418c81613c53565b9050919050565b600060208201905081810360008301526141ac81613c76565b9050919050565b600060208201905081810360008301526141cc81613c99565b9050919050565b600060208201905081810360008301526141ec81613cbc565b9050919050565b6000602082019050818103600083015261420c81613cdf565b9050919050565b6000602082019050818103600083015261422c81613d02565b9050919050565b6000602082019050818103600083015261424c81613d25565b9050919050565b6000602082019050818103600083015261426c81613d48565b9050919050565b6000602082019050818103600083015261428c81613d6b565b9050919050565b600060208201905081810360008301526142ac81613d8e565b9050919050565b600060208201905081810360008301526142cc81613db1565b9050919050565b600060208201905081810360008301526142ec81613dd4565b9050919050565b6000602082019050818103600083015261430c81613df7565b9050919050565b6000602082019050818103600083015261432c81613e1a565b9050919050565b6000602082019050818103600083015261434c81613e3d565b9050919050565b6000602082019050818103600083015261436c81613e60565b9050919050565b60006040820190506143886000830184613e83565b92915050565b60006020820190506143a36000830184613eb2565b92915050565b60006143b36143c4565b90506143bf8282614749565b919050565b6000604051905090565b600067ffffffffffffffff8211156143e9576143e86148b0565b5b6143f2826148fd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061444d8261461b565b91506144588361461b565b9250826fffffffffffffffffffffffffffffffff0382111561447d5761447c6147f4565b5b828201905092915050565b600061449382614657565b915061449e83614657565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144d3576144d26147f4565b5b828201905092915050565b60006144e982614657565b91506144f483614657565b92508261450457614503614823565b5b828204905092915050565b600061451a82614657565b915061452583614657565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561455e5761455d6147f4565b5b828202905092915050565b60006145748261461b565b915061457f8361461b565b925082821015614592576145916147f4565b5b828203905092915050565b60006145a882614657565b91506145b383614657565b9250828210156145c6576145c56147f4565b5b828203905092915050565b60006145dc82614637565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600061468082614687565b9050919050565b600061469282614699565b9050919050565b60006146a482614637565b9050919050565b82818337600083830152505050565b60005b838110156146d85780820151818401526020810190506146bd565b838111156146e7576000848401525b50505050565b60006146f882614657565b9150600082141561470c5761470b6147f4565b5b600182039050919050565b6000600282049050600182168061472f57607f821691505b6020821081141561474357614742614852565b5b50919050565b614752826148fd565b810181811067ffffffffffffffff82111715614771576147706148b0565b5b80604052505050565b600061478582614657565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147b8576147b76147f4565b5b600182019050919050565b60006147ce82614657565b91506147d983614657565b9250826147e9576147e8614823565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d617820332066726565207065722077616c6c65740000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f6d617820737570706c7920686173206265656e20726561636865640000000000600082015250565b7f6d61782032302070657220616464726573730000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f6d696e74206973206e6f74206163746976650000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206574682073656e7400000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6150dd816145d1565b81146150e857600080fd5b50565b6150f4816145e3565b81146150ff57600080fd5b50565b61510b816145ef565b811461511657600080fd5b50565b61512281614657565b811461512d57600080fd5b5056fea26469706673582212208307c94cb91caf5efc26d1bcf50fb3e96840cbdce2730ee2faa909b77167bd3b64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000002710
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 20
Arg [1] : collectionSize_ (uint256): 10000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Deployed Bytecode Sourcemap
820:2906:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3963:370:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5689:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7214:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6777:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2524:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8064:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1059:30:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3157:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3155:744:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2392:384:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8277:159:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1174:35:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;936:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;969:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2687:177:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2896:100:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1216:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5512:118:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;889:38:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1014;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1098:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4389:211:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:10;;;;;;;;;;;;;:::i;:::-;;1256:24:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1676:325;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1063:87:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3576:147:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5844:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2007:379:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7482:274:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3002:149:4;;;;;;;;;;;;;:::i;:::-;;8499:319:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6005:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3268:84:4;;;;;;;;;;;;;:::i;:::-;;12922:43:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3463:107:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1287:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7819:186:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;867:15:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3358:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1972:201:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3963:370:3;4090:4;4135:25;4120:40;;;:11;:40;;;;:99;;;;4186:33;4171:48;;;:11;:48;;;;4120:99;:160;;;;4245:35;4230:50;;;:11;:50;;;;4120:160;:207;;;;4291:36;4315:11;4291:23;:36::i;:::-;4120:207;4106:221;;3963:370;;;:::o;5689:94::-;5743:13;5772:5;5765:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5689:94;:::o;7214:204::-;7282:7;7306:16;7314:7;7306;:16::i;:::-;7298:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7388:15;:24;7404:7;7388:24;;;;;;;;;;;;;;;;;;;;;7381:31;;7214:204;;;:::o;6777:379::-;6846:13;6862:24;6878:7;6862:15;:24::i;:::-;6846:40;;6907:5;6901:11;;:2;:11;;;;6893:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;6992:5;6976:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7001:37;7018:5;7025:12;:10;:12::i;:::-;7001:16;:37::i;:::-;6976:62;6960:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;7122:28;7131:2;7135:7;7144:5;7122:8;:28::i;:::-;6839:317;6777:379;;:::o;2524:94::-;2577:7;2600:12;;2593:19;;2524:94;:::o;8064:150::-;8180:28;8190:4;8196:2;8200:7;8180:9;:28::i;:::-;8064:150;;;:::o;1059:30:4:-;;;;;;;;;;;;;:::o;3157:105::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3228:28:4::1;3247:8;3228:18;:28::i;:::-;3157:105:::0;:::o;3155:744:3:-;3264:7;3299:16;3309:5;3299:9;:16::i;:::-;3291:5;:24;3283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3361:22;3386:13;:11;:13::i;:::-;3361:38;;3406:19;3436:25;3486:9;3481:350;3505:14;3501:1;:18;3481:350;;;3535:31;3569:11;:14;3581:1;3569:14;;;;;;;;;;;3535:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3622:1;3596:28;;:9;:14;;;:28;;;3592:89;;3657:9;:14;;;3637:34;;3592:89;3714:5;3693:26;;:17;:26;;;3689:135;;;3751:5;3736:11;:20;3732:59;;;3778:1;3771:8;;;;;;;;;3732:59;3801:13;;;;;:::i;:::-;;;;3689:135;3526:305;3521:3;;;;;:::i;:::-;;;;3481:350;;;;3837:56;;;;;;;;;;:::i;:::-;;;;;;;;3155:744;;;;;:::o;2392:384:4:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2488:1:4::1;2472:12;2461:8;:23;;;;:::i;:::-;:28;2453:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;2580:10;;2568:8;2552:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;2544:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2629:17;2660:12;2649:8;:23;;;;:::i;:::-;2629:43;;2684:9;2679:92;2703:9;2699:1;:13;2679:92;;;2728:35;2738:10;2750:12;2728:9;:35::i;:::-;2714:3;;;;;:::i;:::-;;;;2679:92;;;;2446:330;2392:384:::0;:::o;8277:159:3:-;8391:39;8408:4;8414:2;8418:7;8391:39;;;;;;;;;;;;:16;:39::i;:::-;8277:159;;;:::o;1174:35:4:-;;;;:::o;936:26::-;;;;:::o;969:37::-;;;;:::o;2687:177:3:-;2754:7;2786:13;:11;:13::i;:::-;2778:5;:21;2770:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;2853:5;2846:12;;2687:177;;;:::o;2896:100:4:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2983:7:4::1;;2967:13;:23;;;;;;;:::i;:::-;;2896:100:::0;;:::o;1216:33::-;;;;:::o;5512:118:3:-;5576:7;5599:20;5611:7;5599:11;:20::i;:::-;:25;;;5592:32;;5512:118;;;:::o;889:38:4:-;;;:::o;1014:::-;;;;:::o;1098:34::-;;;;;;;;;;;;;:::o;4389:211:3:-;4453:7;4494:1;4477:19;;:5;:19;;;;4469:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4566:12;:19;4579:5;4566:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4558:36;;4551:43;;4389:211;;;:::o;1714:103:10:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;1256:24:4:-;;;;:::o;1676:325::-;1611:10;1598:23;;:9;:23;;;1590:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1749:10:::1;;;;;;;;;;;1741:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1825:13;;1813:8;1797:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;1789:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;1924:7;;1896:24;1909:10;1896:12;:24::i;:::-;1885:8;:35;;;;:::i;:::-;:46;;1877:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;1964:31;1974:10;1986:8;1964:9;:31::i;:::-;1676:325:::0;:::o;1063:87:10:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;3576:147:4:-;3657:21;;:::i;:::-;3697:20;3709:7;3697:11;:20::i;:::-;3690:27;;3576:147;;;:::o;5844:98:3:-;5900:13;5929:7;5922:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5844:98;:::o;2007:379:4:-;1611:10;1598:23;;:9;:23;;;1590:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2084:10:::1;;;;;;;;;;;2076:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2160:10;;2148:8;2132:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;2124:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2230:17;;2218:8;:29;;2209:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;2310:8;2298:9;;:20;;;;:::i;:::-;2285:9;:33;;2277:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;2349:31;2359:10;2371:8;2349:9;:31::i;:::-;2007:379:::0;:::o;7482:274:3:-;7585:12;:10;:12::i;:::-;7573:24;;:8;:24;;;;7565:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7682:8;7637:18;:32;7656:12;:10;:12::i;:::-;7637:32;;;;;;;;;;;;;;;:42;7670:8;7637:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;7731:8;7702:48;;7717:12;:10;:12::i;:::-;7702:48;;;7741:8;7702:48;;;;;;:::i;:::-;;;;;;;;7482:274;;:::o;3002:149:4:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3085:1:4::1;3061:21;:25;3053:34;;;::::0;::::1;;3102:10;3094:28;;:51;3123:21;3094:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3002:149::o:0;8499:319:3:-;8644:28;8654:4;8660:2;8664:7;8644:9;:28::i;:::-;8695:48;8718:4;8724:2;8728:7;8737:5;8695:22;:48::i;:::-;8679:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;8499:319;;;;:::o;6005:394::-;6103:13;6144:16;6152:7;6144;:16::i;:::-;6128:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;6234:21;6258:10;:8;:10::i;:::-;6234:34;;6313:1;6295:7;6289:21;:25;:104;;;;;;;;;;;;;;;;;6350:7;6359:18;:7;:16;:18::i;:::-;6333:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6289:104;6275:118;;;6005:394;;;:::o;3268:84:4:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3336:10:4::1;;;;;;;;;;;3335:11;3322:10;;:24;;;;;;;;;;;;;;;;;;3268:84::o:0;12922:43:3:-;;;;:::o;3463:107:4:-;3521:7;3544:20;3558:5;3544:13;:20::i;:::-;3537:27;;3463:107;;;:::o;1287:49::-;;;;;;;;;;;;;;;;;:::o;7819:186:3:-;7941:4;7964:18;:25;7983:5;7964:25;;;;;;;;;;;;;;;:35;7990:8;7964:35;;;;;;;;;;;;;;;;;;;;;;;;;7957:42;;7819:186;;;;:::o;867:15:4:-;;;;;;;;;;;;;:::o;3358:99::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3439:11:4::1;3428:3;;:23;;;;;;;;;;;;;;;;;;3358:99:::0;:::o;1972:201:10:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;9057:105:3:-;9114:4;9144:12;;9134:7;:22;9127:29;;9057:105;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;12744:172:3:-;12868:2;12841:15;:24;12857:7;12841:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;12902:7;12898:2;12882:28;;12891:5;12882:28;;;;;;;;;;;;12744:172;;;:::o;11109:1529::-;11206:35;11244:20;11256:7;11244:11;:20::i;:::-;11206:58;;11273:22;11315:13;:18;;;11299:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;11368:12;:10;:12::i;:::-;11344:36;;:20;11356:7;11344:11;:20::i;:::-;:36;;;11299:81;:142;;;;11391:50;11408:13;:18;;;11428:12;:10;:12::i;:::-;11391:16;:50::i;:::-;11299:142;11273:169;;11467:17;11451:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;11599:4;11577:26;;:13;:18;;;:26;;;11561:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;11688:1;11674:16;;:2;:16;;;;11666:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;11741:43;11763:4;11769:2;11773:7;11782:1;11741:21;:43::i;:::-;11841:49;11858:1;11862:7;11871:13;:18;;;11841:8;:49::i;:::-;11929:1;11899:12;:18;11912:4;11899:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11965:1;11937:12;:16;11950:2;11937:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11996:43;;;;;;;;12011:2;11996:43;;;;;;12022:15;11996:43;;;;;11973:11;:20;11985:7;11973:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12267:19;12299:1;12289:7;:11;;;;:::i;:::-;12267:33;;12352:1;12311:43;;:11;:24;12323:11;12311:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;12307:236;;;12369:20;12377:11;12369:7;:20::i;:::-;12365:171;;;12429:97;;;;;;;;12456:13;:18;;;12429:97;;;;;;12487:13;:28;;;12429:97;;;;;12402:11;:24;12414:11;12402:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12365:171;12307:236;12575:7;12571:2;12556:27;;12565:4;12556:27;;;;;;;;;;;;12590:42;12611:4;12617:2;12621:7;12630:1;12590:20;:42::i;:::-;11199:1439;;;11109:1529;;;:::o;13070:846::-;13132:25;13160:24;;13132:52;;13210:1;13199:8;:12;13191:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;13247:16;13297:1;13286:8;13266:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;13247:51;;13337:1;13320:14;:18;;;;:::i;:::-;13309:8;:29;13305:81;;;13377:1;13360:14;:18;;;;:::i;:::-;13349:29;;13305:81;13501:17;13509:8;13501:7;:17::i;:::-;13493:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13573:9;13585:17;13573:29;;13568:297;13609:8;13604:1;:13;13568:297;;13668:1;13637:33;;:11;:14;13649:1;13637:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;13633:225;;;13683:31;13717:14;13729:1;13717:11;:14::i;:::-;13683:48;;13759:89;;;;;;;;13786:9;:14;;;13759:89;;;;;;13813:9;:24;;;13759:89;;;;;13742:11;:14;13754:1;13742:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13672:186;13633:225;13619:3;;;;;:::i;:::-;;;;13568:297;;;;13909:1;13898:8;:12;;;;:::i;:::-;13871:24;:39;;;;13125:791;;13070:846;:::o;9168:98::-;9233:27;9243:2;9247:8;9233:27;;;;;;;;;;;;:9;:27::i;:::-;9168:98;;:::o;4852:606::-;4928:21;;:::i;:::-;4969:16;4977:7;4969;:16::i;:::-;4961:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5041:26;5089:12;5078:7;:23;5074:93;;5158:1;5143:12;5133:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;5112:47;;5074:93;5180:12;5195:7;5180:22;;5175:212;5212:18;5204:4;:26;5175:212;;5249:31;5283:11;:17;5295:4;5283:17;;;;;;;;;;;5249:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5339:1;5313:28;;:9;:14;;;:28;;;5309:71;;5361:9;5354:16;;;;;;;5309:71;5240:147;5232:6;;;;;:::i;:::-;;;;5175:212;;;;5395:57;;;;;;;;;;:::i;:::-;;;;;;;;4852:606;;;;:::o;2333:191:10:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;14459:690:3:-;14596:4;14613:15;:2;:13;;;:15::i;:::-;14609:535;;;14668:2;14652:36;;;14689:12;:10;:12::i;:::-;14703:4;14709:7;14718:5;14652:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14639:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14900:1;14883:6;:13;:18;14879:215;;;14916:61;;;;;;;;;;:::i;:::-;;;;;;;;14879:215;15062:6;15056:13;15047:6;15043:2;15039:15;15032:38;14639:464;14784:45;;;14774:55;;;:6;:55;;;;14767:62;;;;;14609:535;15132:4;15125:11;;14459:690;;;;;;;:::o;2782:108:4:-;2842:13;2871;2864:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2782:108;:::o;342:723:11:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;4606:240:3:-;4667:7;4716:1;4699:19;;:5;:19;;;;4683:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;4807:12;:19;4820:5;4807:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;4799:41;;4792:48;;4606:240;;;:::o;15611:141::-;;;;;:::o;16138:140::-;;;;;:::o;9605:1272::-;9710:20;9733:12;;9710:35;;9774:1;9760:16;;:2;:16;;;;9752:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;9951:21;9959:12;9951:7;:21::i;:::-;9950:22;9942:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10033:12;10021:8;:24;;10013:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10093:61;10123:1;10127:2;10131:12;10145:8;10093:21;:61::i;:::-;10163:30;10196:12;:16;10209:2;10196:16;;;;;;;;;;;;;;;10163:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10238:119;;;;;;;;10288:8;10258:11;:19;;;:39;;;;:::i;:::-;10238:119;;;;;;10341:8;10306:11;:24;;;:44;;;;:::i;:::-;10238:119;;;;;10219:12;:16;10232:2;10219:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10392:43;;;;;;;;10407:2;10392:43;;;;;;10418:15;10392:43;;;;;10364:11;:25;10376:12;10364:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10444:20;10467:12;10444:35;;10493:9;10488:281;10512:8;10508:1;:12;10488:281;;;10566:12;10562:2;10541:38;;10558:1;10541:38;;;;;;;;;;;;10606:59;10637:1;10641:2;10645:12;10659:5;10606:22;:59::i;:::-;10588:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;10747:14;;;;;:::i;:::-;;;;10522:3;;;;;:::i;:::-;;;;10488:281;;;;10792:12;10777;:27;;;;10811:60;10840:1;10844:2;10848:12;10862:8;10811:20;:60::i;:::-;9703:1174;;;9605:1272;;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:12:-;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:157::-;7792:50;7836:5;7792:50;:::i;:::-;7787:3;7780:63;7692:157;;:::o;7855:364::-;7943:3;7971:39;8004:5;7971:39;:::i;:::-;8026:71;8090:6;8085:3;8026:71;:::i;:::-;8019:78;;8106:52;8151:6;8146:3;8139:4;8132:5;8128:16;8106:52;:::i;:::-;8183:29;8205:6;8183:29;:::i;:::-;8178:3;8174:39;8167:46;;7947:272;7855:364;;;;:::o;8225:377::-;8331:3;8359:39;8392:5;8359:39;:::i;:::-;8414:89;8496:6;8491:3;8414:89;:::i;:::-;8407:96;;8512:52;8557:6;8552:3;8545:4;8538:5;8534:16;8512:52;:::i;:::-;8589:6;8584:3;8580:16;8573:23;;8335:267;8225:377;;;;:::o;8608:366::-;8750:3;8771:67;8835:2;8830:3;8771:67;:::i;:::-;8764:74;;8847:93;8936:3;8847:93;:::i;:::-;8965:2;8960:3;8956:12;8949:19;;8608:366;;;:::o;8980:::-;9122:3;9143:67;9207:2;9202:3;9143:67;:::i;:::-;9136:74;;9219:93;9308:3;9219:93;:::i;:::-;9337:2;9332:3;9328:12;9321:19;;8980:366;;;:::o;9352:::-;9494:3;9515:67;9579:2;9574:3;9515:67;:::i;:::-;9508:74;;9591:93;9680:3;9591:93;:::i;:::-;9709:2;9704:3;9700:12;9693:19;;9352:366;;;:::o;9724:::-;9866:3;9887:67;9951:2;9946:3;9887:67;:::i;:::-;9880:74;;9963:93;10052:3;9963:93;:::i;:::-;10081:2;10076:3;10072:12;10065:19;;9724:366;;;:::o;10096:::-;10238:3;10259:67;10323:2;10318:3;10259:67;:::i;:::-;10252:74;;10335:93;10424:3;10335:93;:::i;:::-;10453:2;10448:3;10444:12;10437:19;;10096:366;;;:::o;10468:::-;10610:3;10631:67;10695:2;10690:3;10631:67;:::i;:::-;10624:74;;10707:93;10796:3;10707:93;:::i;:::-;10825:2;10820:3;10816:12;10809:19;;10468:366;;;:::o;10840:::-;10982:3;11003:67;11067:2;11062:3;11003:67;:::i;:::-;10996:74;;11079:93;11168:3;11079:93;:::i;:::-;11197:2;11192:3;11188:12;11181:19;;10840:366;;;:::o;11212:::-;11354:3;11375:67;11439:2;11434:3;11375:67;:::i;:::-;11368:74;;11451:93;11540:3;11451:93;:::i;:::-;11569:2;11564:3;11560:12;11553:19;;11212:366;;;:::o;11584:::-;11726:3;11747:67;11811:2;11806:3;11747:67;:::i;:::-;11740:74;;11823:93;11912:3;11823:93;:::i;:::-;11941:2;11936:3;11932:12;11925:19;;11584:366;;;:::o;11956:::-;12098:3;12119:67;12183:2;12178:3;12119:67;:::i;:::-;12112:74;;12195:93;12284:3;12195:93;:::i;:::-;12313:2;12308:3;12304:12;12297:19;;11956:366;;;:::o;12328:::-;12470:3;12491:67;12555:2;12550:3;12491:67;:::i;:::-;12484:74;;12567:93;12656:3;12567:93;:::i;:::-;12685:2;12680:3;12676:12;12669:19;;12328:366;;;:::o;12700:::-;12842:3;12863:67;12927:2;12922:3;12863:67;:::i;:::-;12856:74;;12939:93;13028:3;12939:93;:::i;:::-;13057:2;13052:3;13048:12;13041:19;;12700:366;;;:::o;13072:::-;13214:3;13235:67;13299:2;13294:3;13235:67;:::i;:::-;13228:74;;13311:93;13400:3;13311:93;:::i;:::-;13429:2;13424:3;13420:12;13413:19;;13072:366;;;:::o;13444:::-;13586:3;13607:67;13671:2;13666:3;13607:67;:::i;:::-;13600:74;;13683:93;13772:3;13683:93;:::i;:::-;13801:2;13796:3;13792:12;13785:19;;13444:366;;;:::o;13816:::-;13958:3;13979:67;14043:2;14038:3;13979:67;:::i;:::-;13972:74;;14055:93;14144:3;14055:93;:::i;:::-;14173:2;14168:3;14164:12;14157:19;;13816:366;;;:::o;14188:::-;14330:3;14351:67;14415:2;14410:3;14351:67;:::i;:::-;14344:74;;14427:93;14516:3;14427:93;:::i;:::-;14545:2;14540:3;14536:12;14529:19;;14188:366;;;:::o;14560:::-;14702:3;14723:67;14787:2;14782:3;14723:67;:::i;:::-;14716:74;;14799:93;14888:3;14799:93;:::i;:::-;14917:2;14912:3;14908:12;14901:19;;14560:366;;;:::o;14932:::-;15074:3;15095:67;15159:2;15154:3;15095:67;:::i;:::-;15088:74;;15171:93;15260:3;15171:93;:::i;:::-;15289:2;15284:3;15280:12;15273:19;;14932:366;;;:::o;15304:::-;15446:3;15467:67;15531:2;15526:3;15467:67;:::i;:::-;15460:74;;15543:93;15632:3;15543:93;:::i;:::-;15661:2;15656:3;15652:12;15645:19;;15304:366;;;:::o;15676:::-;15818:3;15839:67;15903:2;15898:3;15839:67;:::i;:::-;15832:74;;15915:93;16004:3;15915:93;:::i;:::-;16033:2;16028:3;16024:12;16017:19;;15676:366;;;:::o;16048:::-;16190:3;16211:67;16275:2;16270:3;16211:67;:::i;:::-;16204:74;;16287:93;16376:3;16287:93;:::i;:::-;16405:2;16400:3;16396:12;16389:19;;16048:366;;;:::o;16420:::-;16562:3;16583:67;16647:2;16642:3;16583:67;:::i;:::-;16576:74;;16659:93;16748:3;16659:93;:::i;:::-;16777:2;16772:3;16768:12;16761:19;;16420:366;;;:::o;16792:::-;16934:3;16955:67;17019:2;17014:3;16955:67;:::i;:::-;16948:74;;17031:93;17120:3;17031:93;:::i;:::-;17149:2;17144:3;17140:12;17133:19;;16792:366;;;:::o;17164:::-;17306:3;17327:67;17391:2;17386:3;17327:67;:::i;:::-;17320:74;;17403:93;17492:3;17403:93;:::i;:::-;17521:2;17516:3;17512:12;17505:19;;17164:366;;;:::o;17536:::-;17678:3;17699:67;17763:2;17758:3;17699:67;:::i;:::-;17692:74;;17775:93;17864:3;17775:93;:::i;:::-;17893:2;17888:3;17884:12;17877:19;;17536:366;;;:::o;17908:::-;18050:3;18071:67;18135:2;18130:3;18071:67;:::i;:::-;18064:74;;18147:93;18236:3;18147:93;:::i;:::-;18265:2;18260:3;18256:12;18249:19;;17908:366;;;:::o;18280:::-;18422:3;18443:67;18507:2;18502:3;18443:67;:::i;:::-;18436:74;;18519:93;18608:3;18519:93;:::i;:::-;18637:2;18632:3;18628:12;18621:19;;18280:366;;;:::o;18652:::-;18794:3;18815:67;18879:2;18874:3;18815:67;:::i;:::-;18808:74;;18891:93;18980:3;18891:93;:::i;:::-;19009:2;19004:3;19000:12;18993:19;;18652:366;;;:::o;19024:::-;19166:3;19187:67;19251:2;19246:3;19187:67;:::i;:::-;19180:74;;19263:93;19352:3;19263:93;:::i;:::-;19381:2;19376:3;19372:12;19365:19;;19024:366;;;:::o;19396:::-;19538:3;19559:67;19623:2;19618:3;19559:67;:::i;:::-;19552:74;;19635:93;19724:3;19635:93;:::i;:::-;19753:2;19748:3;19744:12;19737:19;;19396:366;;;:::o;19838:527::-;19997:4;19992:3;19988:14;20084:4;20077:5;20073:16;20067:23;20103:63;20160:4;20155:3;20151:14;20137:12;20103:63;:::i;:::-;20012:164;20268:4;20261:5;20257:16;20251:23;20287:61;20342:4;20337:3;20333:14;20319:12;20287:61;:::i;:::-;20186:172;19966:399;19838:527;;:::o;20371:118::-;20458:24;20476:5;20458:24;:::i;:::-;20453:3;20446:37;20371:118;;:::o;20495:105::-;20570:23;20587:5;20570:23;:::i;:::-;20565:3;20558:36;20495:105;;:::o;20606:435::-;20786:3;20808:95;20899:3;20890:6;20808:95;:::i;:::-;20801:102;;20920:95;21011:3;21002:6;20920:95;:::i;:::-;20913:102;;21032:3;21025:10;;20606:435;;;;;:::o;21047:222::-;21140:4;21178:2;21167:9;21163:18;21155:26;;21191:71;21259:1;21248:9;21244:17;21235:6;21191:71;:::i;:::-;21047:222;;;;:::o;21275:640::-;21470:4;21508:3;21497:9;21493:19;21485:27;;21522:71;21590:1;21579:9;21575:17;21566:6;21522:71;:::i;:::-;21603:72;21671:2;21660:9;21656:18;21647:6;21603:72;:::i;:::-;21685;21753:2;21742:9;21738:18;21729:6;21685:72;:::i;:::-;21804:9;21798:4;21794:20;21789:2;21778:9;21774:18;21767:48;21832:76;21903:4;21894:6;21832:76;:::i;:::-;21824:84;;21275:640;;;;;;;:::o;21921:210::-;22008:4;22046:2;22035:9;22031:18;22023:26;;22059:65;22121:1;22110:9;22106:17;22097:6;22059:65;:::i;:::-;21921:210;;;;:::o;22137:248::-;22243:4;22281:2;22270:9;22266:18;22258:26;;22294:84;22375:1;22364:9;22360:17;22351:6;22294:84;:::i;:::-;22137:248;;;;:::o;22391:313::-;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:78;22692:4;22683:6;22619:78;:::i;:::-;22611:86;;22391:313;;;;:::o;22710:419::-;22876:4;22914:2;22903:9;22899:18;22891:26;;22963:9;22957:4;22953:20;22949:1;22938:9;22934:17;22927:47;22991:131;23117:4;22991:131;:::i;:::-;22983:139;;22710:419;;;:::o;23135:::-;23301:4;23339:2;23328:9;23324:18;23316:26;;23388:9;23382:4;23378:20;23374:1;23363:9;23359:17;23352:47;23416:131;23542:4;23416:131;:::i;:::-;23408:139;;23135:419;;;:::o;23560:::-;23726:4;23764:2;23753:9;23749:18;23741:26;;23813:9;23807:4;23803:20;23799:1;23788:9;23784:17;23777:47;23841:131;23967:4;23841:131;:::i;:::-;23833:139;;23560:419;;;:::o;23985:::-;24151:4;24189:2;24178:9;24174:18;24166:26;;24238:9;24232:4;24228:20;24224:1;24213:9;24209:17;24202:47;24266:131;24392:4;24266:131;:::i;:::-;24258:139;;23985:419;;;:::o;24410:::-;24576:4;24614:2;24603:9;24599:18;24591:26;;24663:9;24657:4;24653:20;24649:1;24638:9;24634:17;24627:47;24691:131;24817:4;24691:131;:::i;:::-;24683:139;;24410:419;;;:::o;24835:::-;25001:4;25039:2;25028:9;25024:18;25016:26;;25088:9;25082:4;25078:20;25074:1;25063:9;25059:17;25052:47;25116:131;25242:4;25116:131;:::i;:::-;25108:139;;24835:419;;;:::o;25260:::-;25426:4;25464:2;25453:9;25449:18;25441:26;;25513:9;25507:4;25503:20;25499:1;25488:9;25484:17;25477:47;25541:131;25667:4;25541:131;:::i;:::-;25533:139;;25260:419;;;:::o;25685:::-;25851:4;25889:2;25878:9;25874:18;25866:26;;25938:9;25932:4;25928:20;25924:1;25913:9;25909:17;25902:47;25966:131;26092:4;25966:131;:::i;:::-;25958:139;;25685:419;;;:::o;26110:::-;26276:4;26314:2;26303:9;26299:18;26291:26;;26363:9;26357:4;26353:20;26349:1;26338:9;26334:17;26327:47;26391:131;26517:4;26391:131;:::i;:::-;26383:139;;26110:419;;;:::o;26535:::-;26701:4;26739:2;26728:9;26724:18;26716:26;;26788:9;26782:4;26778:20;26774:1;26763:9;26759:17;26752:47;26816:131;26942:4;26816:131;:::i;:::-;26808:139;;26535:419;;;:::o;26960:::-;27126:4;27164:2;27153:9;27149:18;27141:26;;27213:9;27207:4;27203:20;27199:1;27188:9;27184:17;27177:47;27241:131;27367:4;27241:131;:::i;:::-;27233:139;;26960:419;;;:::o;27385:::-;27551:4;27589:2;27578:9;27574:18;27566:26;;27638:9;27632:4;27628:20;27624:1;27613:9;27609:17;27602:47;27666:131;27792:4;27666:131;:::i;:::-;27658:139;;27385:419;;;:::o;27810:::-;27976:4;28014:2;28003:9;27999:18;27991:26;;28063:9;28057:4;28053:20;28049:1;28038:9;28034:17;28027:47;28091:131;28217:4;28091:131;:::i;:::-;28083:139;;27810:419;;;:::o;28235:::-;28401:4;28439:2;28428:9;28424:18;28416:26;;28488:9;28482:4;28478:20;28474:1;28463:9;28459:17;28452:47;28516:131;28642:4;28516:131;:::i;:::-;28508:139;;28235:419;;;:::o;28660:::-;28826:4;28864:2;28853:9;28849:18;28841:26;;28913:9;28907:4;28903:20;28899:1;28888:9;28884:17;28877:47;28941:131;29067:4;28941:131;:::i;:::-;28933:139;;28660:419;;;:::o;29085:::-;29251:4;29289:2;29278:9;29274:18;29266:26;;29338:9;29332:4;29328:20;29324:1;29313:9;29309:17;29302:47;29366:131;29492:4;29366:131;:::i;:::-;29358:139;;29085:419;;;:::o;29510:::-;29676:4;29714:2;29703:9;29699:18;29691:26;;29763:9;29757:4;29753:20;29749:1;29738:9;29734:17;29727:47;29791:131;29917:4;29791:131;:::i;:::-;29783:139;;29510:419;;;:::o;29935:::-;30101:4;30139:2;30128:9;30124:18;30116:26;;30188:9;30182:4;30178:20;30174:1;30163:9;30159:17;30152:47;30216:131;30342:4;30216:131;:::i;:::-;30208:139;;29935:419;;;:::o;30360:::-;30526:4;30564:2;30553:9;30549:18;30541:26;;30613:9;30607:4;30603:20;30599:1;30588:9;30584:17;30577:47;30641:131;30767:4;30641:131;:::i;:::-;30633:139;;30360:419;;;:::o;30785:::-;30951:4;30989:2;30978:9;30974:18;30966:26;;31038:9;31032:4;31028:20;31024:1;31013:9;31009:17;31002:47;31066:131;31192:4;31066:131;:::i;:::-;31058:139;;30785:419;;;:::o;31210:::-;31376:4;31414:2;31403:9;31399:18;31391:26;;31463:9;31457:4;31453:20;31449:1;31438:9;31434:17;31427:47;31491:131;31617:4;31491:131;:::i;:::-;31483:139;;31210:419;;;:::o;31635:::-;31801:4;31839:2;31828:9;31824:18;31816:26;;31888:9;31882:4;31878:20;31874:1;31863:9;31859:17;31852:47;31916:131;32042:4;31916:131;:::i;:::-;31908:139;;31635:419;;;:::o;32060:::-;32226:4;32264:2;32253:9;32249:18;32241:26;;32313:9;32307:4;32303:20;32299:1;32288:9;32284:17;32277:47;32341:131;32467:4;32341:131;:::i;:::-;32333:139;;32060:419;;;:::o;32485:::-;32651:4;32689:2;32678:9;32674:18;32666:26;;32738:9;32732:4;32728:20;32724:1;32713:9;32709:17;32702:47;32766:131;32892:4;32766:131;:::i;:::-;32758:139;;32485:419;;;:::o;32910:::-;33076:4;33114:2;33103:9;33099:18;33091:26;;33163:9;33157:4;33153:20;33149:1;33138:9;33134:17;33127:47;33191:131;33317:4;33191:131;:::i;:::-;33183:139;;32910:419;;;:::o;33335:::-;33501:4;33539:2;33528:9;33524:18;33516:26;;33588:9;33582:4;33578:20;33574:1;33563:9;33559:17;33552:47;33616:131;33742:4;33616:131;:::i;:::-;33608:139;;33335:419;;;:::o;33760:::-;33926:4;33964:2;33953:9;33949:18;33941:26;;34013:9;34007:4;34003:20;33999:1;33988:9;33984:17;33977:47;34041:131;34167:4;34041:131;:::i;:::-;34033:139;;33760:419;;;:::o;34185:::-;34351:4;34389:2;34378:9;34374:18;34366:26;;34438:9;34432:4;34428:20;34424:1;34413:9;34409:17;34402:47;34466:131;34592:4;34466:131;:::i;:::-;34458:139;;34185:419;;;:::o;34610:::-;34776:4;34814:2;34803:9;34799:18;34791:26;;34863:9;34857:4;34853:20;34849:1;34838:9;34834:17;34827:47;34891:131;35017:4;34891:131;:::i;:::-;34883:139;;34610:419;;;:::o;35035:::-;35201:4;35239:2;35228:9;35224:18;35216:26;;35288:9;35282:4;35278:20;35274:1;35263:9;35259:17;35252:47;35316:131;35442:4;35316:131;:::i;:::-;35308:139;;35035:419;;;:::o;35460:346::-;35615:4;35653:2;35642:9;35638:18;35630:26;;35666:133;35796:1;35785:9;35781:17;35772:6;35666:133;:::i;:::-;35460:346;;;;:::o;35812:222::-;35905:4;35943:2;35932:9;35928:18;35920:26;;35956:71;36024:1;36013:9;36009:17;36000:6;35956:71;:::i;:::-;35812:222;;;;:::o;36040:129::-;36074:6;36101:20;;:::i;:::-;36091:30;;36130:33;36158:4;36150:6;36130:33;:::i;:::-;36040:129;;;:::o;36175:75::-;36208:6;36241:2;36235:9;36225:19;;36175:75;:::o;36256:307::-;36317:4;36407:18;36399:6;36396:30;36393:56;;;36429:18;;:::i;:::-;36393:56;36467:29;36489:6;36467:29;:::i;:::-;36459:37;;36551:4;36545;36541:15;36533:23;;36256:307;;;:::o;36569:98::-;36620:6;36654:5;36648:12;36638:22;;36569:98;;;:::o;36673:99::-;36725:6;36759:5;36753:12;36743:22;;36673:99;;;:::o;36778:168::-;36861:11;36895:6;36890:3;36883:19;36935:4;36930:3;36926:14;36911:29;;36778:168;;;;:::o;36952:169::-;37036:11;37070:6;37065:3;37058:19;37110:4;37105:3;37101:14;37086:29;;36952:169;;;;:::o;37127:148::-;37229:11;37266:3;37251:18;;37127:148;;;;:::o;37281:273::-;37321:3;37340:20;37358:1;37340:20;:::i;:::-;37335:25;;37374:20;37392:1;37374:20;:::i;:::-;37369:25;;37496:1;37460:34;37456:42;37453:1;37450:49;37447:75;;;37502:18;;:::i;:::-;37447:75;37546:1;37543;37539:9;37532:16;;37281:273;;;;:::o;37560:305::-;37600:3;37619:20;37637:1;37619:20;:::i;:::-;37614:25;;37653:20;37671:1;37653:20;:::i;:::-;37648:25;;37807:1;37739:66;37735:74;37732:1;37729:81;37726:107;;;37813:18;;:::i;:::-;37726:107;37857:1;37854;37850:9;37843:16;;37560:305;;;;:::o;37871:185::-;37911:1;37928:20;37946:1;37928:20;:::i;:::-;37923:25;;37962:20;37980:1;37962:20;:::i;:::-;37957:25;;38001:1;37991:35;;38006:18;;:::i;:::-;37991:35;38048:1;38045;38041:9;38036:14;;37871:185;;;;:::o;38062:348::-;38102:7;38125:20;38143:1;38125:20;:::i;:::-;38120:25;;38159:20;38177:1;38159:20;:::i;:::-;38154:25;;38347:1;38279:66;38275:74;38272:1;38269:81;38264:1;38257:9;38250:17;38246:105;38243:131;;;38354:18;;:::i;:::-;38243:131;38402:1;38399;38395:9;38384:20;;38062:348;;;;:::o;38416:191::-;38456:4;38476:20;38494:1;38476:20;:::i;:::-;38471:25;;38510:20;38528:1;38510:20;:::i;:::-;38505:25;;38549:1;38546;38543:8;38540:34;;;38554:18;;:::i;:::-;38540:34;38599:1;38596;38592:9;38584:17;;38416:191;;;;:::o;38613:::-;38653:4;38673:20;38691:1;38673:20;:::i;:::-;38668:25;;38707:20;38725:1;38707:20;:::i;:::-;38702:25;;38746:1;38743;38740:8;38737:34;;;38751:18;;:::i;:::-;38737:34;38796:1;38793;38789:9;38781:17;;38613:191;;;;:::o;38810:96::-;38847:7;38876:24;38894:5;38876:24;:::i;:::-;38865:35;;38810:96;;;:::o;38912:90::-;38946:7;38989:5;38982:13;38975:21;38964:32;;38912:90;;;:::o;39008:149::-;39044:7;39084:66;39077:5;39073:78;39062:89;;39008:149;;;:::o;39163:118::-;39200:7;39240:34;39233:5;39229:46;39218:57;;39163:118;;;:::o;39287:126::-;39324:7;39364:42;39357:5;39353:54;39342:65;;39287:126;;;:::o;39419:77::-;39456:7;39485:5;39474:16;;39419:77;;;:::o;39502:101::-;39538:7;39578:18;39571:5;39567:30;39556:41;;39502:101;;;:::o;39609:139::-;39672:9;39705:37;39736:5;39705:37;:::i;:::-;39692:50;;39609:139;;;:::o;39754:126::-;39804:9;39837:37;39868:5;39837:37;:::i;:::-;39824:50;;39754:126;;;:::o;39886:113::-;39936:9;39969:24;39987:5;39969:24;:::i;:::-;39956:37;;39886:113;;;:::o;40005:154::-;40089:6;40084:3;40079;40066:30;40151:1;40142:6;40137:3;40133:16;40126:27;40005:154;;;:::o;40165:307::-;40233:1;40243:113;40257:6;40254:1;40251:13;40243:113;;;40342:1;40337:3;40333:11;40327:18;40323:1;40318:3;40314:11;40307:39;40279:2;40276:1;40272:10;40267:15;;40243:113;;;40374:6;40371:1;40368:13;40365:101;;;40454:1;40445:6;40440:3;40436:16;40429:27;40365:101;40214:258;40165:307;;;:::o;40478:171::-;40517:3;40540:24;40558:5;40540:24;:::i;:::-;40531:33;;40586:4;40579:5;40576:15;40573:41;;;40594:18;;:::i;:::-;40573:41;40641:1;40634:5;40630:13;40623:20;;40478:171;;;:::o;40655:320::-;40699:6;40736:1;40730:4;40726:12;40716:22;;40783:1;40777:4;40773:12;40804:18;40794:81;;40860:4;40852:6;40848:17;40838:27;;40794:81;40922:2;40914:6;40911:14;40891:18;40888:38;40885:84;;;40941:18;;:::i;:::-;40885:84;40706:269;40655:320;;;:::o;40981:281::-;41064:27;41086:4;41064:27;:::i;:::-;41056:6;41052:40;41194:6;41182:10;41179:22;41158:18;41146:10;41143:34;41140:62;41137:88;;;41205:18;;:::i;:::-;41137:88;41245:10;41241:2;41234:22;41024:238;40981:281;;:::o;41268:233::-;41307:3;41330:24;41348:5;41330:24;:::i;:::-;41321:33;;41376:66;41369:5;41366:77;41363:103;;;41446:18;;:::i;:::-;41363:103;41493:1;41486:5;41482:13;41475:20;;41268:233;;;:::o;41507:176::-;41539:1;41556:20;41574:1;41556:20;:::i;:::-;41551:25;;41590:20;41608:1;41590:20;:::i;:::-;41585:25;;41629:1;41619:35;;41634:18;;:::i;:::-;41619:35;41675:1;41672;41668:9;41663:14;;41507:176;;;;:::o;41689:180::-;41737:77;41734:1;41727:88;41834:4;41831:1;41824:15;41858:4;41855:1;41848:15;41875:180;41923:77;41920:1;41913:88;42020:4;42017:1;42010:15;42044:4;42041:1;42034:15;42061:180;42109:77;42106:1;42099:88;42206:4;42203:1;42196:15;42230:4;42227:1;42220:15;42247:180;42295:77;42292:1;42285:88;42392:4;42389:1;42382:15;42416:4;42413:1;42406:15;42433:180;42481:77;42478:1;42471:88;42578:4;42575:1;42568:15;42602:4;42599:1;42592:15;42619:117;42728:1;42725;42718:12;42742:117;42851:1;42848;42841:12;42865:117;42974:1;42971;42964:12;42988:117;43097:1;43094;43087:12;43111:117;43220:1;43217;43210:12;43234:117;43343:1;43340;43333:12;43357:102;43398:6;43449:2;43445:7;43440:2;43433:5;43429:14;43425:28;43415:38;;43357:102;;;:::o;43465:221::-;43605:34;43601:1;43593:6;43589:14;43582:58;43674:4;43669:2;43661:6;43657:15;43650:29;43465:221;:::o;43692:171::-;43832:23;43828:1;43820:6;43816:14;43809:47;43692:171;:::o;43869:225::-;44009:34;44005:1;43997:6;43993:14;43986:58;44078:8;44073:2;44065:6;44061:15;44054:33;43869:225;:::o;44100:229::-;44240:34;44236:1;44228:6;44224:14;44217:58;44309:12;44304:2;44296:6;44292:15;44285:37;44100:229;:::o;44335:231::-;44475:34;44471:1;44463:6;44459:14;44452:58;44544:14;44539:2;44531:6;44527:15;44520:39;44335:231;:::o;44572:222::-;44712:34;44708:1;44700:6;44696:14;44689:58;44781:5;44776:2;44768:6;44764:15;44757:30;44572:222;:::o;44800:224::-;44940:34;44936:1;44928:6;44924:14;44917:58;45009:7;45004:2;44996:6;44992:15;44985:32;44800:224;:::o;45030:236::-;45170:34;45166:1;45158:6;45154:14;45147:58;45239:19;45234:2;45226:6;45222:15;45215:44;45030:236;:::o;45272:180::-;45412:32;45408:1;45400:6;45396:14;45389:56;45272:180;:::o;45458:244::-;45598:34;45594:1;45586:6;45582:14;45575:58;45667:27;45662:2;45654:6;45650:15;45643:52;45458:244;:::o;45708:174::-;45848:26;45844:1;45836:6;45832:14;45825:50;45708:174;:::o;45888:177::-;46028:29;46024:1;46016:6;46012:14;46005:53;45888:177;:::o;46071:168::-;46211:20;46207:1;46199:6;46195:14;46188:44;46071:168;:::o;46245:230::-;46385:34;46381:1;46373:6;46369:14;46362:58;46454:13;46449:2;46441:6;46437:15;46430:38;46245:230;:::o;46481:225::-;46621:34;46617:1;46609:6;46605:14;46598:58;46690:8;46685:2;46677:6;46673:15;46666:33;46481:225;:::o;46712:182::-;46852:34;46848:1;46840:6;46836:14;46829:58;46712:182;:::o;46900:234::-;47040:34;47036:1;47028:6;47024:14;47017:58;47109:17;47104:2;47096:6;47092:15;47085:42;46900:234;:::o;47140:176::-;47280:28;47276:1;47268:6;47264:14;47257:52;47140:176;:::o;47322:237::-;47462:34;47458:1;47450:6;47446:14;47439:58;47531:20;47526:2;47518:6;47514:15;47507:45;47322:237;:::o;47565:168::-;47705:20;47701:1;47693:6;47689:14;47682:44;47565:168;:::o;47739:221::-;47879:34;47875:1;47867:6;47863:14;47856:58;47948:4;47943:2;47935:6;47931:15;47924:29;47739:221;:::o;47966:238::-;48106:34;48102:1;48094:6;48090:14;48083:58;48175:21;48170:2;48162:6;48158:15;48151:46;47966:238;:::o;48210:179::-;48350:31;48346:1;48338:6;48334:14;48327:55;48210:179;:::o;48395:220::-;48535:34;48531:1;48523:6;48519:14;48512:58;48604:3;48599:2;48591:6;48587:15;48580:28;48395:220;:::o;48621:233::-;48761:34;48757:1;48749:6;48745:14;48738:58;48830:16;48825:2;48817:6;48813:15;48806:41;48621:233;:::o;48860:225::-;49000:34;48996:1;48988:6;48984:14;48977:58;49069:8;49064:2;49056:6;49052:15;49045:33;48860:225;:::o;49091:169::-;49231:21;49227:1;49219:6;49215:14;49208:45;49091:169;:::o;49266:234::-;49406:34;49402:1;49394:6;49390:14;49383:58;49475:17;49470:2;49462:6;49458:15;49451:42;49266:234;:::o;49506:232::-;49646:34;49642:1;49634:6;49630:14;49623:58;49715:15;49710:2;49702:6;49698:15;49691:40;49506:232;:::o;49744:221::-;49884:34;49880:1;49872:6;49868:14;49861:58;49953:4;49948:2;49940:6;49936:15;49929:29;49744:221;:::o;49971:122::-;50044:24;50062:5;50044:24;:::i;:::-;50037:5;50034:35;50024:63;;50083:1;50080;50073:12;50024:63;49971:122;:::o;50099:116::-;50169:21;50184:5;50169:21;:::i;:::-;50162:5;50159:32;50149:60;;50205:1;50202;50195:12;50149:60;50099:116;:::o;50221:120::-;50293:23;50310:5;50293:23;:::i;:::-;50286:5;50283:34;50273:62;;50331:1;50328;50321:12;50273:62;50221:120;:::o;50347:122::-;50420:24;50438:5;50420:24;:::i;:::-;50413:5;50410:35;50400:63;;50459:1;50456;50449:12;50400:63;50347:122;:::o
Swarm Source
ipfs://8307c94cb91caf5efc26d1bcf50fb3e96840cbdce2730ee2faa909b77167bd3b
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.