ERC-721
Overview
Max Total Supply
2,222 YCCOOKIES
Holders
169
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
20 YCCOOKIESLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
YachtClubCookies
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-26 */ pragma solidity ^0.8.0; // File @openzeppelin/contracts/utils/cryptography/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File contracts/ERC721A.sol // Creator: Chiru Labs /** * @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 (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 = 0; // 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 = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert('ERC721A: unable to get token of owner by index'); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); for (uint256 curr = tokenId; ; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), 'ERC721A: token already minted'); require(quantity > 0, 'ERC721A: quantity must be greater 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; } _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 {} } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } // ## ## ## #### ## ## #### ## ## // ## ## ## # ####### ## ## ####### ## ## // ## ## ## ## ## ### ## ## ## ### ## // ## ### #### ### ## ### ##### ## # ## ## ## ## ## ## # ### ### ## ## ## ### #### // #### ###### ##### ####### ##### ## ## ## ## ###### ## ##### ##### ## ## ## ##### ###### // ## ## ## ## ### ## ## ## ## ## ## ### ### ## ### ### ### ### #### ## ## ## ## // ## #### ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #### ## ####### ##### // ## ## ## ## ## ## ## ## # ## ## ## ## ## ## # ## ## ## ## ##### ## ####### ##### // ## ## ## ## ## ## ## ## ## ### ## ## ### ## ### ## ### ### ### ### ### ## ## ## ## ## // ## ###### ##### ## ## #### ####### ## ####### ###### ####### ##### ##### ## ## ## ###### ###### // ## ### ## ### ## ## ### #### ## ### ## ## ## #### ### ### ## ## ## #### #### contract YachtClubCookies is ERC721A, Ownable { using SafeMath for uint256; address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; bool public saleIsLive; uint256 public maxSupply; uint256 public maxMintPerWallet; string public baseURI; constructor() ERC721A("YachtClubCookies", "YCCOOKIES") { baseURI = "ipfs://QmSdta3pTh9ZGPv6GnBuUreXnDsramAB2Jycy73UCe1m1Y/"; saleIsLive = false; maxSupply = 2222; maxMintPerWallet = 20; } function isApprovedForAll(address owner, address operator) override public view returns (bool) { ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } function startSale() external onlyOwner() { saleIsLive = true; } function stopSale() external onlyOwner() { saleIsLive = false; } function mint(uint256 _numTokens) external payable { uint256 mintedFromBuyerCount = balanceOf(msg.sender); uint256 mintableFromBuyer = maxMintPerWallet - mintedFromBuyerCount; uint256 supply = totalSupply(); require(saleIsLive, "Sale is not live"); require(_numTokens <= mintableFromBuyer, "Minting more than limit! - max 20"); require(supply.add(_numTokens) <= maxSupply, "Not enough tokens remaining."); _safeMint(msg.sender, _numTokens); } function ownerMint(uint256 _numTokens) external onlyOwner { _safeMint(msg.sender, _numTokens); } function setBaseURI(string memory _uri) external onlyOwner { baseURI = _uri; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "No such token"); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), ".json" ) ) : ""; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _msgSender().call{value: balance}(""); require(success, "Failed to send"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSale","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":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600080553480156200001557600080fd5b506040518060400160405280601081526020017f5961636874436c7562436f6f6b696573000000000000000000000000000000008152506040518060400160405280600981526020017f5943434f4f4b494553000000000000000000000000000000000000000000000081525081600190805190602001906200009a92919062000208565b508060029080519060200190620000b392919062000208565b505050620000d6620000ca6200013a60201b60201c565b6200014260201b60201c565b604051806060016040528060368152602001620045bf60369139600a90805190602001906200010792919062000208565b506000600760146101000a81548160ff0219169083151502179055506108ae60088190555060146009819055506200031d565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021690620002b8565b90600052602060002090601f0160209004810192826200023a576000855562000286565b82601f106200025557805160ff191683800117855562000286565b8280016001018555821562000286579182015b828111156200028557825182559160200191906001019062000268565b5b50905062000295919062000299565b5090565b5b80821115620002b45760008160009055506001016200029a565b5090565b60006002820490506001821680620002d157607f821691505b60208210811415620002e857620002e7620002ee565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614292806200032d6000396000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063c87b56dd11610095578063e985e9c511610064578063e985e9c514610643578063f19e75d414610680578063f2fde38b146106a9578063f412f5b6146106d2576101cd565b8063c87b56dd14610599578063cd7c0326146105d6578063d5abeb0114610601578063e36b0b371461062c576101cd565b8063a22cb465116100d1578063a22cb46514610505578063b228d9251461052e578063b66a0e5d14610559578063b88d4fde14610570576101cd565b80638da5cb5b1461049357806395d89b41146104be578063a0712d68146104e9576101cd565b80633ccfd60b1161016f5780636352211e1161013e5780636352211e146103d75780636c0360eb1461041457806370a082311461043f578063715018a61461047c576101cd565b80633ccfd60b1461033157806342842e0e146103485780634f6ccce71461037157806355f804b3146103ae576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612edc565b6106fd565b6040516102069190613a35565b60405180910390f35b34801561021b57600080fd5b50610224610847565b6040516102319190613a50565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612f98565b6108d9565b60405161026e91906139ce565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612ea0565b61095e565b005b3480156102ac57600080fd5b506102b5610a77565b6040516102c29190613d52565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612d9a565b610a80565b005b34801561030057600080fd5b5061031b60048036038101906103169190612ea0565b610a90565b6040516103289190613d52565b60405180910390f35b34801561033d57600080fd5b50610346610c8e565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612d9a565b610dc6565b005b34801561037d57600080fd5b5061039860048036038101906103939190612f98565b610de6565b6040516103a59190613d52565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190612f57565b610e39565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190612f98565b610ecf565b60405161040b91906139ce565b60405180910390f35b34801561042057600080fd5b50610429610ee5565b6040516104369190613a50565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190612d35565b610f73565b6040516104739190613d52565b60405180910390f35b34801561048857600080fd5b5061049161105c565b005b34801561049f57600080fd5b506104a86110e4565b6040516104b591906139ce565b60405180910390f35b3480156104ca57600080fd5b506104d361110e565b6040516104e09190613a50565b60405180910390f35b61050360048036038101906104fe9190612f98565b6111a0565b005b34801561051157600080fd5b5061052c60048036038101906105279190612e64565b6112c4565b005b34801561053a57600080fd5b50610543611445565b6040516105509190613d52565b60405180910390f35b34801561056557600080fd5b5061056e61144b565b005b34801561057c57600080fd5b5061059760048036038101906105929190612de9565b6114e4565b005b3480156105a557600080fd5b506105c060048036038101906105bb9190612f98565b611540565b6040516105cd9190613a50565b60405180910390f35b3480156105e257600080fd5b506105eb6115e8565b6040516105f891906139ce565b60405180910390f35b34801561060d57600080fd5b50610616611600565b6040516106239190613d52565b60405180910390f35b34801561063857600080fd5b50610641611606565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612d5e565b61169f565b6040516106779190613a35565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190612f98565b611793565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190612d35565b61181c565b005b3480156106de57600080fd5b506106e7611914565b6040516106f49190613a35565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610840575061083f82611927565b5b9050919050565b60606001805461085690614070565b80601f016020809104026020016040519081016040528092919081815260200182805461088290614070565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e482611991565b610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90613d32565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096982610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190613c32565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f961199e565b73ffffffffffffffffffffffffffffffffffffffff161480610a285750610a2781610a2261199e565b61169f565b5b610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e90613b52565b60405180910390fd5b610a728383836119a6565b505050565b60008054905090565b610a8b838383611a58565b505050565b6000610a9b83610f73565b8210610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad390613a72565b60405180910390fd5b6000610ae6610a77565b905060008060005b83811015610c4c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610be057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c385786841415610c29578195505050505050610c88565b8380610c34906140a2565b9450505b508080610c44906140a2565b915050610aee565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90613d12565b60405180910390fd5b92915050565b610c9661199e565b73ffffffffffffffffffffffffffffffffffffffff16610cb46110e4565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190613bd2565b60405180910390fd5b60004790506000610d1961199e565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d3c906139b9565b60006040518083038185875af1925050503d8060008114610d79576040519150601f19603f3d011682016040523d82523d6000602084013e610d7e565b606091505b5050905080610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613cf2565b60405180910390fd5b5050565b610de1838383604051806020016040528060008152506114e4565b505050565b6000610df0610a77565b8210610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890613af2565b60405180910390fd5b819050919050565b610e4161199e565b73ffffffffffffffffffffffffffffffffffffffff16610e5f6110e4565b73ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90613bd2565b60405180910390fd5b80600a9080519060200190610ecb929190612b0a565b5050565b6000610eda82611fff565b600001519050919050565b600a8054610ef290614070565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1e90614070565b8015610f6b5780601f10610f4057610100808354040283529160200191610f6b565b820191906000526020600020905b815481529060010190602001808311610f4e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb90613b92565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61106461199e565b73ffffffffffffffffffffffffffffffffffffffff166110826110e4565b73ffffffffffffffffffffffffffffffffffffffff16146110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90613bd2565b60405180910390fd5b6110e2600061215a565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461111d90614070565b80601f016020809104026020016040519081016040528092919081815260200182805461114990614070565b80156111965780601f1061116b57610100808354040283529160200191611196565b820191906000526020600020905b81548152906001019060200180831161117957829003601f168201915b5050505050905090565b60006111ab33610f73565b90506000816009546111bd9190613f2e565b905060006111c9610a77565b9050600760149054906101000a900460ff1661121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190613cd2565b60405180910390fd5b8184111561125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613b72565b60405180910390fd5b600854611273858361222090919063ffffffff16565b11156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90613b32565b60405180910390fd5b6112be3385612236565b50505050565b6112cc61199e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613bf2565b60405180910390fd5b806006600061134761199e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113f461199e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114399190613a35565b60405180910390a35050565b60095481565b61145361199e565b73ffffffffffffffffffffffffffffffffffffffff166114716110e4565b73ffffffffffffffffffffffffffffffffffffffff16146114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613bd2565b60405180910390fd5b6001600760146101000a81548160ff021916908315150217905550565b6114ef848484611a58565b6114fb84848484612254565b61153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190613c72565b60405180910390fd5b50505050565b606061154b82611991565b61158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190613a92565b60405180910390fd5b6000600a805461159990614070565b9050116115b557604051806020016040528060008152506115e1565b600a6115c0836123eb565b6040516020016115d192919061398a565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60085481565b61160e61199e565b73ffffffffffffffffffffffffffffffffffffffff1661162c6110e4565b73ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990613bd2565b60405180910390fd5b6000600760146101000a81548160ff021916908315150217905550565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161170991906139ce565b60206040518083038186803b15801561172157600080fd5b505afa158015611735573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117599190612f2e565b73ffffffffffffffffffffffffffffffffffffffff16141561177f57600191505061178d565b6117898484612598565b9150505b92915050565b61179b61199e565b73ffffffffffffffffffffffffffffffffffffffff166117b96110e4565b73ffffffffffffffffffffffffffffffffffffffff161461180f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180690613bd2565b60405180910390fd5b6118193382612236565b50565b61182461199e565b73ffffffffffffffffffffffffffffffffffffffff166118426110e4565b73ffffffffffffffffffffffffffffffffffffffff1614611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188f90613bd2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90613ab2565b60405180910390fd5b6119118161215a565b50565b600760149054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611a6382611fff565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a8a61199e565b73ffffffffffffffffffffffffffffffffffffffff161480611ae65750611aaf61199e565b73ffffffffffffffffffffffffffffffffffffffff16611ace846108d9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b025750611b018260000151611afc61199e565b61169f565b5b905080611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b90613c12565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90613bb2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d90613b12565b60405180910390fd5b611c33858585600161262c565b611c4360008484600001516119a6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611e499190613ea7565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f8f57611ebf81611991565b15611f8e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ff78686866001612632565b505050505050565b612007612b90565b61201082611991565b61204f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204690613ad2565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612141578092505050612155565b50808061214d90614046565b915050612055565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361222e9190613ea7565b905092915050565b612250828260405180602001604052806000815250612638565b5050565b60006122758473ffffffffffffffffffffffffffffffffffffffff16612af7565b156123de578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261229e61199e565b8786866040518563ffffffff1660e01b81526004016122c094939291906139e9565b602060405180830381600087803b1580156122da57600080fd5b505af192505050801561230b57506040513d601f19601f820116820180604052508101906123089190612f05565b60015b61238e573d806000811461233b576040519150601f19603f3d011682016040523d82523d6000602084013e612340565b606091505b50600081511415612386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237d90613c72565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123e3565b600190505b949350505050565b60606000821415612433576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612593565b600082905060005b6000821461246557808061244e906140a2565b915050600a8261245e9190613efd565b915061243b565b60008167ffffffffffffffff8111156124a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124d95781602001600182028036833780820191505090505b5090505b6000851461258c576001826124f29190613f2e565b9150600a8561250191906140eb565b603061250d9190613ea7565b60f81b818381518110612549577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125859190613efd565b94506124dd565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a590613cb2565b60405180910390fd5b6126b781611991565b156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee90613c92565b60405180910390fd5b6000831161273a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273190613c52565b60405180910390fd5b612747600085838661262c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516128449190613e61565b6fffffffffffffffffffffffffffffffff16815260200185836020015161286b9190613e61565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612ada57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a7a6000888488612254565b612ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab090613c72565b60405180910390fd5b8180612ac4906140a2565b9250508080612ad2906140a2565b915050612a09565b5080600081905550612aef6000878588612632565b505050505050565b600080823b905060008111915050919050565b828054612b1690614070565b90600052602060002090601f016020900481019282612b385760008555612b7f565b82601f10612b5157805160ff1916838001178555612b7f565b82800160010185558215612b7f579182015b82811115612b7e578251825591602001919060010190612b63565b5b509050612b8c9190612bca565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612be3576000816000905550600101612bcb565b5090565b6000612bfa612bf584613d9e565b613d6d565b905082815260208101848484011115612c1257600080fd5b612c1d848285614004565b509392505050565b6000612c38612c3384613dce565b613d6d565b905082815260208101848484011115612c5057600080fd5b612c5b848285614004565b509392505050565b600081359050612c72816141e9565b92915050565b600081359050612c8781614200565b92915050565b600081359050612c9c81614217565b92915050565b600081519050612cb181614217565b92915050565b600082601f830112612cc857600080fd5b8135612cd8848260208601612be7565b91505092915050565b600081519050612cf08161422e565b92915050565b600082601f830112612d0757600080fd5b8135612d17848260208601612c25565b91505092915050565b600081359050612d2f81614245565b92915050565b600060208284031215612d4757600080fd5b6000612d5584828501612c63565b91505092915050565b60008060408385031215612d7157600080fd5b6000612d7f85828601612c63565b9250506020612d9085828601612c63565b9150509250929050565b600080600060608486031215612daf57600080fd5b6000612dbd86828701612c63565b9350506020612dce86828701612c63565b9250506040612ddf86828701612d20565b9150509250925092565b60008060008060808587031215612dff57600080fd5b6000612e0d87828801612c63565b9450506020612e1e87828801612c63565b9350506040612e2f87828801612d20565b925050606085013567ffffffffffffffff811115612e4c57600080fd5b612e5887828801612cb7565b91505092959194509250565b60008060408385031215612e7757600080fd5b6000612e8585828601612c63565b9250506020612e9685828601612c78565b9150509250929050565b60008060408385031215612eb357600080fd5b6000612ec185828601612c63565b9250506020612ed285828601612d20565b9150509250929050565b600060208284031215612eee57600080fd5b6000612efc84828501612c8d565b91505092915050565b600060208284031215612f1757600080fd5b6000612f2584828501612ca2565b91505092915050565b600060208284031215612f4057600080fd5b6000612f4e84828501612ce1565b91505092915050565b600060208284031215612f6957600080fd5b600082013567ffffffffffffffff811115612f8357600080fd5b612f8f84828501612cf6565b91505092915050565b600060208284031215612faa57600080fd5b6000612fb884828501612d20565b91505092915050565b612fca81613f62565b82525050565b612fd981613f74565b82525050565b6000612fea82613e13565b612ff48185613e29565b9350613004818560208601614013565b61300d816141d8565b840191505092915050565b600061302382613e1e565b61302d8185613e45565b935061303d818560208601614013565b613046816141d8565b840191505092915050565b600061305c82613e1e565b6130668185613e56565b9350613076818560208601614013565b80840191505092915050565b6000815461308f81614070565b6130998186613e56565b945060018216600081146130b457600181146130c5576130f8565b60ff198316865281860193506130f8565b6130ce85613dfe565b60005b838110156130f0578154818901526001820191506020810190506130d1565b838801955050505b50505092915050565b600061310e602283613e45565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613174600d83613e45565b91507f4e6f207375636820746f6b656e000000000000000000000000000000000000006000830152602082019050919050565b60006131b4602683613e45565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061321a602a83613e45565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613280602383613e45565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132e6602583613e45565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061334c601c83613e45565b91507f4e6f7420656e6f75676820746f6b656e732072656d61696e696e672e000000006000830152602082019050919050565b600061338c603983613e45565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b60006133f2602183613e45565b91507f4d696e74696e67206d6f7265207468616e206c696d697421202d206d6178203260008301527f30000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613458602b83613e45565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006134be602683613e45565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613524600583613e56565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000613564602083613e45565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006135a4601a83613e45565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b60006135e4603283613e45565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b600061364a602283613e45565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136b0600083613e3a565b9150600082019050919050565b60006136ca602383613e45565b91507f455243373231413a207175616e74697479206d7573742062652067726561746560008301527f72203000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613730603383613e45565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000613796601d83613e45565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b60006137d6602183613e45565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061383c601083613e45565b91507f53616c65206973206e6f74206c697665000000000000000000000000000000006000830152602082019050919050565b600061387c600e83613e45565b91507f4661696c656420746f2073656e640000000000000000000000000000000000006000830152602082019050919050565b60006138bc602e83613e45565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000613922602d83613e45565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b61398481613ffa565b82525050565b60006139968285613082565b91506139a28284613051565b91506139ad82613517565b91508190509392505050565b60006139c4826136a3565b9150819050919050565b60006020820190506139e36000830184612fc1565b92915050565b60006080820190506139fe6000830187612fc1565b613a0b6020830186612fc1565b613a18604083018561397b565b8181036060830152613a2a8184612fdf565b905095945050505050565b6000602082019050613a4a6000830184612fd0565b92915050565b60006020820190508181036000830152613a6a8184613018565b905092915050565b60006020820190508181036000830152613a8b81613101565b9050919050565b60006020820190508181036000830152613aab81613167565b9050919050565b60006020820190508181036000830152613acb816131a7565b9050919050565b60006020820190508181036000830152613aeb8161320d565b9050919050565b60006020820190508181036000830152613b0b81613273565b9050919050565b60006020820190508181036000830152613b2b816132d9565b9050919050565b60006020820190508181036000830152613b4b8161333f565b9050919050565b60006020820190508181036000830152613b6b8161337f565b9050919050565b60006020820190508181036000830152613b8b816133e5565b9050919050565b60006020820190508181036000830152613bab8161344b565b9050919050565b60006020820190508181036000830152613bcb816134b1565b9050919050565b60006020820190508181036000830152613beb81613557565b9050919050565b60006020820190508181036000830152613c0b81613597565b9050919050565b60006020820190508181036000830152613c2b816135d7565b9050919050565b60006020820190508181036000830152613c4b8161363d565b9050919050565b60006020820190508181036000830152613c6b816136bd565b9050919050565b60006020820190508181036000830152613c8b81613723565b9050919050565b60006020820190508181036000830152613cab81613789565b9050919050565b60006020820190508181036000830152613ccb816137c9565b9050919050565b60006020820190508181036000830152613ceb8161382f565b9050919050565b60006020820190508181036000830152613d0b8161386f565b9050919050565b60006020820190508181036000830152613d2b816138af565b9050919050565b60006020820190508181036000830152613d4b81613915565b9050919050565b6000602082019050613d67600083018461397b565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613d9457613d936141a9565b5b8060405250919050565b600067ffffffffffffffff821115613db957613db86141a9565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613de957613de86141a9565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e6c82613fbe565b9150613e7783613fbe565b9250826fffffffffffffffffffffffffffffffff03821115613e9c57613e9b61411c565b5b828201905092915050565b6000613eb282613ffa565b9150613ebd83613ffa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ef257613ef161411c565b5b828201905092915050565b6000613f0882613ffa565b9150613f1383613ffa565b925082613f2357613f2261414b565b5b828204905092915050565b6000613f3982613ffa565b9150613f4483613ffa565b925082821015613f5757613f5661411c565b5b828203905092915050565b6000613f6d82613fda565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613fb782613f62565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614031578082015181840152602081019050614016565b83811115614040576000848401525b50505050565b600061405182613ffa565b915060008214156140655761406461411c565b5b600182039050919050565b6000600282049050600182168061408857607f821691505b6020821081141561409c5761409b61417a565b5b50919050565b60006140ad82613ffa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140e0576140df61411c565b5b600182019050919050565b60006140f682613ffa565b915061410183613ffa565b9250826141115761411061414b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6141f281613f62565b81146141fd57600080fd5b50565b61420981613f74565b811461421457600080fd5b50565b61422081613f80565b811461422b57600080fd5b50565b61423781613fac565b811461424257600080fd5b50565b61424e81613ffa565b811461425957600080fd5b5056fea26469706673582212207d42cf55281b2ac5631a563c3dec480fc437d293b74ed8bda3b3d4ebe29d602f64736f6c63430008000033697066733a2f2f516d5364746133705468395a47507636476e4275557265586e447372616d4142324a7963793733554365316d31592f
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063c87b56dd11610095578063e985e9c511610064578063e985e9c514610643578063f19e75d414610680578063f2fde38b146106a9578063f412f5b6146106d2576101cd565b8063c87b56dd14610599578063cd7c0326146105d6578063d5abeb0114610601578063e36b0b371461062c576101cd565b8063a22cb465116100d1578063a22cb46514610505578063b228d9251461052e578063b66a0e5d14610559578063b88d4fde14610570576101cd565b80638da5cb5b1461049357806395d89b41146104be578063a0712d68146104e9576101cd565b80633ccfd60b1161016f5780636352211e1161013e5780636352211e146103d75780636c0360eb1461041457806370a082311461043f578063715018a61461047c576101cd565b80633ccfd60b1461033157806342842e0e146103485780634f6ccce71461037157806355f804b3146103ae576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612edc565b6106fd565b6040516102069190613a35565b60405180910390f35b34801561021b57600080fd5b50610224610847565b6040516102319190613a50565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612f98565b6108d9565b60405161026e91906139ce565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612ea0565b61095e565b005b3480156102ac57600080fd5b506102b5610a77565b6040516102c29190613d52565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612d9a565b610a80565b005b34801561030057600080fd5b5061031b60048036038101906103169190612ea0565b610a90565b6040516103289190613d52565b60405180910390f35b34801561033d57600080fd5b50610346610c8e565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612d9a565b610dc6565b005b34801561037d57600080fd5b5061039860048036038101906103939190612f98565b610de6565b6040516103a59190613d52565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190612f57565b610e39565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190612f98565b610ecf565b60405161040b91906139ce565b60405180910390f35b34801561042057600080fd5b50610429610ee5565b6040516104369190613a50565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190612d35565b610f73565b6040516104739190613d52565b60405180910390f35b34801561048857600080fd5b5061049161105c565b005b34801561049f57600080fd5b506104a86110e4565b6040516104b591906139ce565b60405180910390f35b3480156104ca57600080fd5b506104d361110e565b6040516104e09190613a50565b60405180910390f35b61050360048036038101906104fe9190612f98565b6111a0565b005b34801561051157600080fd5b5061052c60048036038101906105279190612e64565b6112c4565b005b34801561053a57600080fd5b50610543611445565b6040516105509190613d52565b60405180910390f35b34801561056557600080fd5b5061056e61144b565b005b34801561057c57600080fd5b5061059760048036038101906105929190612de9565b6114e4565b005b3480156105a557600080fd5b506105c060048036038101906105bb9190612f98565b611540565b6040516105cd9190613a50565b60405180910390f35b3480156105e257600080fd5b506105eb6115e8565b6040516105f891906139ce565b60405180910390f35b34801561060d57600080fd5b50610616611600565b6040516106239190613d52565b60405180910390f35b34801561063857600080fd5b50610641611606565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612d5e565b61169f565b6040516106779190613a35565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190612f98565b611793565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190612d35565b61181c565b005b3480156106de57600080fd5b506106e7611914565b6040516106f49190613a35565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610840575061083f82611927565b5b9050919050565b60606001805461085690614070565b80601f016020809104026020016040519081016040528092919081815260200182805461088290614070565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e482611991565b610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90613d32565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096982610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190613c32565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f961199e565b73ffffffffffffffffffffffffffffffffffffffff161480610a285750610a2781610a2261199e565b61169f565b5b610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e90613b52565b60405180910390fd5b610a728383836119a6565b505050565b60008054905090565b610a8b838383611a58565b505050565b6000610a9b83610f73565b8210610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad390613a72565b60405180910390fd5b6000610ae6610a77565b905060008060005b83811015610c4c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610be057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c385786841415610c29578195505050505050610c88565b8380610c34906140a2565b9450505b508080610c44906140a2565b915050610aee565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90613d12565b60405180910390fd5b92915050565b610c9661199e565b73ffffffffffffffffffffffffffffffffffffffff16610cb46110e4565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190613bd2565b60405180910390fd5b60004790506000610d1961199e565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d3c906139b9565b60006040518083038185875af1925050503d8060008114610d79576040519150601f19603f3d011682016040523d82523d6000602084013e610d7e565b606091505b5050905080610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613cf2565b60405180910390fd5b5050565b610de1838383604051806020016040528060008152506114e4565b505050565b6000610df0610a77565b8210610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890613af2565b60405180910390fd5b819050919050565b610e4161199e565b73ffffffffffffffffffffffffffffffffffffffff16610e5f6110e4565b73ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90613bd2565b60405180910390fd5b80600a9080519060200190610ecb929190612b0a565b5050565b6000610eda82611fff565b600001519050919050565b600a8054610ef290614070565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1e90614070565b8015610f6b5780601f10610f4057610100808354040283529160200191610f6b565b820191906000526020600020905b815481529060010190602001808311610f4e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb90613b92565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61106461199e565b73ffffffffffffffffffffffffffffffffffffffff166110826110e4565b73ffffffffffffffffffffffffffffffffffffffff16146110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90613bd2565b60405180910390fd5b6110e2600061215a565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461111d90614070565b80601f016020809104026020016040519081016040528092919081815260200182805461114990614070565b80156111965780601f1061116b57610100808354040283529160200191611196565b820191906000526020600020905b81548152906001019060200180831161117957829003601f168201915b5050505050905090565b60006111ab33610f73565b90506000816009546111bd9190613f2e565b905060006111c9610a77565b9050600760149054906101000a900460ff1661121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190613cd2565b60405180910390fd5b8184111561125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613b72565b60405180910390fd5b600854611273858361222090919063ffffffff16565b11156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90613b32565b60405180910390fd5b6112be3385612236565b50505050565b6112cc61199e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613bf2565b60405180910390fd5b806006600061134761199e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113f461199e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114399190613a35565b60405180910390a35050565b60095481565b61145361199e565b73ffffffffffffffffffffffffffffffffffffffff166114716110e4565b73ffffffffffffffffffffffffffffffffffffffff16146114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613bd2565b60405180910390fd5b6001600760146101000a81548160ff021916908315150217905550565b6114ef848484611a58565b6114fb84848484612254565b61153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190613c72565b60405180910390fd5b50505050565b606061154b82611991565b61158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190613a92565b60405180910390fd5b6000600a805461159990614070565b9050116115b557604051806020016040528060008152506115e1565b600a6115c0836123eb565b6040516020016115d192919061398a565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60085481565b61160e61199e565b73ffffffffffffffffffffffffffffffffffffffff1661162c6110e4565b73ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990613bd2565b60405180910390fd5b6000600760146101000a81548160ff021916908315150217905550565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161170991906139ce565b60206040518083038186803b15801561172157600080fd5b505afa158015611735573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117599190612f2e565b73ffffffffffffffffffffffffffffffffffffffff16141561177f57600191505061178d565b6117898484612598565b9150505b92915050565b61179b61199e565b73ffffffffffffffffffffffffffffffffffffffff166117b96110e4565b73ffffffffffffffffffffffffffffffffffffffff161461180f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180690613bd2565b60405180910390fd5b6118193382612236565b50565b61182461199e565b73ffffffffffffffffffffffffffffffffffffffff166118426110e4565b73ffffffffffffffffffffffffffffffffffffffff1614611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188f90613bd2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90613ab2565b60405180910390fd5b6119118161215a565b50565b600760149054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611a6382611fff565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a8a61199e565b73ffffffffffffffffffffffffffffffffffffffff161480611ae65750611aaf61199e565b73ffffffffffffffffffffffffffffffffffffffff16611ace846108d9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b025750611b018260000151611afc61199e565b61169f565b5b905080611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b90613c12565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90613bb2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d90613b12565b60405180910390fd5b611c33858585600161262c565b611c4360008484600001516119a6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611e499190613ea7565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f8f57611ebf81611991565b15611f8e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ff78686866001612632565b505050505050565b612007612b90565b61201082611991565b61204f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204690613ad2565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612141578092505050612155565b50808061214d90614046565b915050612055565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361222e9190613ea7565b905092915050565b612250828260405180602001604052806000815250612638565b5050565b60006122758473ffffffffffffffffffffffffffffffffffffffff16612af7565b156123de578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261229e61199e565b8786866040518563ffffffff1660e01b81526004016122c094939291906139e9565b602060405180830381600087803b1580156122da57600080fd5b505af192505050801561230b57506040513d601f19601f820116820180604052508101906123089190612f05565b60015b61238e573d806000811461233b576040519150601f19603f3d011682016040523d82523d6000602084013e612340565b606091505b50600081511415612386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237d90613c72565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123e3565b600190505b949350505050565b60606000821415612433576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612593565b600082905060005b6000821461246557808061244e906140a2565b915050600a8261245e9190613efd565b915061243b565b60008167ffffffffffffffff8111156124a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124d95781602001600182028036833780820191505090505b5090505b6000851461258c576001826124f29190613f2e565b9150600a8561250191906140eb565b603061250d9190613ea7565b60f81b818381518110612549577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125859190613efd565b94506124dd565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a590613cb2565b60405180910390fd5b6126b781611991565b156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee90613c92565b60405180910390fd5b6000831161273a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273190613c52565b60405180910390fd5b612747600085838661262c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516128449190613e61565b6fffffffffffffffffffffffffffffffff16815260200185836020015161286b9190613e61565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612ada57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a7a6000888488612254565b612ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab090613c72565b60405180910390fd5b8180612ac4906140a2565b9250508080612ad2906140a2565b915050612a09565b5080600081905550612aef6000878588612632565b505050505050565b600080823b905060008111915050919050565b828054612b1690614070565b90600052602060002090601f016020900481019282612b385760008555612b7f565b82601f10612b5157805160ff1916838001178555612b7f565b82800160010185558215612b7f579182015b82811115612b7e578251825591602001919060010190612b63565b5b509050612b8c9190612bca565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612be3576000816000905550600101612bcb565b5090565b6000612bfa612bf584613d9e565b613d6d565b905082815260208101848484011115612c1257600080fd5b612c1d848285614004565b509392505050565b6000612c38612c3384613dce565b613d6d565b905082815260208101848484011115612c5057600080fd5b612c5b848285614004565b509392505050565b600081359050612c72816141e9565b92915050565b600081359050612c8781614200565b92915050565b600081359050612c9c81614217565b92915050565b600081519050612cb181614217565b92915050565b600082601f830112612cc857600080fd5b8135612cd8848260208601612be7565b91505092915050565b600081519050612cf08161422e565b92915050565b600082601f830112612d0757600080fd5b8135612d17848260208601612c25565b91505092915050565b600081359050612d2f81614245565b92915050565b600060208284031215612d4757600080fd5b6000612d5584828501612c63565b91505092915050565b60008060408385031215612d7157600080fd5b6000612d7f85828601612c63565b9250506020612d9085828601612c63565b9150509250929050565b600080600060608486031215612daf57600080fd5b6000612dbd86828701612c63565b9350506020612dce86828701612c63565b9250506040612ddf86828701612d20565b9150509250925092565b60008060008060808587031215612dff57600080fd5b6000612e0d87828801612c63565b9450506020612e1e87828801612c63565b9350506040612e2f87828801612d20565b925050606085013567ffffffffffffffff811115612e4c57600080fd5b612e5887828801612cb7565b91505092959194509250565b60008060408385031215612e7757600080fd5b6000612e8585828601612c63565b9250506020612e9685828601612c78565b9150509250929050565b60008060408385031215612eb357600080fd5b6000612ec185828601612c63565b9250506020612ed285828601612d20565b9150509250929050565b600060208284031215612eee57600080fd5b6000612efc84828501612c8d565b91505092915050565b600060208284031215612f1757600080fd5b6000612f2584828501612ca2565b91505092915050565b600060208284031215612f4057600080fd5b6000612f4e84828501612ce1565b91505092915050565b600060208284031215612f6957600080fd5b600082013567ffffffffffffffff811115612f8357600080fd5b612f8f84828501612cf6565b91505092915050565b600060208284031215612faa57600080fd5b6000612fb884828501612d20565b91505092915050565b612fca81613f62565b82525050565b612fd981613f74565b82525050565b6000612fea82613e13565b612ff48185613e29565b9350613004818560208601614013565b61300d816141d8565b840191505092915050565b600061302382613e1e565b61302d8185613e45565b935061303d818560208601614013565b613046816141d8565b840191505092915050565b600061305c82613e1e565b6130668185613e56565b9350613076818560208601614013565b80840191505092915050565b6000815461308f81614070565b6130998186613e56565b945060018216600081146130b457600181146130c5576130f8565b60ff198316865281860193506130f8565b6130ce85613dfe565b60005b838110156130f0578154818901526001820191506020810190506130d1565b838801955050505b50505092915050565b600061310e602283613e45565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613174600d83613e45565b91507f4e6f207375636820746f6b656e000000000000000000000000000000000000006000830152602082019050919050565b60006131b4602683613e45565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061321a602a83613e45565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613280602383613e45565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132e6602583613e45565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061334c601c83613e45565b91507f4e6f7420656e6f75676820746f6b656e732072656d61696e696e672e000000006000830152602082019050919050565b600061338c603983613e45565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b60006133f2602183613e45565b91507f4d696e74696e67206d6f7265207468616e206c696d697421202d206d6178203260008301527f30000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613458602b83613e45565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006134be602683613e45565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613524600583613e56565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000613564602083613e45565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006135a4601a83613e45565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b60006135e4603283613e45565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b600061364a602283613e45565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136b0600083613e3a565b9150600082019050919050565b60006136ca602383613e45565b91507f455243373231413a207175616e74697479206d7573742062652067726561746560008301527f72203000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613730603383613e45565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000613796601d83613e45565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b60006137d6602183613e45565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061383c601083613e45565b91507f53616c65206973206e6f74206c697665000000000000000000000000000000006000830152602082019050919050565b600061387c600e83613e45565b91507f4661696c656420746f2073656e640000000000000000000000000000000000006000830152602082019050919050565b60006138bc602e83613e45565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000613922602d83613e45565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b61398481613ffa565b82525050565b60006139968285613082565b91506139a28284613051565b91506139ad82613517565b91508190509392505050565b60006139c4826136a3565b9150819050919050565b60006020820190506139e36000830184612fc1565b92915050565b60006080820190506139fe6000830187612fc1565b613a0b6020830186612fc1565b613a18604083018561397b565b8181036060830152613a2a8184612fdf565b905095945050505050565b6000602082019050613a4a6000830184612fd0565b92915050565b60006020820190508181036000830152613a6a8184613018565b905092915050565b60006020820190508181036000830152613a8b81613101565b9050919050565b60006020820190508181036000830152613aab81613167565b9050919050565b60006020820190508181036000830152613acb816131a7565b9050919050565b60006020820190508181036000830152613aeb8161320d565b9050919050565b60006020820190508181036000830152613b0b81613273565b9050919050565b60006020820190508181036000830152613b2b816132d9565b9050919050565b60006020820190508181036000830152613b4b8161333f565b9050919050565b60006020820190508181036000830152613b6b8161337f565b9050919050565b60006020820190508181036000830152613b8b816133e5565b9050919050565b60006020820190508181036000830152613bab8161344b565b9050919050565b60006020820190508181036000830152613bcb816134b1565b9050919050565b60006020820190508181036000830152613beb81613557565b9050919050565b60006020820190508181036000830152613c0b81613597565b9050919050565b60006020820190508181036000830152613c2b816135d7565b9050919050565b60006020820190508181036000830152613c4b8161363d565b9050919050565b60006020820190508181036000830152613c6b816136bd565b9050919050565b60006020820190508181036000830152613c8b81613723565b9050919050565b60006020820190508181036000830152613cab81613789565b9050919050565b60006020820190508181036000830152613ccb816137c9565b9050919050565b60006020820190508181036000830152613ceb8161382f565b9050919050565b60006020820190508181036000830152613d0b8161386f565b9050919050565b60006020820190508181036000830152613d2b816138af565b9050919050565b60006020820190508181036000830152613d4b81613915565b9050919050565b6000602082019050613d67600083018461397b565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613d9457613d936141a9565b5b8060405250919050565b600067ffffffffffffffff821115613db957613db86141a9565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613de957613de86141a9565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e6c82613fbe565b9150613e7783613fbe565b9250826fffffffffffffffffffffffffffffffff03821115613e9c57613e9b61411c565b5b828201905092915050565b6000613eb282613ffa565b9150613ebd83613ffa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ef257613ef161411c565b5b828201905092915050565b6000613f0882613ffa565b9150613f1383613ffa565b925082613f2357613f2261414b565b5b828204905092915050565b6000613f3982613ffa565b9150613f4483613ffa565b925082821015613f5757613f5661411c565b5b828203905092915050565b6000613f6d82613fda565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613fb782613f62565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614031578082015181840152602081019050614016565b83811115614040576000848401525b50505050565b600061405182613ffa565b915060008214156140655761406461411c565b5b600182039050919050565b6000600282049050600182168061408857607f821691505b6020821081141561409c5761409b61417a565b5b50919050565b60006140ad82613ffa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140e0576140df61411c565b5b600182019050919050565b60006140f682613ffa565b915061410183613ffa565b9250826141115761411061414b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6141f281613f62565b81146141fd57600080fd5b50565b61420981613f74565b811461421457600080fd5b50565b61422081613f80565b811461422b57600080fd5b50565b61423781613fac565b811461424257600080fd5b50565b61424e81613ffa565b811461425957600080fd5b5056fea26469706673582212207d42cf55281b2ac5631a563c3dec480fc437d293b74ed8bda3b3d4ebe29d602f64736f6c63430008000033
Deployed Bytecode Sourcemap
47169:2419:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26677:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28304:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29865:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29386:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25118:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30741:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25782:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49376:209;;;;;;;;;;;;;:::i;:::-;;30974:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25295:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48920:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28113:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47458:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27113:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2656:103;;;;;;;;;;;;;:::i;:::-;;2005:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28473:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48284:510;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30151:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47420:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48112:78;;;;;;;;;;;;;:::i;:::-;;31222:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49020:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47264:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47389:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48198:78;;;;;;;;;;;;;:::i;:::-;;47724:380;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48802:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2914:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47360:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26677:372;26779:4;26831:25;26816:40;;;:11;:40;;;;:105;;;;26888:33;26873:48;;;:11;:48;;;;26816:105;:172;;;;26953:35;26938:50;;;:11;:50;;;;26816:172;:225;;;;27005:36;27029:11;27005:23;:36::i;:::-;26816:225;26796:245;;26677:372;;;:::o;28304:100::-;28358:13;28391:5;28384:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28304:100;:::o;29865:214::-;29933:7;29961:16;29969:7;29961;:16::i;:::-;29953:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30047:15;:24;30063:7;30047:24;;;;;;;;;;;;;;;;;;;;;30040:31;;29865:214;;;:::o;29386:413::-;29459:13;29475:24;29491:7;29475:15;:24::i;:::-;29459:40;;29524:5;29518:11;;:2;:11;;;;29510:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29619:5;29603:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29628:37;29645:5;29652:12;:10;:12::i;:::-;29628:16;:37::i;:::-;29603:62;29581:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;29763:28;29772:2;29776:7;29785:5;29763:8;:28::i;:::-;29386:413;;;:::o;25118:100::-;25171:7;25198:12;;25191:19;;25118:100;:::o;30741:162::-;30867:28;30877:4;30883:2;30887:7;30867:9;:28::i;:::-;30741:162;;;:::o;25782:823::-;25871:7;25907:16;25917:5;25907:9;:16::i;:::-;25899:5;:24;25891:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25973:22;25998:13;:11;:13::i;:::-;25973:38;;26022:19;26056:25;26110:9;26105:426;26129:14;26125:1;:18;26105:426;;;26165:31;26199:11;:14;26211:1;26199:14;;;;;;;;;;;26165:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26258:1;26232:28;;:9;:14;;;:28;;;26228:103;;26301:9;:14;;;26281:34;;26228:103;26370:5;26349:26;;:17;:26;;;26345:175;;;26415:5;26400:11;:20;26396:77;;;26452:1;26445:8;;;;;;;;;26396:77;26491:13;;;;;:::i;:::-;;;;26345:175;26105:426;26145:3;;;;;:::i;:::-;;;;26105:426;;;;26541:56;;;;;;;;;;:::i;:::-;;;;;;;;25782:823;;;;;:::o;49376:209::-;2236:12;:10;:12::i;:::-;2225:23;;:7;:5;:7::i;:::-;:23;;;2217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49426:15:::1;49444:21;49426:39;;49477:12;49495;:10;:12::i;:::-;:17;;49520:7;49495:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49476:56;;;49551:7;49543:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;2296:1;;49376:209::o:0;30974:177::-;31104:39;31121:4;31127:2;31131:7;31104:39;;;;;;;;;;;;:16;:39::i;:::-;30974:177;;;:::o;25295:187::-;25362:7;25398:13;:11;:13::i;:::-;25390:5;:21;25382:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;25469:5;25462:12;;25295:187;;;:::o;48920:92::-;2236:12;:10;:12::i;:::-;2225:23;;:7;:5;:7::i;:::-;:23;;;2217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49000:4:::1;48990:7;:14;;;;;;;;;;;;:::i;:::-;;48920:92:::0;:::o;28113:124::-;28177:7;28204:20;28216:7;28204:11;:20::i;:::-;:25;;;28197:32;;28113:124;;;:::o;47458:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27113:221::-;27177:7;27222:1;27205:19;;:5;:19;;;;27197:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;27298:12;:19;27311:5;27298:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27290:36;;27283:43;;27113:221;;;:::o;2656:103::-;2236:12;:10;:12::i;:::-;2225:23;;:7;:5;:7::i;:::-;:23;;;2217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2721:30:::1;2748:1;2721:18;:30::i;:::-;2656:103::o:0;2005:87::-;2051:7;2078:6;;;;;;;;;;;2071:13;;2005:87;:::o;28473:104::-;28529:13;28562:7;28555:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28473:104;:::o;48284:510::-;48346:28;48377:21;48387:10;48377:9;:21::i;:::-;48346:52;;48409:25;48456:20;48437:16;;:39;;;;:::i;:::-;48409:67;;48487:14;48504:13;:11;:13::i;:::-;48487:30;;48536:10;;;;;;;;;;;48528:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;48600:17;48586:10;:31;;48578:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;48700:9;;48674:22;48685:10;48674:6;:10;;:22;;;;:::i;:::-;:35;;48666:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48753:33;48763:10;48775;48753:9;:33::i;:::-;48284:510;;;;:::o;30151:288::-;30258:12;:10;:12::i;:::-;30246:24;;:8;:24;;;;30238:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;30359:8;30314:18;:32;30333:12;:10;:12::i;:::-;30314:32;;;;;;;;;;;;;;;:42;30347:8;30314:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30412:8;30383:48;;30398:12;:10;:12::i;:::-;30383:48;;;30422:8;30383:48;;;;;;:::i;:::-;;;;;;;;30151:288;;:::o;47420:31::-;;;;:::o;48112:78::-;2236:12;:10;:12::i;:::-;2225:23;;:7;:5;:7::i;:::-;:23;;;2217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48178:4:::1;48165:10;;:17;;;;;;;;;;;;;;;;;;48112:78::o:0;31222:355::-;31381:28;31391:4;31397:2;31401:7;31381:9;:28::i;:::-;31442:48;31465:4;31471:2;31475:7;31484:5;31442:22;:48::i;:::-;31420:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;31222:355;;;;:::o;49020:348::-;49086:13;49120:17;49128:8;49120:7;:17::i;:::-;49112:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;49197:1;49179:7;49173:21;;;;;:::i;:::-;;;:25;:187;;;;;;;;;;;;;;;;;49255:7;49279:26;49296:8;49279:16;:26::i;:::-;49222:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49173:187;49166:194;;49020:348;;;:::o;47264:89::-;47311:42;47264:89;:::o;47389:24::-;;;;:::o;48198:78::-;2236:12;:10;:12::i;:::-;2225:23;;:7;:5;:7::i;:::-;:23;;;2217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48263:5:::1;48250:10;;:18;;;;;;;;;;;;;;;;;;48198:78::o:0;47724:380::-;47849:4;47871:27;47311:42;47871:65;;47992:8;47951:49;;47959:13;:21;;;47981:5;47959:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47951:49;;;47947:93;;;48024:4;48017:11;;;;;47947:93;48057:39;48080:5;48087:8;48057:22;:39::i;:::-;48050:46;;;47724:380;;;;;:::o;48802:110::-;2236:12;:10;:12::i;:::-;2225:23;;:7;:5;:7::i;:::-;:23;;;2217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48871:33:::1;48881:10;48893;48871:9;:33::i;:::-;48802:110:::0;:::o;2914:201::-;2236:12;:10;:12::i;:::-;2225:23;;:7;:5;:7::i;:::-;:23;;;2217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3023:1:::1;3003:22;;:8;:22;;;;2995:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3079:28;3098:8;3079:18;:28::i;:::-;2914:201:::0;:::o;47360:22::-;;;;;;;;;;;;;:::o;23181:157::-;23266:4;23305:25;23290:40;;;:11;:40;;;;23283:47;;23181:157;;;:::o;31832:111::-;31889:4;31923:12;;31913:7;:22;31906:29;;31832:111;;;:::o;752:98::-;805:7;832:10;825:17;;752:98;:::o;35876:196::-;36018:2;35991:15;:24;36007:7;35991:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36056:7;36052:2;36036:28;;36045:5;36036:28;;;;;;;;;;;;35876:196;;;:::o;33975:1783::-;34090:35;34128:20;34140:7;34128:11;:20::i;:::-;34090:58;;34161:22;34203:13;:18;;;34187:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;34262:12;:10;:12::i;:::-;34238:36;;:20;34250:7;34238:11;:20::i;:::-;:36;;;34187:87;:154;;;;34291:50;34308:13;:18;;;34328:12;:10;:12::i;:::-;34291:16;:50::i;:::-;34187:154;34161:181;;34363:17;34355:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;34478:4;34456:26;;:13;:18;;;:26;;;34448:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;34558:1;34544:16;;:2;:16;;;;34536:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34615:43;34637:4;34643:2;34647:7;34656:1;34615:21;:43::i;:::-;34723:49;34740:1;34744:7;34753:13;:18;;;34723:8;:49::i;:::-;35007:1;34977:12;:18;34990:4;34977:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35051:1;35023:12;:16;35036:2;35023:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35099:43;;;;;;;;35114:2;35099:43;;;;;;35125:15;35099:43;;;;;35076:11;:20;35088:7;35076:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35382:19;35414:1;35404:7;:11;;;;:::i;:::-;35382:33;;35471:1;35430:43;;:11;:24;35442:11;35430:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35426:227;;;35494:20;35502:11;35494:7;:20::i;:::-;35490:152;;;35562:64;;;;;;;;35577:13;:18;;;35562:64;;;;;;35597:13;:28;;;35562:64;;;;;35535:11;:24;35547:11;35535:24;;;;;;;;;;;:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35490:152;35426:227;35689:7;35685:2;35670:27;;35679:4;35670:27;;;;;;;;;;;;35708:42;35729:4;35735:2;35739:7;35748:1;35708:20;:42::i;:::-;33975:1783;;;;;;:::o;27579:472::-;27640:21;;:::i;:::-;27682:16;27690:7;27682;:16::i;:::-;27674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27763:12;27778:7;27763:22;;27758:216;27812:31;27846:11;:17;27858:4;27846:17;;;;;;;;;;;27812:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27908:1;27882:28;;:9;:14;;;:28;;;27878:85;;27938:9;27931:16;;;;;;27878:85;27758:216;27789:6;;;;;:::i;:::-;;;;27758:216;;27579:472;;;;:::o;3275:191::-;3349:16;3368:6;;;;;;;;;;;3349:25;;3394:8;3385:6;;:17;;;;;;;;;;;;;;;;;;3449:8;3418:40;;3439:8;3418:40;;;;;;;;;;;;3275:191;;:::o;41376:98::-;41434:7;41465:1;41461;:5;;;;:::i;:::-;41454:12;;41376:98;;;;:::o;31951:104::-;32020:27;32030:2;32034:8;32020:27;;;;;;;;;;;;:9;:27::i;:::-;31951:104;;:::o;36637:804::-;36792:4;36813:15;:2;:13;;;:15::i;:::-;36809:625;;;36865:2;36849:36;;;36886:12;:10;:12::i;:::-;36900:4;36906:7;36915:5;36849:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36845:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37112:1;37095:6;:13;:18;37091:273;;;37138:61;;;;;;;;;;:::i;:::-;;;;;;;;37091:273;37314:6;37308:13;37299:6;37295:2;37291:15;37284:38;36845:534;36982:45;;;36972:55;;;:6;:55;;;;36965:62;;;;;36809:625;37418:4;37411:11;;36637:804;;;;;;;:::o;3823:723::-;3879:13;4109:1;4100:5;:10;4096:53;;;4127:10;;;;;;;;;;;;;;;;;;;;;4096:53;4159:12;4174:5;4159:20;;4190:14;4215:78;4230:1;4222:4;:9;4215:78;;4248:8;;;;;:::i;:::-;;;;4279:2;4271:10;;;;;:::i;:::-;;;4215:78;;;4303:19;4335:6;4325:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4303:39;;4353:154;4369:1;4360:5;:10;4353:154;;4397:1;4387:11;;;;;:::i;:::-;;;4464:2;4456:5;:10;;;;:::i;:::-;4443:2;:24;;;;:::i;:::-;4430:39;;4413:6;4420;4413:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;4493:2;4484:11;;;;;:::i;:::-;;;4353:154;;;4531:6;4517:21;;;;;3823:723;;;;:::o;30510:164::-;30607:4;30631:18;:25;30650:5;30631:25;;;;;;;;;;;;;;;:35;30657:8;30631:35;;;;;;;;;;;;;;;;;;;;;;;;;30624:42;;30510:164;;;;:::o;37929:159::-;;;;;:::o;38500:158::-;;;;;:::o;32332:1389::-;32455:20;32478:12;;32455:35;;32523:1;32509:16;;:2;:16;;;;32501:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32708:21;32716:12;32708:7;:21::i;:::-;32707:22;32699:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32793:1;32782:8;:12;32774:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32847:61;32877:1;32881:2;32885:12;32899:8;32847:21;:61::i;:::-;32921:30;32954:12;:16;32967:2;32954:16;;;;;;;;;;;;;;;32921:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000:135;;;;;;;;33056:8;33026:11;:19;;;:39;;;;:::i;:::-;33000:135;;;;;;33115:8;33080:11;:24;;;:44;;;;:::i;:::-;33000:135;;;;;32981:12;:16;32994:2;32981:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33174:43;;;;;;;;33189:2;33174:43;;;;;;33200:15;33174:43;;;;;33146:11;:25;33158:12;33146:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33230:20;33253:12;33230:35;;33283:9;33278:325;33302:8;33298:1;:12;33278:325;;;33362:12;33358:2;33337:38;;33354:1;33337:38;;;;;;;;;;;;33416:59;33447:1;33451:2;33455:12;33469:5;33416:22;:59::i;:::-;33390:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;33577:14;;;;;:::i;:::-;;;;33312:3;;;;;:::i;:::-;;;;33278:325;;;;33630:12;33615;:27;;;;33653:60;33682:1;33686:2;33690:12;33704:8;33653:20;:60::i;:::-;32332:1389;;;;;;:::o;15002:387::-;15062:4;15270:12;15337:7;15325:20;15317:28;;15380:1;15373:4;:8;15366:15;;;15002:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1569:201::-;;1686:6;1680:13;1671:22;;1702:62;1758:5;1702:62;:::i;:::-;1661:109;;;;:::o;1790:273::-;;1895:3;1888:4;1880:6;1876:17;1872:27;1862:2;;1913:1;1910;1903:12;1862:2;1953:6;1940:20;1978:79;2053:3;2045:6;2038:4;2030:6;2026:17;1978:79;:::i;:::-;1969:88;;1852:211;;;;;:::o;2069:139::-;;2153:6;2140:20;2131:29;;2169:33;2196:5;2169:33;:::i;:::-;2121:87;;;;:::o;2214:262::-;;2322:2;2310:9;2301:7;2297:23;2293:32;2290:2;;;2338:1;2335;2328:12;2290:2;2381:1;2406:53;2451:7;2442:6;2431:9;2427:22;2406:53;:::i;:::-;2396:63;;2352:117;2280:196;;;;:::o;2482:407::-;;;2607:2;2595:9;2586:7;2582:23;2578:32;2575:2;;;2623:1;2620;2613:12;2575:2;2666:1;2691:53;2736:7;2727:6;2716:9;2712:22;2691:53;:::i;:::-;2681:63;;2637:117;2793:2;2819:53;2864:7;2855:6;2844:9;2840:22;2819:53;:::i;:::-;2809:63;;2764:118;2565:324;;;;;:::o;2895:552::-;;;;3037:2;3025:9;3016:7;3012:23;3008:32;3005:2;;;3053:1;3050;3043:12;3005:2;3096:1;3121:53;3166:7;3157:6;3146:9;3142:22;3121:53;:::i;:::-;3111:63;;3067:117;3223:2;3249:53;3294:7;3285:6;3274:9;3270:22;3249:53;:::i;:::-;3239:63;;3194:118;3351:2;3377:53;3422:7;3413:6;3402:9;3398:22;3377:53;:::i;:::-;3367:63;;3322:118;2995:452;;;;;:::o;3453:809::-;;;;;3621:3;3609:9;3600:7;3596:23;3592:33;3589:2;;;3638:1;3635;3628:12;3589:2;3681:1;3706:53;3751:7;3742:6;3731:9;3727:22;3706:53;:::i;:::-;3696:63;;3652:117;3808:2;3834:53;3879:7;3870:6;3859:9;3855:22;3834:53;:::i;:::-;3824:63;;3779:118;3936:2;3962:53;4007:7;3998:6;3987:9;3983:22;3962:53;:::i;:::-;3952:63;;3907:118;4092:2;4081:9;4077:18;4064:32;4123:18;4115:6;4112:30;4109:2;;;4155:1;4152;4145:12;4109:2;4183:62;4237:7;4228:6;4217:9;4213:22;4183:62;:::i;:::-;4173:72;;4035:220;3579:683;;;;;;;:::o;4268:401::-;;;4390:2;4378:9;4369:7;4365:23;4361:32;4358:2;;;4406:1;4403;4396:12;4358:2;4449:1;4474:53;4519:7;4510:6;4499:9;4495:22;4474:53;:::i;:::-;4464:63;;4420:117;4576:2;4602:50;4644:7;4635:6;4624:9;4620:22;4602:50;:::i;:::-;4592:60;;4547:115;4348:321;;;;;:::o;4675:407::-;;;4800:2;4788:9;4779:7;4775:23;4771:32;4768:2;;;4816:1;4813;4806:12;4768:2;4859:1;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4830:117;4986:2;5012:53;5057:7;5048:6;5037:9;5033:22;5012:53;:::i;:::-;5002:63;;4957:118;4758:324;;;;;:::o;5088:260::-;;5195:2;5183:9;5174:7;5170:23;5166:32;5163:2;;;5211:1;5208;5201:12;5163:2;5254:1;5279:52;5323:7;5314:6;5303:9;5299:22;5279:52;:::i;:::-;5269:62;;5225:116;5153:195;;;;:::o;5354:282::-;;5472:2;5460:9;5451:7;5447:23;5443:32;5440:2;;;5488:1;5485;5478:12;5440:2;5531:1;5556:63;5611:7;5602:6;5591:9;5587:22;5556:63;:::i;:::-;5546:73;;5502:127;5430:206;;;;:::o;5642:342::-;;5790:2;5778:9;5769:7;5765:23;5761:32;5758:2;;;5806:1;5803;5796:12;5758:2;5849:1;5874:93;5959:7;5950:6;5939:9;5935:22;5874:93;:::i;:::-;5864:103;;5820:157;5748:236;;;;:::o;5990:375::-;;6108:2;6096:9;6087:7;6083:23;6079:32;6076:2;;;6124:1;6121;6114:12;6076:2;6195:1;6184:9;6180:17;6167:31;6225:18;6217:6;6214:30;6211:2;;;6257:1;6254;6247:12;6211:2;6285:63;6340:7;6331:6;6320:9;6316:22;6285:63;:::i;:::-;6275:73;;6138:220;6066:299;;;;:::o;6371:262::-;;6479:2;6467:9;6458:7;6454:23;6450:32;6447:2;;;6495:1;6492;6485:12;6447:2;6538:1;6563:53;6608:7;6599:6;6588:9;6584:22;6563:53;:::i;:::-;6553:63;;6509:117;6437:196;;;;:::o;6639:118::-;6726:24;6744:5;6726:24;:::i;:::-;6721:3;6714:37;6704:53;;:::o;6763:109::-;6844:21;6859:5;6844:21;:::i;:::-;6839:3;6832:34;6822:50;;:::o;6878:360::-;;6992:38;7024:5;6992:38;:::i;:::-;7046:70;7109:6;7104:3;7046:70;:::i;:::-;7039:77;;7125:52;7170:6;7165:3;7158:4;7151:5;7147:16;7125:52;:::i;:::-;7202:29;7224:6;7202:29;:::i;:::-;7197:3;7193:39;7186:46;;6968:270;;;;;:::o;7244:364::-;;7360:39;7393:5;7360:39;:::i;:::-;7415:71;7479:6;7474:3;7415:71;:::i;:::-;7408:78;;7495:52;7540:6;7535:3;7528:4;7521:5;7517:16;7495:52;:::i;:::-;7572:29;7594:6;7572:29;:::i;:::-;7567:3;7563:39;7556:46;;7336:272;;;;;:::o;7614:377::-;;7748:39;7781:5;7748:39;:::i;:::-;7803:89;7885:6;7880:3;7803:89;:::i;:::-;7796:96;;7901:52;7946:6;7941:3;7934:4;7927:5;7923:16;7901:52;:::i;:::-;7978:6;7973:3;7969:16;7962:23;;7724:267;;;;;:::o;8021:845::-;;8161:5;8155:12;8190:36;8216:9;8190:36;:::i;:::-;8242:89;8324:6;8319:3;8242:89;:::i;:::-;8235:96;;8362:1;8351:9;8347:17;8378:1;8373:137;;;;8524:1;8519:341;;;;8340:520;;8373:137;8457:4;8453:9;8442;8438:25;8433:3;8426:38;8493:6;8488:3;8484:16;8477:23;;8373:137;;8519:341;8586:38;8618:5;8586:38;:::i;:::-;8646:1;8660:154;8674:6;8671:1;8668:13;8660:154;;;8748:7;8742:14;8738:1;8733:3;8729:11;8722:35;8798:1;8789:7;8785:15;8774:26;;8696:4;8693:1;8689:12;8684:17;;8660:154;;;8843:6;8838:3;8834:16;8827:23;;8526:334;;8340:520;;8128:738;;;;;;:::o;8872:366::-;;9035:67;9099:2;9094:3;9035:67;:::i;:::-;9028:74;;9132:34;9128:1;9123:3;9119:11;9112:55;9198:4;9193:2;9188:3;9184:12;9177:26;9229:2;9224:3;9220:12;9213:19;;9018:220;;;:::o;9244:311::-;;9407:67;9471:2;9466:3;9407:67;:::i;:::-;9400:74;;9504:15;9500:1;9495:3;9491:11;9484:36;9546:2;9541:3;9537:12;9530:19;;9390:165;;;:::o;9561:370::-;;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9821:34;9817:1;9812:3;9808:11;9801:55;9887:8;9882:2;9877:3;9873:12;9866:30;9922:2;9917:3;9913:12;9906:19;;9707:224;;;:::o;9937:374::-;;10100:67;10164:2;10159:3;10100:67;:::i;:::-;10093:74;;10197:34;10193:1;10188:3;10184:11;10177:55;10263:12;10258:2;10253:3;10249:12;10242:34;10302:2;10297:3;10293:12;10286:19;;10083:228;;;:::o;10317:367::-;;10480:67;10544:2;10539:3;10480:67;:::i;:::-;10473:74;;10577:34;10573:1;10568:3;10564:11;10557:55;10643:5;10638:2;10633:3;10629:12;10622:27;10675:2;10670:3;10666:12;10659:19;;10463:221;;;:::o;10690:369::-;;10853:67;10917:2;10912:3;10853:67;:::i;:::-;10846:74;;10950:34;10946:1;10941:3;10937:11;10930:55;11016:7;11011:2;11006:3;11002:12;10995:29;11050:2;11045:3;11041:12;11034:19;;10836:223;;;:::o;11065:326::-;;11228:67;11292:2;11287:3;11228:67;:::i;:::-;11221:74;;11325:30;11321:1;11316:3;11312:11;11305:51;11382:2;11377:3;11373:12;11366:19;;11211:180;;;:::o;11397:389::-;;11560:67;11624:2;11619:3;11560:67;:::i;:::-;11553:74;;11657:34;11653:1;11648:3;11644:11;11637:55;11723:27;11718:2;11713:3;11709:12;11702:49;11777:2;11772:3;11768:12;11761:19;;11543:243;;;:::o;11792:365::-;;11955:67;12019:2;12014:3;11955:67;:::i;:::-;11948:74;;12052:34;12048:1;12043:3;12039:11;12032:55;12118:3;12113:2;12108:3;12104:12;12097:25;12148:2;12143:3;12139:12;12132:19;;11938:219;;;:::o;12163:375::-;;12326:67;12390:2;12385:3;12326:67;:::i;:::-;12319:74;;12423:34;12419:1;12414:3;12410:11;12403:55;12489:13;12484:2;12479:3;12475:12;12468:35;12529:2;12524:3;12520:12;12513:19;;12309:229;;;:::o;12544:370::-;;12707:67;12771:2;12766:3;12707:67;:::i;:::-;12700:74;;12804:34;12800:1;12795:3;12791:11;12784:55;12870:8;12865:2;12860:3;12856:12;12849:30;12905:2;12900:3;12896:12;12889:19;;12690:224;;;:::o;12920:337::-;;13101:84;13183:1;13178:3;13101:84;:::i;:::-;13094:91;;13215:7;13211:1;13206:3;13202:11;13195:28;13249:1;13244:3;13240:11;13233:18;;13084:173;;;:::o;13263:330::-;;13426:67;13490:2;13485:3;13426:67;:::i;:::-;13419:74;;13523:34;13519:1;13514:3;13510:11;13503:55;13584:2;13579:3;13575:12;13568:19;;13409:184;;;:::o;13599:324::-;;13762:67;13826:2;13821:3;13762:67;:::i;:::-;13755:74;;13859:28;13855:1;13850:3;13846:11;13839:49;13914:2;13909:3;13905:12;13898:19;;13745:178;;;:::o;13929:382::-;;14092:67;14156:2;14151:3;14092:67;:::i;:::-;14085:74;;14189:34;14185:1;14180:3;14176:11;14169:55;14255:20;14250:2;14245:3;14241:12;14234:42;14302:2;14297:3;14293:12;14286:19;;14075:236;;;:::o;14317:366::-;;14480:67;14544:2;14539:3;14480:67;:::i;:::-;14473:74;;14577:34;14573:1;14568:3;14564:11;14557:55;14643:4;14638:2;14633:3;14629:12;14622:26;14674:2;14669:3;14665:12;14658:19;;14463:220;;;:::o;14689:297::-;;14869:83;14950:1;14945:3;14869:83;:::i;:::-;14862:90;;14978:1;14973:3;14969:11;14962:18;;14852:134;;;:::o;14992:367::-;;15155:67;15219:2;15214:3;15155:67;:::i;:::-;15148:74;;15252:34;15248:1;15243:3;15239:11;15232:55;15318:5;15313:2;15308:3;15304:12;15297:27;15350:2;15345:3;15341:12;15334:19;;15138:221;;;:::o;15365:383::-;;15528:67;15592:2;15587:3;15528:67;:::i;:::-;15521:74;;15625:34;15621:1;15616:3;15612:11;15605:55;15691:21;15686:2;15681:3;15677:12;15670:43;15739:2;15734:3;15730:12;15723:19;;15511:237;;;:::o;15754:327::-;;15917:67;15981:2;15976:3;15917:67;:::i;:::-;15910:74;;16014:31;16010:1;16005:3;16001:11;15994:52;16072:2;16067:3;16063:12;16056:19;;15900:181;;;:::o;16087:365::-;;16250:67;16314:2;16309:3;16250:67;:::i;:::-;16243:74;;16347:34;16343:1;16338:3;16334:11;16327:55;16413:3;16408:2;16403:3;16399:12;16392:25;16443:2;16438:3;16434:12;16427:19;;16233:219;;;:::o;16458:314::-;;16621:67;16685:2;16680:3;16621:67;:::i;:::-;16614:74;;16718:18;16714:1;16709:3;16705:11;16698:39;16763:2;16758:3;16754:12;16747:19;;16604:168;;;:::o;16778:312::-;;16941:67;17005:2;17000:3;16941:67;:::i;:::-;16934:74;;17038:16;17034:1;17029:3;17025:11;17018:37;17081:2;17076:3;17072:12;17065:19;;16924:166;;;:::o;17096:378::-;;17259:67;17323:2;17318:3;17259:67;:::i;:::-;17252:74;;17356:34;17352:1;17347:3;17343:11;17336:55;17422:16;17417:2;17412:3;17408:12;17401:38;17465:2;17460:3;17456:12;17449:19;;17242:232;;;:::o;17865:377::-;;18028:67;18092:2;18087:3;18028:67;:::i;:::-;18021:74;;18125:34;18121:1;18116:3;18112:11;18105:55;18191:15;18186:2;18181:3;18177:12;18170:37;18233:2;18228:3;18224:12;18217:19;;18011:231;;;:::o;18248:118::-;18335:24;18353:5;18335:24;:::i;:::-;18330:3;18323:37;18313:53;;:::o;18372:695::-;;18672:92;18760:3;18751:6;18672:92;:::i;:::-;18665:99;;18781:95;18872:3;18863:6;18781:95;:::i;:::-;18774:102;;18893:148;19037:3;18893:148;:::i;:::-;18886:155;;19058:3;19051:10;;18654:413;;;;;:::o;19073:379::-;;19279:147;19422:3;19279:147;:::i;:::-;19272:154;;19443:3;19436:10;;19261:191;;;:::o;19458:222::-;;19589:2;19578:9;19574:18;19566:26;;19602:71;19670:1;19659:9;19655:17;19646:6;19602:71;:::i;:::-;19556:124;;;;:::o;19686:640::-;;19919:3;19908:9;19904:19;19896:27;;19933:71;20001:1;19990:9;19986:17;19977:6;19933:71;:::i;:::-;20014:72;20082:2;20071:9;20067:18;20058:6;20014:72;:::i;:::-;20096;20164:2;20153:9;20149:18;20140:6;20096:72;:::i;:::-;20215:9;20209:4;20205:20;20200:2;20189:9;20185:18;20178:48;20243:76;20314:4;20305:6;20243:76;:::i;:::-;20235:84;;19886:440;;;;;;;:::o;20332:210::-;;20457:2;20446:9;20442:18;20434:26;;20470:65;20532:1;20521:9;20517:17;20508:6;20470:65;:::i;:::-;20424:118;;;;:::o;20548:313::-;;20699:2;20688:9;20684:18;20676:26;;20748:9;20742:4;20738:20;20734:1;20723:9;20719:17;20712:47;20776:78;20849:4;20840:6;20776:78;:::i;:::-;20768:86;;20666:195;;;;:::o;20867:419::-;;21071:2;21060:9;21056:18;21048:26;;21120:9;21114:4;21110:20;21106:1;21095:9;21091:17;21084:47;21148:131;21274:4;21148:131;:::i;:::-;21140:139;;21038:248;;;:::o;21292:419::-;;21496:2;21485:9;21481:18;21473:26;;21545:9;21539:4;21535:20;21531:1;21520:9;21516:17;21509:47;21573:131;21699:4;21573:131;:::i;:::-;21565:139;;21463:248;;;:::o;21717:419::-;;21921:2;21910:9;21906:18;21898:26;;21970:9;21964:4;21960:20;21956:1;21945:9;21941:17;21934:47;21998:131;22124:4;21998:131;:::i;:::-;21990:139;;21888:248;;;:::o;22142:419::-;;22346:2;22335:9;22331:18;22323:26;;22395:9;22389:4;22385:20;22381:1;22370:9;22366:17;22359:47;22423:131;22549:4;22423:131;:::i;:::-;22415:139;;22313:248;;;:::o;22567:419::-;;22771:2;22760:9;22756:18;22748:26;;22820:9;22814:4;22810:20;22806:1;22795:9;22791:17;22784:47;22848:131;22974:4;22848:131;:::i;:::-;22840:139;;22738:248;;;:::o;22992:419::-;;23196:2;23185:9;23181:18;23173:26;;23245:9;23239:4;23235:20;23231:1;23220:9;23216:17;23209:47;23273:131;23399:4;23273:131;:::i;:::-;23265:139;;23163:248;;;:::o;23417:419::-;;23621:2;23610:9;23606:18;23598:26;;23670:9;23664:4;23660:20;23656:1;23645:9;23641:17;23634:47;23698:131;23824:4;23698:131;:::i;:::-;23690:139;;23588:248;;;:::o;23842:419::-;;24046:2;24035:9;24031:18;24023:26;;24095:9;24089:4;24085:20;24081:1;24070:9;24066:17;24059:47;24123:131;24249:4;24123:131;:::i;:::-;24115:139;;24013:248;;;:::o;24267:419::-;;24471:2;24460:9;24456:18;24448:26;;24520:9;24514:4;24510:20;24506:1;24495:9;24491:17;24484:47;24548:131;24674:4;24548:131;:::i;:::-;24540:139;;24438:248;;;:::o;24692:419::-;;24896:2;24885:9;24881:18;24873:26;;24945:9;24939:4;24935:20;24931:1;24920:9;24916:17;24909:47;24973:131;25099:4;24973:131;:::i;:::-;24965:139;;24863:248;;;:::o;25117:419::-;;25321:2;25310:9;25306:18;25298:26;;25370:9;25364:4;25360:20;25356:1;25345:9;25341:17;25334:47;25398:131;25524:4;25398:131;:::i;:::-;25390:139;;25288:248;;;:::o;25542:419::-;;25746:2;25735:9;25731:18;25723:26;;25795:9;25789:4;25785:20;25781:1;25770:9;25766:17;25759:47;25823:131;25949:4;25823:131;:::i;:::-;25815:139;;25713:248;;;:::o;25967:419::-;;26171:2;26160:9;26156:18;26148:26;;26220:9;26214:4;26210:20;26206:1;26195:9;26191:17;26184:47;26248:131;26374:4;26248:131;:::i;:::-;26240:139;;26138:248;;;:::o;26392:419::-;;26596:2;26585:9;26581:18;26573:26;;26645:9;26639:4;26635:20;26631:1;26620:9;26616:17;26609:47;26673:131;26799:4;26673:131;:::i;:::-;26665:139;;26563:248;;;:::o;26817:419::-;;27021:2;27010:9;27006:18;26998:26;;27070:9;27064:4;27060:20;27056:1;27045:9;27041:17;27034:47;27098:131;27224:4;27098:131;:::i;:::-;27090:139;;26988:248;;;:::o;27242:419::-;;27446:2;27435:9;27431:18;27423:26;;27495:9;27489:4;27485:20;27481:1;27470:9;27466:17;27459:47;27523:131;27649:4;27523:131;:::i;:::-;27515:139;;27413:248;;;:::o;27667:419::-;;27871:2;27860:9;27856:18;27848:26;;27920:9;27914:4;27910:20;27906:1;27895:9;27891:17;27884:47;27948:131;28074:4;27948:131;:::i;:::-;27940:139;;27838:248;;;:::o;28092:419::-;;28296:2;28285:9;28281:18;28273:26;;28345:9;28339:4;28335:20;28331:1;28320:9;28316:17;28309:47;28373:131;28499:4;28373:131;:::i;:::-;28365:139;;28263:248;;;:::o;28517:419::-;;28721:2;28710:9;28706:18;28698:26;;28770:9;28764:4;28760:20;28756:1;28745:9;28741:17;28734:47;28798:131;28924:4;28798:131;:::i;:::-;28790:139;;28688:248;;;:::o;28942:419::-;;29146:2;29135:9;29131:18;29123:26;;29195:9;29189:4;29185:20;29181:1;29170:9;29166:17;29159:47;29223:131;29349:4;29223:131;:::i;:::-;29215:139;;29113:248;;;:::o;29367:419::-;;29571:2;29560:9;29556:18;29548:26;;29620:9;29614:4;29610:20;29606:1;29595:9;29591:17;29584:47;29648:131;29774:4;29648:131;:::i;:::-;29640:139;;29538:248;;;:::o;29792:419::-;;29996:2;29985:9;29981:18;29973:26;;30045:9;30039:4;30035:20;30031:1;30020:9;30016:17;30009:47;30073:131;30199:4;30073:131;:::i;:::-;30065:139;;29963:248;;;:::o;30642:419::-;;30846:2;30835:9;30831:18;30823:26;;30895:9;30889:4;30885:20;30881:1;30870:9;30866:17;30859:47;30923:131;31049:4;30923:131;:::i;:::-;30915:139;;30813:248;;;:::o;31067:222::-;;31198:2;31187:9;31183:18;31175:26;;31211:71;31279:1;31268:9;31264:17;31255:6;31211:71;:::i;:::-;31165:124;;;;:::o;31295:283::-;;31361:2;31355:9;31345:19;;31403:4;31395:6;31391:17;31510:6;31498:10;31495:22;31474:18;31462:10;31459:34;31456:62;31453:2;;;31521:18;;:::i;:::-;31453:2;31561:10;31557:2;31550:22;31335:243;;;;:::o;31584:331::-;;31735:18;31727:6;31724:30;31721:2;;;31757:18;;:::i;:::-;31721:2;31842:4;31838:9;31831:4;31823:6;31819:17;31815:33;31807:41;;31903:4;31897;31893:15;31885:23;;31650:265;;;:::o;31921:332::-;;32073:18;32065:6;32062:30;32059:2;;;32095:18;;:::i;:::-;32059:2;32180:4;32176:9;32169:4;32161:6;32157:17;32153:33;32145:41;;32241:4;32235;32231:15;32223:23;;31988:265;;;:::o;32259:141::-;;32331:3;32323:11;;32354:3;32351:1;32344:14;32388:4;32385:1;32375:18;32367:26;;32313:87;;;:::o;32406:98::-;;32491:5;32485:12;32475:22;;32464:40;;;:::o;32510:99::-;;32596:5;32590:12;32580:22;;32569:40;;;:::o;32615:168::-;;32732:6;32727:3;32720:19;32772:4;32767:3;32763:14;32748:29;;32710:73;;;;:::o;32789:147::-;;32927:3;32912:18;;32902:34;;;;:::o;32942:169::-;;33060:6;33055:3;33048:19;33100:4;33095:3;33091:14;33076:29;;33038:73;;;;:::o;33117:148::-;;33256:3;33241:18;;33231:34;;;;:::o;33271:273::-;;33330:20;33348:1;33330:20;:::i;:::-;33325:25;;33364:20;33382:1;33364:20;:::i;:::-;33359:25;;33486:1;33450:34;33446:42;33443:1;33440:49;33437:2;;;33492:18;;:::i;:::-;33437:2;33536:1;33533;33529:9;33522:16;;33315:229;;;;:::o;33550:305::-;;33609:20;33627:1;33609:20;:::i;:::-;33604:25;;33643:20;33661:1;33643:20;:::i;:::-;33638:25;;33797:1;33729:66;33725:74;33722:1;33719:81;33716:2;;;33803:18;;:::i;:::-;33716:2;33847:1;33844;33840:9;33833:16;;33594:261;;;;:::o;33861:185::-;;33918:20;33936:1;33918:20;:::i;:::-;33913:25;;33952:20;33970:1;33952:20;:::i;:::-;33947:25;;33991:1;33981:2;;33996:18;;:::i;:::-;33981:2;34038:1;34035;34031:9;34026:14;;33903:143;;;;:::o;34052:191::-;;34112:20;34130:1;34112:20;:::i;:::-;34107:25;;34146:20;34164:1;34146:20;:::i;:::-;34141:25;;34185:1;34182;34179:8;34176:2;;;34190:18;;:::i;:::-;34176:2;34235:1;34232;34228:9;34220:17;;34097:146;;;;:::o;34249:96::-;;34315:24;34333:5;34315:24;:::i;:::-;34304:35;;34294:51;;;:::o;34351:90::-;;34428:5;34421:13;34414:21;34403:32;;34393:48;;;:::o;34447:149::-;;34523:66;34516:5;34512:78;34501:89;;34491:105;;;:::o;34602:125::-;;34697:24;34715:5;34697:24;:::i;:::-;34686:35;;34676:51;;;:::o;34733:118::-;;34810:34;34803:5;34799:46;34788:57;;34778:73;;;:::o;34857:126::-;;34934:42;34927:5;34923:54;34912:65;;34902:81;;;:::o;34989:77::-;;35055:5;35044:16;;35034:32;;;:::o;35072:154::-;35156:6;35151:3;35146;35133:30;35218:1;35209:6;35204:3;35200:16;35193:27;35123:103;;;:::o;35232:307::-;35300:1;35310:113;35324:6;35321:1;35318:13;35310:113;;;35409:1;35404:3;35400:11;35394:18;35390:1;35385:3;35381:11;35374:39;35346:2;35343:1;35339:10;35334:15;;35310:113;;;35441:6;35438:1;35435:13;35432:2;;;35521:1;35512:6;35507:3;35503:16;35496:27;35432:2;35281:258;;;;:::o;35545:171::-;;35607:24;35625:5;35607:24;:::i;:::-;35598:33;;35653:4;35646:5;35643:15;35640:2;;;35661:18;;:::i;:::-;35640:2;35708:1;35701:5;35697:13;35690:20;;35588:128;;;:::o;35722:320::-;;35803:1;35797:4;35793:12;35783:22;;35850:1;35844:4;35840:12;35871:18;35861:2;;35927:4;35919:6;35915:17;35905:27;;35861:2;35989;35981:6;35978:14;35958:18;35955:38;35952:2;;;36008:18;;:::i;:::-;35952:2;35773:269;;;;:::o;36048:233::-;;36110:24;36128:5;36110:24;:::i;:::-;36101:33;;36156:66;36149:5;36146:77;36143:2;;;36226:18;;:::i;:::-;36143:2;36273:1;36266:5;36262:13;36255:20;;36091:190;;;:::o;36287:176::-;;36336:20;36354:1;36336:20;:::i;:::-;36331:25;;36370:20;36388:1;36370:20;:::i;:::-;36365:25;;36409:1;36399:2;;36414:18;;:::i;:::-;36399:2;36455:1;36452;36448:9;36443:14;;36321:142;;;;:::o;36469:180::-;36517:77;36514:1;36507:88;36614:4;36611:1;36604:15;36638:4;36635:1;36628:15;36655:180;36703:77;36700:1;36693:88;36800:4;36797:1;36790:15;36824:4;36821:1;36814:15;36841:180;36889:77;36886:1;36879:88;36986:4;36983:1;36976:15;37010:4;37007:1;37000:15;37027:180;37075:77;37072:1;37065:88;37172:4;37169:1;37162:15;37196:4;37193:1;37186:15;37213:102;;37305:2;37301:7;37296:2;37289:5;37285:14;37281:28;37271:38;;37261:54;;;:::o;37321:122::-;37394:24;37412:5;37394:24;:::i;:::-;37387:5;37384:35;37374:2;;37433:1;37430;37423:12;37374:2;37364:79;:::o;37449:116::-;37519:21;37534:5;37519:21;:::i;:::-;37512:5;37509:32;37499:2;;37555:1;37552;37545:12;37499:2;37489:76;:::o;37571:120::-;37643:23;37660:5;37643:23;:::i;:::-;37636:5;37633:34;37623:2;;37681:1;37678;37671:12;37623:2;37613:78;:::o;37697:180::-;37799:53;37846:5;37799:53;:::i;:::-;37792:5;37789:64;37779:2;;37867:1;37864;37857:12;37779:2;37769:108;:::o;37883:122::-;37956:24;37974:5;37956:24;:::i;:::-;37949:5;37946:35;37936:2;;37995:1;37992;37985:12;37936:2;37926:79;:::o
Swarm Source
ipfs://7d42cf55281b2ac5631a563c3dec480fc437d293b74ed8bda3b3d4ebe29d602f
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.