ERC-721
Overview
Max Total Supply
5,244 GAPE
Holders
109
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GAPELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GoldenApe
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-26 */ // File: baby.sol /** *Submitted for verification at Etherscan.io on 2022-08-11 */ // 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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.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; } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.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); } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.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; } } // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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); } } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.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 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @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(), ".json")) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // OpenZeppelin Contracts v4.4.1 (access/Ownable.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(), "You are not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract GoldenApe is ERC721A, Ownable { string public baseURI = "https://justbayc.mypinata.cloud/ipfs/QmSQcLcpCyupkHgyueMJ6kWVKtya7RVBAk7XgbNzuvds8U/"; uint256 public tokenPrice = 6900000000000000; //0.0069 ETH uint public maxTokensPerTx = 100; uint public defaultTokensPerTx = 3; uint256 public MAX_TOKENS = 10001; bool public saleIsActive = true; uint256 public whitelistMintRemains = 1; // = 0 if there are all free // = maxTokensPerTx if there are all with fee uint public maxTokensWithFeePerTx = 10; enum TokenURIMode { MODE_ONE, MODE_TWO } TokenURIMode private tokenUriMode = TokenURIMode.MODE_ONE; constructor() ERC721A("Golden Ape", "GAPE", 10001, MAX_TOKENS) { } struct HelperState { uint256 tokenPrice; uint256 maxTokensPerTx; uint256 MAX_TOKENS; bool saleIsActive; uint256 totalSupply; uint maxTokensWithFeePerTx; uint256 userMinted; uint defaultTokensPerTx; } function _state(address minter) external view returns (HelperState memory) { return HelperState({ tokenPrice: tokenPrice, maxTokensPerTx: maxTokensPerTx, MAX_TOKENS: MAX_TOKENS, saleIsActive: saleIsActive, totalSupply: uint256(totalSupply()), maxTokensWithFeePerTx : maxTokensWithFeePerTx, userMinted: minter == address(0) ? 0 : uint256(_numberMinted(minter)), defaultTokensPerTx : defaultTokensPerTx }); } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawTo(address to, uint256 amount) public onlyOwner { require(amount <= address(this).balance, "Exceed balance of this contract"); payable(to).transfer(amount); } function reserveTokens(address to, uint numberOfTokens) public onlyOwner { require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Exceed max supply of tokens"); _safeMint(to, numberOfTokens); } function setBaseURI(string memory newURI) public onlyOwner { baseURI = newURI; } function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function getPrice(uint numberOfTokens, address minter) public view returns (uint256) { if(numberMinted(minter) > 0){ return numberOfTokens * tokenPrice; } else if(numberOfTokens > maxTokensWithFeePerTx){ return maxTokensWithFeePerTx * tokenPrice; } else if(numberOfTokens <= maxTokensWithFeePerTx){ return numberOfTokens * tokenPrice; } return 0; } // if numberMinted(msg.sender) > 0 -> no whitelist, no free. function mintToken(uint numberOfTokens) public payable { require(saleIsActive, "Sale must be active"); require(numberOfTokens <= maxTokensPerTx, "Exceed max tokens per tx"); require(numberOfTokens > 0, "Must mint at least one"); require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Exceed max supply"); if(whitelistMintRemains > 0 && numberMinted(msg.sender) <= 0){ if(numberOfTokens >= whitelistMintRemains){ numberOfTokens = whitelistMintRemains; } _safeMint(msg.sender, numberOfTokens); whitelistMintRemains = whitelistMintRemains - numberOfTokens; } else{ if(_numberMinted(msg.sender) > 0){ require(msg.value >= numberOfTokens * tokenPrice, "Not enough ether"); } else if(numberOfTokens > maxTokensWithFeePerTx){ require(msg.value >= maxTokensWithFeePerTx * tokenPrice, "Not enough ether"); } else if(numberOfTokens <= maxTokensWithFeePerTx){ require(msg.value >= numberOfTokens * tokenPrice, "Not enough ether"); } _safeMint(msg.sender, numberOfTokens); } } function setTokenPrice(uint256 newTokenPrice) public onlyOwner{ tokenPrice = newTokenPrice; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); if (tokenUriMode == TokenURIMode.MODE_TWO) { return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId) ) ) : ""; } else { return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), ".json" ) ) : ""; } } function setTokenURIMode(uint256 mode) external onlyOwner { if (mode == 2) { tokenUriMode = TokenURIMode.MODE_TWO; } else { tokenUriMode = TokenURIMode.MODE_ONE; } } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function setMaxSupply(uint256 _maxSupply) public onlyOwner { MAX_TOKENS = _maxSupply; } function setMaxTokensPerTx(uint _maxTokensPerTx) public onlyOwner{ maxTokensPerTx = _maxTokensPerTx; } function setMaxTokensWithFeePerTx(uint _maxTokensWithFeePerTx) public onlyOwner{ maxTokensWithFeePerTx = _maxTokensWithFeePerTx; } function setDefaultTokensPerTx(uint _defaultTokensPerTx) public onlyOwner{ defaultTokensPerTx = _defaultTokensPerTx; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_state","outputs":[{"components":[{"internalType":"uint256","name":"tokenPrice","type":"uint256"},{"internalType":"uint256","name":"maxTokensPerTx","type":"uint256"},{"internalType":"uint256","name":"MAX_TOKENS","type":"uint256"},{"internalType":"bool","name":"saleIsActive","type":"bool"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"maxTokensWithFeePerTx","type":"uint256"},{"internalType":"uint256","name":"userMinted","type":"uint256"},{"internalType":"uint256","name":"defaultTokensPerTx","type":"uint256"}],"internalType":"struct GoldenApe.HelperState","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"minter","type":"address"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensWithFeePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_defaultTokensPerTx","type":"uint256"}],"name":"setDefaultTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerTx","type":"uint256"}],"name":"setMaxTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensWithFeePerTx","type":"uint256"}],"name":"setMaxTokensWithFeePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mode","type":"uint256"}],"name":"setTokenURIMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","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":"whitelistMintRemains","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526000805560006007556040518060800160405280605481526020016200589d60549139600990805190602001906200003e929190620002f3565b506618838370f34000600a556064600b556003600c55612711600d556001600e60006101000a81548160ff0219169083151502179055506001600f55600a6010556000601160006101000a81548160ff02191690836001811115620000a857620000a76200047c565b5b0217905550348015620000ba57600080fd5b506040518060400160405280600a81526020017f476f6c64656e20417065000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4741504500000000000000000000000000000000000000000000000000000000815250612711600d546000811162000173576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016a9062000413565b60405180910390fd5b60008211620001b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b090620003f1565b60405180910390fd5b8360019080519060200190620001d1929190620002f3565b508260029080519060200190620001ea929190620002f3565b508160a081815250508060808181525050505050506200021f620002136200022560201b60201c565b6200022d60201b60201c565b62000578565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003019062000446565b90600052602060002090601f01602090048101928262000325576000855562000371565b82601f106200034057805160ff191683800117855562000371565b8280016001018555821562000371579182015b828111156200037057825182559160200191906001019062000353565b5b50905062000380919062000384565b5090565b5b808211156200039f57600081600090555060010162000385565b5090565b6000620003b260278362000435565b9150620003bf82620004da565b604082019050919050565b6000620003d9602e8362000435565b9150620003e68262000529565b604082019050919050565b600060208201905081810360008301526200040c81620003a3565b9050919050565b600060208201905081810360008301526200042e81620003ca565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200045f57607f821691505b60208210811415620004765762000475620004ab565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516152f4620005a960003960008181612b3401528181612b5d015261318c0152600050506152f46000f3fe60806040526004361061025c5760003560e01c80636f8b44b011610144578063b88d4fde116100b6578063d7224ba01161007a578063d7224ba0146108d3578063dc33e681146108fe578063e985e9c51461093b578063eb8d244414610978578063f2fde38b146109a3578063f47c84c5146109cc5761025c565b8063b88d4fde146107fd578063b9bed05e14610826578063c634d0321461084f578063c87b56dd1461086b578063d0a04eac146108a85761025c565b806385c8cc741161010857806385c8cc74146107015780638da5cb5b1461072a5780638f69ae6f14610755578063900c71f51461078057806395d89b41146107a9578063a22cb465146107d45761025c565b80636f8b44b01461063057806370a0823114610659578063715018a61461069657806378cf19e9146106ad5780637ff9b596146106d65761025c565b80633ccfd60b116101dd57806355f804b3116101a157806355f804b3146105205780635e307a48146105495780636352211e14610574578063681c8bac146105b15780636a61e5fc146105dc5780636c0360eb146106055761025c565b80633ccfd60b1461043d57806342842e0e14610454578063495e1eba1461047d5780634df8bb45146104a65780634f6ccce7146104e35761025c565b8063205c287811610224578063205c28781461035a57806323b872dd146103835780632b57cfbb146103ac5780632f745c59146103e957806334918dfd146104265761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806318160ddd1461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906139ed565b6109f7565b60405161029591906141bd565b60405180910390f35b3480156102aa57600080fd5b506102b3610b41565b6040516102c091906141d8565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613a90565b610bd3565b6040516102fd9190614156565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906139ad565b610c58565b005b34801561033b57600080fd5b50610344610d71565b6040516103519190614596565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c91906139ad565b610d7a565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613897565b610e84565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190613abd565b610e94565b6040516103e09190614596565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b91906139ad565b610f05565b60405161041d9190614596565b60405180910390f35b34801561043257600080fd5b5061043b611103565b005b34801561044957600080fd5b506104526111ab565b005b34801561046057600080fd5b5061047b60048036038101906104769190613897565b611276565b005b34801561048957600080fd5b506104a4600480360381019061049f9190613a90565b611296565b005b3480156104b257600080fd5b506104cd60048036038101906104c8919061382a565b61131c565b6040516104da919061457a565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190613a90565b6113cb565b6040516105179190614596565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190613a47565b61141e565b005b34801561055557600080fd5b5061055e6114b4565b60405161056b9190614596565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613a90565b6114ba565b6040516105a89190614156565b60405180910390f35b3480156105bd57600080fd5b506105c66114d0565b6040516105d39190614596565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613a90565b6114d6565b005b34801561061157600080fd5b5061061a61155c565b60405161062791906141d8565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190613a90565b6115ea565b005b34801561066557600080fd5b50610680600480360381019061067b919061382a565b611670565b60405161068d9190614596565b60405180910390f35b3480156106a257600080fd5b506106ab611759565b005b3480156106b957600080fd5b506106d460048036038101906106cf91906139ad565b6117e1565b005b3480156106e257600080fd5b506106eb6118c2565b6040516106f89190614596565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190613a90565b6118c8565b005b34801561073657600080fd5b5061073f61194e565b60405161074c9190614156565b60405180910390f35b34801561076157600080fd5b5061076a611978565b6040516107779190614596565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190613a90565b61197e565b005b3480156107b557600080fd5b506107be611a62565b6040516107cb91906141d8565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f6919061396d565b611af4565b005b34801561080957600080fd5b50610824600480360381019061081f91906138ea565b611c75565b005b34801561083257600080fd5b5061084d60048036038101906108489190613a90565b611cd1565b005b61086960048036038101906108649190613a90565b611d57565b005b34801561087757600080fd5b50610892600480360381019061088d9190613a90565b612008565b60405161089f91906141d8565b60405180910390f35b3480156108b457600080fd5b506108bd61214a565b6040516108ca9190614596565b60405180910390f35b3480156108df57600080fd5b506108e8612150565b6040516108f59190614596565b60405180910390f35b34801561090a57600080fd5b506109256004803603810190610920919061382a565b612156565b6040516109329190614596565b60405180910390f35b34801561094757600080fd5b50610962600480360381019061095d9190613857565b612168565b60405161096f91906141bd565b60405180910390f35b34801561098457600080fd5b5061098d6121fc565b60405161099a91906141bd565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c5919061382a565b61220f565b005b3480156109d857600080fd5b506109e1612307565b6040516109ee9190614596565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ac257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b2a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3a5750610b398261230d565b5b9050919050565b606060018054610b509061491b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7c9061491b565b8015610bc95780601f10610b9e57610100808354040283529160200191610bc9565b820191906000526020600020905b815481529060010190602001808311610bac57829003601f168201915b5050505050905090565b6000610bde82612377565b610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c149061453a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c63826114ba565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb9061445a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf3612384565b73ffffffffffffffffffffffffffffffffffffffff161480610d225750610d2181610d1c612384565b612168565b5b610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d589061433a565b60405180910390fd5b610d6c83838361238c565b505050565b60008054905090565b610d82612384565b73ffffffffffffffffffffffffffffffffffffffff16610da061194e565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded9061431a565b60405180910390fd5b47811115610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e309061429a565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e7f573d6000803e3d6000fd5b505050565b610e8f83838361243e565b505050565b600080610ea083612156565b1115610ebb57600a5483610eb4919061475d565b9050610eff565b601054831115610edc57600a54601054610ed5919061475d565b9050610eff565b6010548311610efa57600a5483610ef3919061475d565b9050610eff565b600090505b92915050565b6000610f1083611670565b8210610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f48906141fa565b60405180910390fd5b6000610f5b610d71565b905060008060005b838110156110c1576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461105557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110ad578684141561109e5781955050505050506110fd565b83806110a99061497e565b9450505b5080806110b99061497e565b915050610f63565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f4906144da565b60405180910390fd5b92915050565b61110b612384565b73ffffffffffffffffffffffffffffffffffffffff1661112961194e565b73ffffffffffffffffffffffffffffffffffffffff161461117f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111769061431a565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6111b3612384565b73ffffffffffffffffffffffffffffffffffffffff166111d161194e565b73ffffffffffffffffffffffffffffffffffffffff1614611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e9061431a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611272573d6000803e3d6000fd5b5050565b61129183838360405180602001604052806000815250611c75565b505050565b61129e612384565b73ffffffffffffffffffffffffffffffffffffffff166112bc61194e565b73ffffffffffffffffffffffffffffffffffffffff1614611312576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113099061431a565b60405180910390fd5b80600c8190555050565b6113246135bd565b604051806101000160405280600a548152602001600b548152602001600d548152602001600e60009054906101000a900460ff1615158152602001611367610d71565b81526020016010548152602001600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146113b6576113b1846129f7565b6113b9565b60005b8152602001600c548152509050919050565b60006113d5610d71565b8210611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d906142ba565b60405180910390fd5b819050919050565b611426612384565b73ffffffffffffffffffffffffffffffffffffffff1661144461194e565b73ffffffffffffffffffffffffffffffffffffffff161461149a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114919061431a565b60405180910390fd5b80600990805190602001906114b0929190613604565b5050565b600b5481565b60006114c582612ae0565b600001519050919050565b600c5481565b6114de612384565b73ffffffffffffffffffffffffffffffffffffffff166114fc61194e565b73ffffffffffffffffffffffffffffffffffffffff1614611552576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115499061431a565b60405180910390fd5b80600a8190555050565b600980546115699061491b565b80601f01602080910402602001604051908101604052809291908181526020018280546115959061491b565b80156115e25780601f106115b7576101008083540402835291602001916115e2565b820191906000526020600020905b8154815290600101906020018083116115c557829003601f168201915b505050505081565b6115f2612384565b73ffffffffffffffffffffffffffffffffffffffff1661161061194e565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d9061431a565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d89061437a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611761612384565b73ffffffffffffffffffffffffffffffffffffffff1661177f61194e565b73ffffffffffffffffffffffffffffffffffffffff16146117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc9061431a565b60405180910390fd5b6117df6000612ce3565b565b6117e9612384565b73ffffffffffffffffffffffffffffffffffffffff1661180761194e565b73ffffffffffffffffffffffffffffffffffffffff161461185d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118549061431a565b60405180910390fd5b600d5481611869610d71565b61187391906146d6565b11156118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab9061435a565b60405180910390fd5b6118be8282612da9565b5050565b600a5481565b6118d0612384565b73ffffffffffffffffffffffffffffffffffffffff166118ee61194e565b73ffffffffffffffffffffffffffffffffffffffff1614611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b9061431a565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b611986612384565b73ffffffffffffffffffffffffffffffffffffffff166119a461194e565b73ffffffffffffffffffffffffffffffffffffffff16146119fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f19061431a565b60405180910390fd5b6002811415611a33576001601160006101000a81548160ff02191690836001811115611a2957611a28614a56565b5b0217905550611a5f565b6000601160006101000a81548160ff02191690836001811115611a5957611a58614a56565b5b02179055505b50565b606060028054611a719061491b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9d9061491b565b8015611aea5780601f10611abf57610100808354040283529160200191611aea565b820191906000526020600020905b815481529060010190602001808311611acd57829003601f168201915b5050505050905090565b611afc612384565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b61906143fa565b60405180910390fd5b8060066000611b77612384565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c24612384565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c6991906141bd565b60405180910390a35050565b611c8084848461243e565b611c8c84848484612dc7565b611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc29061447a565b60405180910390fd5b50505050565b611cd9612384565b73ffffffffffffffffffffffffffffffffffffffff16611cf761194e565b73ffffffffffffffffffffffffffffffffffffffff1614611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d449061431a565b60405180910390fd5b80600b8190555050565b600e60009054906101000a900460ff16611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d9061421a565b60405180910390fd5b600b54811115611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de29061443a565b60405180910390fd5b60008111611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e259061451a565b60405180910390fd5b600d5481611e3a610d71565b611e4491906146d6565b1115611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c906143ba565b60405180910390fd5b6000600f54118015611ea057506000611e9d33612156565b11155b15611ed757600f548110611eb457600f5490505b611ebe3382612da9565b80600f54611ecc91906147eb565b600f81905550612005565b6000611ee2336129f7565b1115611f3d57600a5481611ef6919061475d565b341015611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f9061423a565b60405180910390fd5b611ffa565b601054811115611f9e57600a54601054611f57919061475d565b341015611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f909061423a565b60405180910390fd5b611ff9565b6010548111611ff857600a5481611fb5919061475d565b341015611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee9061423a565b60405180910390fd5b5b5b5b6120043382612da9565b5b50565b606061201382612377565b612052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120499061439a565b60405180910390fd5b60018081111561206557612064614a56565b5b601160009054906101000a900460ff16600181111561208757612086614a56565b5b14156120eb5760006009805461209c9061491b565b9050116120b857604051806020016040528060008152506120e4565b60096120c383612f5e565b6040516020016120d4929190614103565b6040516020818303038152906040525b9050612145565b6000600980546120fa9061491b565b9050116121165760405180602001604052806000815250612142565b600961212183612f5e565b604051602001612132929190614127565b6040516020818303038152906040525b90505b919050565b60105481565b60075481565b6000612161826129f7565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b612217612384565b73ffffffffffffffffffffffffffffffffffffffff1661223561194e565b73ffffffffffffffffffffffffffffffffffffffff161461228b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122829061431a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f29061425a565b60405180910390fd5b61230481612ce3565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061244982612ae0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612470612384565b73ffffffffffffffffffffffffffffffffffffffff1614806124cc5750612495612384565b73ffffffffffffffffffffffffffffffffffffffff166124b484610bd3565b73ffffffffffffffffffffffffffffffffffffffff16145b806124e857506124e782600001516124e2612384565b612168565b5b90508061252a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125219061441a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461259c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612593906143da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561260c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612603906142da565b60405180910390fd5b61261985858560016130bf565b612629600084846000015161238c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661269791906147b7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661273b9190614690565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461284191906146d6565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612987576128b781612377565b15612986576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129ef86868660016130c5565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5f906142fa565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b612ae861368a565b612af182612377565b612b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b279061427a565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612b945760017f000000000000000000000000000000000000000000000000000000000000000084612b8791906147eb565b612b9191906146d6565b90505b60008390505b818110612ca2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c8e57809350505050612cde565b508080612c9a906148f1565b915050612b9a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd5906144fa565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612dc38282604051806020016040528060008152506130cb565b5050565b6000612de88473ffffffffffffffffffffffffffffffffffffffff166135aa565b15612f51578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e11612384565b8786866040518563ffffffff1660e01b8152600401612e339493929190614171565b602060405180830381600087803b158015612e4d57600080fd5b505af1925050508015612e7e57506040513d601f19601f82011682018060405250810190612e7b9190613a1a565b60015b612f01573d8060008114612eae576040519150601f19603f3d011682016040523d82523d6000602084013e612eb3565b606091505b50600081511415612ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef09061447a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f56565b600190505b949350505050565b60606000821415612fa6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130ba565b600082905060005b60008214612fd8578080612fc19061497e565b915050600a82612fd1919061472c565b9150612fae565b60008167ffffffffffffffff811115612ff457612ff3614ae3565b5b6040519080825280601f01601f1916602001820160405280156130265781602001600182028036833780820191505090505b5090505b600085146130b35760018261303f91906147eb565b9150600a8561304e91906149c7565b603061305a91906146d6565b60f81b8183815181106130705761306f614ab4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130ac919061472c565b945061302a565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613138906144ba565b60405180910390fd5b61314a81612377565b1561318a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131819061449a565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156131ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e49061455a565b60405180910390fd5b6131fa60008583866130bf565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516132f79190614690565b6fffffffffffffffffffffffffffffffff16815260200185836020015161331e9190614690565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561358d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461352d6000888488612dc7565b61356c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135639061447a565b60405180910390fd5b81806135779061497e565b92505080806135859061497e565b9150506134bc565b50806000819055506135a260008785886130c5565b505050505050565b600080823b905060008111915050919050565b604051806101000160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081525090565b8280546136109061491b565b90600052602060002090601f0160209004810192826136325760008555613679565b82601f1061364b57805160ff1916838001178555613679565b82800160010185558215613679579182015b8281111561367857825182559160200191906001019061365d565b5b50905061368691906136c4565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156136dd5760008160009055506001016136c5565b5090565b60006136f46136ef846145d6565b6145b1565b9050828152602081018484840111156137105761370f614b17565b5b61371b8482856148af565b509392505050565b600061373661373184614607565b6145b1565b90508281526020810184848401111561375257613751614b17565b5b61375d8482856148af565b509392505050565b60008135905061377481615262565b92915050565b60008135905061378981615279565b92915050565b60008135905061379e81615290565b92915050565b6000815190506137b381615290565b92915050565b600082601f8301126137ce576137cd614b12565b5b81356137de8482602086016136e1565b91505092915050565b600082601f8301126137fc576137fb614b12565b5b813561380c848260208601613723565b91505092915050565b600081359050613824816152a7565b92915050565b6000602082840312156138405761383f614b21565b5b600061384e84828501613765565b91505092915050565b6000806040838503121561386e5761386d614b21565b5b600061387c85828601613765565b925050602061388d85828601613765565b9150509250929050565b6000806000606084860312156138b0576138af614b21565b5b60006138be86828701613765565b93505060206138cf86828701613765565b92505060406138e086828701613815565b9150509250925092565b6000806000806080858703121561390457613903614b21565b5b600061391287828801613765565b945050602061392387828801613765565b935050604061393487828801613815565b925050606085013567ffffffffffffffff81111561395557613954614b1c565b5b613961878288016137b9565b91505092959194509250565b6000806040838503121561398457613983614b21565b5b600061399285828601613765565b92505060206139a38582860161377a565b9150509250929050565b600080604083850312156139c4576139c3614b21565b5b60006139d285828601613765565b92505060206139e385828601613815565b9150509250929050565b600060208284031215613a0357613a02614b21565b5b6000613a118482850161378f565b91505092915050565b600060208284031215613a3057613a2f614b21565b5b6000613a3e848285016137a4565b91505092915050565b600060208284031215613a5d57613a5c614b21565b5b600082013567ffffffffffffffff811115613a7b57613a7a614b1c565b5b613a87848285016137e7565b91505092915050565b600060208284031215613aa657613aa5614b21565b5b6000613ab484828501613815565b91505092915050565b60008060408385031215613ad457613ad3614b21565b5b6000613ae285828601613815565b9250506020613af385828601613765565b9150509250929050565b613b068161481f565b82525050565b613b1581614831565b82525050565b613b2481614831565b82525050565b6000613b358261464d565b613b3f8185614663565b9350613b4f8185602086016148be565b613b5881614b26565b840191505092915050565b6000613b6e82614658565b613b788185614674565b9350613b888185602086016148be565b613b9181614b26565b840191505092915050565b6000613ba782614658565b613bb18185614685565b9350613bc18185602086016148be565b80840191505092915050565b60008154613bda8161491b565b613be48186614685565b94506001821660008114613bff5760018114613c1057613c43565b60ff19831686528186019350613c43565b613c1985614638565b60005b83811015613c3b57815481890152600182019150602081019050613c1c565b838801955050505b50505092915050565b6000613c59602283614674565b9150613c6482614b37565b604082019050919050565b6000613c7c601383614674565b9150613c8782614b86565b602082019050919050565b6000613c9f601083614674565b9150613caa82614baf565b602082019050919050565b6000613cc2602683614674565b9150613ccd82614bd8565b604082019050919050565b6000613ce5602a83614674565b9150613cf082614c27565b604082019050919050565b6000613d08601f83614674565b9150613d1382614c76565b602082019050919050565b6000613d2b602383614674565b9150613d3682614c9f565b604082019050919050565b6000613d4e602583614674565b9150613d5982614cee565b604082019050919050565b6000613d71603183614674565b9150613d7c82614d3d565b604082019050919050565b6000613d94601583614674565b9150613d9f82614d8c565b602082019050919050565b6000613db7603983614674565b9150613dc282614db5565b604082019050919050565b6000613dda601b83614674565b9150613de582614e04565b602082019050919050565b6000613dfd602b83614674565b9150613e0882614e2d565b604082019050919050565b6000613e20601583614674565b9150613e2b82614e7c565b602082019050919050565b6000613e43601183614674565b9150613e4e82614ea5565b602082019050919050565b6000613e66602683614674565b9150613e7182614ece565b604082019050919050565b6000613e89600583614685565b9150613e9482614f1d565b600582019050919050565b6000613eac601a83614674565b9150613eb782614f46565b602082019050919050565b6000613ecf603283614674565b9150613eda82614f6f565b604082019050919050565b6000613ef2601883614674565b9150613efd82614fbe565b602082019050919050565b6000613f15602283614674565b9150613f2082614fe7565b604082019050919050565b6000613f38603383614674565b9150613f4382615036565b604082019050919050565b6000613f5b601d83614674565b9150613f6682615085565b602082019050919050565b6000613f7e602183614674565b9150613f89826150ae565b604082019050919050565b6000613fa1602e83614674565b9150613fac826150fd565b604082019050919050565b6000613fc4602f83614674565b9150613fcf8261514c565b604082019050919050565b6000613fe7601683614674565b9150613ff28261519b565b602082019050919050565b600061400a602d83614674565b9150614015826151c4565b604082019050919050565b600061402d602283614674565b915061403882615213565b604082019050919050565b6101008201600082015161405a60008501826140e5565b50602082015161406d60208501826140e5565b50604082015161408060408501826140e5565b5060608201516140936060850182613b0c565b5060808201516140a660808501826140e5565b5060a08201516140b960a08501826140e5565b5060c08201516140cc60c08501826140e5565b5060e08201516140df60e08501826140e5565b50505050565b6140ee816148a5565b82525050565b6140fd816148a5565b82525050565b600061410f8285613bcd565b915061411b8284613b9c565b91508190509392505050565b60006141338285613bcd565b915061413f8284613b9c565b915061414a82613e7c565b91508190509392505050565b600060208201905061416b6000830184613afd565b92915050565b60006080820190506141866000830187613afd565b6141936020830186613afd565b6141a060408301856140f4565b81810360608301526141b28184613b2a565b905095945050505050565b60006020820190506141d26000830184613b1b565b92915050565b600060208201905081810360008301526141f28184613b63565b905092915050565b6000602082019050818103600083015261421381613c4c565b9050919050565b6000602082019050818103600083015261423381613c6f565b9050919050565b6000602082019050818103600083015261425381613c92565b9050919050565b6000602082019050818103600083015261427381613cb5565b9050919050565b6000602082019050818103600083015261429381613cd8565b9050919050565b600060208201905081810360008301526142b381613cfb565b9050919050565b600060208201905081810360008301526142d381613d1e565b9050919050565b600060208201905081810360008301526142f381613d41565b9050919050565b6000602082019050818103600083015261431381613d64565b9050919050565b6000602082019050818103600083015261433381613d87565b9050919050565b6000602082019050818103600083015261435381613daa565b9050919050565b6000602082019050818103600083015261437381613dcd565b9050919050565b6000602082019050818103600083015261439381613df0565b9050919050565b600060208201905081810360008301526143b381613e13565b9050919050565b600060208201905081810360008301526143d381613e36565b9050919050565b600060208201905081810360008301526143f381613e59565b9050919050565b6000602082019050818103600083015261441381613e9f565b9050919050565b6000602082019050818103600083015261443381613ec2565b9050919050565b6000602082019050818103600083015261445381613ee5565b9050919050565b6000602082019050818103600083015261447381613f08565b9050919050565b6000602082019050818103600083015261449381613f2b565b9050919050565b600060208201905081810360008301526144b381613f4e565b9050919050565b600060208201905081810360008301526144d381613f71565b9050919050565b600060208201905081810360008301526144f381613f94565b9050919050565b6000602082019050818103600083015261451381613fb7565b9050919050565b6000602082019050818103600083015261453381613fda565b9050919050565b6000602082019050818103600083015261455381613ffd565b9050919050565b6000602082019050818103600083015261457381614020565b9050919050565b6000610100820190506145906000830184614043565b92915050565b60006020820190506145ab60008301846140f4565b92915050565b60006145bb6145cc565b90506145c7828261494d565b919050565b6000604051905090565b600067ffffffffffffffff8211156145f1576145f0614ae3565b5b6145fa82614b26565b9050602081019050919050565b600067ffffffffffffffff82111561462257614621614ae3565b5b61462b82614b26565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061469b82614869565b91506146a683614869565b9250826fffffffffffffffffffffffffffffffff038211156146cb576146ca6149f8565b5b828201905092915050565b60006146e1826148a5565b91506146ec836148a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614721576147206149f8565b5b828201905092915050565b6000614737826148a5565b9150614742836148a5565b92508261475257614751614a27565b5b828204905092915050565b6000614768826148a5565b9150614773836148a5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147ac576147ab6149f8565b5b828202905092915050565b60006147c282614869565b91506147cd83614869565b9250828210156147e0576147df6149f8565b5b828203905092915050565b60006147f6826148a5565b9150614801836148a5565b925082821015614814576148136149f8565b5b828203905092915050565b600061482a82614885565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148dc5780820151818401526020810190506148c1565b838111156148eb576000848401525b50505050565b60006148fc826148a5565b915060008214156149105761490f6149f8565b5b600182039050919050565b6000600282049050600182168061493357607f821691505b6020821081141561494757614946614a85565b5b50919050565b61495682614b26565b810181811067ffffffffffffffff8211171561497557614974614ae3565b5b80604052505050565b6000614989826148a5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149bc576149bb6149f8565b5b600182019050919050565b60006149d2826148a5565b91506149dd836148a5565b9250826149ed576149ec614a27565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4578636565642062616c616e6365206f66207468697320636f6e747261637400600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f457863656564206d617820737570706c79206f6620746f6b656e730000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d617820746f6b656e73207065722074780000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61526b8161481f565b811461527657600080fd5b50565b61528281614831565b811461528d57600080fd5b50565b6152998161483d565b81146152a457600080fd5b50565b6152b0816148a5565b81146152bb57600080fd5b5056fea2646970667358221220a52ef096ccebc7e5a80d83098ce66032b765e9f865ca5f440db892e7f4f6483064736f6c6343000807003368747470733a2f2f6a757374626179632e6d7970696e6174612e636c6f75642f697066732f516d5351634c6370437975706b48677975654d4a366b57564b74796137525642416b375867624e7a7576647338552f
Deployed Bytecode
0x60806040526004361061025c5760003560e01c80636f8b44b011610144578063b88d4fde116100b6578063d7224ba01161007a578063d7224ba0146108d3578063dc33e681146108fe578063e985e9c51461093b578063eb8d244414610978578063f2fde38b146109a3578063f47c84c5146109cc5761025c565b8063b88d4fde146107fd578063b9bed05e14610826578063c634d0321461084f578063c87b56dd1461086b578063d0a04eac146108a85761025c565b806385c8cc741161010857806385c8cc74146107015780638da5cb5b1461072a5780638f69ae6f14610755578063900c71f51461078057806395d89b41146107a9578063a22cb465146107d45761025c565b80636f8b44b01461063057806370a0823114610659578063715018a61461069657806378cf19e9146106ad5780637ff9b596146106d65761025c565b80633ccfd60b116101dd57806355f804b3116101a157806355f804b3146105205780635e307a48146105495780636352211e14610574578063681c8bac146105b15780636a61e5fc146105dc5780636c0360eb146106055761025c565b80633ccfd60b1461043d57806342842e0e14610454578063495e1eba1461047d5780634df8bb45146104a65780634f6ccce7146104e35761025c565b8063205c287811610224578063205c28781461035a57806323b872dd146103835780632b57cfbb146103ac5780632f745c59146103e957806334918dfd146104265761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806318160ddd1461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906139ed565b6109f7565b60405161029591906141bd565b60405180910390f35b3480156102aa57600080fd5b506102b3610b41565b6040516102c091906141d8565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613a90565b610bd3565b6040516102fd9190614156565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906139ad565b610c58565b005b34801561033b57600080fd5b50610344610d71565b6040516103519190614596565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c91906139ad565b610d7a565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613897565b610e84565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190613abd565b610e94565b6040516103e09190614596565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b91906139ad565b610f05565b60405161041d9190614596565b60405180910390f35b34801561043257600080fd5b5061043b611103565b005b34801561044957600080fd5b506104526111ab565b005b34801561046057600080fd5b5061047b60048036038101906104769190613897565b611276565b005b34801561048957600080fd5b506104a4600480360381019061049f9190613a90565b611296565b005b3480156104b257600080fd5b506104cd60048036038101906104c8919061382a565b61131c565b6040516104da919061457a565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190613a90565b6113cb565b6040516105179190614596565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190613a47565b61141e565b005b34801561055557600080fd5b5061055e6114b4565b60405161056b9190614596565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613a90565b6114ba565b6040516105a89190614156565b60405180910390f35b3480156105bd57600080fd5b506105c66114d0565b6040516105d39190614596565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613a90565b6114d6565b005b34801561061157600080fd5b5061061a61155c565b60405161062791906141d8565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190613a90565b6115ea565b005b34801561066557600080fd5b50610680600480360381019061067b919061382a565b611670565b60405161068d9190614596565b60405180910390f35b3480156106a257600080fd5b506106ab611759565b005b3480156106b957600080fd5b506106d460048036038101906106cf91906139ad565b6117e1565b005b3480156106e257600080fd5b506106eb6118c2565b6040516106f89190614596565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190613a90565b6118c8565b005b34801561073657600080fd5b5061073f61194e565b60405161074c9190614156565b60405180910390f35b34801561076157600080fd5b5061076a611978565b6040516107779190614596565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190613a90565b61197e565b005b3480156107b557600080fd5b506107be611a62565b6040516107cb91906141d8565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f6919061396d565b611af4565b005b34801561080957600080fd5b50610824600480360381019061081f91906138ea565b611c75565b005b34801561083257600080fd5b5061084d60048036038101906108489190613a90565b611cd1565b005b61086960048036038101906108649190613a90565b611d57565b005b34801561087757600080fd5b50610892600480360381019061088d9190613a90565b612008565b60405161089f91906141d8565b60405180910390f35b3480156108b457600080fd5b506108bd61214a565b6040516108ca9190614596565b60405180910390f35b3480156108df57600080fd5b506108e8612150565b6040516108f59190614596565b60405180910390f35b34801561090a57600080fd5b506109256004803603810190610920919061382a565b612156565b6040516109329190614596565b60405180910390f35b34801561094757600080fd5b50610962600480360381019061095d9190613857565b612168565b60405161096f91906141bd565b60405180910390f35b34801561098457600080fd5b5061098d6121fc565b60405161099a91906141bd565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c5919061382a565b61220f565b005b3480156109d857600080fd5b506109e1612307565b6040516109ee9190614596565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ac257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b2a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3a5750610b398261230d565b5b9050919050565b606060018054610b509061491b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7c9061491b565b8015610bc95780601f10610b9e57610100808354040283529160200191610bc9565b820191906000526020600020905b815481529060010190602001808311610bac57829003601f168201915b5050505050905090565b6000610bde82612377565b610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c149061453a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c63826114ba565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb9061445a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf3612384565b73ffffffffffffffffffffffffffffffffffffffff161480610d225750610d2181610d1c612384565b612168565b5b610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d589061433a565b60405180910390fd5b610d6c83838361238c565b505050565b60008054905090565b610d82612384565b73ffffffffffffffffffffffffffffffffffffffff16610da061194e565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded9061431a565b60405180910390fd5b47811115610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e309061429a565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e7f573d6000803e3d6000fd5b505050565b610e8f83838361243e565b505050565b600080610ea083612156565b1115610ebb57600a5483610eb4919061475d565b9050610eff565b601054831115610edc57600a54601054610ed5919061475d565b9050610eff565b6010548311610efa57600a5483610ef3919061475d565b9050610eff565b600090505b92915050565b6000610f1083611670565b8210610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f48906141fa565b60405180910390fd5b6000610f5b610d71565b905060008060005b838110156110c1576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461105557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110ad578684141561109e5781955050505050506110fd565b83806110a99061497e565b9450505b5080806110b99061497e565b915050610f63565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f4906144da565b60405180910390fd5b92915050565b61110b612384565b73ffffffffffffffffffffffffffffffffffffffff1661112961194e565b73ffffffffffffffffffffffffffffffffffffffff161461117f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111769061431a565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6111b3612384565b73ffffffffffffffffffffffffffffffffffffffff166111d161194e565b73ffffffffffffffffffffffffffffffffffffffff1614611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e9061431a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611272573d6000803e3d6000fd5b5050565b61129183838360405180602001604052806000815250611c75565b505050565b61129e612384565b73ffffffffffffffffffffffffffffffffffffffff166112bc61194e565b73ffffffffffffffffffffffffffffffffffffffff1614611312576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113099061431a565b60405180910390fd5b80600c8190555050565b6113246135bd565b604051806101000160405280600a548152602001600b548152602001600d548152602001600e60009054906101000a900460ff1615158152602001611367610d71565b81526020016010548152602001600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146113b6576113b1846129f7565b6113b9565b60005b8152602001600c548152509050919050565b60006113d5610d71565b8210611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d906142ba565b60405180910390fd5b819050919050565b611426612384565b73ffffffffffffffffffffffffffffffffffffffff1661144461194e565b73ffffffffffffffffffffffffffffffffffffffff161461149a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114919061431a565b60405180910390fd5b80600990805190602001906114b0929190613604565b5050565b600b5481565b60006114c582612ae0565b600001519050919050565b600c5481565b6114de612384565b73ffffffffffffffffffffffffffffffffffffffff166114fc61194e565b73ffffffffffffffffffffffffffffffffffffffff1614611552576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115499061431a565b60405180910390fd5b80600a8190555050565b600980546115699061491b565b80601f01602080910402602001604051908101604052809291908181526020018280546115959061491b565b80156115e25780601f106115b7576101008083540402835291602001916115e2565b820191906000526020600020905b8154815290600101906020018083116115c557829003601f168201915b505050505081565b6115f2612384565b73ffffffffffffffffffffffffffffffffffffffff1661161061194e565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d9061431a565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d89061437a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611761612384565b73ffffffffffffffffffffffffffffffffffffffff1661177f61194e565b73ffffffffffffffffffffffffffffffffffffffff16146117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc9061431a565b60405180910390fd5b6117df6000612ce3565b565b6117e9612384565b73ffffffffffffffffffffffffffffffffffffffff1661180761194e565b73ffffffffffffffffffffffffffffffffffffffff161461185d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118549061431a565b60405180910390fd5b600d5481611869610d71565b61187391906146d6565b11156118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab9061435a565b60405180910390fd5b6118be8282612da9565b5050565b600a5481565b6118d0612384565b73ffffffffffffffffffffffffffffffffffffffff166118ee61194e565b73ffffffffffffffffffffffffffffffffffffffff1614611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b9061431a565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b611986612384565b73ffffffffffffffffffffffffffffffffffffffff166119a461194e565b73ffffffffffffffffffffffffffffffffffffffff16146119fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f19061431a565b60405180910390fd5b6002811415611a33576001601160006101000a81548160ff02191690836001811115611a2957611a28614a56565b5b0217905550611a5f565b6000601160006101000a81548160ff02191690836001811115611a5957611a58614a56565b5b02179055505b50565b606060028054611a719061491b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9d9061491b565b8015611aea5780601f10611abf57610100808354040283529160200191611aea565b820191906000526020600020905b815481529060010190602001808311611acd57829003601f168201915b5050505050905090565b611afc612384565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b61906143fa565b60405180910390fd5b8060066000611b77612384565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c24612384565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c6991906141bd565b60405180910390a35050565b611c8084848461243e565b611c8c84848484612dc7565b611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc29061447a565b60405180910390fd5b50505050565b611cd9612384565b73ffffffffffffffffffffffffffffffffffffffff16611cf761194e565b73ffffffffffffffffffffffffffffffffffffffff1614611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d449061431a565b60405180910390fd5b80600b8190555050565b600e60009054906101000a900460ff16611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d9061421a565b60405180910390fd5b600b54811115611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de29061443a565b60405180910390fd5b60008111611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e259061451a565b60405180910390fd5b600d5481611e3a610d71565b611e4491906146d6565b1115611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c906143ba565b60405180910390fd5b6000600f54118015611ea057506000611e9d33612156565b11155b15611ed757600f548110611eb457600f5490505b611ebe3382612da9565b80600f54611ecc91906147eb565b600f81905550612005565b6000611ee2336129f7565b1115611f3d57600a5481611ef6919061475d565b341015611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f9061423a565b60405180910390fd5b611ffa565b601054811115611f9e57600a54601054611f57919061475d565b341015611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f909061423a565b60405180910390fd5b611ff9565b6010548111611ff857600a5481611fb5919061475d565b341015611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee9061423a565b60405180910390fd5b5b5b5b6120043382612da9565b5b50565b606061201382612377565b612052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120499061439a565b60405180910390fd5b60018081111561206557612064614a56565b5b601160009054906101000a900460ff16600181111561208757612086614a56565b5b14156120eb5760006009805461209c9061491b565b9050116120b857604051806020016040528060008152506120e4565b60096120c383612f5e565b6040516020016120d4929190614103565b6040516020818303038152906040525b9050612145565b6000600980546120fa9061491b565b9050116121165760405180602001604052806000815250612142565b600961212183612f5e565b604051602001612132929190614127565b6040516020818303038152906040525b90505b919050565b60105481565b60075481565b6000612161826129f7565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b612217612384565b73ffffffffffffffffffffffffffffffffffffffff1661223561194e565b73ffffffffffffffffffffffffffffffffffffffff161461228b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122829061431a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f29061425a565b60405180910390fd5b61230481612ce3565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061244982612ae0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612470612384565b73ffffffffffffffffffffffffffffffffffffffff1614806124cc5750612495612384565b73ffffffffffffffffffffffffffffffffffffffff166124b484610bd3565b73ffffffffffffffffffffffffffffffffffffffff16145b806124e857506124e782600001516124e2612384565b612168565b5b90508061252a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125219061441a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461259c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612593906143da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561260c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612603906142da565b60405180910390fd5b61261985858560016130bf565b612629600084846000015161238c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661269791906147b7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661273b9190614690565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461284191906146d6565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612987576128b781612377565b15612986576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129ef86868660016130c5565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5f906142fa565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b612ae861368a565b612af182612377565b612b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b279061427a565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000027118310612b945760017f000000000000000000000000000000000000000000000000000000000000271184612b8791906147eb565b612b9191906146d6565b90505b60008390505b818110612ca2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c8e57809350505050612cde565b508080612c9a906148f1565b915050612b9a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd5906144fa565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612dc38282604051806020016040528060008152506130cb565b5050565b6000612de88473ffffffffffffffffffffffffffffffffffffffff166135aa565b15612f51578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e11612384565b8786866040518563ffffffff1660e01b8152600401612e339493929190614171565b602060405180830381600087803b158015612e4d57600080fd5b505af1925050508015612e7e57506040513d601f19601f82011682018060405250810190612e7b9190613a1a565b60015b612f01573d8060008114612eae576040519150601f19603f3d011682016040523d82523d6000602084013e612eb3565b606091505b50600081511415612ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef09061447a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f56565b600190505b949350505050565b60606000821415612fa6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130ba565b600082905060005b60008214612fd8578080612fc19061497e565b915050600a82612fd1919061472c565b9150612fae565b60008167ffffffffffffffff811115612ff457612ff3614ae3565b5b6040519080825280601f01601f1916602001820160405280156130265781602001600182028036833780820191505090505b5090505b600085146130b35760018261303f91906147eb565b9150600a8561304e91906149c7565b603061305a91906146d6565b60f81b8183815181106130705761306f614ab4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130ac919061472c565b945061302a565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613138906144ba565b60405180910390fd5b61314a81612377565b1561318a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131819061449a565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000027118311156131ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e49061455a565b60405180910390fd5b6131fa60008583866130bf565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516132f79190614690565b6fffffffffffffffffffffffffffffffff16815260200185836020015161331e9190614690565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561358d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461352d6000888488612dc7565b61356c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135639061447a565b60405180910390fd5b81806135779061497e565b92505080806135859061497e565b9150506134bc565b50806000819055506135a260008785886130c5565b505050505050565b600080823b905060008111915050919050565b604051806101000160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081525090565b8280546136109061491b565b90600052602060002090601f0160209004810192826136325760008555613679565b82601f1061364b57805160ff1916838001178555613679565b82800160010185558215613679579182015b8281111561367857825182559160200191906001019061365d565b5b50905061368691906136c4565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156136dd5760008160009055506001016136c5565b5090565b60006136f46136ef846145d6565b6145b1565b9050828152602081018484840111156137105761370f614b17565b5b61371b8482856148af565b509392505050565b600061373661373184614607565b6145b1565b90508281526020810184848401111561375257613751614b17565b5b61375d8482856148af565b509392505050565b60008135905061377481615262565b92915050565b60008135905061378981615279565b92915050565b60008135905061379e81615290565b92915050565b6000815190506137b381615290565b92915050565b600082601f8301126137ce576137cd614b12565b5b81356137de8482602086016136e1565b91505092915050565b600082601f8301126137fc576137fb614b12565b5b813561380c848260208601613723565b91505092915050565b600081359050613824816152a7565b92915050565b6000602082840312156138405761383f614b21565b5b600061384e84828501613765565b91505092915050565b6000806040838503121561386e5761386d614b21565b5b600061387c85828601613765565b925050602061388d85828601613765565b9150509250929050565b6000806000606084860312156138b0576138af614b21565b5b60006138be86828701613765565b93505060206138cf86828701613765565b92505060406138e086828701613815565b9150509250925092565b6000806000806080858703121561390457613903614b21565b5b600061391287828801613765565b945050602061392387828801613765565b935050604061393487828801613815565b925050606085013567ffffffffffffffff81111561395557613954614b1c565b5b613961878288016137b9565b91505092959194509250565b6000806040838503121561398457613983614b21565b5b600061399285828601613765565b92505060206139a38582860161377a565b9150509250929050565b600080604083850312156139c4576139c3614b21565b5b60006139d285828601613765565b92505060206139e385828601613815565b9150509250929050565b600060208284031215613a0357613a02614b21565b5b6000613a118482850161378f565b91505092915050565b600060208284031215613a3057613a2f614b21565b5b6000613a3e848285016137a4565b91505092915050565b600060208284031215613a5d57613a5c614b21565b5b600082013567ffffffffffffffff811115613a7b57613a7a614b1c565b5b613a87848285016137e7565b91505092915050565b600060208284031215613aa657613aa5614b21565b5b6000613ab484828501613815565b91505092915050565b60008060408385031215613ad457613ad3614b21565b5b6000613ae285828601613815565b9250506020613af385828601613765565b9150509250929050565b613b068161481f565b82525050565b613b1581614831565b82525050565b613b2481614831565b82525050565b6000613b358261464d565b613b3f8185614663565b9350613b4f8185602086016148be565b613b5881614b26565b840191505092915050565b6000613b6e82614658565b613b788185614674565b9350613b888185602086016148be565b613b9181614b26565b840191505092915050565b6000613ba782614658565b613bb18185614685565b9350613bc18185602086016148be565b80840191505092915050565b60008154613bda8161491b565b613be48186614685565b94506001821660008114613bff5760018114613c1057613c43565b60ff19831686528186019350613c43565b613c1985614638565b60005b83811015613c3b57815481890152600182019150602081019050613c1c565b838801955050505b50505092915050565b6000613c59602283614674565b9150613c6482614b37565b604082019050919050565b6000613c7c601383614674565b9150613c8782614b86565b602082019050919050565b6000613c9f601083614674565b9150613caa82614baf565b602082019050919050565b6000613cc2602683614674565b9150613ccd82614bd8565b604082019050919050565b6000613ce5602a83614674565b9150613cf082614c27565b604082019050919050565b6000613d08601f83614674565b9150613d1382614c76565b602082019050919050565b6000613d2b602383614674565b9150613d3682614c9f565b604082019050919050565b6000613d4e602583614674565b9150613d5982614cee565b604082019050919050565b6000613d71603183614674565b9150613d7c82614d3d565b604082019050919050565b6000613d94601583614674565b9150613d9f82614d8c565b602082019050919050565b6000613db7603983614674565b9150613dc282614db5565b604082019050919050565b6000613dda601b83614674565b9150613de582614e04565b602082019050919050565b6000613dfd602b83614674565b9150613e0882614e2d565b604082019050919050565b6000613e20601583614674565b9150613e2b82614e7c565b602082019050919050565b6000613e43601183614674565b9150613e4e82614ea5565b602082019050919050565b6000613e66602683614674565b9150613e7182614ece565b604082019050919050565b6000613e89600583614685565b9150613e9482614f1d565b600582019050919050565b6000613eac601a83614674565b9150613eb782614f46565b602082019050919050565b6000613ecf603283614674565b9150613eda82614f6f565b604082019050919050565b6000613ef2601883614674565b9150613efd82614fbe565b602082019050919050565b6000613f15602283614674565b9150613f2082614fe7565b604082019050919050565b6000613f38603383614674565b9150613f4382615036565b604082019050919050565b6000613f5b601d83614674565b9150613f6682615085565b602082019050919050565b6000613f7e602183614674565b9150613f89826150ae565b604082019050919050565b6000613fa1602e83614674565b9150613fac826150fd565b604082019050919050565b6000613fc4602f83614674565b9150613fcf8261514c565b604082019050919050565b6000613fe7601683614674565b9150613ff28261519b565b602082019050919050565b600061400a602d83614674565b9150614015826151c4565b604082019050919050565b600061402d602283614674565b915061403882615213565b604082019050919050565b6101008201600082015161405a60008501826140e5565b50602082015161406d60208501826140e5565b50604082015161408060408501826140e5565b5060608201516140936060850182613b0c565b5060808201516140a660808501826140e5565b5060a08201516140b960a08501826140e5565b5060c08201516140cc60c08501826140e5565b5060e08201516140df60e08501826140e5565b50505050565b6140ee816148a5565b82525050565b6140fd816148a5565b82525050565b600061410f8285613bcd565b915061411b8284613b9c565b91508190509392505050565b60006141338285613bcd565b915061413f8284613b9c565b915061414a82613e7c565b91508190509392505050565b600060208201905061416b6000830184613afd565b92915050565b60006080820190506141866000830187613afd565b6141936020830186613afd565b6141a060408301856140f4565b81810360608301526141b28184613b2a565b905095945050505050565b60006020820190506141d26000830184613b1b565b92915050565b600060208201905081810360008301526141f28184613b63565b905092915050565b6000602082019050818103600083015261421381613c4c565b9050919050565b6000602082019050818103600083015261423381613c6f565b9050919050565b6000602082019050818103600083015261425381613c92565b9050919050565b6000602082019050818103600083015261427381613cb5565b9050919050565b6000602082019050818103600083015261429381613cd8565b9050919050565b600060208201905081810360008301526142b381613cfb565b9050919050565b600060208201905081810360008301526142d381613d1e565b9050919050565b600060208201905081810360008301526142f381613d41565b9050919050565b6000602082019050818103600083015261431381613d64565b9050919050565b6000602082019050818103600083015261433381613d87565b9050919050565b6000602082019050818103600083015261435381613daa565b9050919050565b6000602082019050818103600083015261437381613dcd565b9050919050565b6000602082019050818103600083015261439381613df0565b9050919050565b600060208201905081810360008301526143b381613e13565b9050919050565b600060208201905081810360008301526143d381613e36565b9050919050565b600060208201905081810360008301526143f381613e59565b9050919050565b6000602082019050818103600083015261441381613e9f565b9050919050565b6000602082019050818103600083015261443381613ec2565b9050919050565b6000602082019050818103600083015261445381613ee5565b9050919050565b6000602082019050818103600083015261447381613f08565b9050919050565b6000602082019050818103600083015261449381613f2b565b9050919050565b600060208201905081810360008301526144b381613f4e565b9050919050565b600060208201905081810360008301526144d381613f71565b9050919050565b600060208201905081810360008301526144f381613f94565b9050919050565b6000602082019050818103600083015261451381613fb7565b9050919050565b6000602082019050818103600083015261453381613fda565b9050919050565b6000602082019050818103600083015261455381613ffd565b9050919050565b6000602082019050818103600083015261457381614020565b9050919050565b6000610100820190506145906000830184614043565b92915050565b60006020820190506145ab60008301846140f4565b92915050565b60006145bb6145cc565b90506145c7828261494d565b919050565b6000604051905090565b600067ffffffffffffffff8211156145f1576145f0614ae3565b5b6145fa82614b26565b9050602081019050919050565b600067ffffffffffffffff82111561462257614621614ae3565b5b61462b82614b26565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061469b82614869565b91506146a683614869565b9250826fffffffffffffffffffffffffffffffff038211156146cb576146ca6149f8565b5b828201905092915050565b60006146e1826148a5565b91506146ec836148a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614721576147206149f8565b5b828201905092915050565b6000614737826148a5565b9150614742836148a5565b92508261475257614751614a27565b5b828204905092915050565b6000614768826148a5565b9150614773836148a5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147ac576147ab6149f8565b5b828202905092915050565b60006147c282614869565b91506147cd83614869565b9250828210156147e0576147df6149f8565b5b828203905092915050565b60006147f6826148a5565b9150614801836148a5565b925082821015614814576148136149f8565b5b828203905092915050565b600061482a82614885565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148dc5780820151818401526020810190506148c1565b838111156148eb576000848401525b50505050565b60006148fc826148a5565b915060008214156149105761490f6149f8565b5b600182039050919050565b6000600282049050600182168061493357607f821691505b6020821081141561494757614946614a85565b5b50919050565b61495682614b26565b810181811067ffffffffffffffff8211171561497557614974614ae3565b5b80604052505050565b6000614989826148a5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149bc576149bb6149f8565b5b600182019050919050565b60006149d2826148a5565b91506149dd836148a5565b9250826149ed576149ec614a27565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4578636565642062616c616e6365206f66207468697320636f6e747261637400600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f457863656564206d617820737570706c79206f6620746f6b656e730000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d617820746f6b656e73207065722074780000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61526b8161481f565b811461527657600080fd5b50565b61528281614831565b811461528d57600080fd5b50565b6152998161483d565b81146152a457600080fd5b50565b6152b0816148a5565b81146152bb57600080fd5b5056fea2646970667358221220a52ef096ccebc7e5a80d83098ce66032b765e9f865ca5f440db892e7f4f6483064736f6c63430008070033
Deployed Bytecode Sourcemap
39408:5923:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24596:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26322:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27856:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27419:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23157:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41180:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28706:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41837:437;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23788:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41738:89;;;;;;;;;;;;;:::i;:::-;;41031:140;;;;;;;;;;;;;:::i;:::-;;28911:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45196:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40490:533;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23320:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41632:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39641:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26145:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39682:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43584:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39456:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44813:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25022:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38554:103;;;;;;;;;;;;;:::i;:::-;;41387:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39575:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45044:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37914:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39807:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44341:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26477:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28124:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29131:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44920:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42348:1228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43699:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39940:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33546:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44691:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28461:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39767:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38812:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39725:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24596:370;24723:4;24768:25;24753:40;;;:11;:40;;;;:99;;;;24819:33;24804:48;;;:11;:48;;;;24753:99;:160;;;;24878:35;24863:50;;;:11;:50;;;;24753:160;:207;;;;24924:36;24948:11;24924:23;:36::i;:::-;24753:207;24739:221;;24596:370;;;:::o;26322:94::-;26376:13;26405:5;26398:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26322:94;:::o;27856:204::-;27924:7;27948:16;27956:7;27948;:16::i;:::-;27940:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28030:15;:24;28046:7;28030:24;;;;;;;;;;;;;;;;;;;;;28023:31;;27856:204;;;:::o;27419:379::-;27488:13;27504:24;27520:7;27504:15;:24::i;:::-;27488:40;;27549:5;27543:11;;:2;:11;;;;27535:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27634:5;27618:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27643:37;27660:5;27667:12;:10;:12::i;:::-;27643:16;:37::i;:::-;27618:62;27602:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;27764:28;27773:2;27777:7;27786:5;27764:8;:28::i;:::-;27481:317;27419:379;;:::o;23157:94::-;23210:7;23233:12;;23226:19;;23157:94;:::o;41180:198::-;38145:12;:10;:12::i;:::-;38134:23;;:7;:5;:7::i;:::-;:23;;;38126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41274:21:::1;41264:6;:31;;41256:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41350:2;41342:20;;:28;41363:6;41342:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;41180:198:::0;;:::o;28706:142::-;28814:28;28824:4;28830:2;28834:7;28814:9;:28::i;:::-;28706:142;;;:::o;41837:437::-;41913:7;41959:1;41936:20;41949:6;41936:12;:20::i;:::-;:24;41933:315;;;42000:10;;41983:14;:27;;;;:::i;:::-;41976:34;;;;41933:315;42048:21;;42031:14;:38;42028:220;;;42116:10;;42092:21;;:34;;;;:::i;:::-;42085:41;;;;42028:220;42165:21;;42147:14;:39;42144:104;;42226:10;;42209:14;:27;;;;:::i;:::-;42202:34;;;;42144:104;42265:1;42258:8;;41837:437;;;;;:::o;23788:744::-;23897:7;23932:16;23942:5;23932:9;:16::i;:::-;23924:5;:24;23916:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23994:22;24019:13;:11;:13::i;:::-;23994:38;;24039:19;24069:25;24119:9;24114:350;24138:14;24134:1;:18;24114:350;;;24168:31;24202:11;:14;24214:1;24202:14;;;;;;;;;;;24168:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24255:1;24229:28;;:9;:14;;;:28;;;24225:89;;24290:9;:14;;;24270:34;;24225:89;24347:5;24326:26;;:17;:26;;;24322:135;;;24384:5;24369:11;:20;24365:59;;;24411:1;24404:8;;;;;;;;;24365:59;24434:13;;;;;:::i;:::-;;;;24322:135;24159:305;24154:3;;;;;:::i;:::-;;;;24114:350;;;;24470:56;;;;;;;;;;:::i;:::-;;;;;;;;23788:744;;;;;:::o;41738:89::-;38145:12;:10;:12::i;:::-;38134:23;;:7;:5;:7::i;:::-;:23;;;38126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41807:12:::1;;;;;;;;;;;41806:13;41791:12;;:28;;;;;;;;;;;;;;;;;;41738:89::o:0;41031:140::-;38145:12;:10;:12::i;:::-;38134:23;;:7;:5;:7::i;:::-;:23;;;38126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41079:12:::1;41094:21;41079:36;;41134:10;41126:28;;:37;41155:7;41126:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;41068:103;41031:140::o:0;28911:157::-;29023:39;29040:4;29046:2;29050:7;29023:39;;;;;;;;;;;;:16;:39::i;:::-;28911:157;;;:::o;45196:132::-;38145:12;:10;:12::i;:::-;38134:23;;:7;:5;:7::i;:::-;:23;;;38126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45301:19:::1;45280:18;:40;;;;45196:132:::0;:::o;40490:533::-;40545:18;;:::i;:::-;40583:432;;;;;;;;40622:10;;40583:432;;;;40663:14;;40583:432;;;;40704:10;;40583:432;;;;40743:12;;;;;;;;;;;40583:432;;;;;;40791:13;:11;:13::i;:::-;40583:432;;;;40844:21;;40583:432;;;;40910:1;40892:20;;:6;:20;;;:57;;40927:21;40941:6;40927:13;:21::i;:::-;40892:57;;;40915:1;40892:57;40583:432;;;;40985:18;;40583:432;;;40576:439;;40490:533;;;:::o;23320:177::-;23387:7;23419:13;:11;:13::i;:::-;23411:5;:21;23403:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23486:5;23479:12;;23320:177;;;:::o;41632:94::-;38145:12;:10;:12::i;:::-;38134:23;;:7;:5;:7::i;:::-;:23;;;38126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41712:6:::1;41702:7;:16;;;;;;;;;;;;:::i;:::-;;41632:94:::0;:::o;39641:32::-;;;;:::o;26145:118::-;26209:7;26232:20;26244:7;26232:11;:20::i;:::-;:25;;;26225:32;;26145:118;;;:::o;39682:34::-;;;;:::o;43584:107::-;38145:12;:10;:12::i;:::-;38134:23;;:7;:5;:7::i;:::-;:23;;;38126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;43670:13:::1;43657:10;:26;;;;43584:107:::0;:::o;39456:110::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44813:99::-;38145:12;:10;:12::i;:::-;38134:23;;:7;:5;:7::i;:::-;:23;;;38126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44894:10:::1;44881;:23;;;;44813:99:::0;:::o;25022:211::-;25086:7;25127:1;25110:19;;:5;:19;;;;25102:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25199:12;:19;25212:5;25199:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25191:36;;25184:43;;25022:211;;;:::o;38554:103::-;38145:12;:10;:12::i;:::-;38134:23;;:7;:5;:7::i;:::-;:23;;;38126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38619:30:::1;38646:1;38619:18;:30::i;:::-;38554:103::o:0;41387:224::-;38145:12;:10;:12::i;:::-;38134:23;;:7;:5;:7::i;:::-;:23;;;38126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41521:10:::1;;41503:14;41487:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;41479:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;41574:29;41584:2;41588:14;41574:9;:29::i;:::-;41387:224:::0;;:::o;39575:44::-;;;;:::o;45044:144::-;38145:12;:10;:12::i;:::-;38134:23;;:7;:5;:7::i;:::-;:23;;;38126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45158:22:::1;45134:21;:46;;;;45044:144:::0;:::o;37914:87::-;37960:7;37987:6;;;;;;;;;;;37980:13;;37914:87;:::o;39807:39::-;;;;:::o;44341:223::-;38145:12;:10;:12::i;:::-;38134:23;;:7;:5;:7::i;:::-;:23;;;38126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44422:1:::1;44414:4;:9;44410:147;;;44455:21;44440:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;44410:147;;;44524:21;44509:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;44410:147;44341:223:::0;:::o;26477:98::-;26533:13;26562:7;26555:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26477:98;:::o;28124:274::-;28227:12;:10;:12::i;:::-;28215:24;;:8;:24;;;;28207:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28324:8;28279:18;:32;28298:12;:10;:12::i;:::-;28279:32;;;;;;;;;;;;;;;:42;28312:8;28279:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28373:8;28344:48;;28359:12;:10;:12::i;:::-;28344:48;;;28383:8;28344:48;;;;;;:::i;:::-;;;;;;;;28124:274;;:::o;29131:311::-;29268:28;29278:4;29284:2;29288:7;29268:9;:28::i;:::-;29319:48;29342:4;29348:2;29352:7;29361:5;29319:22;:48::i;:::-;29303:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;29131:311;;;;:::o;44920:116::-;38145:12;:10;:12::i;:::-;38134:23;;:7;:5;:7::i;:::-;:23;;;38126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45013:15:::1;44996:14;:32;;;;44920:116:::0;:::o;42348:1228::-;42422:12;;;;;;;;;;;42414:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;42495:14;;42477;:32;;42469:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;42574:1;42557:14;:18;42549:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;42655:10;;42637:14;42621:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;42613:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42734:1;42711:20;;:24;:57;;;;;42767:1;42739:24;42752:10;42739:12;:24::i;:::-;:29;;42711:57;42708:861;;;42805:20;;42787:14;:38;42784:114;;42862:20;;42845:37;;42784:114;42912:37;42922:10;42934:14;42912:9;:37::i;:::-;43010:14;42987:20;;:37;;;;:::i;:::-;42964:20;:60;;;;42708:861;;;43087:1;43059:25;43073:10;43059:13;:25::i;:::-;:29;43056:450;;;43146:10;;43129:14;:27;;;;:::i;:::-;43116:9;:40;;43108:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43056:450;;;43220:21;;43203:14;:38;43200:306;;;43306:10;;43282:21;;:34;;;;:::i;:::-;43269:9;:47;;43261:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43200:306;;;43380:21;;43362:14;:39;43359:147;;43459:10;;43442:14;:27;;;;:::i;:::-;43429:9;:40;;43421:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43359:147;43200:306;43056:450;43520:37;43530:10;43542:14;43520:9;:37::i;:::-;42708:861;42348:1228;:::o;43699:634::-;43765:13;43805:17;43813:8;43805:7;:17::i;:::-;43797:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;43879:21;43863:37;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:37;;;;;;;;:::i;:::-;;;43859:467;;;43946:1;43928:7;43922:21;;;;;:::i;:::-;;;:25;:165;;;;;;;;;;;;;;;;;44004:7;44028:26;44045:8;44028:16;:26::i;:::-;43971:98;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43922:165;43915:172;;;;43859:467;44149:1;44131:7;44125:21;;;;;:::i;:::-;;;:25;:189;;;;;;;;;;;;;;;;;44207:7;44231:26;44248:8;44231:16;:26::i;:::-;44174:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44125:189;44118:196;;43699:634;;;;:::o;39940:38::-;;;;:::o;33546:43::-;;;;:::o;44691:113::-;44749:7;44776:20;44790:5;44776:13;:20::i;:::-;44769:27;;44691:113;;;:::o;28461:186::-;28583:4;28606:18;:25;28625:5;28606:25;;;;;;;;;;;;;;;:35;28632:8;28606:35;;;;;;;;;;;;;;;;;;;;;;;;;28599:42;;28461:186;;;;:::o;39767:31::-;;;;;;;;;;;;;:::o;38812:238::-;38145:12;:10;:12::i;:::-;38134:23;;:7;:5;:7::i;:::-;:23;;;38126:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38935:1:::1;38915:22;;:8;:22;;;;38893:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39014:28;39033:8;39014:18;:28::i;:::-;38812:238:::0;:::o;39725:33::-;;;;:::o;8283:207::-;8413:4;8457:25;8442:40;;;:11;:40;;;;8435:47;;8283:207;;;:::o;29681:105::-;29738:4;29768:12;;29758:7;:22;29751:29;;29681:105;;;:::o;17636:98::-;17689:7;17716:10;17709:17;;17636:98;:::o;33368:172::-;33492:2;33465:15;:24;33481:7;33465:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33526:7;33522:2;33506:28;;33515:5;33506:28;;;;;;;;;;;;33368:172;;;:::o;31733:1529::-;31830:35;31868:20;31880:7;31868:11;:20::i;:::-;31830:58;;31897:22;31939:13;:18;;;31923:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;31992:12;:10;:12::i;:::-;31968:36;;:20;31980:7;31968:11;:20::i;:::-;:36;;;31923:81;:142;;;;32015:50;32032:13;:18;;;32052:12;:10;:12::i;:::-;32015:16;:50::i;:::-;31923:142;31897:169;;32091:17;32075:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;32223:4;32201:26;;:13;:18;;;:26;;;32185:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;32312:1;32298:16;;:2;:16;;;;32290:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32365:43;32387:4;32393:2;32397:7;32406:1;32365:21;:43::i;:::-;32465:49;32482:1;32486:7;32495:13;:18;;;32465:8;:49::i;:::-;32553:1;32523:12;:18;32536:4;32523:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32589:1;32561:12;:16;32574:2;32561:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32620:43;;;;;;;;32635:2;32620:43;;;;;;32646:15;32620:43;;;;;32597:11;:20;32609:7;32597:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32891:19;32923:1;32913:7;:11;;;;:::i;:::-;32891:33;;32976:1;32935:43;;:11;:24;32947:11;32935:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;32931:236;;;32993:20;33001:11;32993:7;:20::i;:::-;32989:171;;;33053:97;;;;;;;;33080:13;:18;;;33053:97;;;;;;33111:13;:28;;;33053:97;;;;;33026:11;:24;33038:11;33026:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32989:171;32931:236;33199:7;33195:2;33180:27;;33189:4;33180:27;;;;;;;;;;;;33214:42;33235:4;33241:2;33245:7;33254:1;33214:20;:42::i;:::-;31823:1439;;;31733:1529;;;:::o;25239:240::-;25300:7;25349:1;25332:19;;:5;:19;;;;25316:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;25440:12;:19;25453:5;25440:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;25432:41;;25425:48;;25239:240;;;:::o;25485:606::-;25561:21;;:::i;:::-;25602:16;25610:7;25602;:16::i;:::-;25594:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25674:26;25722:12;25711:7;:23;25707:93;;25791:1;25776:12;25766:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;25745:47;;25707:93;25813:12;25828:7;25813:22;;25808:212;25845:18;25837:4;:26;25808:212;;25882:31;25916:11;:17;25928:4;25916:17;;;;;;;;;;;25882:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25972:1;25946:28;;:9;:14;;;:28;;;25942:71;;25994:9;25987:16;;;;;;;25942:71;25873:147;25865:6;;;;;:::i;:::-;;;;25808:212;;;;26028:57;;;;;;;;;;:::i;:::-;;;;;;;;25485:606;;;;:::o;39210:191::-;39284:16;39303:6;;;;;;;;;;;39284:25;;39329:8;39320:6;;:17;;;;;;;;;;;;;;;;;;39384:8;39353:40;;39374:8;39353:40;;;;;;;;;;;;39273:128;39210:191;:::o;29792:98::-;29857:27;29867:2;29871:8;29857:27;;;;;;;;;;;;:9;:27::i;:::-;29792:98;;:::o;35083:690::-;35220:4;35237:15;:2;:13;;;:15::i;:::-;35233:535;;;35292:2;35276:36;;;35313:12;:10;:12::i;:::-;35327:4;35333:7;35342:5;35276:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35263:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35524:1;35507:6;:13;:18;35503:215;;;35540:61;;;;;;;;;;:::i;:::-;;;;;;;;35503:215;35686:6;35680:13;35671:6;35667:2;35663:15;35656:38;35263:464;35408:45;;;35398:55;;;:6;:55;;;;35391:62;;;;;35233:535;35756:4;35749:11;;35083:690;;;;;;;:::o;18136:723::-;18192:13;18422:1;18413:5;:10;18409:53;;;18440:10;;;;;;;;;;;;;;;;;;;;;18409:53;18472:12;18487:5;18472:20;;18503:14;18528:78;18543:1;18535:4;:9;18528:78;;18561:8;;;;;:::i;:::-;;;;18592:2;18584:10;;;;;:::i;:::-;;;18528:78;;;18616:19;18648:6;18638:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18616:39;;18666:154;18682:1;18673:5;:10;18666:154;;18710:1;18700:11;;;;;:::i;:::-;;;18777:2;18769:5;:10;;;;:::i;:::-;18756:2;:24;;;;:::i;:::-;18743:39;;18726:6;18733;18726:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18806:2;18797:11;;;;;:::i;:::-;;;18666:154;;;18844:6;18830:21;;;;;18136:723;;;;:::o;36235:141::-;;;;;:::o;36762:140::-;;;;;:::o;30229:1272::-;30334:20;30357:12;;30334:35;;30398:1;30384:16;;:2;:16;;;;30376:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30575:21;30583:12;30575:7;:21::i;:::-;30574:22;30566:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30657:12;30645:8;:24;;30637:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30717:61;30747:1;30751:2;30755:12;30769:8;30717:21;:61::i;:::-;30787:30;30820:12;:16;30833:2;30820:16;;;;;;;;;;;;;;;30787:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30862:119;;;;;;;;30912:8;30882:11;:19;;;:39;;;;:::i;:::-;30862:119;;;;;;30965:8;30930:11;:24;;;:44;;;;:::i;:::-;30862:119;;;;;30843:12;:16;30856:2;30843:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31016:43;;;;;;;;31031:2;31016:43;;;;;;31042:15;31016:43;;;;;30988:11;:25;31000:12;30988:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31068:20;31091:12;31068:35;;31117:9;31112:281;31136:8;31132:1;:12;31112:281;;;31190:12;31186:2;31165:38;;31182:1;31165:38;;;;;;;;;;;;31230:59;31261:1;31265:2;31269:12;31283:5;31230:22;:59::i;:::-;31212:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31371:14;;;;;:::i;:::-;;;;31146:3;;;;;:::i;:::-;;;;31112:281;;;;31416:12;31401;:27;;;;31435:60;31464:1;31468:2;31472:12;31486:8;31435:20;:60::i;:::-;30327:1174;;;30229:1272;;;:::o;9238:387::-;9298:4;9506:12;9573:7;9561:20;9553:28;;9616:1;9609:4;:8;9602:15;;;9238:387;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:474::-;7226:6;7234;7283:2;7271:9;7262:7;7258:23;7254:32;7251:119;;;7289:79;;:::i;:::-;7251:119;7409:1;7434:53;7479:7;7470:6;7459:9;7455:22;7434:53;:::i;:::-;7424:63;;7380:117;7536:2;7562:53;7607:7;7598:6;7587:9;7583:22;7562:53;:::i;:::-;7552:63;;7507:118;7158:474;;;;;:::o;7638:118::-;7725:24;7743:5;7725:24;:::i;:::-;7720:3;7713:37;7638:118;;:::o;7762:99::-;7833:21;7848:5;7833:21;:::i;:::-;7828:3;7821:34;7762:99;;:::o;7867:109::-;7948:21;7963:5;7948:21;:::i;:::-;7943:3;7936:34;7867:109;;:::o;7982:360::-;8068:3;8096:38;8128:5;8096:38;:::i;:::-;8150:70;8213:6;8208:3;8150:70;:::i;:::-;8143:77;;8229:52;8274:6;8269:3;8262:4;8255:5;8251:16;8229:52;:::i;:::-;8306:29;8328:6;8306:29;:::i;:::-;8301:3;8297:39;8290:46;;8072:270;7982:360;;;;:::o;8348:364::-;8436:3;8464:39;8497:5;8464:39;:::i;:::-;8519:71;8583:6;8578:3;8519:71;:::i;:::-;8512:78;;8599:52;8644:6;8639:3;8632:4;8625:5;8621:16;8599:52;:::i;:::-;8676:29;8698:6;8676:29;:::i;:::-;8671:3;8667:39;8660:46;;8440:272;8348:364;;;;:::o;8718:377::-;8824:3;8852:39;8885:5;8852:39;:::i;:::-;8907:89;8989:6;8984:3;8907:89;:::i;:::-;8900:96;;9005:52;9050:6;9045:3;9038:4;9031:5;9027:16;9005:52;:::i;:::-;9082:6;9077:3;9073:16;9066:23;;8828:267;8718:377;;;;:::o;9125:845::-;9228:3;9265:5;9259:12;9294:36;9320:9;9294:36;:::i;:::-;9346:89;9428:6;9423:3;9346:89;:::i;:::-;9339:96;;9466:1;9455:9;9451:17;9482:1;9477:137;;;;9628:1;9623:341;;;;9444:520;;9477:137;9561:4;9557:9;9546;9542:25;9537:3;9530:38;9597:6;9592:3;9588:16;9581:23;;9477:137;;9623:341;9690:38;9722:5;9690:38;:::i;:::-;9750:1;9764:154;9778:6;9775:1;9772:13;9764:154;;;9852:7;9846:14;9842:1;9837:3;9833:11;9826:35;9902:1;9893:7;9889:15;9878:26;;9800:4;9797:1;9793:12;9788:17;;9764:154;;;9947:6;9942:3;9938:16;9931:23;;9630:334;;9444:520;;9232:738;;9125:845;;;;:::o;9976:366::-;10118:3;10139:67;10203:2;10198:3;10139:67;:::i;:::-;10132:74;;10215:93;10304:3;10215:93;:::i;:::-;10333:2;10328:3;10324:12;10317:19;;9976:366;;;:::o;10348:::-;10490:3;10511:67;10575:2;10570:3;10511:67;:::i;:::-;10504:74;;10587:93;10676:3;10587:93;:::i;:::-;10705:2;10700:3;10696:12;10689:19;;10348:366;;;:::o;10720:::-;10862:3;10883:67;10947:2;10942:3;10883:67;:::i;:::-;10876:74;;10959:93;11048:3;10959:93;:::i;:::-;11077:2;11072:3;11068:12;11061:19;;10720:366;;;:::o;11092:::-;11234:3;11255:67;11319:2;11314:3;11255:67;:::i;:::-;11248:74;;11331:93;11420:3;11331:93;:::i;:::-;11449:2;11444:3;11440:12;11433:19;;11092:366;;;:::o;11464:::-;11606:3;11627:67;11691:2;11686:3;11627:67;:::i;:::-;11620:74;;11703:93;11792:3;11703:93;:::i;:::-;11821:2;11816:3;11812:12;11805:19;;11464:366;;;:::o;11836:::-;11978:3;11999:67;12063:2;12058:3;11999:67;:::i;:::-;11992:74;;12075:93;12164:3;12075:93;:::i;:::-;12193:2;12188:3;12184:12;12177:19;;11836:366;;;:::o;12208:::-;12350:3;12371:67;12435:2;12430:3;12371:67;:::i;:::-;12364:74;;12447:93;12536:3;12447:93;:::i;:::-;12565:2;12560:3;12556:12;12549:19;;12208:366;;;:::o;12580:::-;12722:3;12743:67;12807:2;12802:3;12743:67;:::i;:::-;12736:74;;12819:93;12908:3;12819:93;:::i;:::-;12937:2;12932:3;12928:12;12921:19;;12580:366;;;:::o;12952:::-;13094:3;13115:67;13179:2;13174:3;13115:67;:::i;:::-;13108:74;;13191:93;13280:3;13191:93;:::i;:::-;13309:2;13304:3;13300:12;13293:19;;12952:366;;;:::o;13324:::-;13466:3;13487:67;13551:2;13546:3;13487:67;:::i;:::-;13480:74;;13563:93;13652:3;13563:93;:::i;:::-;13681:2;13676:3;13672:12;13665:19;;13324:366;;;:::o;13696:::-;13838:3;13859:67;13923:2;13918:3;13859:67;:::i;:::-;13852:74;;13935:93;14024:3;13935:93;:::i;:::-;14053:2;14048:3;14044:12;14037:19;;13696:366;;;:::o;14068:::-;14210:3;14231:67;14295:2;14290:3;14231:67;:::i;:::-;14224:74;;14307:93;14396:3;14307:93;:::i;:::-;14425:2;14420:3;14416:12;14409:19;;14068:366;;;:::o;14440:::-;14582:3;14603:67;14667:2;14662:3;14603:67;:::i;:::-;14596:74;;14679:93;14768:3;14679:93;:::i;:::-;14797:2;14792:3;14788:12;14781:19;;14440:366;;;:::o;14812:::-;14954:3;14975:67;15039:2;15034:3;14975:67;:::i;:::-;14968:74;;15051:93;15140:3;15051:93;:::i;:::-;15169:2;15164:3;15160:12;15153:19;;14812:366;;;:::o;15184:::-;15326:3;15347:67;15411:2;15406:3;15347:67;:::i;:::-;15340:74;;15423:93;15512:3;15423:93;:::i;:::-;15541:2;15536:3;15532:12;15525:19;;15184:366;;;:::o;15556:::-;15698:3;15719:67;15783:2;15778:3;15719:67;:::i;:::-;15712:74;;15795:93;15884:3;15795:93;:::i;:::-;15913:2;15908:3;15904:12;15897:19;;15556:366;;;:::o;15928:400::-;16088:3;16109:84;16191:1;16186:3;16109:84;:::i;:::-;16102:91;;16202:93;16291:3;16202:93;:::i;:::-;16320:1;16315:3;16311:11;16304:18;;15928:400;;;:::o;16334:366::-;16476:3;16497:67;16561:2;16556:3;16497:67;:::i;:::-;16490:74;;16573:93;16662:3;16573:93;:::i;:::-;16691:2;16686:3;16682:12;16675:19;;16334:366;;;:::o;16706:::-;16848:3;16869:67;16933:2;16928:3;16869:67;:::i;:::-;16862:74;;16945:93;17034:3;16945:93;:::i;:::-;17063:2;17058:3;17054:12;17047:19;;16706:366;;;:::o;17078:::-;17220:3;17241:67;17305:2;17300:3;17241:67;:::i;:::-;17234:74;;17317:93;17406:3;17317:93;:::i;:::-;17435:2;17430:3;17426:12;17419:19;;17078:366;;;:::o;17450:::-;17592:3;17613:67;17677:2;17672:3;17613:67;:::i;:::-;17606:74;;17689:93;17778:3;17689:93;:::i;:::-;17807:2;17802:3;17798:12;17791:19;;17450:366;;;:::o;17822:::-;17964:3;17985:67;18049:2;18044:3;17985:67;:::i;:::-;17978:74;;18061:93;18150:3;18061:93;:::i;:::-;18179:2;18174:3;18170:12;18163:19;;17822:366;;;:::o;18194:::-;18336:3;18357:67;18421:2;18416:3;18357:67;:::i;:::-;18350:74;;18433:93;18522:3;18433:93;:::i;:::-;18551:2;18546:3;18542:12;18535:19;;18194:366;;;:::o;18566:::-;18708:3;18729:67;18793:2;18788:3;18729:67;:::i;:::-;18722:74;;18805:93;18894:3;18805:93;:::i;:::-;18923:2;18918:3;18914:12;18907:19;;18566:366;;;:::o;18938:::-;19080:3;19101:67;19165:2;19160:3;19101:67;:::i;:::-;19094:74;;19177:93;19266:3;19177:93;:::i;:::-;19295:2;19290:3;19286:12;19279:19;;18938:366;;;:::o;19310:::-;19452:3;19473:67;19537:2;19532:3;19473:67;:::i;:::-;19466:74;;19549:93;19638:3;19549:93;:::i;:::-;19667:2;19662:3;19658:12;19651:19;;19310:366;;;:::o;19682:::-;19824:3;19845:67;19909:2;19904:3;19845:67;:::i;:::-;19838:74;;19921:93;20010:3;19921:93;:::i;:::-;20039:2;20034:3;20030:12;20023:19;;19682:366;;;:::o;20054:::-;20196:3;20217:67;20281:2;20276:3;20217:67;:::i;:::-;20210:74;;20293:93;20382:3;20293:93;:::i;:::-;20411:2;20406:3;20402:12;20395:19;;20054:366;;;:::o;20426:::-;20568:3;20589:67;20653:2;20648:3;20589:67;:::i;:::-;20582:74;;20665:93;20754:3;20665:93;:::i;:::-;20783:2;20778:3;20774:12;20767:19;;20426:366;;;:::o;20866:1629::-;21021:6;21016:3;21012:16;21116:4;21109:5;21105:16;21099:23;21135:63;21192:4;21187:3;21183:14;21169:12;21135:63;:::i;:::-;21038:170;21300:4;21293:5;21289:16;21283:23;21319:63;21376:4;21371:3;21367:14;21353:12;21319:63;:::i;:::-;21218:174;21480:4;21473:5;21469:16;21463:23;21499:63;21556:4;21551:3;21547:14;21533:12;21499:63;:::i;:::-;21402:170;21662:4;21655:5;21651:16;21645:23;21681:57;21732:4;21727:3;21723:14;21709:12;21681:57;:::i;:::-;21582:166;21837:4;21830:5;21826:16;21820:23;21856:63;21913:4;21908:3;21904:14;21890:12;21856:63;:::i;:::-;21758:171;22028:4;22021:5;22017:16;22011:23;22047:63;22104:4;22099:3;22095:14;22081:12;22047:63;:::i;:::-;21939:181;22208:4;22201:5;22197:16;22191:23;22227:63;22284:4;22279:3;22275:14;22261:12;22227:63;:::i;:::-;22130:170;22396:4;22389:5;22385:16;22379:23;22415:63;22472:4;22467:3;22463:14;22449:12;22415:63;:::i;:::-;22310:178;20990:1505;20866:1629;;:::o;22501:108::-;22578:24;22596:5;22578:24;:::i;:::-;22573:3;22566:37;22501:108;;:::o;22615:118::-;22702:24;22720:5;22702:24;:::i;:::-;22697:3;22690:37;22615:118;;:::o;22739:429::-;22916:3;22938:92;23026:3;23017:6;22938:92;:::i;:::-;22931:99;;23047:95;23138:3;23129:6;23047:95;:::i;:::-;23040:102;;23159:3;23152:10;;22739:429;;;;;:::o;23174:695::-;23452:3;23474:92;23562:3;23553:6;23474:92;:::i;:::-;23467:99;;23583:95;23674:3;23665:6;23583:95;:::i;:::-;23576:102;;23695:148;23839:3;23695:148;:::i;:::-;23688:155;;23860:3;23853:10;;23174:695;;;;;:::o;23875:222::-;23968:4;24006:2;23995:9;23991:18;23983:26;;24019:71;24087:1;24076:9;24072:17;24063:6;24019:71;:::i;:::-;23875:222;;;;:::o;24103:640::-;24298:4;24336:3;24325:9;24321:19;24313:27;;24350:71;24418:1;24407:9;24403:17;24394:6;24350:71;:::i;:::-;24431:72;24499:2;24488:9;24484:18;24475:6;24431:72;:::i;:::-;24513;24581:2;24570:9;24566:18;24557:6;24513:72;:::i;:::-;24632:9;24626:4;24622:20;24617:2;24606:9;24602:18;24595:48;24660:76;24731:4;24722:6;24660:76;:::i;:::-;24652:84;;24103:640;;;;;;;:::o;24749:210::-;24836:4;24874:2;24863:9;24859:18;24851:26;;24887:65;24949:1;24938:9;24934:17;24925:6;24887:65;:::i;:::-;24749:210;;;;:::o;24965:313::-;25078:4;25116:2;25105:9;25101:18;25093:26;;25165:9;25159:4;25155:20;25151:1;25140:9;25136:17;25129:47;25193:78;25266:4;25257:6;25193:78;:::i;:::-;25185:86;;24965:313;;;;:::o;25284:419::-;25450:4;25488:2;25477:9;25473:18;25465:26;;25537:9;25531:4;25527:20;25523:1;25512:9;25508:17;25501:47;25565:131;25691:4;25565:131;:::i;:::-;25557:139;;25284:419;;;:::o;25709:::-;25875:4;25913:2;25902:9;25898:18;25890:26;;25962:9;25956:4;25952:20;25948:1;25937:9;25933:17;25926:47;25990:131;26116:4;25990:131;:::i;:::-;25982:139;;25709:419;;;:::o;26134:::-;26300:4;26338:2;26327:9;26323:18;26315:26;;26387:9;26381:4;26377:20;26373:1;26362:9;26358:17;26351:47;26415:131;26541:4;26415:131;:::i;:::-;26407:139;;26134:419;;;:::o;26559:::-;26725:4;26763:2;26752:9;26748:18;26740:26;;26812:9;26806:4;26802:20;26798:1;26787:9;26783:17;26776:47;26840:131;26966:4;26840:131;:::i;:::-;26832:139;;26559:419;;;:::o;26984:::-;27150:4;27188:2;27177:9;27173:18;27165:26;;27237:9;27231:4;27227:20;27223:1;27212:9;27208:17;27201:47;27265:131;27391:4;27265:131;:::i;:::-;27257:139;;26984:419;;;:::o;27409:::-;27575:4;27613:2;27602:9;27598:18;27590:26;;27662:9;27656:4;27652:20;27648:1;27637:9;27633:17;27626:47;27690:131;27816:4;27690:131;:::i;:::-;27682:139;;27409:419;;;:::o;27834:::-;28000:4;28038:2;28027:9;28023:18;28015:26;;28087:9;28081:4;28077:20;28073:1;28062:9;28058:17;28051:47;28115:131;28241:4;28115:131;:::i;:::-;28107:139;;27834:419;;;:::o;28259:::-;28425:4;28463:2;28452:9;28448:18;28440:26;;28512:9;28506:4;28502:20;28498:1;28487:9;28483:17;28476:47;28540:131;28666:4;28540:131;:::i;:::-;28532:139;;28259:419;;;:::o;28684:::-;28850:4;28888:2;28877:9;28873:18;28865:26;;28937:9;28931:4;28927:20;28923:1;28912:9;28908:17;28901:47;28965:131;29091:4;28965:131;:::i;:::-;28957:139;;28684:419;;;:::o;29109:::-;29275:4;29313:2;29302:9;29298:18;29290:26;;29362:9;29356:4;29352:20;29348:1;29337:9;29333:17;29326:47;29390:131;29516:4;29390:131;:::i;:::-;29382:139;;29109:419;;;:::o;29534:::-;29700:4;29738:2;29727:9;29723:18;29715:26;;29787:9;29781:4;29777:20;29773:1;29762:9;29758:17;29751:47;29815:131;29941:4;29815:131;:::i;:::-;29807:139;;29534:419;;;:::o;29959:::-;30125:4;30163:2;30152:9;30148:18;30140:26;;30212:9;30206:4;30202:20;30198:1;30187:9;30183:17;30176:47;30240:131;30366:4;30240:131;:::i;:::-;30232:139;;29959:419;;;:::o;30384:::-;30550:4;30588:2;30577:9;30573:18;30565:26;;30637:9;30631:4;30627:20;30623:1;30612:9;30608:17;30601:47;30665:131;30791:4;30665:131;:::i;:::-;30657:139;;30384:419;;;:::o;30809:::-;30975:4;31013:2;31002:9;30998:18;30990:26;;31062:9;31056:4;31052:20;31048:1;31037:9;31033:17;31026:47;31090:131;31216:4;31090:131;:::i;:::-;31082:139;;30809:419;;;:::o;31234:::-;31400:4;31438:2;31427:9;31423:18;31415:26;;31487:9;31481:4;31477:20;31473:1;31462:9;31458:17;31451:47;31515:131;31641:4;31515:131;:::i;:::-;31507:139;;31234:419;;;:::o;31659:::-;31825:4;31863:2;31852:9;31848:18;31840:26;;31912:9;31906:4;31902:20;31898:1;31887:9;31883:17;31876:47;31940:131;32066:4;31940:131;:::i;:::-;31932:139;;31659:419;;;:::o;32084:::-;32250:4;32288:2;32277:9;32273:18;32265:26;;32337:9;32331:4;32327:20;32323:1;32312:9;32308:17;32301:47;32365:131;32491:4;32365:131;:::i;:::-;32357:139;;32084:419;;;:::o;32509:::-;32675:4;32713:2;32702:9;32698:18;32690:26;;32762:9;32756:4;32752:20;32748:1;32737:9;32733:17;32726:47;32790:131;32916:4;32790:131;:::i;:::-;32782:139;;32509:419;;;:::o;32934:::-;33100:4;33138:2;33127:9;33123:18;33115:26;;33187:9;33181:4;33177:20;33173:1;33162:9;33158:17;33151:47;33215:131;33341:4;33215:131;:::i;:::-;33207:139;;32934:419;;;:::o;33359:::-;33525:4;33563:2;33552:9;33548:18;33540:26;;33612:9;33606:4;33602:20;33598:1;33587:9;33583:17;33576:47;33640:131;33766:4;33640:131;:::i;:::-;33632:139;;33359:419;;;:::o;33784:::-;33950:4;33988:2;33977:9;33973:18;33965:26;;34037:9;34031:4;34027:20;34023:1;34012:9;34008:17;34001:47;34065:131;34191:4;34065:131;:::i;:::-;34057:139;;33784:419;;;:::o;34209:::-;34375:4;34413:2;34402:9;34398:18;34390:26;;34462:9;34456:4;34452:20;34448:1;34437:9;34433:17;34426:47;34490:131;34616:4;34490:131;:::i;:::-;34482:139;;34209:419;;;:::o;34634:::-;34800:4;34838:2;34827:9;34823:18;34815:26;;34887:9;34881:4;34877:20;34873:1;34862:9;34858:17;34851:47;34915:131;35041:4;34915:131;:::i;:::-;34907:139;;34634:419;;;:::o;35059:::-;35225:4;35263:2;35252:9;35248:18;35240:26;;35312:9;35306:4;35302:20;35298:1;35287:9;35283:17;35276:47;35340:131;35466:4;35340:131;:::i;:::-;35332:139;;35059:419;;;:::o;35484:::-;35650:4;35688:2;35677:9;35673:18;35665:26;;35737:9;35731:4;35727:20;35723:1;35712:9;35708:17;35701:47;35765:131;35891:4;35765:131;:::i;:::-;35757:139;;35484:419;;;:::o;35909:::-;36075:4;36113:2;36102:9;36098:18;36090:26;;36162:9;36156:4;36152:20;36148:1;36137:9;36133:17;36126:47;36190:131;36316:4;36190:131;:::i;:::-;36182:139;;35909:419;;;:::o;36334:::-;36500:4;36538:2;36527:9;36523:18;36515:26;;36587:9;36581:4;36577:20;36573:1;36562:9;36558:17;36551:47;36615:131;36741:4;36615:131;:::i;:::-;36607:139;;36334:419;;;:::o;36759:::-;36925:4;36963:2;36952:9;36948:18;36940:26;;37012:9;37006:4;37002:20;36998:1;36987:9;36983:17;36976:47;37040:131;37166:4;37040:131;:::i;:::-;37032:139;;36759:419;;;:::o;37184:339::-;37335:4;37373:3;37362:9;37358:19;37350:27;;37387:129;37513:1;37502:9;37498:17;37489:6;37387:129;:::i;:::-;37184:339;;;;:::o;37529:222::-;37622:4;37660:2;37649:9;37645:18;37637:26;;37673:71;37741:1;37730:9;37726:17;37717:6;37673:71;:::i;:::-;37529:222;;;;:::o;37757:129::-;37791:6;37818:20;;:::i;:::-;37808:30;;37847:33;37875:4;37867:6;37847:33;:::i;:::-;37757:129;;;:::o;37892:75::-;37925:6;37958:2;37952:9;37942:19;;37892:75;:::o;37973:307::-;38034:4;38124:18;38116:6;38113:30;38110:56;;;38146:18;;:::i;:::-;38110:56;38184:29;38206:6;38184:29;:::i;:::-;38176:37;;38268:4;38262;38258:15;38250:23;;37973:307;;;:::o;38286:308::-;38348:4;38438:18;38430:6;38427:30;38424:56;;;38460:18;;:::i;:::-;38424:56;38498:29;38520:6;38498:29;:::i;:::-;38490:37;;38582:4;38576;38572:15;38564:23;;38286:308;;;:::o;38600:141::-;38649:4;38672:3;38664:11;;38695:3;38692:1;38685:14;38729:4;38726:1;38716:18;38708:26;;38600:141;;;:::o;38747:98::-;38798:6;38832:5;38826:12;38816:22;;38747:98;;;:::o;38851:99::-;38903:6;38937:5;38931:12;38921:22;;38851:99;;;:::o;38956:168::-;39039:11;39073:6;39068:3;39061:19;39113:4;39108:3;39104:14;39089:29;;38956:168;;;;:::o;39130:169::-;39214:11;39248:6;39243:3;39236:19;39288:4;39283:3;39279:14;39264:29;;39130:169;;;;:::o;39305:148::-;39407:11;39444:3;39429:18;;39305:148;;;;:::o;39459:273::-;39499:3;39518:20;39536:1;39518:20;:::i;:::-;39513:25;;39552:20;39570:1;39552:20;:::i;:::-;39547:25;;39674:1;39638:34;39634:42;39631:1;39628:49;39625:75;;;39680:18;;:::i;:::-;39625:75;39724:1;39721;39717:9;39710:16;;39459:273;;;;:::o;39738:305::-;39778:3;39797:20;39815:1;39797:20;:::i;:::-;39792:25;;39831:20;39849:1;39831:20;:::i;:::-;39826:25;;39985:1;39917:66;39913:74;39910:1;39907:81;39904:107;;;39991:18;;:::i;:::-;39904:107;40035:1;40032;40028:9;40021:16;;39738:305;;;;:::o;40049:185::-;40089:1;40106:20;40124:1;40106:20;:::i;:::-;40101:25;;40140:20;40158:1;40140:20;:::i;:::-;40135:25;;40179:1;40169:35;;40184:18;;:::i;:::-;40169:35;40226:1;40223;40219:9;40214:14;;40049:185;;;;:::o;40240:348::-;40280:7;40303:20;40321:1;40303:20;:::i;:::-;40298:25;;40337:20;40355:1;40337:20;:::i;:::-;40332:25;;40525:1;40457:66;40453:74;40450:1;40447:81;40442:1;40435:9;40428:17;40424:105;40421:131;;;40532:18;;:::i;:::-;40421:131;40580:1;40577;40573:9;40562:20;;40240:348;;;;:::o;40594:191::-;40634:4;40654:20;40672:1;40654:20;:::i;:::-;40649:25;;40688:20;40706:1;40688:20;:::i;:::-;40683:25;;40727:1;40724;40721:8;40718:34;;;40732:18;;:::i;:::-;40718:34;40777:1;40774;40770:9;40762:17;;40594:191;;;;:::o;40791:::-;40831:4;40851:20;40869:1;40851:20;:::i;:::-;40846:25;;40885:20;40903:1;40885:20;:::i;:::-;40880:25;;40924:1;40921;40918:8;40915:34;;;40929:18;;:::i;:::-;40915:34;40974:1;40971;40967:9;40959:17;;40791:191;;;;:::o;40988:96::-;41025:7;41054:24;41072:5;41054:24;:::i;:::-;41043:35;;40988:96;;;:::o;41090:90::-;41124:7;41167:5;41160:13;41153:21;41142:32;;41090:90;;;:::o;41186:149::-;41222:7;41262:66;41255:5;41251:78;41240:89;;41186:149;;;:::o;41341:118::-;41378:7;41418:34;41411:5;41407:46;41396:57;;41341:118;;;:::o;41465:126::-;41502:7;41542:42;41535:5;41531:54;41520:65;;41465:126;;;:::o;41597:77::-;41634:7;41663:5;41652:16;;41597:77;;;:::o;41680:154::-;41764:6;41759:3;41754;41741:30;41826:1;41817:6;41812:3;41808:16;41801:27;41680:154;;;:::o;41840:307::-;41908:1;41918:113;41932:6;41929:1;41926:13;41918:113;;;42017:1;42012:3;42008:11;42002:18;41998:1;41993:3;41989:11;41982:39;41954:2;41951:1;41947:10;41942:15;;41918:113;;;42049:6;42046:1;42043:13;42040:101;;;42129:1;42120:6;42115:3;42111:16;42104:27;42040:101;41889:258;41840:307;;;:::o;42153:171::-;42192:3;42215:24;42233:5;42215:24;:::i;:::-;42206:33;;42261:4;42254:5;42251:15;42248:41;;;42269:18;;:::i;:::-;42248:41;42316:1;42309:5;42305:13;42298:20;;42153:171;;;:::o;42330:320::-;42374:6;42411:1;42405:4;42401:12;42391:22;;42458:1;42452:4;42448:12;42479:18;42469:81;;42535:4;42527:6;42523:17;42513:27;;42469:81;42597:2;42589:6;42586:14;42566:18;42563:38;42560:84;;;42616:18;;:::i;:::-;42560:84;42381:269;42330:320;;;:::o;42656:281::-;42739:27;42761:4;42739:27;:::i;:::-;42731:6;42727:40;42869:6;42857:10;42854:22;42833:18;42821:10;42818:34;42815:62;42812:88;;;42880:18;;:::i;:::-;42812:88;42920:10;42916:2;42909:22;42699:238;42656:281;;:::o;42943:233::-;42982:3;43005:24;43023:5;43005:24;:::i;:::-;42996:33;;43051:66;43044:5;43041:77;43038:103;;;43121:18;;:::i;:::-;43038:103;43168:1;43161:5;43157:13;43150:20;;42943:233;;;:::o;43182:176::-;43214:1;43231:20;43249:1;43231:20;:::i;:::-;43226:25;;43265:20;43283:1;43265:20;:::i;:::-;43260:25;;43304:1;43294:35;;43309:18;;:::i;:::-;43294:35;43350:1;43347;43343:9;43338:14;;43182:176;;;;:::o;43364:180::-;43412:77;43409:1;43402:88;43509:4;43506:1;43499:15;43533:4;43530:1;43523:15;43550:180;43598:77;43595:1;43588:88;43695:4;43692:1;43685:15;43719:4;43716:1;43709:15;43736:180;43784:77;43781:1;43774:88;43881:4;43878:1;43871:15;43905:4;43902:1;43895:15;43922:180;43970:77;43967:1;43960:88;44067:4;44064:1;44057:15;44091:4;44088:1;44081:15;44108:180;44156:77;44153:1;44146:88;44253:4;44250:1;44243:15;44277:4;44274:1;44267:15;44294:180;44342:77;44339:1;44332:88;44439:4;44436:1;44429:15;44463:4;44460:1;44453:15;44480:117;44589:1;44586;44579:12;44603:117;44712:1;44709;44702:12;44726:117;44835:1;44832;44825:12;44849:117;44958:1;44955;44948:12;44972:102;45013:6;45064:2;45060:7;45055:2;45048:5;45044:14;45040:28;45030:38;;44972:102;;;:::o;45080:221::-;45220:34;45216:1;45208:6;45204:14;45197:58;45289:4;45284:2;45276:6;45272:15;45265:29;45080:221;:::o;45307:169::-;45447:21;45443:1;45435:6;45431:14;45424:45;45307:169;:::o;45482:166::-;45622:18;45618:1;45610:6;45606:14;45599:42;45482:166;:::o;45654:225::-;45794:34;45790:1;45782:6;45778:14;45771:58;45863:8;45858:2;45850:6;45846:15;45839:33;45654:225;:::o;45885:229::-;46025:34;46021:1;46013:6;46009:14;46002:58;46094:12;46089:2;46081:6;46077:15;46070:37;45885:229;:::o;46120:181::-;46260:33;46256:1;46248:6;46244:14;46237:57;46120:181;:::o;46307:222::-;46447:34;46443:1;46435:6;46431:14;46424:58;46516:5;46511:2;46503:6;46499:15;46492:30;46307:222;:::o;46535:224::-;46675:34;46671:1;46663:6;46659:14;46652:58;46744:7;46739:2;46731:6;46727:15;46720:32;46535:224;:::o;46765:236::-;46905:34;46901:1;46893:6;46889:14;46882:58;46974:19;46969:2;46961:6;46957:15;46950:44;46765:236;:::o;47007:171::-;47147:23;47143:1;47135:6;47131:14;47124:47;47007:171;:::o;47184:244::-;47324:34;47320:1;47312:6;47308:14;47301:58;47393:27;47388:2;47380:6;47376:15;47369:52;47184:244;:::o;47434:177::-;47574:29;47570:1;47562:6;47558:14;47551:53;47434:177;:::o;47617:230::-;47757:34;47753:1;47745:6;47741:14;47734:58;47826:13;47821:2;47813:6;47809:15;47802:38;47617:230;:::o;47853:171::-;47993:23;47989:1;47981:6;47977:14;47970:47;47853:171;:::o;48030:167::-;48170:19;48166:1;48158:6;48154:14;48147:43;48030:167;:::o;48203:225::-;48343:34;48339:1;48331:6;48327:14;48320:58;48412:8;48407:2;48399:6;48395:15;48388:33;48203:225;:::o;48434:155::-;48574:7;48570:1;48562:6;48558:14;48551:31;48434:155;:::o;48595:176::-;48735:28;48731:1;48723:6;48719:14;48712:52;48595:176;:::o;48777:237::-;48917:34;48913:1;48905:6;48901:14;48894:58;48986:20;48981:2;48973:6;48969:15;48962:45;48777:237;:::o;49020:174::-;49160:26;49156:1;49148:6;49144:14;49137:50;49020:174;:::o;49200:221::-;49340:34;49336:1;49328:6;49324:14;49317:58;49409:4;49404:2;49396:6;49392:15;49385:29;49200:221;:::o;49427:238::-;49567:34;49563:1;49555:6;49551:14;49544:58;49636:21;49631:2;49623:6;49619:15;49612:46;49427:238;:::o;49671:179::-;49811:31;49807:1;49799:6;49795:14;49788:55;49671:179;:::o;49856:220::-;49996:34;49992:1;49984:6;49980:14;49973:58;50065:3;50060:2;50052:6;50048:15;50041:28;49856:220;:::o;50082:233::-;50222:34;50218:1;50210:6;50206:14;50199:58;50291:16;50286:2;50278:6;50274:15;50267:41;50082:233;:::o;50321:234::-;50461:34;50457:1;50449:6;50445:14;50438:58;50530:17;50525:2;50517:6;50513:15;50506:42;50321:234;:::o;50561:172::-;50701:24;50697:1;50689:6;50685:14;50678:48;50561:172;:::o;50739:232::-;50879:34;50875:1;50867:6;50863:14;50856:58;50948:15;50943:2;50935:6;50931:15;50924:40;50739:232;:::o;50977:221::-;51117:34;51113:1;51105:6;51101:14;51094:58;51186:4;51181:2;51173:6;51169:15;51162:29;50977:221;:::o;51204:122::-;51277:24;51295:5;51277:24;:::i;:::-;51270:5;51267:35;51257:63;;51316:1;51313;51306:12;51257:63;51204:122;:::o;51332:116::-;51402:21;51417:5;51402:21;:::i;:::-;51395:5;51392:32;51382:60;;51438:1;51435;51428:12;51382:60;51332:116;:::o;51454:120::-;51526:23;51543:5;51526:23;:::i;:::-;51519:5;51516:34;51506:62;;51564:1;51561;51554:12;51506:62;51454:120;:::o;51580:122::-;51653:24;51671:5;51653:24;:::i;:::-;51646:5;51643:35;51633:63;;51692:1;51689;51682:12;51633:63;51580:122;:::o
Swarm Source
ipfs://a52ef096ccebc7e5a80d83098ce66032b765e9f865ca5f440db892e7f4f64830
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.