ERC-721
Overview
Max Total Supply
2,675 RIBBIT
Holders
1,010
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 RIBBITLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FrogRunners
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-29 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) // SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex = 1; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: goblintownai-contract.sol pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } //newerc.sol pragma solidity ^0.8.0; contract FrogRunners is ERC721A, Ownable, Pausable, ReentrancyGuard { using Strings for uint256; string public baseURI; uint256 public cost = 0.002 ether; uint256 public maxSupply = 9999; uint256 public maxFree = 1999; uint256 public maxperAddressFreeLimit = 2; uint256 public maxperAddressPublicMint = 8; mapping(address => uint256) public addressFreeMintedBalance; constructor() ERC721A("FrogRunners", "RIBBIT") { setBaseURI(""); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mintFree(uint256 _mintAmount) public payable nonReentrant{ uint256 s = totalSupply(); uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender]; require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "Max Frogs per address exceeded"); require(_mintAmount > 0, "Cannot mint 0 Frogs" ); require(s + _mintAmount <= maxFree, "Cannot exceed Frogs supply" ); for (uint256 i = 0; i < _mintAmount; ++i) { addressFreeMintedBalance[msg.sender]++; } _safeMint(msg.sender, _mintAmount); delete s; delete addressFreeMintedCount; } function mint(uint256 _mintAmount) public payable nonReentrant { uint256 s = totalSupply(); require(_mintAmount > 0, "Cant mint 0 Frogs"); require(_mintAmount <= maxperAddressPublicMint, "Cant mint more Frogs" ); require(s + _mintAmount <= maxSupply, "Cant exceed Frogs supply"); require(msg.value >= cost * _mintAmount); _safeMint(msg.sender, _mintAmount); delete s; } function gift(uint256[] calldata quantity, address[] calldata recipient) external onlyOwner { require( quantity.length == recipient.length, "Provide quantities and recipients" ); uint256 totalQuantity = 0; uint256 s = totalSupply(); for (uint256 i = 0; i < quantity.length; ++i) { totalQuantity += quantity[i]; } require(s + totalQuantity <= maxSupply, "Too many Frogs"); delete totalQuantity; for (uint256 i = 0; i < recipient.length; ++i) { _safeMint(recipient[i], quantity[i]); } delete s; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: Nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : ""; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxSupply(uint256 _newMaxSupply) public onlyOwner { require(_newMaxSupply <= maxSupply, "Cannot increase max supply"); maxSupply = _newMaxSupply; } function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner { maxFree = _newMaxFreeSupply; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setMaxperAddressPublicMint(uint256 _amount) public onlyOwner { maxperAddressPublicMint = _amount; } function setMaxperAddressFreeMint(uint256 _amount) public onlyOwner{ maxperAddressFreeLimit = _amount; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } function withdrawAny(uint256 _amount) public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: _amount}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052600160005566071afd498d0000600a5561270f600b556107cf600c556002600d556008600e553480156200003757600080fd5b506040518060400160405280600b81526020017f46726f6752756e6e6572730000000000000000000000000000000000000000008152506040518060400160405280600681526020017f52494242495400000000000000000000000000000000000000000000000000008152508160019080519060200190620000bc929190620002e4565b508060029080519060200190620000d5929190620002e4565b505050620000f8620000ec6200014160201b60201c565b6200014960201b60201c565b6000600760146101000a81548160ff02191690831515021790555060016008819055506200013b604051806020016040528060008152506200020f60201b60201c565b6200047b565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200021f6200014160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000245620002ba60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200029e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029590620003f5565b60405180910390fd5b8060099080519060200190620002b6929190620002e4565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002f29062000446565b90600052602060002090601f01602090048101928262000316576000855562000362565b82601f106200033157805160ff191683800117855562000362565b8280016001018555821562000362579182015b828111156200036157825182559160200191906001019062000344565b5b50905062000371919062000375565b5090565b5b808211156200039057600081600090555060010162000376565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620003dd60208362000394565b9150620003ea82620003a5565b602082019050919050565b600060208201905081810360008301526200041081620003ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045f57607f821691505b60208210810362000475576200047462000417565b5b50919050565b614ceb806200048b6000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107bb578063d5abeb01146107f8578063dc4e66b514610823578063e985e9c51461084c578063f2fde38b1461088957610225565b8063a0712d6814610708578063a22cb46514610724578063a41467331461074d578063b88d4fde14610769578063bde12d731461079257610225565b806377ad99f0116100f257806377ad99f0146106305780637c6b172d1461064c5780638da5cb5b1461068957806395d89b41146106b457806396ea3a47146106df57610225565b80636352211e146105745780636c0360eb146105b157806370a08231146105dc578063715018a61461061957610225565b80632f745c59116101b1578063485a68a311610175578063485a68a31461048d5780634f6ccce7146104b857806355f804b3146104f557806356569a1d1461051e5780635c975abb1461054957610225565b80632f745c59146103c957806334c8fd75146104065780633ccfd60b1461043157806342842e0e1461043b57806344a0d68a1461046457610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c578063228025e81461037757806323b872dd146103a057610225565b806301ffc9a71461022a578063022d67dd1461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906131fa565b6108b2565b60405161025e9190613242565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613293565b6109fc565b005b34801561029c57600080fd5b506102a5610a82565b6040516102b29190613359565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613293565b610b14565b6040516102ef91906133bc565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190613403565b610b99565b005b34801561032d57600080fd5b50610336610cb1565b6040516103439190613452565b60405180910390f35b34801561035857600080fd5b50610361610cb7565b60405161036e9190613452565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613293565b610cc0565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061346d565b610d8b565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613403565b610d9b565b6040516103fd9190613452565b60405180910390f35b34801561041257600080fd5b5061041b610f8b565b6040516104289190613452565b60405180910390f35b610439610f91565b005b34801561044757600080fd5b50610462600480360381019061045d919061346d565b611086565b005b34801561047057600080fd5b5061048b60048036038101906104869190613293565b6110a6565b005b34801561049957600080fd5b506104a261112c565b6040516104af9190613452565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613293565b611132565b6040516104ec9190613452565b60405180910390f35b34801561050157600080fd5b5061051c600480360381019061051791906135f5565b611185565b005b34801561052a57600080fd5b5061053361121b565b6040516105409190613452565b60405180910390f35b34801561055557600080fd5b5061055e611221565b60405161056b9190613242565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613293565b611238565b6040516105a891906133bc565b60405180910390f35b3480156105bd57600080fd5b506105c661124e565b6040516105d39190613359565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe919061363e565b6112dc565b6040516106109190613452565b60405180910390f35b34801561062557600080fd5b5061062e6113c4565b005b61064a60048036038101906106459190613293565b61144c565b005b34801561065857600080fd5b50610673600480360381019061066e919061363e565b611542565b6040516106809190613452565b60405180910390f35b34801561069557600080fd5b5061069e61155a565b6040516106ab91906133bc565b60405180910390f35b3480156106c057600080fd5b506106c9611584565b6040516106d69190613359565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613721565b611616565b005b610722600480360381019061071d9190613293565b6117f8565b005b34801561073057600080fd5b5061074b600480360381019061074691906137ce565b61195d565b005b61076760048036038101906107629190613293565b611add565b005b34801561077557600080fd5b50610790600480360381019061078b91906138af565b611cee565b005b34801561079e57600080fd5b506107b960048036038101906107b49190613293565b611d4a565b005b3480156107c757600080fd5b506107e260048036038101906107dd9190613293565b611dd0565b6040516107ef9190613359565b60405180910390f35b34801561080457600080fd5b5061080d611e77565b60405161081a9190613452565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613293565b611e7d565b005b34801561085857600080fd5b50610873600480360381019061086e9190613932565b611f03565b6040516108809190613242565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab919061363e565b611f97565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f557506109f48261208e565b5b9050919050565b610a046120f8565b73ffffffffffffffffffffffffffffffffffffffff16610a2261155a565b73ffffffffffffffffffffffffffffffffffffffff1614610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f906139be565b60405180910390fd5b80600e8190555050565b606060018054610a9190613a0d565b80601f0160208091040260200160405190810160405280929190818152602001828054610abd90613a0d565b8015610b0a5780601f10610adf57610100808354040283529160200191610b0a565b820191906000526020600020905b815481529060010190602001808311610aed57829003601f168201915b5050505050905090565b6000610b1f82612100565b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590613ab0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba482611238565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613b42565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c336120f8565b73ffffffffffffffffffffffffffffffffffffffff161480610c625750610c6181610c5c6120f8565b611f03565b5b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890613bd4565b60405180910390fd5b610cac83838361210d565b505050565b600a5481565b60008054905090565b610cc86120f8565b73ffffffffffffffffffffffffffffffffffffffff16610ce661155a565b73ffffffffffffffffffffffffffffffffffffffff1614610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d33906139be565b60405180910390fd5b600b54811115610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613c40565b60405180910390fd5b80600b8190555050565b610d968383836121bf565b505050565b6000610da6836112dc565b8210610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90613cd2565b60405180910390fd5b6000610df1610cb7565b905060008060005b83811015610f49576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eeb57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3b57868403610f32578195505050505050610f85565b83806001019450505b508080600101915050610df9565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613d64565b60405180910390fd5b92915050565b600e5481565b610f996120f8565b73ffffffffffffffffffffffffffffffffffffffff16610fb761155a565b73ffffffffffffffffffffffffffffffffffffffff161461100d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611004906139be565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161103390613db5565b60006040518083038185875af1925050503d8060008114611070576040519150601f19603f3d011682016040523d82523d6000602084013e611075565b606091505b505090508061108357600080fd5b50565b6110a183838360405180602001604052806000815250611cee565b505050565b6110ae6120f8565b73ffffffffffffffffffffffffffffffffffffffff166110cc61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611119906139be565b60405180910390fd5b80600a8190555050565b600c5481565b600061113c610cb7565b821061117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613e3c565b60405180910390fd5b819050919050565b61118d6120f8565b73ffffffffffffffffffffffffffffffffffffffff166111ab61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f8906139be565b60405180910390fd5b80600990805190602001906112179291906130b1565b5050565b600d5481565b6000600760149054906101000a900460ff16905090565b6000611243826126fd565b600001519050919050565b6009805461125b90613a0d565b80601f016020809104026020016040519081016040528092919081815260200182805461128790613a0d565b80156112d45780601f106112a9576101008083540402835291602001916112d4565b820191906000526020600020905b8154815290600101906020018083116112b757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390613ece565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113cc6120f8565b73ffffffffffffffffffffffffffffffffffffffff166113ea61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611440576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611437906139be565b60405180910390fd5b61144a6000612897565b565b6114546120f8565b73ffffffffffffffffffffffffffffffffffffffff1661147261155a565b73ffffffffffffffffffffffffffffffffffffffff16146114c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bf906139be565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516114ee90613db5565b60006040518083038185875af1925050503d806000811461152b576040519150601f19603f3d011682016040523d82523d6000602084013e611530565b606091505b505090508061153e57600080fd5b5050565b600f6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461159390613a0d565b80601f01602080910402602001604051908101604052809291908181526020018280546115bf90613a0d565b801561160c5780601f106115e15761010080835404028352916020019161160c565b820191906000526020600020905b8154815290600101906020018083116115ef57829003601f168201915b5050505050905090565b61161e6120f8565b73ffffffffffffffffffffffffffffffffffffffff1661163c61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611689906139be565b60405180910390fd5b8181905084849050146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190613f60565b60405180910390fd5b6000806116e5610cb7565b905060005b8686905081101561172d5786868281811061170857611707613f80565b5b905060200201358361171a9190613fde565b92508061172690614034565b90506116ea565b50600b54828261173d9190613fde565b111561177e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611775906140c8565b60405180910390fd5b6000915060005b848490508110156117eb576117da8585838181106117a6576117a5613f80565b5b90506020020160208101906117bb919061363e565b8888848181106117ce576117cd613f80565b5b9050602002013561295d565b806117e490614034565b9050611785565b5060009050505050505050565b60026008540361183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490614134565b60405180910390fd5b6002600881905550600061184f610cb7565b905060008211611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b906141a0565b60405180910390fd5b600e548211156118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d09061420c565b60405180910390fd5b600b5482826118e89190613fde565b1115611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090614278565b60405180910390fd5b81600a546119379190614298565b34101561194357600080fd5b61194d338361295d565b6000905050600160088190555050565b6119656120f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c99061433e565b60405180910390fd5b80600660006119df6120f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a8c6120f8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad19190613242565b60405180910390a35050565b600260085403611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990614134565b60405180910390fd5b60026008819055506000611b34610cb7565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611b899190613fde565b1115611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc1906143aa565b60405180910390fd5b60008311611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490614416565b60405180910390fd5b600c548383611c1c9190613fde565b1115611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490614482565b60405180910390fd5b60005b83811015611cce57600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611cb890614034565b919050555080611cc790614034565b9050611c60565b50611cd9338461295d565b60009150600090505050600160088190555050565b611cf98484846121bf565b611d058484848461297b565b611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b90614514565b60405180910390fd5b50505050565b611d526120f8565b73ffffffffffffffffffffffffffffffffffffffff16611d7061155a565b73ffffffffffffffffffffffffffffffffffffffff1614611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd906139be565b60405180910390fd5b80600c8190555050565b6060611ddb82612100565b611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e11906145a6565b60405180910390fd5b6000611e24612b02565b90506000815111611e445760405180602001604052806000815250611e6f565b80611e4e84612b94565b604051602001611e5f92919061464e565b6040516020818303038152906040525b915050919050565b600b5481565b611e856120f8565b73ffffffffffffffffffffffffffffffffffffffff16611ea361155a565b73ffffffffffffffffffffffffffffffffffffffff1614611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef0906139be565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f9f6120f8565b73ffffffffffffffffffffffffffffffffffffffff16611fbd61155a565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a906139be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612082576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612079906146ef565b60405180910390fd5b61208b81612897565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121ca826126fd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121f16120f8565b73ffffffffffffffffffffffffffffffffffffffff16148061224d57506122166120f8565b73ffffffffffffffffffffffffffffffffffffffff1661223584610b14565b73ffffffffffffffffffffffffffffffffffffffff16145b80612269575061226882600001516122636120f8565b611f03565b5b9050806122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a290614781565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490614813565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361238c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612383906148a5565b60405180910390fd5b6123998585856001612cf4565b6123a9600084846000015161210d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361268d576125ec81612100565b1561268c5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126f68585856001612cfa565b5050505050565b612705613137565b61270e82612100565b61274d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274490614937565b60405180910390fd5b60008290505b60008110612856576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612847578092505050612892565b50808060019003915050612753565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612889906149c9565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612977828260405180602001604052806000815250612d00565b5050565b600061299c8473ffffffffffffffffffffffffffffffffffffffff16612d12565b15612af5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129c56120f8565b8786866040518563ffffffff1660e01b81526004016129e79493929190614a3e565b6020604051808303816000875af1925050508015612a2357506040513d601f19601f82011682018060405250810190612a209190614a9f565b60015b612aa5573d8060008114612a53576040519150601f19603f3d011682016040523d82523d6000602084013e612a58565b606091505b506000815103612a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9490614514565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612afa565b600190505b949350505050565b606060098054612b1190613a0d565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3d90613a0d565b8015612b8a5780601f10612b5f57610100808354040283529160200191612b8a565b820191906000526020600020905b815481529060010190602001808311612b6d57829003601f168201915b5050505050905090565b606060008203612bdb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cef565b600082905060005b60008214612c0d578080612bf690614034565b915050600a82612c069190614afb565b9150612be3565b60008167ffffffffffffffff811115612c2957612c286134ca565b5b6040519080825280601f01601f191660200182016040528015612c5b5781602001600182028036833780820191505090505b5090505b60008514612ce857600182612c749190614b2c565b9150600a85612c839190614b60565b6030612c8f9190613fde565b60f81b818381518110612ca557612ca4613f80565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ce19190614afb565b9450612c5f565b8093505050505b919050565b50505050565b50505050565b612d0d8383836001612d35565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da190614c03565b60405180910390fd5b60008403612ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de490614c95565b60405180910390fd5b612dfa6000868387612cf4565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561309457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561307f5761303f600088848861297b565b61307e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307590614514565b60405180910390fd5b5b81806001019250508080600101915050612fc8565b5080600081905550506130aa6000868387612cfa565b5050505050565b8280546130bd90613a0d565b90600052602060002090601f0160209004810192826130df5760008555613126565b82601f106130f857805160ff1916838001178555613126565b82800160010185558215613126579182015b8281111561312557825182559160200191906001019061310a565b5b5090506131339190613171565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561318a576000816000905550600101613172565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131d7816131a2565b81146131e257600080fd5b50565b6000813590506131f4816131ce565b92915050565b6000602082840312156132105761320f613198565b5b600061321e848285016131e5565b91505092915050565b60008115159050919050565b61323c81613227565b82525050565b60006020820190506132576000830184613233565b92915050565b6000819050919050565b6132708161325d565b811461327b57600080fd5b50565b60008135905061328d81613267565b92915050565b6000602082840312156132a9576132a8613198565b5b60006132b78482850161327e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132fa5780820151818401526020810190506132df565b83811115613309576000848401525b50505050565b6000601f19601f8301169050919050565b600061332b826132c0565b61333581856132cb565b93506133458185602086016132dc565b61334e8161330f565b840191505092915050565b600060208201905081810360008301526133738184613320565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133a68261337b565b9050919050565b6133b68161339b565b82525050565b60006020820190506133d160008301846133ad565b92915050565b6133e08161339b565b81146133eb57600080fd5b50565b6000813590506133fd816133d7565b92915050565b6000806040838503121561341a57613419613198565b5b6000613428858286016133ee565b92505060206134398582860161327e565b9150509250929050565b61344c8161325d565b82525050565b60006020820190506134676000830184613443565b92915050565b60008060006060848603121561348657613485613198565b5b6000613494868287016133ee565b93505060206134a5868287016133ee565b92505060406134b68682870161327e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135028261330f565b810181811067ffffffffffffffff82111715613521576135206134ca565b5b80604052505050565b600061353461318e565b905061354082826134f9565b919050565b600067ffffffffffffffff8211156135605761355f6134ca565b5b6135698261330f565b9050602081019050919050565b82818337600083830152505050565b600061359861359384613545565b61352a565b9050828152602081018484840111156135b4576135b36134c5565b5b6135bf848285613576565b509392505050565b600082601f8301126135dc576135db6134c0565b5b81356135ec848260208601613585565b91505092915050565b60006020828403121561360b5761360a613198565b5b600082013567ffffffffffffffff8111156136295761362861319d565b5b613635848285016135c7565b91505092915050565b60006020828403121561365457613653613198565b5b6000613662848285016133ee565b91505092915050565b600080fd5b600080fd5b60008083601f84011261368b5761368a6134c0565b5b8235905067ffffffffffffffff8111156136a8576136a761366b565b5b6020830191508360208202830111156136c4576136c3613670565b5b9250929050565b60008083601f8401126136e1576136e06134c0565b5b8235905067ffffffffffffffff8111156136fe576136fd61366b565b5b60208301915083602082028301111561371a57613719613670565b5b9250929050565b6000806000806040858703121561373b5761373a613198565b5b600085013567ffffffffffffffff8111156137595761375861319d565b5b61376587828801613675565b9450945050602085013567ffffffffffffffff8111156137885761378761319d565b5b613794878288016136cb565b925092505092959194509250565b6137ab81613227565b81146137b657600080fd5b50565b6000813590506137c8816137a2565b92915050565b600080604083850312156137e5576137e4613198565b5b60006137f3858286016133ee565b9250506020613804858286016137b9565b9150509250929050565b600067ffffffffffffffff821115613829576138286134ca565b5b6138328261330f565b9050602081019050919050565b600061385261384d8461380e565b61352a565b90508281526020810184848401111561386e5761386d6134c5565b5b613879848285613576565b509392505050565b600082601f830112613896576138956134c0565b5b81356138a684826020860161383f565b91505092915050565b600080600080608085870312156138c9576138c8613198565b5b60006138d7878288016133ee565b94505060206138e8878288016133ee565b93505060406138f98782880161327e565b925050606085013567ffffffffffffffff81111561391a5761391961319d565b5b61392687828801613881565b91505092959194509250565b6000806040838503121561394957613948613198565b5b6000613957858286016133ee565b9250506020613968858286016133ee565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139a86020836132cb565b91506139b382613972565b602082019050919050565b600060208201905081810360008301526139d78161399b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a2557607f821691505b602082108103613a3857613a376139de565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a9a602d836132cb565b9150613aa582613a3e565b604082019050919050565b60006020820190508181036000830152613ac981613a8d565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b2c6022836132cb565b9150613b3782613ad0565b604082019050919050565b60006020820190508181036000830152613b5b81613b1f565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613bbe6039836132cb565b9150613bc982613b62565b604082019050919050565b60006020820190508181036000830152613bed81613bb1565b9050919050565b7f43616e6e6f7420696e637265617365206d617820737570706c79000000000000600082015250565b6000613c2a601a836132cb565b9150613c3582613bf4565b602082019050919050565b60006020820190508181036000830152613c5981613c1d565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cbc6022836132cb565b9150613cc782613c60565b604082019050919050565b60006020820190508181036000830152613ceb81613caf565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d4e602e836132cb565b9150613d5982613cf2565b604082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b600081905092915050565b50565b6000613d9f600083613d84565b9150613daa82613d8f565b600082019050919050565b6000613dc082613d92565b9150819050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e266023836132cb565b9150613e3182613dca565b604082019050919050565b60006020820190508181036000830152613e5581613e19565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613eb8602b836132cb565b9150613ec382613e5c565b604082019050919050565b60006020820190508181036000830152613ee781613eab565b9050919050565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f4a6021836132cb565b9150613f5582613eee565b604082019050919050565b60006020820190508181036000830152613f7981613f3d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fe98261325d565b9150613ff48361325d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402957614028613faf565b5b828201905092915050565b600061403f8261325d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361407157614070613faf565b5b600182019050919050565b7f546f6f206d616e792046726f6773000000000000000000000000000000000000600082015250565b60006140b2600e836132cb565b91506140bd8261407c565b602082019050919050565b600060208201905081810360008301526140e1816140a5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061411e601f836132cb565b9150614129826140e8565b602082019050919050565b6000602082019050818103600083015261414d81614111565b9050919050565b7f43616e74206d696e7420302046726f6773000000000000000000000000000000600082015250565b600061418a6011836132cb565b915061419582614154565b602082019050919050565b600060208201905081810360008301526141b98161417d565b9050919050565b7f43616e74206d696e74206d6f72652046726f6773000000000000000000000000600082015250565b60006141f66014836132cb565b9150614201826141c0565b602082019050919050565b60006020820190508181036000830152614225816141e9565b9050919050565b7f43616e74206578636565642046726f677320737570706c790000000000000000600082015250565b60006142626018836132cb565b915061426d8261422c565b602082019050919050565b6000602082019050818103600083015261429181614255565b9050919050565b60006142a38261325d565b91506142ae8361325d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142e7576142e6613faf565b5b828202905092915050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614328601a836132cb565b9150614333826142f2565b602082019050919050565b600060208201905081810360008301526143578161431b565b9050919050565b7f4d61782046726f67732070657220616464726573732065786365656465640000600082015250565b6000614394601e836132cb565b915061439f8261435e565b602082019050919050565b600060208201905081810360008301526143c381614387565b9050919050565b7f43616e6e6f74206d696e7420302046726f677300000000000000000000000000600082015250565b60006144006013836132cb565b915061440b826143ca565b602082019050919050565b6000602082019050818103600083015261442f816143f3565b9050919050565b7f43616e6e6f74206578636565642046726f677320737570706c79000000000000600082015250565b600061446c601a836132cb565b915061447782614436565b602082019050919050565b6000602082019050818103600083015261449b8161445f565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006144fe6033836132cb565b9150614509826144a2565b604082019050919050565b6000602082019050818103600083015261452d816144f1565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006145906021836132cb565b915061459b82614534565b604082019050919050565b600060208201905081810360008301526145bf81614583565b9050919050565b600081905092915050565b60006145dc826132c0565b6145e681856145c6565b93506145f68185602086016132dc565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006146386005836145c6565b915061464382614602565b600582019050919050565b600061465a82856145d1565b915061466682846145d1565b91506146718261462b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146d96026836132cb565b91506146e48261467d565b604082019050919050565b60006020820190508181036000830152614708816146cc565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061476b6032836132cb565b91506147768261470f565b604082019050919050565b6000602082019050818103600083015261479a8161475e565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006147fd6026836132cb565b9150614808826147a1565b604082019050919050565b6000602082019050818103600083015261482c816147f0565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061488f6025836132cb565b915061489a82614833565b604082019050919050565b600060208201905081810360008301526148be81614882565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614921602a836132cb565b915061492c826148c5565b604082019050919050565b6000602082019050818103600083015261495081614914565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006149b3602f836132cb565b91506149be82614957565b604082019050919050565b600060208201905081810360008301526149e2816149a6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a10826149e9565b614a1a81856149f4565b9350614a2a8185602086016132dc565b614a338161330f565b840191505092915050565b6000608082019050614a5360008301876133ad565b614a6060208301866133ad565b614a6d6040830185613443565b8181036060830152614a7f8184614a05565b905095945050505050565b600081519050614a99816131ce565b92915050565b600060208284031215614ab557614ab4613198565b5b6000614ac384828501614a8a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b068261325d565b9150614b118361325d565b925082614b2157614b20614acc565b5b828204905092915050565b6000614b378261325d565b9150614b428361325d565b925082821015614b5557614b54613faf565b5b828203905092915050565b6000614b6b8261325d565b9150614b768361325d565b925082614b8657614b85614acc565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bed6021836132cb565b9150614bf882614b91565b604082019050919050565b60006020820190508181036000830152614c1c81614be0565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614c7f6028836132cb565b9150614c8a82614c23565b604082019050919050565b60006020820190508181036000830152614cae81614c72565b905091905056fea2646970667358221220390ea7852d81807fcfbbdfeeaa878d74c960541a829aa729fdba6a517548d9af64736f6c634300080e0033
Deployed Bytecode
0x6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107bb578063d5abeb01146107f8578063dc4e66b514610823578063e985e9c51461084c578063f2fde38b1461088957610225565b8063a0712d6814610708578063a22cb46514610724578063a41467331461074d578063b88d4fde14610769578063bde12d731461079257610225565b806377ad99f0116100f257806377ad99f0146106305780637c6b172d1461064c5780638da5cb5b1461068957806395d89b41146106b457806396ea3a47146106df57610225565b80636352211e146105745780636c0360eb146105b157806370a08231146105dc578063715018a61461061957610225565b80632f745c59116101b1578063485a68a311610175578063485a68a31461048d5780634f6ccce7146104b857806355f804b3146104f557806356569a1d1461051e5780635c975abb1461054957610225565b80632f745c59146103c957806334c8fd75146104065780633ccfd60b1461043157806342842e0e1461043b57806344a0d68a1461046457610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c578063228025e81461037757806323b872dd146103a057610225565b806301ffc9a71461022a578063022d67dd1461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906131fa565b6108b2565b60405161025e9190613242565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613293565b6109fc565b005b34801561029c57600080fd5b506102a5610a82565b6040516102b29190613359565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613293565b610b14565b6040516102ef91906133bc565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190613403565b610b99565b005b34801561032d57600080fd5b50610336610cb1565b6040516103439190613452565b60405180910390f35b34801561035857600080fd5b50610361610cb7565b60405161036e9190613452565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613293565b610cc0565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061346d565b610d8b565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613403565b610d9b565b6040516103fd9190613452565b60405180910390f35b34801561041257600080fd5b5061041b610f8b565b6040516104289190613452565b60405180910390f35b610439610f91565b005b34801561044757600080fd5b50610462600480360381019061045d919061346d565b611086565b005b34801561047057600080fd5b5061048b60048036038101906104869190613293565b6110a6565b005b34801561049957600080fd5b506104a261112c565b6040516104af9190613452565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613293565b611132565b6040516104ec9190613452565b60405180910390f35b34801561050157600080fd5b5061051c600480360381019061051791906135f5565b611185565b005b34801561052a57600080fd5b5061053361121b565b6040516105409190613452565b60405180910390f35b34801561055557600080fd5b5061055e611221565b60405161056b9190613242565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613293565b611238565b6040516105a891906133bc565b60405180910390f35b3480156105bd57600080fd5b506105c661124e565b6040516105d39190613359565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe919061363e565b6112dc565b6040516106109190613452565b60405180910390f35b34801561062557600080fd5b5061062e6113c4565b005b61064a60048036038101906106459190613293565b61144c565b005b34801561065857600080fd5b50610673600480360381019061066e919061363e565b611542565b6040516106809190613452565b60405180910390f35b34801561069557600080fd5b5061069e61155a565b6040516106ab91906133bc565b60405180910390f35b3480156106c057600080fd5b506106c9611584565b6040516106d69190613359565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613721565b611616565b005b610722600480360381019061071d9190613293565b6117f8565b005b34801561073057600080fd5b5061074b600480360381019061074691906137ce565b61195d565b005b61076760048036038101906107629190613293565b611add565b005b34801561077557600080fd5b50610790600480360381019061078b91906138af565b611cee565b005b34801561079e57600080fd5b506107b960048036038101906107b49190613293565b611d4a565b005b3480156107c757600080fd5b506107e260048036038101906107dd9190613293565b611dd0565b6040516107ef9190613359565b60405180910390f35b34801561080457600080fd5b5061080d611e77565b60405161081a9190613452565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613293565b611e7d565b005b34801561085857600080fd5b50610873600480360381019061086e9190613932565b611f03565b6040516108809190613242565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab919061363e565b611f97565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f557506109f48261208e565b5b9050919050565b610a046120f8565b73ffffffffffffffffffffffffffffffffffffffff16610a2261155a565b73ffffffffffffffffffffffffffffffffffffffff1614610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f906139be565b60405180910390fd5b80600e8190555050565b606060018054610a9190613a0d565b80601f0160208091040260200160405190810160405280929190818152602001828054610abd90613a0d565b8015610b0a5780601f10610adf57610100808354040283529160200191610b0a565b820191906000526020600020905b815481529060010190602001808311610aed57829003601f168201915b5050505050905090565b6000610b1f82612100565b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590613ab0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba482611238565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613b42565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c336120f8565b73ffffffffffffffffffffffffffffffffffffffff161480610c625750610c6181610c5c6120f8565b611f03565b5b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890613bd4565b60405180910390fd5b610cac83838361210d565b505050565b600a5481565b60008054905090565b610cc86120f8565b73ffffffffffffffffffffffffffffffffffffffff16610ce661155a565b73ffffffffffffffffffffffffffffffffffffffff1614610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d33906139be565b60405180910390fd5b600b54811115610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613c40565b60405180910390fd5b80600b8190555050565b610d968383836121bf565b505050565b6000610da6836112dc565b8210610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90613cd2565b60405180910390fd5b6000610df1610cb7565b905060008060005b83811015610f49576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eeb57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3b57868403610f32578195505050505050610f85565b83806001019450505b508080600101915050610df9565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613d64565b60405180910390fd5b92915050565b600e5481565b610f996120f8565b73ffffffffffffffffffffffffffffffffffffffff16610fb761155a565b73ffffffffffffffffffffffffffffffffffffffff161461100d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611004906139be565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161103390613db5565b60006040518083038185875af1925050503d8060008114611070576040519150601f19603f3d011682016040523d82523d6000602084013e611075565b606091505b505090508061108357600080fd5b50565b6110a183838360405180602001604052806000815250611cee565b505050565b6110ae6120f8565b73ffffffffffffffffffffffffffffffffffffffff166110cc61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611119906139be565b60405180910390fd5b80600a8190555050565b600c5481565b600061113c610cb7565b821061117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613e3c565b60405180910390fd5b819050919050565b61118d6120f8565b73ffffffffffffffffffffffffffffffffffffffff166111ab61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f8906139be565b60405180910390fd5b80600990805190602001906112179291906130b1565b5050565b600d5481565b6000600760149054906101000a900460ff16905090565b6000611243826126fd565b600001519050919050565b6009805461125b90613a0d565b80601f016020809104026020016040519081016040528092919081815260200182805461128790613a0d565b80156112d45780601f106112a9576101008083540402835291602001916112d4565b820191906000526020600020905b8154815290600101906020018083116112b757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390613ece565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113cc6120f8565b73ffffffffffffffffffffffffffffffffffffffff166113ea61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611440576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611437906139be565b60405180910390fd5b61144a6000612897565b565b6114546120f8565b73ffffffffffffffffffffffffffffffffffffffff1661147261155a565b73ffffffffffffffffffffffffffffffffffffffff16146114c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bf906139be565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16826040516114ee90613db5565b60006040518083038185875af1925050503d806000811461152b576040519150601f19603f3d011682016040523d82523d6000602084013e611530565b606091505b505090508061153e57600080fd5b5050565b600f6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461159390613a0d565b80601f01602080910402602001604051908101604052809291908181526020018280546115bf90613a0d565b801561160c5780601f106115e15761010080835404028352916020019161160c565b820191906000526020600020905b8154815290600101906020018083116115ef57829003601f168201915b5050505050905090565b61161e6120f8565b73ffffffffffffffffffffffffffffffffffffffff1661163c61155a565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611689906139be565b60405180910390fd5b8181905084849050146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190613f60565b60405180910390fd5b6000806116e5610cb7565b905060005b8686905081101561172d5786868281811061170857611707613f80565b5b905060200201358361171a9190613fde565b92508061172690614034565b90506116ea565b50600b54828261173d9190613fde565b111561177e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611775906140c8565b60405180910390fd5b6000915060005b848490508110156117eb576117da8585838181106117a6576117a5613f80565b5b90506020020160208101906117bb919061363e565b8888848181106117ce576117cd613f80565b5b9050602002013561295d565b806117e490614034565b9050611785565b5060009050505050505050565b60026008540361183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490614134565b60405180910390fd5b6002600881905550600061184f610cb7565b905060008211611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b906141a0565b60405180910390fd5b600e548211156118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d09061420c565b60405180910390fd5b600b5482826118e89190613fde565b1115611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090614278565b60405180910390fd5b81600a546119379190614298565b34101561194357600080fd5b61194d338361295d565b6000905050600160088190555050565b6119656120f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c99061433e565b60405180910390fd5b80600660006119df6120f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a8c6120f8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad19190613242565b60405180910390a35050565b600260085403611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990614134565b60405180910390fd5b60026008819055506000611b34610cb7565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611b899190613fde565b1115611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc1906143aa565b60405180910390fd5b60008311611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490614416565b60405180910390fd5b600c548383611c1c9190613fde565b1115611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490614482565b60405180910390fd5b60005b83811015611cce57600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611cb890614034565b919050555080611cc790614034565b9050611c60565b50611cd9338461295d565b60009150600090505050600160088190555050565b611cf98484846121bf565b611d058484848461297b565b611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b90614514565b60405180910390fd5b50505050565b611d526120f8565b73ffffffffffffffffffffffffffffffffffffffff16611d7061155a565b73ffffffffffffffffffffffffffffffffffffffff1614611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd906139be565b60405180910390fd5b80600c8190555050565b6060611ddb82612100565b611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e11906145a6565b60405180910390fd5b6000611e24612b02565b90506000815111611e445760405180602001604052806000815250611e6f565b80611e4e84612b94565b604051602001611e5f92919061464e565b6040516020818303038152906040525b915050919050565b600b5481565b611e856120f8565b73ffffffffffffffffffffffffffffffffffffffff16611ea361155a565b73ffffffffffffffffffffffffffffffffffffffff1614611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef0906139be565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f9f6120f8565b73ffffffffffffffffffffffffffffffffffffffff16611fbd61155a565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a906139be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612082576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612079906146ef565b60405180910390fd5b61208b81612897565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121ca826126fd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121f16120f8565b73ffffffffffffffffffffffffffffffffffffffff16148061224d57506122166120f8565b73ffffffffffffffffffffffffffffffffffffffff1661223584610b14565b73ffffffffffffffffffffffffffffffffffffffff16145b80612269575061226882600001516122636120f8565b611f03565b5b9050806122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a290614781565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490614813565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361238c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612383906148a5565b60405180910390fd5b6123998585856001612cf4565b6123a9600084846000015161210d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361268d576125ec81612100565b1561268c5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126f68585856001612cfa565b5050505050565b612705613137565b61270e82612100565b61274d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274490614937565b60405180910390fd5b60008290505b60008110612856576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612847578092505050612892565b50808060019003915050612753565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612889906149c9565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612977828260405180602001604052806000815250612d00565b5050565b600061299c8473ffffffffffffffffffffffffffffffffffffffff16612d12565b15612af5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129c56120f8565b8786866040518563ffffffff1660e01b81526004016129e79493929190614a3e565b6020604051808303816000875af1925050508015612a2357506040513d601f19601f82011682018060405250810190612a209190614a9f565b60015b612aa5573d8060008114612a53576040519150601f19603f3d011682016040523d82523d6000602084013e612a58565b606091505b506000815103612a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9490614514565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612afa565b600190505b949350505050565b606060098054612b1190613a0d565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3d90613a0d565b8015612b8a5780601f10612b5f57610100808354040283529160200191612b8a565b820191906000526020600020905b815481529060010190602001808311612b6d57829003601f168201915b5050505050905090565b606060008203612bdb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cef565b600082905060005b60008214612c0d578080612bf690614034565b915050600a82612c069190614afb565b9150612be3565b60008167ffffffffffffffff811115612c2957612c286134ca565b5b6040519080825280601f01601f191660200182016040528015612c5b5781602001600182028036833780820191505090505b5090505b60008514612ce857600182612c749190614b2c565b9150600a85612c839190614b60565b6030612c8f9190613fde565b60f81b818381518110612ca557612ca4613f80565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ce19190614afb565b9450612c5f565b8093505050505b919050565b50505050565b50505050565b612d0d8383836001612d35565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da190614c03565b60405180910390fd5b60008403612ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de490614c95565b60405180910390fd5b612dfa6000868387612cf4565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561309457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561307f5761303f600088848861297b565b61307e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307590614514565b60405180910390fd5b5b81806001019250508080600101915050612fc8565b5080600081905550506130aa6000868387612cfa565b5050505050565b8280546130bd90613a0d565b90600052602060002090601f0160209004810192826130df5760008555613126565b82601f106130f857805160ff1916838001178555613126565b82800160010185558215613126579182015b8281111561312557825182559160200191906001019061310a565b5b5090506131339190613171565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561318a576000816000905550600101613172565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131d7816131a2565b81146131e257600080fd5b50565b6000813590506131f4816131ce565b92915050565b6000602082840312156132105761320f613198565b5b600061321e848285016131e5565b91505092915050565b60008115159050919050565b61323c81613227565b82525050565b60006020820190506132576000830184613233565b92915050565b6000819050919050565b6132708161325d565b811461327b57600080fd5b50565b60008135905061328d81613267565b92915050565b6000602082840312156132a9576132a8613198565b5b60006132b78482850161327e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132fa5780820151818401526020810190506132df565b83811115613309576000848401525b50505050565b6000601f19601f8301169050919050565b600061332b826132c0565b61333581856132cb565b93506133458185602086016132dc565b61334e8161330f565b840191505092915050565b600060208201905081810360008301526133738184613320565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133a68261337b565b9050919050565b6133b68161339b565b82525050565b60006020820190506133d160008301846133ad565b92915050565b6133e08161339b565b81146133eb57600080fd5b50565b6000813590506133fd816133d7565b92915050565b6000806040838503121561341a57613419613198565b5b6000613428858286016133ee565b92505060206134398582860161327e565b9150509250929050565b61344c8161325d565b82525050565b60006020820190506134676000830184613443565b92915050565b60008060006060848603121561348657613485613198565b5b6000613494868287016133ee565b93505060206134a5868287016133ee565b92505060406134b68682870161327e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135028261330f565b810181811067ffffffffffffffff82111715613521576135206134ca565b5b80604052505050565b600061353461318e565b905061354082826134f9565b919050565b600067ffffffffffffffff8211156135605761355f6134ca565b5b6135698261330f565b9050602081019050919050565b82818337600083830152505050565b600061359861359384613545565b61352a565b9050828152602081018484840111156135b4576135b36134c5565b5b6135bf848285613576565b509392505050565b600082601f8301126135dc576135db6134c0565b5b81356135ec848260208601613585565b91505092915050565b60006020828403121561360b5761360a613198565b5b600082013567ffffffffffffffff8111156136295761362861319d565b5b613635848285016135c7565b91505092915050565b60006020828403121561365457613653613198565b5b6000613662848285016133ee565b91505092915050565b600080fd5b600080fd5b60008083601f84011261368b5761368a6134c0565b5b8235905067ffffffffffffffff8111156136a8576136a761366b565b5b6020830191508360208202830111156136c4576136c3613670565b5b9250929050565b60008083601f8401126136e1576136e06134c0565b5b8235905067ffffffffffffffff8111156136fe576136fd61366b565b5b60208301915083602082028301111561371a57613719613670565b5b9250929050565b6000806000806040858703121561373b5761373a613198565b5b600085013567ffffffffffffffff8111156137595761375861319d565b5b61376587828801613675565b9450945050602085013567ffffffffffffffff8111156137885761378761319d565b5b613794878288016136cb565b925092505092959194509250565b6137ab81613227565b81146137b657600080fd5b50565b6000813590506137c8816137a2565b92915050565b600080604083850312156137e5576137e4613198565b5b60006137f3858286016133ee565b9250506020613804858286016137b9565b9150509250929050565b600067ffffffffffffffff821115613829576138286134ca565b5b6138328261330f565b9050602081019050919050565b600061385261384d8461380e565b61352a565b90508281526020810184848401111561386e5761386d6134c5565b5b613879848285613576565b509392505050565b600082601f830112613896576138956134c0565b5b81356138a684826020860161383f565b91505092915050565b600080600080608085870312156138c9576138c8613198565b5b60006138d7878288016133ee565b94505060206138e8878288016133ee565b93505060406138f98782880161327e565b925050606085013567ffffffffffffffff81111561391a5761391961319d565b5b61392687828801613881565b91505092959194509250565b6000806040838503121561394957613948613198565b5b6000613957858286016133ee565b9250506020613968858286016133ee565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139a86020836132cb565b91506139b382613972565b602082019050919050565b600060208201905081810360008301526139d78161399b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a2557607f821691505b602082108103613a3857613a376139de565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a9a602d836132cb565b9150613aa582613a3e565b604082019050919050565b60006020820190508181036000830152613ac981613a8d565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b2c6022836132cb565b9150613b3782613ad0565b604082019050919050565b60006020820190508181036000830152613b5b81613b1f565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613bbe6039836132cb565b9150613bc982613b62565b604082019050919050565b60006020820190508181036000830152613bed81613bb1565b9050919050565b7f43616e6e6f7420696e637265617365206d617820737570706c79000000000000600082015250565b6000613c2a601a836132cb565b9150613c3582613bf4565b602082019050919050565b60006020820190508181036000830152613c5981613c1d565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cbc6022836132cb565b9150613cc782613c60565b604082019050919050565b60006020820190508181036000830152613ceb81613caf565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d4e602e836132cb565b9150613d5982613cf2565b604082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b600081905092915050565b50565b6000613d9f600083613d84565b9150613daa82613d8f565b600082019050919050565b6000613dc082613d92565b9150819050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e266023836132cb565b9150613e3182613dca565b604082019050919050565b60006020820190508181036000830152613e5581613e19565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613eb8602b836132cb565b9150613ec382613e5c565b604082019050919050565b60006020820190508181036000830152613ee781613eab565b9050919050565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f4a6021836132cb565b9150613f5582613eee565b604082019050919050565b60006020820190508181036000830152613f7981613f3d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fe98261325d565b9150613ff48361325d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402957614028613faf565b5b828201905092915050565b600061403f8261325d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361407157614070613faf565b5b600182019050919050565b7f546f6f206d616e792046726f6773000000000000000000000000000000000000600082015250565b60006140b2600e836132cb565b91506140bd8261407c565b602082019050919050565b600060208201905081810360008301526140e1816140a5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061411e601f836132cb565b9150614129826140e8565b602082019050919050565b6000602082019050818103600083015261414d81614111565b9050919050565b7f43616e74206d696e7420302046726f6773000000000000000000000000000000600082015250565b600061418a6011836132cb565b915061419582614154565b602082019050919050565b600060208201905081810360008301526141b98161417d565b9050919050565b7f43616e74206d696e74206d6f72652046726f6773000000000000000000000000600082015250565b60006141f66014836132cb565b9150614201826141c0565b602082019050919050565b60006020820190508181036000830152614225816141e9565b9050919050565b7f43616e74206578636565642046726f677320737570706c790000000000000000600082015250565b60006142626018836132cb565b915061426d8261422c565b602082019050919050565b6000602082019050818103600083015261429181614255565b9050919050565b60006142a38261325d565b91506142ae8361325d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142e7576142e6613faf565b5b828202905092915050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614328601a836132cb565b9150614333826142f2565b602082019050919050565b600060208201905081810360008301526143578161431b565b9050919050565b7f4d61782046726f67732070657220616464726573732065786365656465640000600082015250565b6000614394601e836132cb565b915061439f8261435e565b602082019050919050565b600060208201905081810360008301526143c381614387565b9050919050565b7f43616e6e6f74206d696e7420302046726f677300000000000000000000000000600082015250565b60006144006013836132cb565b915061440b826143ca565b602082019050919050565b6000602082019050818103600083015261442f816143f3565b9050919050565b7f43616e6e6f74206578636565642046726f677320737570706c79000000000000600082015250565b600061446c601a836132cb565b915061447782614436565b602082019050919050565b6000602082019050818103600083015261449b8161445f565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006144fe6033836132cb565b9150614509826144a2565b604082019050919050565b6000602082019050818103600083015261452d816144f1565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006145906021836132cb565b915061459b82614534565b604082019050919050565b600060208201905081810360008301526145bf81614583565b9050919050565b600081905092915050565b60006145dc826132c0565b6145e681856145c6565b93506145f68185602086016132dc565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006146386005836145c6565b915061464382614602565b600582019050919050565b600061465a82856145d1565b915061466682846145d1565b91506146718261462b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146d96026836132cb565b91506146e48261467d565b604082019050919050565b60006020820190508181036000830152614708816146cc565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061476b6032836132cb565b91506147768261470f565b604082019050919050565b6000602082019050818103600083015261479a8161475e565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006147fd6026836132cb565b9150614808826147a1565b604082019050919050565b6000602082019050818103600083015261482c816147f0565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061488f6025836132cb565b915061489a82614833565b604082019050919050565b600060208201905081810360008301526148be81614882565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614921602a836132cb565b915061492c826148c5565b604082019050919050565b6000602082019050818103600083015261495081614914565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006149b3602f836132cb565b91506149be82614957565b604082019050919050565b600060208201905081810360008301526149e2816149a6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a10826149e9565b614a1a81856149f4565b9350614a2a8185602086016132dc565b614a338161330f565b840191505092915050565b6000608082019050614a5360008301876133ad565b614a6060208301866133ad565b614a6d6040830185613443565b8181036060830152614a7f8184614a05565b905095945050505050565b600081519050614a99816131ce565b92915050565b600060208284031215614ab557614ab4613198565b5b6000614ac384828501614a8a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b068261325d565b9150614b118361325d565b925082614b2157614b20614acc565b5b828204905092915050565b6000614b378261325d565b9150614b428361325d565b925082821015614b5557614b54613faf565b5b828203905092915050565b6000614b6b8261325d565b9150614b768361325d565b925082614b8657614b85614acc565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bed6021836132cb565b9150614bf882614b91565b604082019050919050565b60006020820190508181036000830152614c1c81614be0565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614c7f6028836132cb565b9150614c8a82614c23565b604082019050919050565b60006020820190508181036000830152614cae81614c72565b905091905056fea2646970667358221220390ea7852d81807fcfbbdfeeaa878d74c960541a829aa729fdba6a517548d9af64736f6c634300080e0033
Deployed Bytecode Sourcemap
45198:3666:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24875:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48283:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26761:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28323:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27844:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45327:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23132:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47885:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29199:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23796:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45481:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48521:172;;;:::i;:::-;;29432:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47799:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45401:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23309:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48179:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45435:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39049:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26570:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45301:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25311:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41866:94;;;;;;;;;;;;;:::i;:::-;;48699:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45530:59;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41215:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26930:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46805:593;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46392:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28609:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45784:602;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29680:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48063:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47404:387;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45365:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48405:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28968:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42115:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24875:372;24977:4;25029:25;25014:40;;;:11;:40;;;;:105;;;;25086:33;25071:48;;;:11;:48;;;;25014:105;:172;;;;25151:35;25136:50;;;:11;:50;;;;25014:172;:225;;;;25203:36;25227:11;25203:23;:36::i;:::-;25014:225;24994:245;;24875:372;;;:::o;48283:116::-;41446:12;:10;:12::i;:::-;41435:23;;:7;:5;:7::i;:::-;:23;;;41427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48386:7:::1;48360:23;:33;;;;48283:116:::0;:::o;26761:100::-;26815:13;26848:5;26841:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26761:100;:::o;28323:214::-;28391:7;28419:16;28427:7;28419;:16::i;:::-;28411:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28505:15;:24;28521:7;28505:24;;;;;;;;;;;;;;;;;;;;;28498:31;;28323:214;;;:::o;27844:413::-;27917:13;27933:24;27949:7;27933:15;:24::i;:::-;27917:40;;27982:5;27976:11;;:2;:11;;;27968:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28077:5;28061:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28086:37;28103:5;28110:12;:10;:12::i;:::-;28086:16;:37::i;:::-;28061:62;28039:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;28221:28;28230:2;28234:7;28243:5;28221:8;:28::i;:::-;27906:351;27844:413;;:::o;45327:33::-;;;;:::o;23132:100::-;23185:7;23212:12;;23205:19;;23132:100;:::o;47885:172::-;41446:12;:10;:12::i;:::-;41435:23;;:7;:5;:7::i;:::-;:23;;;41427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47979:9:::1;;47962:13;:26;;47954:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48038:13;48026:9;:25;;;;47885:172:::0;:::o;29199:162::-;29325:28;29335:4;29341:2;29345:7;29325:9;:28::i;:::-;29199:162;;;:::o;23796:1007::-;23885:7;23921:16;23931:5;23921:9;:16::i;:::-;23913:5;:24;23905:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23987:22;24012:13;:11;:13::i;:::-;23987:38;;24036:19;24066:25;24255:9;24250:466;24270:14;24266:1;:18;24250:466;;;24310:31;24344:11;:14;24356:1;24344:14;;;;;;;;;;;24310:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24407:1;24381:28;;:9;:14;;;:28;;;24377:111;;24454:9;:14;;;24434:34;;24377:111;24531:5;24510:26;;:17;:26;;;24506:195;;24580:5;24565:11;:20;24561:85;;24621:1;24614:8;;;;;;;;;24561:85;24668:13;;;;;;;24506:195;24291:425;24286:3;;;;;;;24250:466;;;;24739:56;;;;;;;;;;:::i;:::-;;;;;;;;23796:1007;;;;;:::o;45481:42::-;;;;:::o;48521:172::-;41446:12;:10;:12::i;:::-;41435:23;;:7;:5;:7::i;:::-;:23;;;41427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48574:12:::1;48600:10;48592:24;;48632:21;48592:72;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48573:91;;;48679:7;48671:16;;;::::0;::::1;;48566:127;48521:172::o:0;29432:177::-;29562:39;29579:4;29585:2;29589:7;29562:39;;;;;;;;;;;;:16;:39::i;:::-;29432:177;;;:::o;47799:80::-;41446:12;:10;:12::i;:::-;41435:23;;:7;:5;:7::i;:::-;:23;;;41427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47865:8:::1;47858:4;:15;;;;47799:80:::0;:::o;45401:29::-;;;;:::o;23309:187::-;23376:7;23412:13;:11;:13::i;:::-;23404:5;:21;23396:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23483:5;23476:12;;23309:187;;;:::o;48179:98::-;41446:12;:10;:12::i;:::-;41435:23;;:7;:5;:7::i;:::-;:23;;;41427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48260:11:::1;48250:7;:21;;;;;;;;;;;;:::i;:::-;;48179:98:::0;:::o;45435:41::-;;;;:::o;39049:86::-;39096:4;39120:7;;;;;;;;;;;39113:14;;39049:86;:::o;26570:124::-;26634:7;26661:20;26673:7;26661:11;:20::i;:::-;:25;;;26654:32;;26570:124;;;:::o;45301:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25311:221::-;25375:7;25420:1;25403:19;;:5;:19;;;25395:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25496:12;:19;25509:5;25496:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25488:36;;25481:43;;25311:221;;;:::o;41866:94::-;41446:12;:10;:12::i;:::-;41435:23;;:7;:5;:7::i;:::-;:23;;;41427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41931:21:::1;41949:1;41931:9;:21::i;:::-;41866:94::o:0;48699:162::-;41446:12;:10;:12::i;:::-;41435:23;;:7;:5;:7::i;:::-;:23;;;41427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48770:12:::1;48796:10;48788:24;;48820:7;48788:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48769:63;;;48847:7;48839:16;;;::::0;::::1;;48762:99;48699:162:::0;:::o;45530:59::-;;;;;;;;;;;;;;;;;:::o;41215:87::-;41261:7;41288:6;;;;;;;;;;;41281:13;;41215:87;:::o;26930:104::-;26986:13;27019:7;27012:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26930:104;:::o;46805:593::-;41446:12;:10;:12::i;:::-;41435:23;;:7;:5;:7::i;:::-;:23;;;41427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46952:9:::1;;:16;;46933:8;;:15;;:35;46917:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;47026:21;47058:9:::0;47070:13:::1;:11;:13::i;:::-;47058:25;;47095:9;47090:91;47114:8;;:15;;47110:1;:19;47090:91;;;47162:8;;47171:1;47162:11;;;;;;;:::i;:::-;;;;;;;;47145:28;;;;;:::i;:::-;;;47131:3;;;;:::i;:::-;;;47090:91;;;;47216:9;;47199:13;47195:1;:17;;;;:::i;:::-;:30;;47187:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47251:20;;;47283:9;47278:100;47302:9;;:16;;47298:1;:20;47278:100;;;47334:36;47344:9;;47354:1;47344:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;47358:8;;47367:1;47358:11;;;;;;;:::i;:::-;;;;;;;;47334:9;:36::i;:::-;47320:3;;;;:::i;:::-;;;47278:100;;;;47384:8;;;46910:488;;46805:593:::0;;;;:::o;46392:407::-;44210:1;44806:7;;:19;44798:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44210:1;44939:7;:18;;;;46462:9:::1;46474:13;:11;:13::i;:::-;46462:25;;46516:1;46502:11;:15;46494:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;46569:23;;46554:11;:38;;46546:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;46652:9;;46637:11;46633:1;:15;;;;:::i;:::-;:28;;46625:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46725:11;46718:4;;:18;;;;:::i;:::-;46705:9;:31;;46697:40;;;::::0;::::1;;46744:34;46754:10;46766:11;46744:9;:34::i;:::-;46785:8;;;46455:344;44166:1:::0;45118:7;:22;;;;46392:407;:::o;28609:288::-;28716:12;:10;:12::i;:::-;28704:24;;:8;:24;;;28696:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28817:8;28772:18;:32;28791:12;:10;:12::i;:::-;28772:32;;;;;;;;;;;;;;;:42;28805:8;28772:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28870:8;28841:48;;28856:12;:10;:12::i;:::-;28841:48;;;28880:8;28841:48;;;;;;:::i;:::-;;;;;;;;28609:288;;:::o;45784:602::-;44210:1;44806:7;;:19;44798:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44210:1;44939:7;:18;;;;45855:9:::1;45867:13;:11;:13::i;:::-;45855:25;;45887:30;45920:24;:36;45945:10;45920:36;;;;;;;;;;;;;;;;45887:69;;46011:22;;45996:11;45971:22;:36;;;;:::i;:::-;:62;;45963:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;46095:1;46081:11;:15;46073:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;46153:7;;46138:11;46134:1;:15;;;;:::i;:::-;:26;;46126:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46202:9;46197:95;46221:11;46217:1;:15;46197:95;;;46248:24;:36;46273:10;46248:36;;;;;;;;;;;;;;;;:38;;;;;;;;;:::i;:::-;;;;;;46234:3;;;;:::i;:::-;;;46197:95;;;;46298:34;46308:10;46320:11;46298:9;:34::i;:::-;46337:8;;;46352:29;;;45850:536;;44166:1:::0;45118:7;:22;;;;45784:602;:::o;29680:355::-;29839:28;29849:4;29855:2;29859:7;29839:9;:28::i;:::-;29900:48;29923:4;29929:2;29933:7;29942:5;29900:22;:48::i;:::-;29878:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;29680:355;;;;:::o;48063:110::-;41446:12;:10;:12::i;:::-;41435:23;;:7;:5;:7::i;:::-;:23;;;41427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48150:17:::1;48140:7;:27;;;;48063:110:::0;:::o;47404:387::-;47502:13;47535:16;47543:7;47535;:16::i;:::-;47527:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47596:28;47627:10;:8;:10::i;:::-;47596:41;;47689:1;47664:14;47658:28;:32;:127;;;;;;;;;;;;;;;;;47726:14;47742:18;:7;:16;:18::i;:::-;47709:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47658:127;47644:141;;;47404:387;;;:::o;45365:31::-;;;;:::o;48405:112::-;41446:12;:10;:12::i;:::-;41435:23;;:7;:5;:7::i;:::-;:23;;;41427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48504:7:::1;48479:22;:32;;;;48405:112:::0;:::o;28968:164::-;29065:4;29089:18;:25;29108:5;29089:25;;;;;;;;;;;;;;;:35;29115:8;29089:35;;;;;;;;;;;;;;;;;;;;;;;;;29082:42;;28968:164;;;;:::o;42115:229::-;41446:12;:10;:12::i;:::-;41435:23;;:7;:5;:7::i;:::-;:23;;;41427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42238:1:::1;42218:22;;:8;:22;;::::0;42196:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;42317:19;42327:8;42317:9;:19::i;:::-;42115:229:::0;:::o;14391:157::-;14476:4;14515:25;14500:40;;;:11;:40;;;;14493:47;;14391:157;;;:::o;2838:98::-;2891:7;2918:10;2911:17;;2838:98;:::o;30290:111::-;30347:4;30381:12;;30371:7;:22;30364:29;;30290:111;;;:::o;35210:196::-;35352:2;35325:15;:24;35341:7;35325:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35390:7;35386:2;35370:28;;35379:5;35370:28;;;;;;;;;;;;35210:196;;;:::o;33090:2002::-;33205:35;33243:20;33255:7;33243:11;:20::i;:::-;33205:58;;33276:22;33318:13;:18;;;33302:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;33377:12;:10;:12::i;:::-;33353:36;;:20;33365:7;33353:11;:20::i;:::-;:36;;;33302:87;:154;;;;33406:50;33423:13;:18;;;33443:12;:10;:12::i;:::-;33406:16;:50::i;:::-;33302:154;33276:181;;33478:17;33470:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;33593:4;33571:26;;:13;:18;;;:26;;;33563:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;33673:1;33659:16;;:2;:16;;;33651:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;33730:43;33752:4;33758:2;33762:7;33771:1;33730:21;:43::i;:::-;33838:49;33855:1;33859:7;33868:13;:18;;;33838:8;:49::i;:::-;34213:1;34183:12;:18;34196:4;34183:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34257:1;34229:12;:16;34242:2;34229:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34303:2;34275:11;:20;34287:7;34275:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;34365:15;34320:11;:20;34332:7;34320:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;34633:19;34665:1;34655:7;:11;34633:33;;34726:1;34685:43;;:11;:24;34697:11;34685:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;34681:295;;34753:20;34761:11;34753:7;:20::i;:::-;34749:212;;;34830:13;:18;;;34798:11;:24;34810:11;34798:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;34913:13;:28;;;34871:11;:24;34883:11;34871:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;34749:212;34681:295;34158:829;35023:7;35019:2;35004:27;;35013:4;35004:27;;;;;;;;;;;;35042:42;35063:4;35069:2;35073:7;35082:1;35042:20;:42::i;:::-;33194:1898;;33090:2002;;;:::o;25971:537::-;26032:21;;:::i;:::-;26074:16;26082:7;26074;:16::i;:::-;26066:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26180:12;26195:7;26180:22;;26175:245;26212:1;26204:4;:9;26175:245;;26242:31;26276:11;:17;26288:4;26276:17;;;;;;;;;;;26242:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26342:1;26316:28;;:9;:14;;;:28;;;26312:93;;26376:9;26369:16;;;;;;26312:93;26223:197;26215:6;;;;;;;;26175:245;;;;26443:57;;;;;;;;;;:::i;:::-;;;;;;;;25971:537;;;;:::o;42352:173::-;42408:16;42427:6;;;;;;;;;;;42408:25;;42453:8;42444:6;;:17;;;;;;;;;;;;;;;;;;42508:8;42477:40;;42498:8;42477:40;;;;;;;;;;;;42397:128;42352:173;:::o;30409:104::-;30478:27;30488:2;30492:8;30478:27;;;;;;;;;;;;:9;:27::i;:::-;30409:104;;:::o;35971:804::-;36126:4;36147:15;:2;:13;;;:15::i;:::-;36143:625;;;36199:2;36183:36;;;36220:12;:10;:12::i;:::-;36234:4;36240:7;36249:5;36183:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36179:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36446:1;36429:6;:13;:18;36425:273;;36472:61;;;;;;;;;;:::i;:::-;;;;;;;;36425:273;36648:6;36642:13;36633:6;36629:2;36625:15;36618:38;36179:534;36316:45;;;36306:55;;;:6;:55;;;;36299:62;;;;;36143:625;36752:4;36745:11;;35971:804;;;;;;;:::o;45676:102::-;45736:13;45765:7;45758:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45676:102;:::o;400:723::-;456:13;686:1;677:5;:10;673:53;;704:10;;;;;;;;;;;;;;;;;;;;;673:53;736:12;751:5;736:20;;767:14;792:78;807:1;799:4;:9;792:78;;825:8;;;;;:::i;:::-;;;;856:2;848:10;;;;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880:39;;930:154;946:1;937:5;:10;930:154;;974:1;964:11;;;;;:::i;:::-;;;1041:2;1033:5;:10;;;;:::i;:::-;1020:2;:24;;;;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1070:2;1061:11;;;;;:::i;:::-;;;930:154;;;1108:6;1094:21;;;;;400:723;;;;:::o;37263:159::-;;;;;:::o;37834:158::-;;;;;:::o;30876:163::-;30999:32;31005:2;31009:8;31019:5;31026:4;30999:5;:32::i;:::-;30876:163;;;:::o;4285:326::-;4345:4;4602:1;4580:7;:19;;;:23;4573:30;;4285:326;;;:::o;31298:1538::-;31437:20;31460:12;;31437:35;;31505:1;31491:16;;:2;:16;;;31483:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31576:1;31564:8;:13;31556:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31635:61;31665:1;31669:2;31673:12;31687:8;31635:21;:61::i;:::-;32010:8;31974:12;:16;31987:2;31974:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32075:8;32034:12;:16;32047:2;32034:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32134:2;32101:11;:25;32113:12;32101:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32201:15;32151:11;:25;32163:12;32151:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32234:20;32257:12;32234:35;;32291:9;32286:415;32306:8;32302:1;:12;32286:415;;;32370:12;32366:2;32345:38;;32362:1;32345:38;;;;;;;;;;;;32406:4;32402:249;;;32469:59;32500:1;32504:2;32508:12;32522:5;32469:22;:59::i;:::-;32435:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;32402:249;32671:14;;;;;;;32316:3;;;;;;;32286:415;;;;32732:12;32717;:27;;;;31949:807;32768:60;32797:1;32801:2;32805:12;32819:8;32768:20;:60::i;:::-;31426:1410;31298:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:122::-;1674:24;1692:5;1674:24;:::i;:::-;1667:5;1664:35;1654:63;;1713:1;1710;1703:12;1654:63;1601:122;:::o;1729:139::-;1775:5;1813:6;1800:20;1791:29;;1829:33;1856:5;1829:33;:::i;:::-;1729:139;;;;:::o;1874:329::-;1933:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:119;;;1988:79;;:::i;:::-;1950:119;2108:1;2133:53;2178:7;2169:6;2158:9;2154:22;2133:53;:::i;:::-;2123:63;;2079:117;1874:329;;;;:::o;2209:99::-;2261:6;2295:5;2289:12;2279:22;;2209:99;;;:::o;2314:169::-;2398:11;2432:6;2427:3;2420:19;2472:4;2467:3;2463:14;2448:29;;2314:169;;;;:::o;2489:307::-;2557:1;2567:113;2581:6;2578:1;2575:13;2567:113;;;2666:1;2661:3;2657:11;2651:18;2647:1;2642:3;2638:11;2631:39;2603:2;2600:1;2596:10;2591:15;;2567:113;;;2698:6;2695:1;2692:13;2689:101;;;2778:1;2769:6;2764:3;2760:16;2753:27;2689:101;2538:258;2489:307;;;:::o;2802:102::-;2843:6;2894:2;2890:7;2885:2;2878:5;2874:14;2870:28;2860:38;;2802:102;;;:::o;2910:364::-;2998:3;3026:39;3059:5;3026:39;:::i;:::-;3081:71;3145:6;3140:3;3081:71;:::i;:::-;3074:78;;3161:52;3206:6;3201:3;3194:4;3187:5;3183:16;3161:52;:::i;:::-;3238:29;3260:6;3238:29;:::i;:::-;3233:3;3229:39;3222:46;;3002:272;2910:364;;;;:::o;3280:313::-;3393:4;3431:2;3420:9;3416:18;3408:26;;3480:9;3474:4;3470:20;3466:1;3455:9;3451:17;3444:47;3508:78;3581:4;3572:6;3508:78;:::i;:::-;3500:86;;3280:313;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:117::-;8980:1;8977;8970:12;8994:117;9103:1;9100;9093:12;9134:568;9207:8;9217:6;9267:3;9260:4;9252:6;9248:17;9244:27;9234:122;;9275:79;;:::i;:::-;9234:122;9388:6;9375:20;9365:30;;9418:18;9410:6;9407:30;9404:117;;;9440:79;;:::i;:::-;9404:117;9554:4;9546:6;9542:17;9530:29;;9608:3;9600:4;9592:6;9588:17;9578:8;9574:32;9571:41;9568:128;;;9615:79;;:::i;:::-;9568:128;9134:568;;;;;:::o;9725:::-;9798:8;9808:6;9858:3;9851:4;9843:6;9839:17;9835:27;9825:122;;9866:79;;:::i;:::-;9825:122;9979:6;9966:20;9956:30;;10009:18;10001:6;9998:30;9995:117;;;10031:79;;:::i;:::-;9995:117;10145:4;10137:6;10133:17;10121:29;;10199:3;10191:4;10183:6;10179:17;10169:8;10165:32;10162:41;10159:128;;;10206:79;;:::i;:::-;10159:128;9725:568;;;;;:::o;10299:934::-;10421:6;10429;10437;10445;10494:2;10482:9;10473:7;10469:23;10465:32;10462:119;;;10500:79;;:::i;:::-;10462:119;10648:1;10637:9;10633:17;10620:31;10678:18;10670:6;10667:30;10664:117;;;10700:79;;:::i;:::-;10664:117;10813:80;10885:7;10876:6;10865:9;10861:22;10813:80;:::i;:::-;10795:98;;;;10591:312;10970:2;10959:9;10955:18;10942:32;11001:18;10993:6;10990:30;10987:117;;;11023:79;;:::i;:::-;10987:117;11136:80;11208:7;11199:6;11188:9;11184:22;11136:80;:::i;:::-;11118:98;;;;10913:313;10299:934;;;;;;;:::o;11239:116::-;11309:21;11324:5;11309:21;:::i;:::-;11302:5;11299:32;11289:60;;11345:1;11342;11335:12;11289:60;11239:116;:::o;11361:133::-;11404:5;11442:6;11429:20;11420:29;;11458:30;11482:5;11458:30;:::i;:::-;11361:133;;;;:::o;11500:468::-;11565:6;11573;11622:2;11610:9;11601:7;11597:23;11593:32;11590:119;;;11628:79;;:::i;:::-;11590:119;11748:1;11773:53;11818:7;11809:6;11798:9;11794:22;11773:53;:::i;:::-;11763:63;;11719:117;11875:2;11901:50;11943:7;11934:6;11923:9;11919:22;11901:50;:::i;:::-;11891:60;;11846:115;11500:468;;;;;:::o;11974:307::-;12035:4;12125:18;12117:6;12114:30;12111:56;;;12147:18;;:::i;:::-;12111:56;12185:29;12207:6;12185:29;:::i;:::-;12177:37;;12269:4;12263;12259:15;12251:23;;11974:307;;;:::o;12287:410::-;12364:5;12389:65;12405:48;12446:6;12405:48;:::i;:::-;12389:65;:::i;:::-;12380:74;;12477:6;12470:5;12463:21;12515:4;12508:5;12504:16;12553:3;12544:6;12539:3;12535:16;12532:25;12529:112;;;12560:79;;:::i;:::-;12529:112;12650:41;12684:6;12679:3;12674;12650:41;:::i;:::-;12370:327;12287:410;;;;;:::o;12716:338::-;12771:5;12820:3;12813:4;12805:6;12801:17;12797:27;12787:122;;12828:79;;:::i;:::-;12787:122;12945:6;12932:20;12970:78;13044:3;13036:6;13029:4;13021:6;13017:17;12970:78;:::i;:::-;12961:87;;12777:277;12716:338;;;;:::o;13060:943::-;13155:6;13163;13171;13179;13228:3;13216:9;13207:7;13203:23;13199:33;13196:120;;;13235:79;;:::i;:::-;13196:120;13355:1;13380:53;13425:7;13416:6;13405:9;13401:22;13380:53;:::i;:::-;13370:63;;13326:117;13482:2;13508:53;13553:7;13544:6;13533:9;13529:22;13508:53;:::i;:::-;13498:63;;13453:118;13610:2;13636:53;13681:7;13672:6;13661:9;13657:22;13636:53;:::i;:::-;13626:63;;13581:118;13766:2;13755:9;13751:18;13738:32;13797:18;13789:6;13786:30;13783:117;;;13819:79;;:::i;:::-;13783:117;13924:62;13978:7;13969:6;13958:9;13954:22;13924:62;:::i;:::-;13914:72;;13709:287;13060:943;;;;;;;:::o;14009:474::-;14077:6;14085;14134:2;14122:9;14113:7;14109:23;14105:32;14102:119;;;14140:79;;:::i;:::-;14102:119;14260:1;14285:53;14330:7;14321:6;14310:9;14306:22;14285:53;:::i;:::-;14275:63;;14231:117;14387:2;14413:53;14458:7;14449:6;14438:9;14434:22;14413:53;:::i;:::-;14403:63;;14358:118;14009:474;;;;;:::o;14489:182::-;14629:34;14625:1;14617:6;14613:14;14606:58;14489:182;:::o;14677:366::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14677:366;;;:::o;15049:419::-;15215:4;15253:2;15242:9;15238:18;15230:26;;15302:9;15296:4;15292:20;15288:1;15277:9;15273:17;15266:47;15330:131;15456:4;15330:131;:::i;:::-;15322:139;;15049:419;;;:::o;15474:180::-;15522:77;15519:1;15512:88;15619:4;15616:1;15609:15;15643:4;15640:1;15633:15;15660:320;15704:6;15741:1;15735:4;15731:12;15721:22;;15788:1;15782:4;15778:12;15809:18;15799:81;;15865:4;15857:6;15853:17;15843:27;;15799:81;15927:2;15919:6;15916:14;15896:18;15893:38;15890:84;;15946:18;;:::i;:::-;15890:84;15711:269;15660:320;;;:::o;15986:232::-;16126:34;16122:1;16114:6;16110:14;16103:58;16195:15;16190:2;16182:6;16178:15;16171:40;15986:232;:::o;16224:366::-;16366:3;16387:67;16451:2;16446:3;16387:67;:::i;:::-;16380:74;;16463:93;16552:3;16463:93;:::i;:::-;16581:2;16576:3;16572:12;16565:19;;16224:366;;;:::o;16596:419::-;16762:4;16800:2;16789:9;16785:18;16777:26;;16849:9;16843:4;16839:20;16835:1;16824:9;16820:17;16813:47;16877:131;17003:4;16877:131;:::i;:::-;16869:139;;16596:419;;;:::o;17021:221::-;17161:34;17157:1;17149:6;17145:14;17138:58;17230:4;17225:2;17217:6;17213:15;17206:29;17021:221;:::o;17248:366::-;17390:3;17411:67;17475:2;17470:3;17411:67;:::i;:::-;17404:74;;17487:93;17576:3;17487:93;:::i;:::-;17605:2;17600:3;17596:12;17589:19;;17248:366;;;:::o;17620:419::-;17786:4;17824:2;17813:9;17809:18;17801:26;;17873:9;17867:4;17863:20;17859:1;17848:9;17844:17;17837:47;17901:131;18027:4;17901:131;:::i;:::-;17893:139;;17620:419;;;:::o;18045:244::-;18185:34;18181:1;18173:6;18169:14;18162:58;18254:27;18249:2;18241:6;18237:15;18230:52;18045:244;:::o;18295:366::-;18437:3;18458:67;18522:2;18517:3;18458:67;:::i;:::-;18451:74;;18534:93;18623:3;18534:93;:::i;:::-;18652:2;18647:3;18643:12;18636:19;;18295:366;;;:::o;18667:419::-;18833:4;18871:2;18860:9;18856:18;18848:26;;18920:9;18914:4;18910:20;18906:1;18895:9;18891:17;18884:47;18948:131;19074:4;18948:131;:::i;:::-;18940:139;;18667:419;;;:::o;19092:176::-;19232:28;19228:1;19220:6;19216:14;19209:52;19092:176;:::o;19274:366::-;19416:3;19437:67;19501:2;19496:3;19437:67;:::i;:::-;19430:74;;19513:93;19602:3;19513:93;:::i;:::-;19631:2;19626:3;19622:12;19615:19;;19274:366;;;:::o;19646:419::-;19812:4;19850:2;19839:9;19835:18;19827:26;;19899:9;19893:4;19889:20;19885:1;19874:9;19870:17;19863:47;19927:131;20053:4;19927:131;:::i;:::-;19919:139;;19646:419;;;:::o;20071:221::-;20211:34;20207:1;20199:6;20195:14;20188:58;20280:4;20275:2;20267:6;20263:15;20256:29;20071:221;:::o;20298:366::-;20440:3;20461:67;20525:2;20520:3;20461:67;:::i;:::-;20454:74;;20537:93;20626:3;20537:93;:::i;:::-;20655:2;20650:3;20646:12;20639:19;;20298:366;;;:::o;20670:419::-;20836:4;20874:2;20863:9;20859:18;20851:26;;20923:9;20917:4;20913:20;20909:1;20898:9;20894:17;20887:47;20951:131;21077:4;20951:131;:::i;:::-;20943:139;;20670:419;;;:::o;21095:233::-;21235:34;21231:1;21223:6;21219:14;21212:58;21304:16;21299:2;21291:6;21287:15;21280:41;21095:233;:::o;21334:366::-;21476:3;21497:67;21561:2;21556:3;21497:67;:::i;:::-;21490:74;;21573:93;21662:3;21573:93;:::i;:::-;21691:2;21686:3;21682:12;21675:19;;21334:366;;;:::o;21706:419::-;21872:4;21910:2;21899:9;21895:18;21887:26;;21959:9;21953:4;21949:20;21945:1;21934:9;21930:17;21923:47;21987:131;22113:4;21987:131;:::i;:::-;21979:139;;21706:419;;;:::o;22131:147::-;22232:11;22269:3;22254:18;;22131:147;;;;:::o;22284:114::-;;:::o;22404:398::-;22563:3;22584:83;22665:1;22660:3;22584:83;:::i;:::-;22577:90;;22676:93;22765:3;22676:93;:::i;:::-;22794:1;22789:3;22785:11;22778:18;;22404:398;;;:::o;22808:379::-;22992:3;23014:147;23157:3;23014:147;:::i;:::-;23007:154;;23178:3;23171:10;;22808:379;;;:::o;23193:222::-;23333:34;23329:1;23321:6;23317:14;23310:58;23402:5;23397:2;23389:6;23385:15;23378:30;23193:222;:::o;23421:366::-;23563:3;23584:67;23648:2;23643:3;23584:67;:::i;:::-;23577:74;;23660:93;23749:3;23660:93;:::i;:::-;23778:2;23773:3;23769:12;23762:19;;23421:366;;;:::o;23793:419::-;23959:4;23997:2;23986:9;23982:18;23974:26;;24046:9;24040:4;24036:20;24032:1;24021:9;24017:17;24010:47;24074:131;24200:4;24074:131;:::i;:::-;24066:139;;23793:419;;;:::o;24218:230::-;24358:34;24354:1;24346:6;24342:14;24335:58;24427:13;24422:2;24414:6;24410:15;24403:38;24218:230;:::o;24454:366::-;24596:3;24617:67;24681:2;24676:3;24617:67;:::i;:::-;24610:74;;24693:93;24782:3;24693:93;:::i;:::-;24811:2;24806:3;24802:12;24795:19;;24454:366;;;:::o;24826:419::-;24992:4;25030:2;25019:9;25015:18;25007:26;;25079:9;25073:4;25069:20;25065:1;25054:9;25050:17;25043:47;25107:131;25233:4;25107:131;:::i;:::-;25099:139;;24826:419;;;:::o;25251:220::-;25391:34;25387:1;25379:6;25375:14;25368:58;25460:3;25455:2;25447:6;25443:15;25436:28;25251:220;:::o;25477:366::-;25619:3;25640:67;25704:2;25699:3;25640:67;:::i;:::-;25633:74;;25716:93;25805:3;25716:93;:::i;:::-;25834:2;25829:3;25825:12;25818:19;;25477:366;;;:::o;25849:419::-;26015:4;26053:2;26042:9;26038:18;26030:26;;26102:9;26096:4;26092:20;26088:1;26077:9;26073:17;26066:47;26130:131;26256:4;26130:131;:::i;:::-;26122:139;;25849:419;;;:::o;26274:180::-;26322:77;26319:1;26312:88;26419:4;26416:1;26409:15;26443:4;26440:1;26433:15;26460:180;26508:77;26505:1;26498:88;26605:4;26602:1;26595:15;26629:4;26626:1;26619:15;26646:305;26686:3;26705:20;26723:1;26705:20;:::i;:::-;26700:25;;26739:20;26757:1;26739:20;:::i;:::-;26734:25;;26893:1;26825:66;26821:74;26818:1;26815:81;26812:107;;;26899:18;;:::i;:::-;26812:107;26943:1;26940;26936:9;26929:16;;26646:305;;;;:::o;26957:233::-;26996:3;27019:24;27037:5;27019:24;:::i;:::-;27010:33;;27065:66;27058:5;27055:77;27052:103;;27135:18;;:::i;:::-;27052:103;27182:1;27175:5;27171:13;27164:20;;26957:233;;;:::o;27196:164::-;27336:16;27332:1;27324:6;27320:14;27313:40;27196:164;:::o;27366:366::-;27508:3;27529:67;27593:2;27588:3;27529:67;:::i;:::-;27522:74;;27605:93;27694:3;27605:93;:::i;:::-;27723:2;27718:3;27714:12;27707:19;;27366:366;;;:::o;27738:419::-;27904:4;27942:2;27931:9;27927:18;27919:26;;27991:9;27985:4;27981:20;27977:1;27966:9;27962:17;27955:47;28019:131;28145:4;28019:131;:::i;:::-;28011:139;;27738:419;;;:::o;28163:181::-;28303:33;28299:1;28291:6;28287:14;28280:57;28163:181;:::o;28350:366::-;28492:3;28513:67;28577:2;28572:3;28513:67;:::i;:::-;28506:74;;28589:93;28678:3;28589:93;:::i;:::-;28707:2;28702:3;28698:12;28691:19;;28350:366;;;:::o;28722:419::-;28888:4;28926:2;28915:9;28911:18;28903:26;;28975:9;28969:4;28965:20;28961:1;28950:9;28946:17;28939:47;29003:131;29129:4;29003:131;:::i;:::-;28995:139;;28722:419;;;:::o;29147:167::-;29287:19;29283:1;29275:6;29271:14;29264:43;29147:167;:::o;29320:366::-;29462:3;29483:67;29547:2;29542:3;29483:67;:::i;:::-;29476:74;;29559:93;29648:3;29559:93;:::i;:::-;29677:2;29672:3;29668:12;29661:19;;29320:366;;;:::o;29692:419::-;29858:4;29896:2;29885:9;29881:18;29873:26;;29945:9;29939:4;29935:20;29931:1;29920:9;29916:17;29909:47;29973:131;30099:4;29973:131;:::i;:::-;29965:139;;29692:419;;;:::o;30117:170::-;30257:22;30253:1;30245:6;30241:14;30234:46;30117:170;:::o;30293:366::-;30435:3;30456:67;30520:2;30515:3;30456:67;:::i;:::-;30449:74;;30532:93;30621:3;30532:93;:::i;:::-;30650:2;30645:3;30641:12;30634:19;;30293:366;;;:::o;30665:419::-;30831:4;30869:2;30858:9;30854:18;30846:26;;30918:9;30912:4;30908:20;30904:1;30893:9;30889:17;30882:47;30946:131;31072:4;30946:131;:::i;:::-;30938:139;;30665:419;;;:::o;31090:174::-;31230:26;31226:1;31218:6;31214:14;31207:50;31090:174;:::o;31270:366::-;31412:3;31433:67;31497:2;31492:3;31433:67;:::i;:::-;31426:74;;31509:93;31598:3;31509:93;:::i;:::-;31627:2;31622:3;31618:12;31611:19;;31270:366;;;:::o;31642:419::-;31808:4;31846:2;31835:9;31831:18;31823:26;;31895:9;31889:4;31885:20;31881:1;31870:9;31866:17;31859:47;31923:131;32049:4;31923:131;:::i;:::-;31915:139;;31642:419;;;:::o;32067:348::-;32107:7;32130:20;32148:1;32130:20;:::i;:::-;32125:25;;32164:20;32182:1;32164:20;:::i;:::-;32159:25;;32352:1;32284:66;32280:74;32277:1;32274:81;32269:1;32262:9;32255:17;32251:105;32248:131;;;32359:18;;:::i;:::-;32248:131;32407:1;32404;32400:9;32389:20;;32067:348;;;;:::o;32421:176::-;32561:28;32557:1;32549:6;32545:14;32538:52;32421:176;:::o;32603:366::-;32745:3;32766:67;32830:2;32825:3;32766:67;:::i;:::-;32759:74;;32842:93;32931:3;32842:93;:::i;:::-;32960:2;32955:3;32951:12;32944:19;;32603:366;;;:::o;32975:419::-;33141:4;33179:2;33168:9;33164:18;33156:26;;33228:9;33222:4;33218:20;33214:1;33203:9;33199:17;33192:47;33256:131;33382:4;33256:131;:::i;:::-;33248:139;;32975:419;;;:::o;33400:180::-;33540:32;33536:1;33528:6;33524:14;33517:56;33400:180;:::o;33586:366::-;33728:3;33749:67;33813:2;33808:3;33749:67;:::i;:::-;33742:74;;33825:93;33914:3;33825:93;:::i;:::-;33943:2;33938:3;33934:12;33927:19;;33586:366;;;:::o;33958:419::-;34124:4;34162:2;34151:9;34147:18;34139:26;;34211:9;34205:4;34201:20;34197:1;34186:9;34182:17;34175:47;34239:131;34365:4;34239:131;:::i;:::-;34231:139;;33958:419;;;:::o;34383:169::-;34523:21;34519:1;34511:6;34507:14;34500:45;34383:169;:::o;34558:366::-;34700:3;34721:67;34785:2;34780:3;34721:67;:::i;:::-;34714:74;;34797:93;34886:3;34797:93;:::i;:::-;34915:2;34910:3;34906:12;34899:19;;34558:366;;;:::o;34930:419::-;35096:4;35134:2;35123:9;35119:18;35111:26;;35183:9;35177:4;35173:20;35169:1;35158:9;35154:17;35147:47;35211:131;35337:4;35211:131;:::i;:::-;35203:139;;34930:419;;;:::o;35355:176::-;35495:28;35491:1;35483:6;35479:14;35472:52;35355:176;:::o;35537:366::-;35679:3;35700:67;35764:2;35759:3;35700:67;:::i;:::-;35693:74;;35776:93;35865:3;35776:93;:::i;:::-;35894:2;35889:3;35885:12;35878:19;;35537:366;;;:::o;35909:419::-;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:238::-;36474:34;36470:1;36462:6;36458:14;36451:58;36543:21;36538:2;36530:6;36526:15;36519:46;36334:238;:::o;36578:366::-;36720:3;36741:67;36805:2;36800:3;36741:67;:::i;:::-;36734:74;;36817:93;36906:3;36817:93;:::i;:::-;36935:2;36930:3;36926:12;36919:19;;36578:366;;;:::o;36950:419::-;37116:4;37154:2;37143:9;37139:18;37131:26;;37203:9;37197:4;37193:20;37189:1;37178:9;37174:17;37167:47;37231:131;37357:4;37231:131;:::i;:::-;37223:139;;36950:419;;;:::o;37375:220::-;37515:34;37511:1;37503:6;37499:14;37492:58;37584:3;37579:2;37571:6;37567:15;37560:28;37375:220;:::o;37601:366::-;37743:3;37764:67;37828:2;37823:3;37764:67;:::i;:::-;37757:74;;37840:93;37929:3;37840:93;:::i;:::-;37958:2;37953:3;37949:12;37942:19;;37601:366;;;:::o;37973:419::-;38139:4;38177:2;38166:9;38162:18;38154:26;;38226:9;38220:4;38216:20;38212:1;38201:9;38197:17;38190:47;38254:131;38380:4;38254:131;:::i;:::-;38246:139;;37973:419;;;:::o;38398:148::-;38500:11;38537:3;38522:18;;38398:148;;;;:::o;38552:377::-;38658:3;38686:39;38719:5;38686:39;:::i;:::-;38741:89;38823:6;38818:3;38741:89;:::i;:::-;38734:96;;38839:52;38884:6;38879:3;38872:4;38865:5;38861:16;38839:52;:::i;:::-;38916:6;38911:3;38907:16;38900:23;;38662:267;38552:377;;;;:::o;38935:155::-;39075:7;39071:1;39063:6;39059:14;39052:31;38935:155;:::o;39096:400::-;39256:3;39277:84;39359:1;39354:3;39277:84;:::i;:::-;39270:91;;39370:93;39459:3;39370:93;:::i;:::-;39488:1;39483:3;39479:11;39472:18;;39096:400;;;:::o;39502:701::-;39783:3;39805:95;39896:3;39887:6;39805:95;:::i;:::-;39798:102;;39917:95;40008:3;39999:6;39917:95;:::i;:::-;39910:102;;40029:148;40173:3;40029:148;:::i;:::-;40022:155;;40194:3;40187:10;;39502:701;;;;;:::o;40209:225::-;40349:34;40345:1;40337:6;40333:14;40326:58;40418:8;40413:2;40405:6;40401:15;40394:33;40209:225;:::o;40440:366::-;40582:3;40603:67;40667:2;40662:3;40603:67;:::i;:::-;40596:74;;40679:93;40768:3;40679:93;:::i;:::-;40797:2;40792:3;40788:12;40781:19;;40440:366;;;:::o;40812:419::-;40978:4;41016:2;41005:9;41001:18;40993:26;;41065:9;41059:4;41055:20;41051:1;41040:9;41036:17;41029:47;41093:131;41219:4;41093:131;:::i;:::-;41085:139;;40812:419;;;:::o;41237:237::-;41377:34;41373:1;41365:6;41361:14;41354:58;41446:20;41441:2;41433:6;41429:15;41422:45;41237:237;:::o;41480:366::-;41622:3;41643:67;41707:2;41702:3;41643:67;:::i;:::-;41636:74;;41719:93;41808:3;41719:93;:::i;:::-;41837:2;41832:3;41828:12;41821:19;;41480:366;;;:::o;41852:419::-;42018:4;42056:2;42045:9;42041:18;42033:26;;42105:9;42099:4;42095:20;42091:1;42080:9;42076:17;42069:47;42133:131;42259:4;42133:131;:::i;:::-;42125:139;;41852:419;;;:::o;42277:225::-;42417:34;42413:1;42405:6;42401:14;42394:58;42486:8;42481:2;42473:6;42469:15;42462:33;42277:225;:::o;42508:366::-;42650:3;42671:67;42735:2;42730:3;42671:67;:::i;:::-;42664:74;;42747:93;42836:3;42747:93;:::i;:::-;42865:2;42860:3;42856:12;42849:19;;42508:366;;;:::o;42880:419::-;43046:4;43084:2;43073:9;43069:18;43061:26;;43133:9;43127:4;43123:20;43119:1;43108:9;43104:17;43097:47;43161:131;43287:4;43161:131;:::i;:::-;43153:139;;42880:419;;;:::o;43305:224::-;43445:34;43441:1;43433:6;43429:14;43422:58;43514:7;43509:2;43501:6;43497:15;43490:32;43305:224;:::o;43535:366::-;43677:3;43698:67;43762:2;43757:3;43698:67;:::i;:::-;43691:74;;43774:93;43863:3;43774:93;:::i;:::-;43892:2;43887:3;43883:12;43876:19;;43535:366;;;:::o;43907:419::-;44073:4;44111:2;44100:9;44096:18;44088:26;;44160:9;44154:4;44150:20;44146:1;44135:9;44131:17;44124:47;44188:131;44314:4;44188:131;:::i;:::-;44180:139;;43907:419;;;:::o;44332:229::-;44472:34;44468:1;44460:6;44456:14;44449:58;44541:12;44536:2;44528:6;44524:15;44517:37;44332:229;:::o;44567:366::-;44709:3;44730:67;44794:2;44789:3;44730:67;:::i;:::-;44723:74;;44806:93;44895:3;44806:93;:::i;:::-;44924:2;44919:3;44915:12;44908:19;;44567:366;;;:::o;44939:419::-;45105:4;45143:2;45132:9;45128:18;45120:26;;45192:9;45186:4;45182:20;45178:1;45167:9;45163:17;45156:47;45220:131;45346:4;45220:131;:::i;:::-;45212:139;;44939:419;;;:::o;45364:234::-;45504:34;45500:1;45492:6;45488:14;45481:58;45573:17;45568:2;45560:6;45556:15;45549:42;45364:234;:::o;45604:366::-;45746:3;45767:67;45831:2;45826:3;45767:67;:::i;:::-;45760:74;;45843:93;45932:3;45843:93;:::i;:::-;45961:2;45956:3;45952:12;45945:19;;45604:366;;;:::o;45976:419::-;46142:4;46180:2;46169:9;46165:18;46157:26;;46229:9;46223:4;46219:20;46215:1;46204:9;46200:17;46193:47;46257:131;46383:4;46257:131;:::i;:::-;46249:139;;45976:419;;;:::o;46401:98::-;46452:6;46486:5;46480:12;46470:22;;46401:98;;;:::o;46505:168::-;46588:11;46622:6;46617:3;46610:19;46662:4;46657:3;46653:14;46638:29;;46505:168;;;;:::o;46679:360::-;46765:3;46793:38;46825:5;46793:38;:::i;:::-;46847:70;46910:6;46905:3;46847:70;:::i;:::-;46840:77;;46926:52;46971:6;46966:3;46959:4;46952:5;46948:16;46926:52;:::i;:::-;47003:29;47025:6;47003:29;:::i;:::-;46998:3;46994:39;46987:46;;46769:270;46679:360;;;;:::o;47045:640::-;47240:4;47278:3;47267:9;47263:19;47255:27;;47292:71;47360:1;47349:9;47345:17;47336:6;47292:71;:::i;:::-;47373:72;47441:2;47430:9;47426:18;47417:6;47373:72;:::i;:::-;47455;47523:2;47512:9;47508:18;47499:6;47455:72;:::i;:::-;47574:9;47568:4;47564:20;47559:2;47548:9;47544:18;47537:48;47602:76;47673:4;47664:6;47602:76;:::i;:::-;47594:84;;47045:640;;;;;;;:::o;47691:141::-;47747:5;47778:6;47772:13;47763:22;;47794:32;47820:5;47794:32;:::i;:::-;47691:141;;;;:::o;47838:349::-;47907:6;47956:2;47944:9;47935:7;47931:23;47927:32;47924:119;;;47962:79;;:::i;:::-;47924:119;48082:1;48107:63;48162:7;48153:6;48142:9;48138:22;48107:63;:::i;:::-;48097:73;;48053:127;47838:349;;;;:::o;48193:180::-;48241:77;48238:1;48231:88;48338:4;48335:1;48328:15;48362:4;48359:1;48352:15;48379:185;48419:1;48436:20;48454:1;48436:20;:::i;:::-;48431:25;;48470:20;48488:1;48470:20;:::i;:::-;48465:25;;48509:1;48499:35;;48514:18;;:::i;:::-;48499:35;48556:1;48553;48549:9;48544:14;;48379:185;;;;:::o;48570:191::-;48610:4;48630:20;48648:1;48630:20;:::i;:::-;48625:25;;48664:20;48682:1;48664:20;:::i;:::-;48659:25;;48703:1;48700;48697:8;48694:34;;;48708:18;;:::i;:::-;48694:34;48753:1;48750;48746:9;48738:17;;48570:191;;;;:::o;48767:176::-;48799:1;48816:20;48834:1;48816:20;:::i;:::-;48811:25;;48850:20;48868:1;48850:20;:::i;:::-;48845:25;;48889:1;48879:35;;48894:18;;:::i;:::-;48879:35;48935:1;48932;48928:9;48923:14;;48767:176;;;;:::o;48949:220::-;49089:34;49085:1;49077:6;49073:14;49066:58;49158:3;49153:2;49145:6;49141:15;49134:28;48949:220;:::o;49175:366::-;49317:3;49338:67;49402:2;49397:3;49338:67;:::i;:::-;49331:74;;49414:93;49503:3;49414:93;:::i;:::-;49532:2;49527:3;49523:12;49516:19;;49175:366;;;:::o;49547:419::-;49713:4;49751:2;49740:9;49736:18;49728:26;;49800:9;49794:4;49790:20;49786:1;49775:9;49771:17;49764:47;49828:131;49954:4;49828:131;:::i;:::-;49820:139;;49547:419;;;:::o;49972:227::-;50112:34;50108:1;50100:6;50096:14;50089:58;50181:10;50176:2;50168:6;50164:15;50157:35;49972:227;:::o;50205:366::-;50347:3;50368:67;50432:2;50427:3;50368:67;:::i;:::-;50361:74;;50444:93;50533:3;50444:93;:::i;:::-;50562:2;50557:3;50553:12;50546:19;;50205:366;;;:::o;50577:419::-;50743:4;50781:2;50770:9;50766:18;50758:26;;50830:9;50824:4;50820:20;50816:1;50805:9;50801:17;50794:47;50858:131;50984:4;50858:131;:::i;:::-;50850:139;;50577:419;;;:::o
Swarm Source
ipfs://390ea7852d81807fcfbbdfeeaa878d74c960541a829aa729fdba6a517548d9af
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.