Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,001 OmniCrabs
Holders
67
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 OmniCrabsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OmniCrabs
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-13 */ // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: OmniCrabs.sol pragma solidity ^0.8.0; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // 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 virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * 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 tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @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) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @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) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } 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 || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @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 TransferToNonERC721ReceiverImplementer(); } 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. * And also called before burning one token. * * 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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ 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. * And also called after one token has been burned. * * 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` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract OmniCrabs is ERC721A, Ownable { using Strings for uint256; constructor() ERC721A("OmniCrabs", "OmniCrabs") { } uint256 public constant MAX_SUPPLY = 2000; uint256 private mintCount = 0; uint256 public freeMintAmount = 500; uint256 public price = 0.001 ether; string private baseTokenURI; string public unRevealedURI = "https://ipfs.io/ipfs/bafkreibgh7yodenwobysrguqslne2jzejzddj4kx7kuxhipofid2bwckj4"; bool public saleOpen = true; bool public revealed = false; event Minted(uint256 totalMinted); function totalSupply() public view override returns (uint256) { return mintCount; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function setUnRevealedURI(string memory uri) public onlyOwner { unRevealedURI = uri; } function setFreeAmount(uint256 amount) external onlyOwner { freeMintAmount = amount; } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function flipSale() external onlyOwner { saleOpen = !saleOpen; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success, "Transfer failed."); } function mint(address _to, uint256 _count) external payable { uint256 supply = totalSupply(); require(supply + _count <= MAX_SUPPLY, "Exceeds maximum supply"); require(_count > 0, "Minimum 1 NFT has to be minted per transaction"); if (msg.sender != owner() && (mintCount + _count) > freeMintAmount) { require(saleOpen, "Sale is not open yet"); require( msg.value >= price * _count, "Ether sent with this transaction is not correct" ); } if(msg.sender != owner()) { require( _count <= 20, "Maximum 20 NFTs can be minted per transaction" ); } mintCount += _count; _safeMint(_to, _count); emit Minted(_count); } function setRevealed(bool _revealed) external onlyOwner { revealed = _revealed; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return revealed ? string(abi.encodePacked(baseTokenURI, tokenId.toString(), '.json')) : unRevealedURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"saleOpen","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUnRevealedURI","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":"unRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006009556101f4600a5566038d7ea4c68000600b55604051806080016040528060508152602001620041b760509139600d90805190602001906200004b92919062000224565b506001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055503480156200008f57600080fd5b506040518060400160405280600981526020017f4f6d6e69437261627300000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f4f6d6e694372616273000000000000000000000000000000000000000000000081525081600290805190602001906200011492919062000224565b5080600390805190602001906200012d92919062000224565b50505062000150620001446200015660201b60201c565b6200015e60201b60201c565b62000339565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002329062000303565b90600052602060002090601f016020900481019282620002565760008555620002a2565b82601f106200027157805160ff1916838001178555620002a2565b82800160010185558215620002a2579182015b82811115620002a157825182559160200191906001019062000284565b5b509050620002b19190620002b5565b5090565b5b80821115620002d0576000816000905550600101620002b6565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200031c57607f821691505b60208210811415620003335762000332620002d4565b5b50919050565b613e6e80620003496000396000f3fe6080604052600436106101ee5760003560e01c806355f804b31161010d57806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde146106b8578063c87b56dd146106e1578063e0a808531461071e578063e985e9c514610747578063f2fde38b14610784576101ee565b806395d89b411461060e57806399288dbb14610639578063a035b1fe14610664578063a22cb4651461068f576101ee565b80637ba5e621116100dc5780637ba5e6211461057a5780638da5cb5b1461059157806391b7f5ed146105bc57806392910eec146105e5576101ee565b806355f804b3146104c05780636352211e146104e957806370a0823114610526578063715018a614610563576101ee565b80632f745c591161018557806340c10f191161015457806340c10f191461041357806342842e0e1461042f5780634f6ccce7146104585780635183022714610495576101ee565b80632f745c591461036957806332cb6b0c146103a65780633a467e3d146103d15780633ccfd60b146103fc576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea57806323b872dd14610315578063276306ed1461033e576101ee565b806301aade7b146101f357806301ffc9a71461021c57806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f3d565b6107ad565b005b34801561022857600080fd5b50610243600480360381019061023e9190612fde565b610843565b6040516102509190613026565b60405180910390f35b34801561026557600080fd5b5061026e61098d565b60405161027b91906130c9565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190613121565b610a1f565b6040516102b8919061318f565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e391906131d6565b610a9b565b005b3480156102f657600080fd5b506102ff610ba6565b60405161030c9190613225565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190613240565b610bb0565b005b34801561034a57600080fd5b50610353610bc0565b60405161036091906130c9565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b91906131d6565b610c4e565b60405161039d9190613225565b60405180910390f35b3480156103b257600080fd5b506103bb610e27565b6040516103c89190613225565b60405180910390f35b3480156103dd57600080fd5b506103e6610e2d565b6040516103f39190613225565b60405180910390f35b34801561040857600080fd5b50610411610e33565b005b61042d600480360381019061042891906131d6565b610f5e565b005b34801561043b57600080fd5b5061045660048036038101906104519190613240565b6111d1565b005b34801561046457600080fd5b5061047f600480360381019061047a9190613121565b6111f1565b60405161048c9190613225565b60405180910390f35b3480156104a157600080fd5b506104aa611336565b6040516104b79190613026565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612f3d565b611349565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613121565b6113df565b60405161051d919061318f565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190613293565b6113f5565b60405161055a9190613225565b60405180910390f35b34801561056f57600080fd5b506105786114c5565b005b34801561058657600080fd5b5061058f61154d565b005b34801561059d57600080fd5b506105a66115f5565b6040516105b3919061318f565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190613121565b61161f565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613121565b6116a5565b005b34801561061a57600080fd5b5061062361172b565b60405161063091906130c9565b60405180910390f35b34801561064557600080fd5b5061064e6117bd565b60405161065b9190613026565b60405180910390f35b34801561067057600080fd5b506106796117d0565b6040516106869190613225565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b191906132ec565b6117d6565b005b3480156106c457600080fd5b506106df60048036038101906106da91906133cd565b61194e565b005b3480156106ed57600080fd5b5061070860048036038101906107039190613121565b6119a1565b60405161071591906130c9565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190613450565b611ac2565b005b34801561075357600080fd5b5061076e6004803603810190610769919061347d565b611b5b565b60405161077b9190613026565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a69190613293565b611bef565b005b6107b5611ce7565b73ffffffffffffffffffffffffffffffffffffffff166107d36115f5565b73ffffffffffffffffffffffffffffffffffffffff1614610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082090613509565b60405180910390fd5b80600d908051906020019061083f929190612cfd565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610986575061098582611cef565b5b9050919050565b60606002805461099c90613558565b80601f01602080910402602001604051908101604052809291908181526020018280546109c890613558565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b6000610a2a82611d59565b610a60576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa6826113df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b0e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b2d611ce7565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b5f5750610b5d81610b58611ce7565b611b5b565b155b15610b96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ba1838383611d93565b505050565b6000600954905090565b610bbb838383611e45565b505050565b600d8054610bcd90613558565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf990613558565b8015610c465780601f10610c1b57610100808354040283529160200191610c46565b820191906000526020600020905b815481529060010190602001808311610c2957829003601f168201915b505050505081565b6000610c59836113f5565b8210610c91576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610e1b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d7a5750610e0e565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dba57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e0c5786841415610e03578195505050505050610e21565b83806001019450505b505b8080600101915050610c9d565b50600080fd5b92915050565b6107d081565b600a5481565b610e3b611ce7565b73ffffffffffffffffffffffffffffffffffffffff16610e596115f5565b73ffffffffffffffffffffffffffffffffffffffff1614610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613509565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ed5906135bb565b60006040518083038185875af1925050503d8060008114610f12576040519150601f19603f3d011682016040523d82523d6000602084013e610f17565b606091505b5050905080610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f529061361c565b60405180910390fd5b50565b6000610f68610ba6565b90506107d08282610f79919061366b565b1115610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb19061370d565b60405180910390fd5b60008211610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff49061379f565b60405180910390fd5b6110056115f5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561104e5750600a548260095461104c919061366b565b115b156110f357600e60009054906101000a900460ff166110a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110999061380b565b60405180910390fd5b81600b546110b0919061382b565b3410156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e9906138f7565b60405180910390fd5b5b6110fb6115f5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611172576014821115611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890613989565b60405180910390fd5b5b8160096000828254611184919061366b565b925050819055506111958383612336565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a826040516111c49190613225565b60405180910390a1505050565b6111ec8383836040518060200160405280600081525061194e565b505050565b60008060005490506000805b828110156112fe576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516112f057858314156112e75781945050505050611331565b82806001019350505b5080806001019150506111fd565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600e60019054906101000a900460ff1681565b611351611ce7565b73ffffffffffffffffffffffffffffffffffffffff1661136f6115f5565b73ffffffffffffffffffffffffffffffffffffffff16146113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc90613509565b60405180910390fd5b80600c90805190602001906113db929190612cfd565b5050565b60006113ea82612354565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114cd611ce7565b73ffffffffffffffffffffffffffffffffffffffff166114eb6115f5565b73ffffffffffffffffffffffffffffffffffffffff1614611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890613509565b60405180910390fd5b61154b60006125d0565b565b611555611ce7565b73ffffffffffffffffffffffffffffffffffffffff166115736115f5565b73ffffffffffffffffffffffffffffffffffffffff16146115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090613509565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611627611ce7565b73ffffffffffffffffffffffffffffffffffffffff166116456115f5565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290613509565b60405180910390fd5b80600b8190555050565b6116ad611ce7565b73ffffffffffffffffffffffffffffffffffffffff166116cb6115f5565b73ffffffffffffffffffffffffffffffffffffffff1614611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171890613509565b60405180910390fd5b80600a8190555050565b60606003805461173a90613558565b80601f016020809104026020016040519081016040528092919081815260200182805461176690613558565b80156117b35780601f10611788576101008083540402835291602001916117b3565b820191906000526020600020905b81548152906001019060200180831161179657829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600b5481565b6117de611ce7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611843576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611850611ce7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118fd611ce7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119429190613026565b60405180910390a35050565b611959848484611e45565b61196584848484612696565b61199b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606119ac82611d59565b6119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613a1b565b60405180910390fd5b600e60019054906101000a900460ff16611a8f57600d8054611a0c90613558565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3890613558565b8015611a855780601f10611a5a57610100808354040283529160200191611a85565b820191906000526020600020905b815481529060010190602001808311611a6857829003601f168201915b5050505050611abb565b600c611a9a83612824565b604051602001611aab929190613b57565b6040516020818303038152906040525b9050919050565b611aca611ce7565b73ffffffffffffffffffffffffffffffffffffffff16611ae86115f5565b73ffffffffffffffffffffffffffffffffffffffff1614611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590613509565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bf7611ce7565b73ffffffffffffffffffffffffffffffffffffffff16611c156115f5565b73ffffffffffffffffffffffffffffffffffffffff1614611c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6290613509565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd290613bf8565b60405180910390fd5b611ce4816125d0565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611d8c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e5082612354565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e77611ce7565b73ffffffffffffffffffffffffffffffffffffffff161480611eaa5750611ea98260000151611ea4611ce7565b611b5b565b5b80611eef5750611eb8611ce7565b73ffffffffffffffffffffffffffffffffffffffff16611ed784610a1f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f28576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f91576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ff8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120058585856001612985565b6120156000848460000151611d93565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122c6576000548110156122c55782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461232f858585600161298b565b5050505050565b612350828260405180602001604052806000815250612991565b5050565b61235c612d83565b6000829050600054811015612599576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161259757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461247b5780925050506125cb565b5b60011561259657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125915780925050506125cb565b61247c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006126b78473ffffffffffffffffffffffffffffffffffffffff166129a3565b15612817578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126e0611ce7565b8786866040518563ffffffff1660e01b81526004016127029493929190613c6d565b602060405180830381600087803b15801561271c57600080fd5b505af192505050801561274d57506040513d601f19601f8201168201806040525081019061274a9190613cce565b60015b6127c7573d806000811461277d576040519150601f19603f3d011682016040523d82523d6000602084013e612782565b606091505b506000815114156127bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061281c565b600190505b949350505050565b6060600082141561286c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612980565b600082905060005b6000821461289e57808061288790613cfb565b915050600a826128979190613d73565b9150612874565b60008167ffffffffffffffff8111156128ba576128b9612e12565b5b6040519080825280601f01601f1916602001820160405280156128ec5781602001600182028036833780820191505090505b5090505b60008514612979576001826129059190613da4565b9150600a856129149190613dd8565b6030612920919061366b565b60f81b81838151811061293657612935613e09565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129729190613d73565b94506128f0565b8093505050505b919050565b50505050565b50505050565b61299e83838360016129c6565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a33576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a6e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a7b6000868387612985565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612ce057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c945750612c926000888488612696565b155b15612ccb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612c19565b508060008190555050612cf6600086838761298b565b5050505050565b828054612d0990613558565b90600052602060002090601f016020900481019282612d2b5760008555612d72565b82601f10612d4457805160ff1916838001178555612d72565b82800160010185558215612d72579182015b82811115612d71578251825591602001919060010190612d56565b5b509050612d7f9190612dc6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ddf576000816000905550600101612dc7565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e4a82612e01565b810181811067ffffffffffffffff82111715612e6957612e68612e12565b5b80604052505050565b6000612e7c612de3565b9050612e888282612e41565b919050565b600067ffffffffffffffff821115612ea857612ea7612e12565b5b612eb182612e01565b9050602081019050919050565b82818337600083830152505050565b6000612ee0612edb84612e8d565b612e72565b905082815260208101848484011115612efc57612efb612dfc565b5b612f07848285612ebe565b509392505050565b600082601f830112612f2457612f23612df7565b5b8135612f34848260208601612ecd565b91505092915050565b600060208284031215612f5357612f52612ded565b5b600082013567ffffffffffffffff811115612f7157612f70612df2565b5b612f7d84828501612f0f565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fbb81612f86565b8114612fc657600080fd5b50565b600081359050612fd881612fb2565b92915050565b600060208284031215612ff457612ff3612ded565b5b600061300284828501612fc9565b91505092915050565b60008115159050919050565b6130208161300b565b82525050565b600060208201905061303b6000830184613017565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561307b578082015181840152602081019050613060565b8381111561308a576000848401525b50505050565b600061309b82613041565b6130a5818561304c565b93506130b581856020860161305d565b6130be81612e01565b840191505092915050565b600060208201905081810360008301526130e38184613090565b905092915050565b6000819050919050565b6130fe816130eb565b811461310957600080fd5b50565b60008135905061311b816130f5565b92915050565b60006020828403121561313757613136612ded565b5b60006131458482850161310c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131798261314e565b9050919050565b6131898161316e565b82525050565b60006020820190506131a46000830184613180565b92915050565b6131b38161316e565b81146131be57600080fd5b50565b6000813590506131d0816131aa565b92915050565b600080604083850312156131ed576131ec612ded565b5b60006131fb858286016131c1565b925050602061320c8582860161310c565b9150509250929050565b61321f816130eb565b82525050565b600060208201905061323a6000830184613216565b92915050565b60008060006060848603121561325957613258612ded565b5b6000613267868287016131c1565b9350506020613278868287016131c1565b92505060406132898682870161310c565b9150509250925092565b6000602082840312156132a9576132a8612ded565b5b60006132b7848285016131c1565b91505092915050565b6132c98161300b565b81146132d457600080fd5b50565b6000813590506132e6816132c0565b92915050565b6000806040838503121561330357613302612ded565b5b6000613311858286016131c1565b9250506020613322858286016132d7565b9150509250929050565b600067ffffffffffffffff82111561334757613346612e12565b5b61335082612e01565b9050602081019050919050565b600061337061336b8461332c565b612e72565b90508281526020810184848401111561338c5761338b612dfc565b5b613397848285612ebe565b509392505050565b600082601f8301126133b4576133b3612df7565b5b81356133c484826020860161335d565b91505092915050565b600080600080608085870312156133e7576133e6612ded565b5b60006133f5878288016131c1565b9450506020613406878288016131c1565b93505060406134178782880161310c565b925050606085013567ffffffffffffffff81111561343857613437612df2565b5b6134448782880161339f565b91505092959194509250565b60006020828403121561346657613465612ded565b5b6000613474848285016132d7565b91505092915050565b6000806040838503121561349457613493612ded565b5b60006134a2858286016131c1565b92505060206134b3858286016131c1565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134f360208361304c565b91506134fe826134bd565b602082019050919050565b60006020820190508181036000830152613522816134e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061357057607f821691505b6020821081141561358457613583613529565b5b50919050565b600081905092915050565b50565b60006135a560008361358a565b91506135b082613595565b600082019050919050565b60006135c682613598565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061360660108361304c565b9150613611826135d0565b602082019050919050565b60006020820190508181036000830152613635816135f9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613676826130eb565b9150613681836130eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136b6576136b561363c565b5b828201905092915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b60006136f760168361304c565b9150613702826136c1565b602082019050919050565b60006020820190508181036000830152613726816136ea565b9050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b6000613789602e8361304c565b91506137948261372d565b604082019050919050565b600060208201905081810360008301526137b88161377c565b9050919050565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b60006137f560148361304c565b9150613800826137bf565b602082019050919050565b60006020820190508181036000830152613824816137e8565b9050919050565b6000613836826130eb565b9150613841836130eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561387a5761387961363c565b5b828202905092915050565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b60006138e1602f8361304c565b91506138ec82613885565b604082019050919050565b60006020820190508181036000830152613910816138d4565b9050919050565b7f4d6178696d756d203230204e4654732063616e206265206d696e74656420706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b6000613973602d8361304c565b915061397e82613917565b604082019050919050565b600060208201905081810360008301526139a281613966565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a05602f8361304c565b9150613a10826139a9565b604082019050919050565b60006020820190508181036000830152613a34816139f8565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613a6881613558565b613a728186613a3b565b94506001821660008114613a8d5760018114613a9e57613ad1565b60ff19831686528186019350613ad1565b613aa785613a46565b60005b83811015613ac957815481890152600182019150602081019050613aaa565b838801955050505b50505092915050565b6000613ae582613041565b613aef8185613a3b565b9350613aff81856020860161305d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613b41600583613a3b565b9150613b4c82613b0b565b600582019050919050565b6000613b638285613a5b565b9150613b6f8284613ada565b9150613b7a82613b34565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613be260268361304c565b9150613bed82613b86565b604082019050919050565b60006020820190508181036000830152613c1181613bd5565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c3f82613c18565b613c498185613c23565b9350613c5981856020860161305d565b613c6281612e01565b840191505092915050565b6000608082019050613c826000830187613180565b613c8f6020830186613180565b613c9c6040830185613216565b8181036060830152613cae8184613c34565b905095945050505050565b600081519050613cc881612fb2565b92915050565b600060208284031215613ce457613ce3612ded565b5b6000613cf284828501613cb9565b91505092915050565b6000613d06826130eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d3957613d3861363c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d7e826130eb565b9150613d89836130eb565b925082613d9957613d98613d44565b5b828204905092915050565b6000613daf826130eb565b9150613dba836130eb565b925082821015613dcd57613dcc61363c565b5b828203905092915050565b6000613de3826130eb565b9150613dee836130eb565b925082613dfe57613dfd613d44565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220ec32467d3b84659ee938d78b0f9f22f9dfbc6c5410fc29a8ab26979087d1b6ad64736f6c6343000809003368747470733a2f2f697066732e696f2f697066732f6261666b72656962676837796f64656e776f62797372677571736c6e65326a7a656a7a64646a346b78376b75786869706f666964326277636b6a34
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806355f804b31161010d57806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde146106b8578063c87b56dd146106e1578063e0a808531461071e578063e985e9c514610747578063f2fde38b14610784576101ee565b806395d89b411461060e57806399288dbb14610639578063a035b1fe14610664578063a22cb4651461068f576101ee565b80637ba5e621116100dc5780637ba5e6211461057a5780638da5cb5b1461059157806391b7f5ed146105bc57806392910eec146105e5576101ee565b806355f804b3146104c05780636352211e146104e957806370a0823114610526578063715018a614610563576101ee565b80632f745c591161018557806340c10f191161015457806340c10f191461041357806342842e0e1461042f5780634f6ccce7146104585780635183022714610495576101ee565b80632f745c591461036957806332cb6b0c146103a65780633a467e3d146103d15780633ccfd60b146103fc576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea57806323b872dd14610315578063276306ed1461033e576101ee565b806301aade7b146101f357806301ffc9a71461021c57806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f3d565b6107ad565b005b34801561022857600080fd5b50610243600480360381019061023e9190612fde565b610843565b6040516102509190613026565b60405180910390f35b34801561026557600080fd5b5061026e61098d565b60405161027b91906130c9565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190613121565b610a1f565b6040516102b8919061318f565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e391906131d6565b610a9b565b005b3480156102f657600080fd5b506102ff610ba6565b60405161030c9190613225565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190613240565b610bb0565b005b34801561034a57600080fd5b50610353610bc0565b60405161036091906130c9565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b91906131d6565b610c4e565b60405161039d9190613225565b60405180910390f35b3480156103b257600080fd5b506103bb610e27565b6040516103c89190613225565b60405180910390f35b3480156103dd57600080fd5b506103e6610e2d565b6040516103f39190613225565b60405180910390f35b34801561040857600080fd5b50610411610e33565b005b61042d600480360381019061042891906131d6565b610f5e565b005b34801561043b57600080fd5b5061045660048036038101906104519190613240565b6111d1565b005b34801561046457600080fd5b5061047f600480360381019061047a9190613121565b6111f1565b60405161048c9190613225565b60405180910390f35b3480156104a157600080fd5b506104aa611336565b6040516104b79190613026565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612f3d565b611349565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613121565b6113df565b60405161051d919061318f565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190613293565b6113f5565b60405161055a9190613225565b60405180910390f35b34801561056f57600080fd5b506105786114c5565b005b34801561058657600080fd5b5061058f61154d565b005b34801561059d57600080fd5b506105a66115f5565b6040516105b3919061318f565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190613121565b61161f565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613121565b6116a5565b005b34801561061a57600080fd5b5061062361172b565b60405161063091906130c9565b60405180910390f35b34801561064557600080fd5b5061064e6117bd565b60405161065b9190613026565b60405180910390f35b34801561067057600080fd5b506106796117d0565b6040516106869190613225565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b191906132ec565b6117d6565b005b3480156106c457600080fd5b506106df60048036038101906106da91906133cd565b61194e565b005b3480156106ed57600080fd5b5061070860048036038101906107039190613121565b6119a1565b60405161071591906130c9565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190613450565b611ac2565b005b34801561075357600080fd5b5061076e6004803603810190610769919061347d565b611b5b565b60405161077b9190613026565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a69190613293565b611bef565b005b6107b5611ce7565b73ffffffffffffffffffffffffffffffffffffffff166107d36115f5565b73ffffffffffffffffffffffffffffffffffffffff1614610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082090613509565b60405180910390fd5b80600d908051906020019061083f929190612cfd565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610986575061098582611cef565b5b9050919050565b60606002805461099c90613558565b80601f01602080910402602001604051908101604052809291908181526020018280546109c890613558565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b6000610a2a82611d59565b610a60576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa6826113df565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b0e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b2d611ce7565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b5f5750610b5d81610b58611ce7565b611b5b565b155b15610b96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ba1838383611d93565b505050565b6000600954905090565b610bbb838383611e45565b505050565b600d8054610bcd90613558565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf990613558565b8015610c465780601f10610c1b57610100808354040283529160200191610c46565b820191906000526020600020905b815481529060010190602001808311610c2957829003601f168201915b505050505081565b6000610c59836113f5565b8210610c91576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610e1b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d7a5750610e0e565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dba57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e0c5786841415610e03578195505050505050610e21565b83806001019450505b505b8080600101915050610c9d565b50600080fd5b92915050565b6107d081565b600a5481565b610e3b611ce7565b73ffffffffffffffffffffffffffffffffffffffff16610e596115f5565b73ffffffffffffffffffffffffffffffffffffffff1614610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613509565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ed5906135bb565b60006040518083038185875af1925050503d8060008114610f12576040519150601f19603f3d011682016040523d82523d6000602084013e610f17565b606091505b5050905080610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f529061361c565b60405180910390fd5b50565b6000610f68610ba6565b90506107d08282610f79919061366b565b1115610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb19061370d565b60405180910390fd5b60008211610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff49061379f565b60405180910390fd5b6110056115f5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561104e5750600a548260095461104c919061366b565b115b156110f357600e60009054906101000a900460ff166110a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110999061380b565b60405180910390fd5b81600b546110b0919061382b565b3410156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e9906138f7565b60405180910390fd5b5b6110fb6115f5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611172576014821115611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890613989565b60405180910390fd5b5b8160096000828254611184919061366b565b925050819055506111958383612336565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a826040516111c49190613225565b60405180910390a1505050565b6111ec8383836040518060200160405280600081525061194e565b505050565b60008060005490506000805b828110156112fe576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516112f057858314156112e75781945050505050611331565b82806001019350505b5080806001019150506111fd565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600e60019054906101000a900460ff1681565b611351611ce7565b73ffffffffffffffffffffffffffffffffffffffff1661136f6115f5565b73ffffffffffffffffffffffffffffffffffffffff16146113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc90613509565b60405180910390fd5b80600c90805190602001906113db929190612cfd565b5050565b60006113ea82612354565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114cd611ce7565b73ffffffffffffffffffffffffffffffffffffffff166114eb6115f5565b73ffffffffffffffffffffffffffffffffffffffff1614611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890613509565b60405180910390fd5b61154b60006125d0565b565b611555611ce7565b73ffffffffffffffffffffffffffffffffffffffff166115736115f5565b73ffffffffffffffffffffffffffffffffffffffff16146115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090613509565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611627611ce7565b73ffffffffffffffffffffffffffffffffffffffff166116456115f5565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290613509565b60405180910390fd5b80600b8190555050565b6116ad611ce7565b73ffffffffffffffffffffffffffffffffffffffff166116cb6115f5565b73ffffffffffffffffffffffffffffffffffffffff1614611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171890613509565b60405180910390fd5b80600a8190555050565b60606003805461173a90613558565b80601f016020809104026020016040519081016040528092919081815260200182805461176690613558565b80156117b35780601f10611788576101008083540402835291602001916117b3565b820191906000526020600020905b81548152906001019060200180831161179657829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600b5481565b6117de611ce7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611843576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611850611ce7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118fd611ce7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119429190613026565b60405180910390a35050565b611959848484611e45565b61196584848484612696565b61199b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606119ac82611d59565b6119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613a1b565b60405180910390fd5b600e60019054906101000a900460ff16611a8f57600d8054611a0c90613558565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3890613558565b8015611a855780601f10611a5a57610100808354040283529160200191611a85565b820191906000526020600020905b815481529060010190602001808311611a6857829003601f168201915b5050505050611abb565b600c611a9a83612824565b604051602001611aab929190613b57565b6040516020818303038152906040525b9050919050565b611aca611ce7565b73ffffffffffffffffffffffffffffffffffffffff16611ae86115f5565b73ffffffffffffffffffffffffffffffffffffffff1614611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590613509565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bf7611ce7565b73ffffffffffffffffffffffffffffffffffffffff16611c156115f5565b73ffffffffffffffffffffffffffffffffffffffff1614611c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6290613509565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd290613bf8565b60405180910390fd5b611ce4816125d0565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611d8c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e5082612354565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e77611ce7565b73ffffffffffffffffffffffffffffffffffffffff161480611eaa5750611ea98260000151611ea4611ce7565b611b5b565b5b80611eef5750611eb8611ce7565b73ffffffffffffffffffffffffffffffffffffffff16611ed784610a1f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f28576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f91576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ff8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120058585856001612985565b6120156000848460000151611d93565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122c6576000548110156122c55782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461232f858585600161298b565b5050505050565b612350828260405180602001604052806000815250612991565b5050565b61235c612d83565b6000829050600054811015612599576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161259757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461247b5780925050506125cb565b5b60011561259657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125915780925050506125cb565b61247c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006126b78473ffffffffffffffffffffffffffffffffffffffff166129a3565b15612817578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126e0611ce7565b8786866040518563ffffffff1660e01b81526004016127029493929190613c6d565b602060405180830381600087803b15801561271c57600080fd5b505af192505050801561274d57506040513d601f19601f8201168201806040525081019061274a9190613cce565b60015b6127c7573d806000811461277d576040519150601f19603f3d011682016040523d82523d6000602084013e612782565b606091505b506000815114156127bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061281c565b600190505b949350505050565b6060600082141561286c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612980565b600082905060005b6000821461289e57808061288790613cfb565b915050600a826128979190613d73565b9150612874565b60008167ffffffffffffffff8111156128ba576128b9612e12565b5b6040519080825280601f01601f1916602001820160405280156128ec5781602001600182028036833780820191505090505b5090505b60008514612979576001826129059190613da4565b9150600a856129149190613dd8565b6030612920919061366b565b60f81b81838151811061293657612935613e09565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129729190613d73565b94506128f0565b8093505050505b919050565b50505050565b50505050565b61299e83838360016129c6565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a33576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a6e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a7b6000868387612985565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612ce057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c945750612c926000888488612696565b155b15612ccb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612c19565b508060008190555050612cf6600086838761298b565b5050505050565b828054612d0990613558565b90600052602060002090601f016020900481019282612d2b5760008555612d72565b82601f10612d4457805160ff1916838001178555612d72565b82800160010185558215612d72579182015b82811115612d71578251825591602001919060010190612d56565b5b509050612d7f9190612dc6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ddf576000816000905550600101612dc7565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e4a82612e01565b810181811067ffffffffffffffff82111715612e6957612e68612e12565b5b80604052505050565b6000612e7c612de3565b9050612e888282612e41565b919050565b600067ffffffffffffffff821115612ea857612ea7612e12565b5b612eb182612e01565b9050602081019050919050565b82818337600083830152505050565b6000612ee0612edb84612e8d565b612e72565b905082815260208101848484011115612efc57612efb612dfc565b5b612f07848285612ebe565b509392505050565b600082601f830112612f2457612f23612df7565b5b8135612f34848260208601612ecd565b91505092915050565b600060208284031215612f5357612f52612ded565b5b600082013567ffffffffffffffff811115612f7157612f70612df2565b5b612f7d84828501612f0f565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fbb81612f86565b8114612fc657600080fd5b50565b600081359050612fd881612fb2565b92915050565b600060208284031215612ff457612ff3612ded565b5b600061300284828501612fc9565b91505092915050565b60008115159050919050565b6130208161300b565b82525050565b600060208201905061303b6000830184613017565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561307b578082015181840152602081019050613060565b8381111561308a576000848401525b50505050565b600061309b82613041565b6130a5818561304c565b93506130b581856020860161305d565b6130be81612e01565b840191505092915050565b600060208201905081810360008301526130e38184613090565b905092915050565b6000819050919050565b6130fe816130eb565b811461310957600080fd5b50565b60008135905061311b816130f5565b92915050565b60006020828403121561313757613136612ded565b5b60006131458482850161310c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131798261314e565b9050919050565b6131898161316e565b82525050565b60006020820190506131a46000830184613180565b92915050565b6131b38161316e565b81146131be57600080fd5b50565b6000813590506131d0816131aa565b92915050565b600080604083850312156131ed576131ec612ded565b5b60006131fb858286016131c1565b925050602061320c8582860161310c565b9150509250929050565b61321f816130eb565b82525050565b600060208201905061323a6000830184613216565b92915050565b60008060006060848603121561325957613258612ded565b5b6000613267868287016131c1565b9350506020613278868287016131c1565b92505060406132898682870161310c565b9150509250925092565b6000602082840312156132a9576132a8612ded565b5b60006132b7848285016131c1565b91505092915050565b6132c98161300b565b81146132d457600080fd5b50565b6000813590506132e6816132c0565b92915050565b6000806040838503121561330357613302612ded565b5b6000613311858286016131c1565b9250506020613322858286016132d7565b9150509250929050565b600067ffffffffffffffff82111561334757613346612e12565b5b61335082612e01565b9050602081019050919050565b600061337061336b8461332c565b612e72565b90508281526020810184848401111561338c5761338b612dfc565b5b613397848285612ebe565b509392505050565b600082601f8301126133b4576133b3612df7565b5b81356133c484826020860161335d565b91505092915050565b600080600080608085870312156133e7576133e6612ded565b5b60006133f5878288016131c1565b9450506020613406878288016131c1565b93505060406134178782880161310c565b925050606085013567ffffffffffffffff81111561343857613437612df2565b5b6134448782880161339f565b91505092959194509250565b60006020828403121561346657613465612ded565b5b6000613474848285016132d7565b91505092915050565b6000806040838503121561349457613493612ded565b5b60006134a2858286016131c1565b92505060206134b3858286016131c1565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134f360208361304c565b91506134fe826134bd565b602082019050919050565b60006020820190508181036000830152613522816134e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061357057607f821691505b6020821081141561358457613583613529565b5b50919050565b600081905092915050565b50565b60006135a560008361358a565b91506135b082613595565b600082019050919050565b60006135c682613598565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061360660108361304c565b9150613611826135d0565b602082019050919050565b60006020820190508181036000830152613635816135f9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613676826130eb565b9150613681836130eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136b6576136b561363c565b5b828201905092915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b60006136f760168361304c565b9150613702826136c1565b602082019050919050565b60006020820190508181036000830152613726816136ea565b9050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b6000613789602e8361304c565b91506137948261372d565b604082019050919050565b600060208201905081810360008301526137b88161377c565b9050919050565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b60006137f560148361304c565b9150613800826137bf565b602082019050919050565b60006020820190508181036000830152613824816137e8565b9050919050565b6000613836826130eb565b9150613841836130eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561387a5761387961363c565b5b828202905092915050565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b60006138e1602f8361304c565b91506138ec82613885565b604082019050919050565b60006020820190508181036000830152613910816138d4565b9050919050565b7f4d6178696d756d203230204e4654732063616e206265206d696e74656420706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b6000613973602d8361304c565b915061397e82613917565b604082019050919050565b600060208201905081810360008301526139a281613966565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a05602f8361304c565b9150613a10826139a9565b604082019050919050565b60006020820190508181036000830152613a34816139f8565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613a6881613558565b613a728186613a3b565b94506001821660008114613a8d5760018114613a9e57613ad1565b60ff19831686528186019350613ad1565b613aa785613a46565b60005b83811015613ac957815481890152600182019150602081019050613aaa565b838801955050505b50505092915050565b6000613ae582613041565b613aef8185613a3b565b9350613aff81856020860161305d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613b41600583613a3b565b9150613b4c82613b0b565b600582019050919050565b6000613b638285613a5b565b9150613b6f8284613ada565b9150613b7a82613b34565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613be260268361304c565b9150613bed82613b86565b604082019050919050565b60006020820190508181036000830152613c1181613bd5565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c3f82613c18565b613c498185613c23565b9350613c5981856020860161305d565b613c6281612e01565b840191505092915050565b6000608082019050613c826000830187613180565b613c8f6020830186613180565b613c9c6040830185613216565b8181036060830152613cae8184613c34565b905095945050505050565b600081519050613cc881612fb2565b92915050565b600060208284031215613ce457613ce3612ded565b5b6000613cf284828501613cb9565b91505092915050565b6000613d06826130eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d3957613d3861363c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d7e826130eb565b9150613d89836130eb565b925082613d9957613d98613d44565b5b828204905092915050565b6000613daf826130eb565b9150613dba836130eb565b925082821015613dcd57613dcc61363c565b5b828203905092915050565b6000613de3826130eb565b9150613dee836130eb565b925082613dfe57613dfd613d44565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220ec32467d3b84659ee938d78b0f9f22f9dfbc6c5410fc29a8ab26979087d1b6ad64736f6c63430008090033
Deployed Bytecode Sourcemap
49465:2808:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50286:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33015:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35625:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37128:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36691:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50072:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37985:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49824:112;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31838:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49609:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49701:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50688:182;;;;;;;;;;;;;:::i;:::-;;50878:865;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38226:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30825:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49987:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50177:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35434:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33451:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26315:103;;;;;;;;;;;;;:::i;:::-;;50602:78;;;;;;;;;;;;;:::i;:::-;;25664:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50502:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50394:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35794:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49951:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49745:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37404:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38482:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51975:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51751:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37754:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26573:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50286:100;25895:12;:10;:12::i;:::-;25884:23;;:7;:5;:7::i;:::-;:23;;;25876:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50375:3:::1;50359:13;:19;;;;;;;;;;;;:::i;:::-;;50286:100:::0;:::o;33015:372::-;33117:4;33169:25;33154:40;;;:11;:40;;;;:105;;;;33226:33;33211:48;;;:11;:48;;;;33154:105;:172;;;;33291:35;33276:50;;;:11;:50;;;;33154:172;:225;;;;33343:36;33367:11;33343:23;:36::i;:::-;33154:225;33134:245;;33015:372;;;:::o;35625:100::-;35679:13;35712:5;35705:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35625:100;:::o;37128:204::-;37196:7;37221:16;37229:7;37221;:16::i;:::-;37216:64;;37246:34;;;;;;;;;;;;;;37216:64;37300:15;:24;37316:7;37300:24;;;;;;;;;;;;;;;;;;;;;37293:31;;37128:204;;;:::o;36691:371::-;36764:13;36780:24;36796:7;36780:15;:24::i;:::-;36764:40;;36825:5;36819:11;;:2;:11;;;36815:48;;;36839:24;;;;;;;;;;;;;;36815:48;36896:5;36880:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;36906:37;36923:5;36930:12;:10;:12::i;:::-;36906:16;:37::i;:::-;36905:38;36880:63;36876:138;;;36967:35;;;;;;;;;;;;;;36876:138;37026:28;37035:2;37039:7;37048:5;37026:8;:28::i;:::-;36753:309;36691:371;;:::o;50072:97::-;50125:7;50152:9;;50145:16;;50072:97;:::o;37985:170::-;38119:28;38129:4;38135:2;38139:7;38119:9;:28::i;:::-;37985:170;;;:::o;49824:112::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31838:1105::-;31927:7;31960:16;31970:5;31960:9;:16::i;:::-;31951:5;:25;31947:61;;31985:23;;;;;;;;;;;;;;31947:61;32019:22;32044:13;;32019:38;;32068:19;32098:25;32299:9;32294:557;32314:14;32310:1;:18;32294:557;;;32354:31;32388:11;:14;32400:1;32388:14;;;;;;;;;;;32354:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32425:9;:16;;;32421:73;;;32466:8;;;32421:73;32542:1;32516:28;;:9;:14;;;:28;;;32512:111;;32589:9;:14;;;32569:34;;32512:111;32666:5;32645:26;;:17;:26;;;32641:195;;;32715:5;32700:11;:20;32696:85;;;32756:1;32749:8;;;;;;;;;32696:85;32803:13;;;;;;;32641:195;32335:516;32294:557;32330:3;;;;;;;32294:557;;;;32927:8;;;31838:1105;;;;;:::o;49609:41::-;49646:4;49609:41;:::o;49701:35::-;;;;:::o;50688:182::-;25895:12;:10;:12::i;:::-;25884:23;;:7;:5;:7::i;:::-;:23;;;25876:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50739:12:::1;50765:10;50757:24;;50789:21;50757:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50738:77;;;50834:7;50826:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;50727:143;50688:182::o:0;50878:865::-;50949:14;50966:13;:11;:13::i;:::-;50949:30;;49646:4;51009:6;51000;:15;;;;:::i;:::-;:29;;50992:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51084:1;51075:6;:10;51067:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51167:7;:5;:7::i;:::-;51153:21;;:10;:21;;;;:62;;;;;51201:14;;51191:6;51179:9;;:18;;;;:::i;:::-;51178:37;51153:62;51149:287;;;51240:8;;;;;;;;;;;51232:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;51335:6;51327:5;;:14;;;;:::i;:::-;51314:9;:27;;51288:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;51149:287;51465:7;:5;:7::i;:::-;51451:21;;:10;:21;;;51448:172;;51525:2;51515:6;:12;;51489:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;51448:172;51653:6;51640:9;;:19;;;;;;;:::i;:::-;;;;;;;;51676:22;51686:3;51691:6;51676:9;:22::i;:::-;51714:14;51721:6;51714:14;;;;;;:::i;:::-;;;;;;;;50938:805;50878:865;;:::o;38226:185::-;38364:39;38381:4;38387:2;38391:7;38364:39;;;;;;;;;;;;:16;:39::i;:::-;38226:185;;;:::o;30825:713::-;30892:7;30912:22;30937:13;;30912:38;;30961:19;31156:9;31151:328;31171:14;31167:1;:18;31151:328;;;31211:31;31245:11;:14;31257:1;31245:14;;;;;;;;;;;31211:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31283:9;:16;;;31278:186;;31343:5;31328:11;:20;31324:85;;;31384:1;31377:8;;;;;;;;31324:85;31431:13;;;;;;;31278:186;31192:287;31187:3;;;;;;;31151:328;;;;31507:23;;;;;;;;;;;;;;30825:713;;;;:::o;49987:28::-;;;;;;;;;;;;;:::o;50177:101::-;25895:12;:10;:12::i;:::-;25884:23;;:7;:5;:7::i;:::-;:23;;;25876:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50263:7:::1;50248:12;:22;;;;;;;;;;;;:::i;:::-;;50177:101:::0;:::o;35434:124::-;35498:7;35525:20;35537:7;35525:11;:20::i;:::-;:25;;;35518:32;;35434:124;;;:::o;33451:206::-;33515:7;33556:1;33539:19;;:5;:19;;;33535:60;;;33567:28;;;;;;;;;;;;;;33535:60;33621:12;:19;33634:5;33621:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;33613:36;;33606:43;;33451:206;;;:::o;26315:103::-;25895:12;:10;:12::i;:::-;25884:23;;:7;:5;:7::i;:::-;:23;;;25876:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26380:30:::1;26407:1;26380:18;:30::i;:::-;26315:103::o:0;50602:78::-;25895:12;:10;:12::i;:::-;25884:23;;:7;:5;:7::i;:::-;:23;;;25876:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50664:8:::1;;;;;;;;;;;50663:9;50652:8;;:20;;;;;;;;;;;;;;;;;;50602:78::o:0;25664:87::-;25710:7;25737:6;;;;;;;;;;;25730:13;;25664:87;:::o;50502:92::-;25895:12;:10;:12::i;:::-;25884:23;;:7;:5;:7::i;:::-;:23;;;25876:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50577:9:::1;50569:5;:17;;;;50502:92:::0;:::o;50394:100::-;25895:12;:10;:12::i;:::-;25884:23;;:7;:5;:7::i;:::-;:23;;;25876:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50480:6:::1;50463:14;:23;;;;50394:100:::0;:::o;35794:104::-;35850:13;35883:7;35876:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35794:104;:::o;49951:27::-;;;;;;;;;;;;;:::o;49745:34::-;;;;:::o;37404:279::-;37507:12;:10;:12::i;:::-;37495:24;;:8;:24;;;37491:54;;;37528:17;;;;;;;;;;;;;;37491:54;37603:8;37558:18;:32;37577:12;:10;:12::i;:::-;37558:32;;;;;;;;;;;;;;;:42;37591:8;37558:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;37656:8;37627:48;;37642:12;:10;:12::i;:::-;37627:48;;;37666:8;37627:48;;;;;;:::i;:::-;;;;;;;;37404:279;;:::o;38482:342::-;38649:28;38659:4;38665:2;38669:7;38649:9;:28::i;:::-;38693:48;38716:4;38722:2;38726:7;38735:5;38693:22;:48::i;:::-;38688:129;;38765:40;;;;;;;;;;;;;;38688:129;38482:342;;;;:::o;51975:295::-;52048:13;52082:16;52090:7;52082;:16::i;:::-;52074:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52168:8;;;;;;;;;;;:94;;52249:13;52168:94;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52203:12;52217:18;:7;:16;:18::i;:::-;52186:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52168:94;52161:101;;51975:295;;;:::o;51751:95::-;25895:12;:10;:12::i;:::-;25884:23;;:7;:5;:7::i;:::-;:23;;;25876:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51829:9:::1;51818:8;;:20;;;;;;;;;;;;;;;;;;51751:95:::0;:::o;37754:164::-;37851:4;37875:18;:25;37894:5;37875:25;;;;;;;;;;;;;;;:35;37901:8;37875:35;;;;;;;;;;;;;;;;;;;;;;;;;37868:42;;37754:164;;;;:::o;26573:201::-;25895:12;:10;:12::i;:::-;25884:23;;:7;:5;:7::i;:::-;:23;;;25876:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26682:1:::1;26662:22;;:8;:22;;;;26654:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26738:28;26757:8;26738:18;:28::i;:::-;26573:201:::0;:::o;24335:98::-;24388:7;24415:10;24408:17;;24335:98;:::o;16525:157::-;16610:4;16649:25;16634:40;;;:11;:40;;;;16627:47;;16525:157;;;:::o;39079:144::-;39136:4;39170:13;;39160:7;:23;:55;;;;;39188:11;:20;39200:7;39188:20;;;;;;;;;;;:27;;;;;;;;;;;;39187:28;39160:55;39153:62;;39079:144;;;:::o;46285:196::-;46427:2;46400:15;:24;46416:7;46400:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46465:7;46461:2;46445:28;;46454:5;46445:28;;;;;;;;;;;;46285:196;;;:::o;41786:2112::-;41901:35;41939:20;41951:7;41939:11;:20::i;:::-;41901:58;;41972:22;42014:13;:18;;;41998:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;42049:50;42066:13;:18;;;42086:12;:10;:12::i;:::-;42049:16;:50::i;:::-;41998:101;:154;;;;42140:12;:10;:12::i;:::-;42116:36;;:20;42128:7;42116:11;:20::i;:::-;:36;;;41998:154;41972:181;;42171:17;42166:66;;42197:35;;;;;;;;;;;;;;42166:66;42269:4;42247:26;;:13;:18;;;:26;;;42243:67;;42282:28;;;;;;;;;;;;;;42243:67;42339:1;42325:16;;:2;:16;;;42321:52;;;42350:23;;;;;;;;;;;;;;42321:52;42386:43;42408:4;42414:2;42418:7;42427:1;42386:21;:43::i;:::-;42494:49;42511:1;42515:7;42524:13;:18;;;42494:8;:49::i;:::-;42869:1;42839:12;:18;42852:4;42839:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42913:1;42885:12;:16;42898:2;42885:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42959:2;42931:11;:20;42943:7;42931:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;43021:15;42976:11;:20;42988:7;42976:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;43289:19;43321:1;43311:7;:11;43289:33;;43382:1;43341:43;;:11;:24;43353:11;43341:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;43337:445;;;43566:13;;43552:11;:27;43548:219;;;43636:13;:18;;;43604:11;:24;43616:11;43604:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;43719:13;:28;;;43677:11;:24;43689:11;43677:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;43548:219;43337:445;42814:979;43829:7;43825:2;43810:27;;43819:4;43810:27;;;;;;;;;;;;43848:42;43869:4;43875:2;43879:7;43888:1;43848:20;:42::i;:::-;41890:2008;;41786:2112;;;:::o;39231:104::-;39300:27;39310:2;39314:8;39300:27;;;;;;;;;;;;:9;:27::i;:::-;39231:104;;:::o;34289:1083::-;34350:21;;:::i;:::-;34384:12;34399:7;34384:22;;34455:13;;34448:4;:20;34444:861;;;34489:31;34523:11;:17;34535:4;34523:17;;;;;;;;;;;34489:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34564:9;:16;;;34559:731;;34635:1;34609:28;;:9;:14;;;:28;;;34605:101;;34673:9;34666:16;;;;;;34605:101;35010:261;35017:4;35010:261;;;35050:6;;;;;;;;35095:11;:17;35107:4;35095:17;;;;;;;;;;;35083:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35169:1;35143:28;;:9;:14;;;:28;;;35139:109;;35211:9;35204:16;;;;;;35139:109;35010:261;;;34559:731;34470:835;34444:861;35333:31;;;;;;;;;;;;;;34289:1083;;;;:::o;26934:191::-;27008:16;27027:6;;;;;;;;;;;27008:25;;27053:8;27044:6;;:17;;;;;;;;;;;;;;;;;;27108:8;27077:40;;27098:8;27077:40;;;;;;;;;;;;26997:128;26934:191;:::o;47046:790::-;47201:4;47222:15;:2;:13;;;:15::i;:::-;47218:611;;;47274:2;47258:36;;;47295:12;:10;:12::i;:::-;47309:4;47315:7;47324:5;47258:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47254:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47521:1;47504:6;:13;:18;47500:259;;;47554:40;;;;;;;;;;;;;;47500:259;47709:6;47703:13;47694:6;47690:2;47686:15;47679:38;47254:520;47391:45;;;47381:55;;;:6;:55;;;;47374:62;;;;;47218:611;47813:4;47806:11;;47046:790;;;;;;;:::o;3230:723::-;3286:13;3516:1;3507:5;:10;3503:53;;;3534:10;;;;;;;;;;;;;;;;;;;;;3503:53;3566:12;3581:5;3566:20;;3597:14;3622:78;3637:1;3629:4;:9;3622:78;;3655:8;;;;;:::i;:::-;;;;3686:2;3678:10;;;;;:::i;:::-;;;3622:78;;;3710:19;3742:6;3732:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3710:39;;3760:154;3776:1;3767:5;:10;3760:154;;3804:1;3794:11;;;;;:::i;:::-;;;3871:2;3863:5;:10;;;;:::i;:::-;3850:2;:24;;;;:::i;:::-;3837:39;;3820:6;3827;3820:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3900:2;3891:11;;;;;:::i;:::-;;;3760:154;;;3938:6;3924:21;;;;;3230:723;;;;:::o;48484:159::-;;;;;:::o;49302:158::-;;;;;:::o;39698:163::-;39821:32;39827:2;39831:8;39841:5;39848:4;39821:5;:32::i;:::-;39698:163;;;:::o;6275:326::-;6335:4;6592:1;6570:7;:19;;;:23;6563:30;;6275:326;;;:::o;40120:1412::-;40259:20;40282:13;;40259:36;;40324:1;40310:16;;:2;:16;;;40306:48;;;40335:19;;;;;;;;;;;;;;40306:48;40381:1;40369:8;:13;40365:44;;;40391:18;;;;;;;;;;;;;;40365:44;40422:61;40452:1;40456:2;40460:12;40474:8;40422:21;:61::i;:::-;40795:8;40760:12;:16;40773:2;40760:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40859:8;40819:12;:16;40832:2;40819:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40918:2;40885:11;:25;40897:12;40885:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40985:15;40935:11;:25;40947:12;40935:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;41018:20;41041:12;41018:35;;41075:9;41070:328;41090:8;41086:1;:12;41070:328;;;41154:12;41150:2;41129:38;;41146:1;41129:38;;;;;;;;;;;;41190:4;:68;;;;;41199:59;41230:1;41234:2;41238:12;41252:5;41199:22;:59::i;:::-;41198:60;41190:68;41186:164;;;41290:40;;;;;;;;;;;;;;41186:164;41368:14;;;;;;;41100:3;;;;;;;41070:328;;;;41430:12;41414:13;:28;;;;40735:719;41464:60;41493:1;41497:2;41501:12;41515:8;41464:20;:60::i;:::-;40248:1284;40120:1412;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:154::-;1694:6;1689:3;1684;1671:30;1756:1;1747:6;1742:3;1738:16;1731:27;1610:154;;;:::o;1770:412::-;1848:5;1873:66;1889:49;1931:6;1889:49;:::i;:::-;1873:66;:::i;:::-;1864:75;;1962:6;1955:5;1948:21;2000:4;1993:5;1989:16;2038:3;2029:6;2024:3;2020:16;2017:25;2014:112;;;2045:79;;:::i;:::-;2014:112;2135:41;2169:6;2164:3;2159;2135:41;:::i;:::-;1854:328;1770:412;;;;;:::o;2202:340::-;2258:5;2307:3;2300:4;2292:6;2288:17;2284:27;2274:122;;2315:79;;:::i;:::-;2274:122;2432:6;2419:20;2457:79;2532:3;2524:6;2517:4;2509:6;2505:17;2457:79;:::i;:::-;2448:88;;2264:278;2202:340;;;;:::o;2548:509::-;2617:6;2666:2;2654:9;2645:7;2641:23;2637:32;2634:119;;;2672:79;;:::i;:::-;2634:119;2820:1;2809:9;2805:17;2792:31;2850:18;2842:6;2839:30;2836:117;;;2872:79;;:::i;:::-;2836:117;2977:63;3032:7;3023:6;3012:9;3008:22;2977:63;:::i;:::-;2967:73;;2763:287;2548:509;;;;:::o;3063:149::-;3099:7;3139:66;3132:5;3128:78;3117:89;;3063:149;;;:::o;3218:120::-;3290:23;3307:5;3290:23;:::i;:::-;3283:5;3280:34;3270:62;;3328:1;3325;3318:12;3270:62;3218:120;:::o;3344:137::-;3389:5;3427:6;3414:20;3405:29;;3443:32;3469:5;3443:32;:::i;:::-;3344:137;;;;:::o;3487:327::-;3545:6;3594:2;3582:9;3573:7;3569:23;3565:32;3562:119;;;3600:79;;:::i;:::-;3562:119;3720:1;3745:52;3789:7;3780:6;3769:9;3765:22;3745:52;:::i;:::-;3735:62;;3691:116;3487:327;;;;:::o;3820:90::-;3854:7;3897:5;3890:13;3883:21;3872:32;;3820:90;;;:::o;3916:109::-;3997:21;4012:5;3997:21;:::i;:::-;3992:3;3985:34;3916:109;;:::o;4031:210::-;4118:4;4156:2;4145:9;4141:18;4133:26;;4169:65;4231:1;4220:9;4216:17;4207:6;4169:65;:::i;:::-;4031:210;;;;:::o;4247:99::-;4299:6;4333:5;4327:12;4317:22;;4247:99;;;:::o;4352:169::-;4436:11;4470:6;4465:3;4458:19;4510:4;4505:3;4501:14;4486:29;;4352:169;;;;:::o;4527:307::-;4595:1;4605:113;4619:6;4616:1;4613:13;4605:113;;;4704:1;4699:3;4695:11;4689:18;4685:1;4680:3;4676:11;4669:39;4641:2;4638:1;4634:10;4629:15;;4605:113;;;4736:6;4733:1;4730:13;4727:101;;;4816:1;4807:6;4802:3;4798:16;4791:27;4727:101;4576:258;4527:307;;;:::o;4840:364::-;4928:3;4956:39;4989:5;4956:39;:::i;:::-;5011:71;5075:6;5070:3;5011:71;:::i;:::-;5004:78;;5091:52;5136:6;5131:3;5124:4;5117:5;5113:16;5091:52;:::i;:::-;5168:29;5190:6;5168:29;:::i;:::-;5163:3;5159:39;5152:46;;4932:272;4840:364;;;;:::o;5210:313::-;5323:4;5361:2;5350:9;5346:18;5338:26;;5410:9;5404:4;5400:20;5396:1;5385:9;5381:17;5374:47;5438:78;5511:4;5502:6;5438:78;:::i;:::-;5430:86;;5210:313;;;;:::o;5529:77::-;5566:7;5595:5;5584:16;;5529:77;;;:::o;5612:122::-;5685:24;5703:5;5685:24;:::i;:::-;5678:5;5675:35;5665:63;;5724:1;5721;5714:12;5665:63;5612:122;:::o;5740:139::-;5786:5;5824:6;5811:20;5802:29;;5840:33;5867:5;5840:33;:::i;:::-;5740:139;;;;:::o;5885:329::-;5944:6;5993:2;5981:9;5972:7;5968:23;5964:32;5961:119;;;5999:79;;:::i;:::-;5961:119;6119:1;6144:53;6189:7;6180:6;6169:9;6165:22;6144:53;:::i;:::-;6134:63;;6090:117;5885:329;;;;:::o;6220:126::-;6257:7;6297:42;6290:5;6286:54;6275:65;;6220:126;;;:::o;6352:96::-;6389:7;6418:24;6436:5;6418:24;:::i;:::-;6407:35;;6352:96;;;:::o;6454:118::-;6541:24;6559:5;6541:24;:::i;:::-;6536:3;6529:37;6454:118;;:::o;6578:222::-;6671:4;6709:2;6698:9;6694:18;6686:26;;6722:71;6790:1;6779:9;6775:17;6766:6;6722:71;:::i;:::-;6578:222;;;;:::o;6806:122::-;6879:24;6897:5;6879:24;:::i;:::-;6872:5;6869:35;6859:63;;6918:1;6915;6908:12;6859:63;6806:122;:::o;6934:139::-;6980:5;7018:6;7005:20;6996:29;;7034:33;7061:5;7034:33;:::i;:::-;6934:139;;;;:::o;7079:474::-;7147:6;7155;7204:2;7192:9;7183:7;7179:23;7175:32;7172:119;;;7210:79;;:::i;:::-;7172:119;7330:1;7355:53;7400:7;7391:6;7380:9;7376:22;7355:53;:::i;:::-;7345:63;;7301:117;7457:2;7483:53;7528:7;7519:6;7508:9;7504:22;7483:53;:::i;:::-;7473:63;;7428:118;7079:474;;;;;:::o;7559:118::-;7646:24;7664:5;7646:24;:::i;:::-;7641:3;7634:37;7559:118;;:::o;7683:222::-;7776:4;7814:2;7803:9;7799:18;7791:26;;7827:71;7895:1;7884:9;7880:17;7871:6;7827:71;:::i;:::-;7683:222;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:323::-;11697:6;11746:2;11734:9;11725:7;11721:23;11717:32;11714:119;;;11752:79;;:::i;:::-;11714:119;11872:1;11897:50;11939:7;11930:6;11919:9;11915:22;11897:50;:::i;:::-;11887:60;;11843:114;11641:323;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:182::-;12590:34;12586:1;12578:6;12574:14;12567:58;12450:182;:::o;12638:366::-;12780:3;12801:67;12865:2;12860:3;12801:67;:::i;:::-;12794:74;;12877:93;12966:3;12877:93;:::i;:::-;12995:2;12990:3;12986:12;12979:19;;12638:366;;;:::o;13010:419::-;13176:4;13214:2;13203:9;13199:18;13191:26;;13263:9;13257:4;13253:20;13249:1;13238:9;13234:17;13227:47;13291:131;13417:4;13291:131;:::i;:::-;13283:139;;13010:419;;;:::o;13435:180::-;13483:77;13480:1;13473:88;13580:4;13577:1;13570:15;13604:4;13601:1;13594:15;13621:320;13665:6;13702:1;13696:4;13692:12;13682:22;;13749:1;13743:4;13739:12;13770:18;13760:81;;13826:4;13818:6;13814:17;13804:27;;13760:81;13888:2;13880:6;13877:14;13857:18;13854:38;13851:84;;;13907:18;;:::i;:::-;13851:84;13672:269;13621:320;;;:::o;13947:147::-;14048:11;14085:3;14070:18;;13947:147;;;;:::o;14100:114::-;;:::o;14220:398::-;14379:3;14400:83;14481:1;14476:3;14400:83;:::i;:::-;14393:90;;14492:93;14581:3;14492:93;:::i;:::-;14610:1;14605:3;14601:11;14594:18;;14220:398;;;:::o;14624:379::-;14808:3;14830:147;14973:3;14830:147;:::i;:::-;14823:154;;14994:3;14987:10;;14624:379;;;:::o;15009:166::-;15149:18;15145:1;15137:6;15133:14;15126:42;15009:166;:::o;15181:366::-;15323:3;15344:67;15408:2;15403:3;15344:67;:::i;:::-;15337:74;;15420:93;15509:3;15420:93;:::i;:::-;15538:2;15533:3;15529:12;15522:19;;15181:366;;;:::o;15553:419::-;15719:4;15757:2;15746:9;15742:18;15734:26;;15806:9;15800:4;15796:20;15792:1;15781:9;15777:17;15770:47;15834:131;15960:4;15834:131;:::i;:::-;15826:139;;15553:419;;;:::o;15978:180::-;16026:77;16023:1;16016:88;16123:4;16120:1;16113:15;16147:4;16144:1;16137:15;16164:305;16204:3;16223:20;16241:1;16223:20;:::i;:::-;16218:25;;16257:20;16275:1;16257:20;:::i;:::-;16252:25;;16411:1;16343:66;16339:74;16336:1;16333:81;16330:107;;;16417:18;;:::i;:::-;16330:107;16461:1;16458;16454:9;16447:16;;16164:305;;;;:::o;16475:172::-;16615:24;16611:1;16603:6;16599:14;16592:48;16475:172;:::o;16653:366::-;16795:3;16816:67;16880:2;16875:3;16816:67;:::i;:::-;16809:74;;16892:93;16981:3;16892:93;:::i;:::-;17010:2;17005:3;17001:12;16994:19;;16653:366;;;:::o;17025:419::-;17191:4;17229:2;17218:9;17214:18;17206:26;;17278:9;17272:4;17268:20;17264:1;17253:9;17249:17;17242:47;17306:131;17432:4;17306:131;:::i;:::-;17298:139;;17025:419;;;:::o;17450:233::-;17590:34;17586:1;17578:6;17574:14;17567:58;17659:16;17654:2;17646:6;17642:15;17635:41;17450:233;:::o;17689:366::-;17831:3;17852:67;17916:2;17911:3;17852:67;:::i;:::-;17845:74;;17928:93;18017:3;17928:93;:::i;:::-;18046:2;18041:3;18037:12;18030:19;;17689:366;;;:::o;18061:419::-;18227:4;18265:2;18254:9;18250:18;18242:26;;18314:9;18308:4;18304:20;18300:1;18289:9;18285:17;18278:47;18342:131;18468:4;18342:131;:::i;:::-;18334:139;;18061:419;;;:::o;18486:170::-;18626:22;18622:1;18614:6;18610:14;18603:46;18486:170;:::o;18662:366::-;18804:3;18825:67;18889:2;18884:3;18825:67;:::i;:::-;18818:74;;18901:93;18990:3;18901:93;:::i;:::-;19019:2;19014:3;19010:12;19003:19;;18662:366;;;:::o;19034:419::-;19200:4;19238:2;19227:9;19223:18;19215:26;;19287:9;19281:4;19277:20;19273:1;19262:9;19258:17;19251:47;19315:131;19441:4;19315:131;:::i;:::-;19307:139;;19034:419;;;:::o;19459:348::-;19499:7;19522:20;19540:1;19522:20;:::i;:::-;19517:25;;19556:20;19574:1;19556:20;:::i;:::-;19551:25;;19744:1;19676:66;19672:74;19669:1;19666:81;19661:1;19654:9;19647:17;19643:105;19640:131;;;19751:18;;:::i;:::-;19640:131;19799:1;19796;19792:9;19781:20;;19459:348;;;;:::o;19813:234::-;19953:34;19949:1;19941:6;19937:14;19930:58;20022:17;20017:2;20009:6;20005:15;19998:42;19813:234;:::o;20053:366::-;20195:3;20216:67;20280:2;20275:3;20216:67;:::i;:::-;20209:74;;20292:93;20381:3;20292:93;:::i;:::-;20410:2;20405:3;20401:12;20394:19;;20053:366;;;:::o;20425:419::-;20591:4;20629:2;20618:9;20614:18;20606:26;;20678:9;20672:4;20668:20;20664:1;20653:9;20649:17;20642:47;20706:131;20832:4;20706:131;:::i;:::-;20698:139;;20425:419;;;:::o;20850:232::-;20990:34;20986:1;20978:6;20974:14;20967:58;21059:15;21054:2;21046:6;21042:15;21035:40;20850:232;:::o;21088:366::-;21230:3;21251:67;21315:2;21310:3;21251:67;:::i;:::-;21244:74;;21327:93;21416:3;21327:93;:::i;:::-;21445:2;21440:3;21436:12;21429:19;;21088:366;;;:::o;21460:419::-;21626:4;21664:2;21653:9;21649:18;21641:26;;21713:9;21707:4;21703:20;21699:1;21688:9;21684:17;21677:47;21741:131;21867:4;21741:131;:::i;:::-;21733:139;;21460:419;;;:::o;21885:234::-;22025:34;22021:1;22013:6;22009:14;22002:58;22094:17;22089:2;22081:6;22077:15;22070:42;21885:234;:::o;22125:366::-;22267:3;22288:67;22352:2;22347:3;22288:67;:::i;:::-;22281:74;;22364:93;22453:3;22364:93;:::i;:::-;22482:2;22477:3;22473:12;22466:19;;22125:366;;;:::o;22497:419::-;22663:4;22701:2;22690:9;22686:18;22678:26;;22750:9;22744:4;22740:20;22736:1;22725:9;22721:17;22714:47;22778:131;22904:4;22778:131;:::i;:::-;22770:139;;22497:419;;;:::o;22922:148::-;23024:11;23061:3;23046:18;;22922:148;;;;:::o;23076:141::-;23125:4;23148:3;23140:11;;23171:3;23168:1;23161:14;23205:4;23202:1;23192:18;23184:26;;23076:141;;;:::o;23247:845::-;23350:3;23387:5;23381:12;23416:36;23442:9;23416:36;:::i;:::-;23468:89;23550:6;23545:3;23468:89;:::i;:::-;23461:96;;23588:1;23577:9;23573:17;23604:1;23599:137;;;;23750:1;23745:341;;;;23566:520;;23599:137;23683:4;23679:9;23668;23664:25;23659:3;23652:38;23719:6;23714:3;23710:16;23703:23;;23599:137;;23745:341;23812:38;23844:5;23812:38;:::i;:::-;23872:1;23886:154;23900:6;23897:1;23894:13;23886:154;;;23974:7;23968:14;23964:1;23959:3;23955:11;23948:35;24024:1;24015:7;24011:15;24000:26;;23922:4;23919:1;23915:12;23910:17;;23886:154;;;24069:6;24064:3;24060:16;24053:23;;23752:334;;23566:520;;23354:738;;23247:845;;;;:::o;24098:377::-;24204:3;24232:39;24265:5;24232:39;:::i;:::-;24287:89;24369:6;24364:3;24287:89;:::i;:::-;24280:96;;24385:52;24430:6;24425:3;24418:4;24411:5;24407:16;24385:52;:::i;:::-;24462:6;24457:3;24453:16;24446:23;;24208:267;24098:377;;;;:::o;24481:155::-;24621:7;24617:1;24609:6;24605:14;24598:31;24481:155;:::o;24642:400::-;24802:3;24823:84;24905:1;24900:3;24823:84;:::i;:::-;24816:91;;24916:93;25005:3;24916:93;:::i;:::-;25034:1;25029:3;25025:11;25018:18;;24642:400;;;:::o;25048:695::-;25326:3;25348:92;25436:3;25427:6;25348:92;:::i;:::-;25341:99;;25457:95;25548:3;25539:6;25457:95;:::i;:::-;25450:102;;25569:148;25713:3;25569:148;:::i;:::-;25562:155;;25734:3;25727:10;;25048:695;;;;;:::o;25749:225::-;25889:34;25885:1;25877:6;25873:14;25866:58;25958:8;25953:2;25945:6;25941:15;25934:33;25749:225;:::o;25980:366::-;26122:3;26143:67;26207:2;26202:3;26143:67;:::i;:::-;26136:74;;26219:93;26308:3;26219:93;:::i;:::-;26337:2;26332:3;26328:12;26321:19;;25980:366;;;:::o;26352:419::-;26518:4;26556:2;26545:9;26541:18;26533:26;;26605:9;26599:4;26595:20;26591:1;26580:9;26576:17;26569:47;26633:131;26759:4;26633:131;:::i;:::-;26625:139;;26352:419;;;:::o;26777:98::-;26828:6;26862:5;26856:12;26846:22;;26777:98;;;:::o;26881:168::-;26964:11;26998:6;26993:3;26986:19;27038:4;27033:3;27029:14;27014:29;;26881:168;;;;:::o;27055:360::-;27141:3;27169:38;27201:5;27169:38;:::i;:::-;27223:70;27286:6;27281:3;27223:70;:::i;:::-;27216:77;;27302:52;27347:6;27342:3;27335:4;27328:5;27324:16;27302:52;:::i;:::-;27379:29;27401:6;27379:29;:::i;:::-;27374:3;27370:39;27363:46;;27145:270;27055:360;;;;:::o;27421:640::-;27616:4;27654:3;27643:9;27639:19;27631:27;;27668:71;27736:1;27725:9;27721:17;27712:6;27668:71;:::i;:::-;27749:72;27817:2;27806:9;27802:18;27793:6;27749:72;:::i;:::-;27831;27899:2;27888:9;27884:18;27875:6;27831:72;:::i;:::-;27950:9;27944:4;27940:20;27935:2;27924:9;27920:18;27913:48;27978:76;28049:4;28040:6;27978:76;:::i;:::-;27970:84;;27421:640;;;;;;;:::o;28067:141::-;28123:5;28154:6;28148:13;28139:22;;28170:32;28196:5;28170:32;:::i;:::-;28067:141;;;;:::o;28214:349::-;28283:6;28332:2;28320:9;28311:7;28307:23;28303:32;28300:119;;;28338:79;;:::i;:::-;28300:119;28458:1;28483:63;28538:7;28529:6;28518:9;28514:22;28483:63;:::i;:::-;28473:73;;28429:127;28214:349;;;;:::o;28569:233::-;28608:3;28631:24;28649:5;28631:24;:::i;:::-;28622:33;;28677:66;28670:5;28667:77;28664:103;;;28747:18;;:::i;:::-;28664:103;28794:1;28787:5;28783:13;28776:20;;28569:233;;;:::o;28808:180::-;28856:77;28853:1;28846:88;28953:4;28950:1;28943:15;28977:4;28974:1;28967:15;28994:185;29034:1;29051:20;29069:1;29051:20;:::i;:::-;29046:25;;29085:20;29103:1;29085:20;:::i;:::-;29080:25;;29124:1;29114:35;;29129:18;;:::i;:::-;29114:35;29171:1;29168;29164:9;29159:14;;28994:185;;;;:::o;29185:191::-;29225:4;29245:20;29263:1;29245:20;:::i;:::-;29240:25;;29279:20;29297:1;29279:20;:::i;:::-;29274:25;;29318:1;29315;29312:8;29309:34;;;29323:18;;:::i;:::-;29309:34;29368:1;29365;29361:9;29353:17;;29185:191;;;;:::o;29382:176::-;29414:1;29431:20;29449:1;29431:20;:::i;:::-;29426:25;;29465:20;29483:1;29465:20;:::i;:::-;29460:25;;29504:1;29494:35;;29509:18;;:::i;:::-;29494:35;29550:1;29547;29543:9;29538:14;;29382:176;;;;:::o;29564:180::-;29612:77;29609:1;29602:88;29709:4;29706:1;29699:15;29733:4;29730:1;29723:15
Swarm Source
ipfs://ec32467d3b84659ee938d78b0f9f22f9dfbc6c5410fc29a8ab26979087d1b6ad
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.