Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
3,008 ASM
Holders
168
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 ASMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Astromigos
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-11 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/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: @openzeppelin/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: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/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: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts 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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); 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 extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 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 { 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; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // 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_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 || 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); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * 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 (_startTokenId() <= curr && 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 virtual 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 (to.isContract() && !_checkContractOnERC721Received(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 _startTokenId() <= tokenId && 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; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _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); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, 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 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { 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)) } } } } /** * @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 {} } // File: contracts/Astromigos.sol pragma solidity >=0.8.0 <0.9.0; contract Astromigos is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public _baseTokenURI; string public hiddenMetadataUri; uint256 public cost = 0.001 ether; uint256 public maxSupply = 5555; uint256 public freeSupply = 1500; uint256 public maxMintAmountPerTx = 15; bool public paused; bool public revealed = true; constructor( string memory _hiddenMetadataUri ) ERC721A("Astromigos", "ASM") { setHiddenMetadataUri(_hiddenMetadataUri); } function mint(uint256 _mintAmount) public payable nonReentrant { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); if (totalSupply() >= freeSupply) { require(msg.value > 0, "Max free supply exceeded!"); } _safeMint(_msgSender(), _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setFreeSupply(uint256 _freeSupply) public onlyOwner { freeSupply = _freeSupply; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } // METADATA HANDLING function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setBaseURI(string calldata baseURI) public onlyOwner { _baseTokenURI = baseURI; } 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), "URI does not exist!"); if (revealed) { return string(abi.encodePacked(_baseURI(), _tokenId.toString())); } else { return hiddenMetadataUri; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":"OwnerQueryForNonexistentToken","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":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":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[{"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":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266038d7ea4c68000600c556115b3600d556105dc600e55600f80556001601060016101000a81548160ff0219169083151502179055503480156200004757600080fd5b50604051620045073803806200450783398181016040528101906200006d91906200043d565b6040518060400160405280600a81526020017f417374726f6d69676f73000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f41534d00000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f19291906200030f565b5080600390805190602001906200010a9291906200030f565b506200011b6200016360201b60201c565b600081905550505062000143620001376200016c60201b60201c565b6200017460201b60201c565b60016009819055506200015c816200023a60201b60201c565b5062000695565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024a6200016c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000270620002e560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c090620004b5565b60405180910390fd5b80600b9080519060200190620002e19291906200030f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200031d906200057d565b90600052602060002090601f0160209004810192826200034157600085556200038d565b82601f106200035c57805160ff19168380011785556200038d565b828001600101855582156200038d579182015b828111156200038c5782518255916020019190600101906200036f565b5b5090506200039c9190620003a0565b5090565b5b80821115620003bb576000816000905550600101620003a1565b5090565b6000620003d6620003d08462000500565b620004d7565b905082815260208101848484011115620003f557620003f46200064c565b5b6200040284828562000547565b509392505050565b600082601f83011262000422576200042162000647565b5b815162000434848260208601620003bf565b91505092915050565b60006020828403121562000456576200045562000656565b5b600082015167ffffffffffffffff81111562000477576200047662000651565b5b62000485848285016200040a565b91505092915050565b60006200049d60208362000536565b9150620004aa826200066c565b602082019050919050565b60006020820190508181036000830152620004d0816200048e565b9050919050565b6000620004e3620004f6565b9050620004f18282620005b3565b919050565b6000604051905090565b600067ffffffffffffffff8211156200051e576200051d62000618565b5b62000529826200065b565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005675780820151818401526020810190506200054a565b8381111562000577576000848401525b50505050565b600060028204905060018216806200059657607f821691505b60208210811415620005ad57620005ac620005e9565b5b50919050565b620005be826200065b565b810181811067ffffffffffffffff82111715620005e057620005df62000618565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613e6280620006a56000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063b88d4fde116100a0578063e0a808531161006f578063e0a8085314610756578063e985e9c51461077f578063efbd73f4146107bc578063f2fde38b146107e5578063f676308a1461080e5761020f565b8063b88d4fde1461069a578063c87b56dd146106c3578063cfc86f7b14610700578063d5abeb011461072b5761020f565b806395d89b41116100e757806395d89b41146105d6578063a0712d6814610601578063a22cb4651461061d578063a45ba8e714610646578063b071401b146106715761020f565b806370a082311461052c578063715018a6146105695780638da5cb5b1461058057806394354fd0146105ab5761020f565b80633ccfd60b1161019b578063518302271161016a578063518302271461044757806355f804b3146104725780635c975abb1461049b5780636352211e146104c65780636f8b44b0146105035761020f565b80633ccfd60b146103b557806342842e0e146103cc57806344a0d68a146103f55780634fdd43cb1461041e5761020f565b806313faede6116101e257806313faede6146102e257806316c38b3c1461030d57806318160ddd1461033657806323b872dd1461036157806324a6ab0c1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906131fc565b610837565b6040516102489190613627565b60405180910390f35b34801561025d57600080fd5b50610266610919565b6040516102739190613642565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906132ec565b6109ab565b6040516102b091906135c0565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061318f565b610a27565b005b3480156102ee57600080fd5b506102f7610b32565b6040516103049190613784565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f91906131cf565b610b38565b005b34801561034257600080fd5b5061034b610bd1565b6040516103589190613784565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190613079565b610be8565b005b34801561039657600080fd5b5061039f610bf8565b6040516103ac9190613784565b60405180910390f35b3480156103c157600080fd5b506103ca610bfe565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190613079565b610d50565b005b34801561040157600080fd5b5061041c600480360381019061041791906132ec565b610d70565b005b34801561042a57600080fd5b50610445600480360381019061044091906132a3565b610df6565b005b34801561045357600080fd5b5061045c610e8c565b6040516104699190613627565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613256565b610e9f565b005b3480156104a757600080fd5b506104b0610f31565b6040516104bd9190613627565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906132ec565b610f44565b6040516104fa91906135c0565b60405180910390f35b34801561050f57600080fd5b5061052a600480360381019061052591906132ec565b610f5a565b005b34801561053857600080fd5b50610553600480360381019061054e919061300c565b610fe0565b6040516105609190613784565b60405180910390f35b34801561057557600080fd5b5061057e6110b0565b005b34801561058c57600080fd5b50610595611138565b6040516105a291906135c0565b60405180910390f35b3480156105b757600080fd5b506105c0611162565b6040516105cd9190613784565b60405180910390f35b3480156105e257600080fd5b506105eb611168565b6040516105f89190613642565b60405180910390f35b61061b600480360381019061061691906132ec565b6111fa565b005b34801561062957600080fd5b50610644600480360381019061063f919061314f565b611400565b005b34801561065257600080fd5b5061065b611578565b6040516106689190613642565b60405180910390f35b34801561067d57600080fd5b50610698600480360381019061069391906132ec565b611606565b005b3480156106a657600080fd5b506106c160048036038101906106bc91906130cc565b61168c565b005b3480156106cf57600080fd5b506106ea60048036038101906106e591906132ec565b611708565b6040516106f79190613642565b60405180910390f35b34801561070c57600080fd5b50610715611832565b6040516107229190613642565b60405180910390f35b34801561073757600080fd5b506107406118c0565b60405161074d9190613784565b60405180910390f35b34801561076257600080fd5b5061077d600480360381019061077891906131cf565b6118c6565b005b34801561078b57600080fd5b506107a660048036038101906107a19190613039565b61195f565b6040516107b39190613627565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de9190613319565b6119f3565b005b3480156107f157600080fd5b5061080c6004803603810190610807919061300c565b611a7d565b005b34801561081a57600080fd5b50610835600480360381019061083091906132ec565b611b75565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610912575061091182611bfb565b5b9050919050565b60606002805461092890613a3f565b80601f016020809104026020016040519081016040528092919081815260200182805461095490613a3f565b80156109a15780601f10610976576101008083540402835291602001916109a1565b820191906000526020600020905b81548152906001019060200180831161098457829003601f168201915b5050505050905090565b60006109b682611c65565b6109ec576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3282610f44565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab9611cb3565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aeb5750610ae981610ae4611cb3565b61195f565b155b15610b22576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2d838383611cbb565b505050565b600c5481565b610b40611cb3565b73ffffffffffffffffffffffffffffffffffffffff16610b5e611138565b73ffffffffffffffffffffffffffffffffffffffff1614610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab906136a4565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610bdb611d6d565b6001546000540303905090565b610bf3838383611d76565b505050565b600e5481565b610c06611cb3565b73ffffffffffffffffffffffffffffffffffffffff16610c24611138565b73ffffffffffffffffffffffffffffffffffffffff1614610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c71906136a4565b60405180910390fd5b60026009541415610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790613724565b60405180910390fd5b60026009819055506000610cd2611138565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cf5906135ab565b60006040518083038185875af1925050503d8060008114610d32576040519150601f19603f3d011682016040523d82523d6000602084013e610d37565b606091505b5050905080610d4557600080fd5b506001600981905550565b610d6b8383836040518060200160405280600081525061168c565b505050565b610d78611cb3565b73ffffffffffffffffffffffffffffffffffffffff16610d96611138565b73ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de3906136a4565b60405180910390fd5b80600c8190555050565b610dfe611cb3565b73ffffffffffffffffffffffffffffffffffffffff16610e1c611138565b73ffffffffffffffffffffffffffffffffffffffff1614610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e69906136a4565b60405180910390fd5b80600b9080519060200190610e88929190612d01565b5050565b601060019054906101000a900460ff1681565b610ea7611cb3565b73ffffffffffffffffffffffffffffffffffffffff16610ec5611138565b73ffffffffffffffffffffffffffffffffffffffff1614610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f12906136a4565b60405180910390fd5b8181600a9190610f2c929190612d87565b505050565b601060009054906101000a900460ff1681565b6000610f4f8261222c565b600001519050919050565b610f62611cb3565b73ffffffffffffffffffffffffffffffffffffffff16610f80611138565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd906136a4565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611048576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110b8611cb3565b73ffffffffffffffffffffffffffffffffffffffff166110d6611138565b73ffffffffffffffffffffffffffffffffffffffff161461112c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611123906136a4565b60405180910390fd5b61113660006124bb565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606003805461117790613a3f565b80601f01602080910402602001604051908101604052809291908181526020018280546111a390613a3f565b80156111f05780601f106111c5576101008083540402835291602001916111f0565b820191906000526020600020905b8154815290600101906020018083116111d357829003601f168201915b5050505050905090565b60026009541415611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790613724565b60405180910390fd5b600260098190555060008111801561125a5750600f548111155b611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090613684565b60405180910390fd5b600d54816112a5610bd1565b6112af9190613874565b11156112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e790613704565b60405180910390fd5b601060009054906101000a900460ff1615611340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611337906136c4565b60405180910390fd5b80600c5461134e91906138fb565b341015611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790613764565b60405180910390fd5b600e5461139b610bd1565b106113e457600034116113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da906136e4565b60405180910390fd5b5b6113f56113ef611cb3565b82612581565b600160098190555050565b611408611cb3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561146d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061147a611cb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611527611cb3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161156c9190613627565b60405180910390a35050565b600b805461158590613a3f565b80601f01602080910402602001604051908101604052809291908181526020018280546115b190613a3f565b80156115fe5780601f106115d3576101008083540402835291602001916115fe565b820191906000526020600020905b8154815290600101906020018083116115e157829003601f168201915b505050505081565b61160e611cb3565b73ffffffffffffffffffffffffffffffffffffffff1661162c611138565b73ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611679906136a4565b60405180910390fd5b80600f8190555050565b611697848484611d76565b6116b68373ffffffffffffffffffffffffffffffffffffffff1661259f565b80156116cb57506116c9848484846125c2565b155b15611702576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061171382611c65565b611752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174990613744565b60405180910390fd5b601060019054906101000a900460ff161561179f5761176f612722565b611778836127b4565b604051602001611789929190613587565b604051602081830303815290604052905061182d565b600b80546117ac90613a3f565b80601f01602080910402602001604051908101604052809291908181526020018280546117d890613a3f565b80156118255780601f106117fa57610100808354040283529160200191611825565b820191906000526020600020905b81548152906001019060200180831161180857829003601f168201915b505050505090505b919050565b600a805461183f90613a3f565b80601f016020809104026020016040519081016040528092919081815260200182805461186b90613a3f565b80156118b85780601f1061188d576101008083540402835291602001916118b8565b820191906000526020600020905b81548152906001019060200180831161189b57829003601f168201915b505050505081565b600d5481565b6118ce611cb3565b73ffffffffffffffffffffffffffffffffffffffff166118ec611138565b73ffffffffffffffffffffffffffffffffffffffff1614611942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611939906136a4565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119fb611cb3565b73ffffffffffffffffffffffffffffffffffffffff16611a19611138565b73ffffffffffffffffffffffffffffffffffffffff1614611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a66906136a4565b60405180910390fd5b611a798183612581565b5050565b611a85611cb3565b73ffffffffffffffffffffffffffffffffffffffff16611aa3611138565b73ffffffffffffffffffffffffffffffffffffffff1614611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af0906136a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090613664565b60405180910390fd5b611b72816124bb565b50565b611b7d611cb3565b73ffffffffffffffffffffffffffffffffffffffff16611b9b611138565b73ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be8906136a4565b60405180910390fd5b80600e8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c70611d6d565b11158015611c7f575060005482105b8015611cac575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d818261222c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611dec576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e0d611cb3565b73ffffffffffffffffffffffffffffffffffffffff161480611e3c5750611e3b85611e36611cb3565b61195f565b5b80611e815750611e4a611cb3565b73ffffffffffffffffffffffffffffffffffffffff16611e69846109ab565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611eba576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f21576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f2e8585856001612915565b611f3a60008487611cbb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121ba5760005482146121b957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612225858585600161291b565b5050505050565b612234612e0d565b600082905080612242611d6d565b11158015612251575060005481105b15612484576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161248257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123665780925050506124b6565b5b60011561248157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461247c5780925050506124b6565b612367565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61259b828260405180602001604052806000815250612921565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125e8611cb3565b8786866040518563ffffffff1660e01b815260040161260a94939291906135db565b602060405180830381600087803b15801561262457600080fd5b505af192505050801561265557506040513d601f19601f820116820180604052508101906126529190613229565b60015b6126cf573d8060008114612685576040519150601f19603f3d011682016040523d82523d6000602084013e61268a565b606091505b506000815114156126c7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461273190613a3f565b80601f016020809104026020016040519081016040528092919081815260200182805461275d90613a3f565b80156127aa5780601f1061277f576101008083540402835291602001916127aa565b820191906000526020600020905b81548152906001019060200180831161278d57829003601f168201915b5050505050905090565b606060008214156127fc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612910565b600082905060005b6000821461282e57808061281790613aa2565b915050600a8261282791906138ca565b9150612804565b60008167ffffffffffffffff81111561284a57612849613bd8565b5b6040519080825280601f01601f19166020018201604052801561287c5781602001600182028036833780820191505090505b5090505b60008514612909576001826128959190613955565b9150600a856128a49190613aeb565b60306128b09190613874565b60f81b8183815181106128c6576128c5613ba9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561290291906138ca565b9450612880565b8093505050505b919050565b50505050565b50505050565b61292e8383836001612933565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156129a0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129db576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129e86000868387612915565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612bb25750612bb18773ffffffffffffffffffffffffffffffffffffffff1661259f565b5b15612c78575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2760008884806001019550886125c2565b612c5d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612bb8578260005414612c7357600080fd5b612ce4565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c79575b816000819055505050612cfa600086838761291b565b5050505050565b828054612d0d90613a3f565b90600052602060002090601f016020900481019282612d2f5760008555612d76565b82601f10612d4857805160ff1916838001178555612d76565b82800160010185558215612d76579182015b82811115612d75578251825591602001919060010190612d5a565b5b509050612d839190612e50565b5090565b828054612d9390613a3f565b90600052602060002090601f016020900481019282612db55760008555612dfc565b82601f10612dce57803560ff1916838001178555612dfc565b82800160010185558215612dfc579182015b82811115612dfb578235825591602001919060010190612de0565b5b509050612e099190612e50565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e69576000816000905550600101612e51565b5090565b6000612e80612e7b846137c4565b61379f565b905082815260208101848484011115612e9c57612e9b613c16565b5b612ea78482856139fd565b509392505050565b6000612ec2612ebd846137f5565b61379f565b905082815260208101848484011115612ede57612edd613c16565b5b612ee98482856139fd565b509392505050565b600081359050612f0081613dd0565b92915050565b600081359050612f1581613de7565b92915050565b600081359050612f2a81613dfe565b92915050565b600081519050612f3f81613dfe565b92915050565b600082601f830112612f5a57612f59613c0c565b5b8135612f6a848260208601612e6d565b91505092915050565b60008083601f840112612f8957612f88613c0c565b5b8235905067ffffffffffffffff811115612fa657612fa5613c07565b5b602083019150836001820283011115612fc257612fc1613c11565b5b9250929050565b600082601f830112612fde57612fdd613c0c565b5b8135612fee848260208601612eaf565b91505092915050565b60008135905061300681613e15565b92915050565b60006020828403121561302257613021613c20565b5b600061303084828501612ef1565b91505092915050565b600080604083850312156130505761304f613c20565b5b600061305e85828601612ef1565b925050602061306f85828601612ef1565b9150509250929050565b60008060006060848603121561309257613091613c20565b5b60006130a086828701612ef1565b93505060206130b186828701612ef1565b92505060406130c286828701612ff7565b9150509250925092565b600080600080608085870312156130e6576130e5613c20565b5b60006130f487828801612ef1565b945050602061310587828801612ef1565b935050604061311687828801612ff7565b925050606085013567ffffffffffffffff81111561313757613136613c1b565b5b61314387828801612f45565b91505092959194509250565b6000806040838503121561316657613165613c20565b5b600061317485828601612ef1565b925050602061318585828601612f06565b9150509250929050565b600080604083850312156131a6576131a5613c20565b5b60006131b485828601612ef1565b92505060206131c585828601612ff7565b9150509250929050565b6000602082840312156131e5576131e4613c20565b5b60006131f384828501612f06565b91505092915050565b60006020828403121561321257613211613c20565b5b600061322084828501612f1b565b91505092915050565b60006020828403121561323f5761323e613c20565b5b600061324d84828501612f30565b91505092915050565b6000806020838503121561326d5761326c613c20565b5b600083013567ffffffffffffffff81111561328b5761328a613c1b565b5b61329785828601612f73565b92509250509250929050565b6000602082840312156132b9576132b8613c20565b5b600082013567ffffffffffffffff8111156132d7576132d6613c1b565b5b6132e384828501612fc9565b91505092915050565b60006020828403121561330257613301613c20565b5b600061331084828501612ff7565b91505092915050565b600080604083850312156133305761332f613c20565b5b600061333e85828601612ff7565b925050602061334f85828601612ef1565b9150509250929050565b61336281613989565b82525050565b6133718161399b565b82525050565b600061338282613826565b61338c818561383c565b935061339c818560208601613a0c565b6133a581613c25565b840191505092915050565b60006133bb82613831565b6133c58185613858565b93506133d5818560208601613a0c565b6133de81613c25565b840191505092915050565b60006133f482613831565b6133fe8185613869565b935061340e818560208601613a0c565b80840191505092915050565b6000613427602683613858565b915061343282613c36565b604082019050919050565b600061344a601483613858565b915061345582613c85565b602082019050919050565b600061346d602083613858565b915061347882613cae565b602082019050919050565b6000613490601783613858565b915061349b82613cd7565b602082019050919050565b60006134b3601983613858565b91506134be82613d00565b602082019050919050565b60006134d660008361384d565b91506134e182613d29565b600082019050919050565b60006134f9601483613858565b915061350482613d2c565b602082019050919050565b600061351c601f83613858565b915061352782613d55565b602082019050919050565b600061353f601383613858565b915061354a82613d7e565b602082019050919050565b6000613562601383613858565b915061356d82613da7565b602082019050919050565b613581816139f3565b82525050565b600061359382856133e9565b915061359f82846133e9565b91508190509392505050565b60006135b6826134c9565b9150819050919050565b60006020820190506135d56000830184613359565b92915050565b60006080820190506135f06000830187613359565b6135fd6020830186613359565b61360a6040830185613578565b818103606083015261361c8184613377565b905095945050505050565b600060208201905061363c6000830184613368565b92915050565b6000602082019050818103600083015261365c81846133b0565b905092915050565b6000602082019050818103600083015261367d8161341a565b9050919050565b6000602082019050818103600083015261369d8161343d565b9050919050565b600060208201905081810360008301526136bd81613460565b9050919050565b600060208201905081810360008301526136dd81613483565b9050919050565b600060208201905081810360008301526136fd816134a6565b9050919050565b6000602082019050818103600083015261371d816134ec565b9050919050565b6000602082019050818103600083015261373d8161350f565b9050919050565b6000602082019050818103600083015261375d81613532565b9050919050565b6000602082019050818103600083015261377d81613555565b9050919050565b60006020820190506137996000830184613578565b92915050565b60006137a96137ba565b90506137b58282613a71565b919050565b6000604051905090565b600067ffffffffffffffff8211156137df576137de613bd8565b5b6137e882613c25565b9050602081019050919050565b600067ffffffffffffffff8211156138105761380f613bd8565b5b61381982613c25565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061387f826139f3565b915061388a836139f3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138bf576138be613b1c565b5b828201905092915050565b60006138d5826139f3565b91506138e0836139f3565b9250826138f0576138ef613b4b565b5b828204905092915050565b6000613906826139f3565b9150613911836139f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561394a57613949613b1c565b5b828202905092915050565b6000613960826139f3565b915061396b836139f3565b92508282101561397e5761397d613b1c565b5b828203905092915050565b6000613994826139d3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a2a578082015181840152602081019050613a0f565b83811115613a39576000848401525b50505050565b60006002820490506001821680613a5757607f821691505b60208210811415613a6b57613a6a613b7a565b5b50919050565b613a7a82613c25565b810181811067ffffffffffffffff82111715613a9957613a98613bd8565b5b80604052505050565b6000613aad826139f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ae057613adf613b1c565b5b600182019050919050565b6000613af6826139f3565b9150613b01836139f3565b925082613b1157613b10613b4b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f55524920646f6573206e6f742065786973742100000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613dd981613989565b8114613de457600080fd5b50565b613df08161399b565b8114613dfb57600080fd5b50565b613e07816139a7565b8114613e1257600080fd5b50565b613e1e816139f3565b8114613e2957600080fd5b5056fea2646970667358221220140f1303cfc0ab74a63f06560a837c273b6f0461f90b9f3fce34344ba19a75c664736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c806370a0823111610118578063b88d4fde116100a0578063e0a808531161006f578063e0a8085314610756578063e985e9c51461077f578063efbd73f4146107bc578063f2fde38b146107e5578063f676308a1461080e5761020f565b8063b88d4fde1461069a578063c87b56dd146106c3578063cfc86f7b14610700578063d5abeb011461072b5761020f565b806395d89b41116100e757806395d89b41146105d6578063a0712d6814610601578063a22cb4651461061d578063a45ba8e714610646578063b071401b146106715761020f565b806370a082311461052c578063715018a6146105695780638da5cb5b1461058057806394354fd0146105ab5761020f565b80633ccfd60b1161019b578063518302271161016a578063518302271461044757806355f804b3146104725780635c975abb1461049b5780636352211e146104c65780636f8b44b0146105035761020f565b80633ccfd60b146103b557806342842e0e146103cc57806344a0d68a146103f55780634fdd43cb1461041e5761020f565b806313faede6116101e257806313faede6146102e257806316c38b3c1461030d57806318160ddd1461033657806323b872dd1461036157806324a6ab0c1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906131fc565b610837565b6040516102489190613627565b60405180910390f35b34801561025d57600080fd5b50610266610919565b6040516102739190613642565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906132ec565b6109ab565b6040516102b091906135c0565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061318f565b610a27565b005b3480156102ee57600080fd5b506102f7610b32565b6040516103049190613784565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f91906131cf565b610b38565b005b34801561034257600080fd5b5061034b610bd1565b6040516103589190613784565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190613079565b610be8565b005b34801561039657600080fd5b5061039f610bf8565b6040516103ac9190613784565b60405180910390f35b3480156103c157600080fd5b506103ca610bfe565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190613079565b610d50565b005b34801561040157600080fd5b5061041c600480360381019061041791906132ec565b610d70565b005b34801561042a57600080fd5b50610445600480360381019061044091906132a3565b610df6565b005b34801561045357600080fd5b5061045c610e8c565b6040516104699190613627565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613256565b610e9f565b005b3480156104a757600080fd5b506104b0610f31565b6040516104bd9190613627565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906132ec565b610f44565b6040516104fa91906135c0565b60405180910390f35b34801561050f57600080fd5b5061052a600480360381019061052591906132ec565b610f5a565b005b34801561053857600080fd5b50610553600480360381019061054e919061300c565b610fe0565b6040516105609190613784565b60405180910390f35b34801561057557600080fd5b5061057e6110b0565b005b34801561058c57600080fd5b50610595611138565b6040516105a291906135c0565b60405180910390f35b3480156105b757600080fd5b506105c0611162565b6040516105cd9190613784565b60405180910390f35b3480156105e257600080fd5b506105eb611168565b6040516105f89190613642565b60405180910390f35b61061b600480360381019061061691906132ec565b6111fa565b005b34801561062957600080fd5b50610644600480360381019061063f919061314f565b611400565b005b34801561065257600080fd5b5061065b611578565b6040516106689190613642565b60405180910390f35b34801561067d57600080fd5b50610698600480360381019061069391906132ec565b611606565b005b3480156106a657600080fd5b506106c160048036038101906106bc91906130cc565b61168c565b005b3480156106cf57600080fd5b506106ea60048036038101906106e591906132ec565b611708565b6040516106f79190613642565b60405180910390f35b34801561070c57600080fd5b50610715611832565b6040516107229190613642565b60405180910390f35b34801561073757600080fd5b506107406118c0565b60405161074d9190613784565b60405180910390f35b34801561076257600080fd5b5061077d600480360381019061077891906131cf565b6118c6565b005b34801561078b57600080fd5b506107a660048036038101906107a19190613039565b61195f565b6040516107b39190613627565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de9190613319565b6119f3565b005b3480156107f157600080fd5b5061080c6004803603810190610807919061300c565b611a7d565b005b34801561081a57600080fd5b50610835600480360381019061083091906132ec565b611b75565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610912575061091182611bfb565b5b9050919050565b60606002805461092890613a3f565b80601f016020809104026020016040519081016040528092919081815260200182805461095490613a3f565b80156109a15780601f10610976576101008083540402835291602001916109a1565b820191906000526020600020905b81548152906001019060200180831161098457829003601f168201915b5050505050905090565b60006109b682611c65565b6109ec576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3282610f44565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab9611cb3565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aeb5750610ae981610ae4611cb3565b61195f565b155b15610b22576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2d838383611cbb565b505050565b600c5481565b610b40611cb3565b73ffffffffffffffffffffffffffffffffffffffff16610b5e611138565b73ffffffffffffffffffffffffffffffffffffffff1614610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab906136a4565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610bdb611d6d565b6001546000540303905090565b610bf3838383611d76565b505050565b600e5481565b610c06611cb3565b73ffffffffffffffffffffffffffffffffffffffff16610c24611138565b73ffffffffffffffffffffffffffffffffffffffff1614610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c71906136a4565b60405180910390fd5b60026009541415610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790613724565b60405180910390fd5b60026009819055506000610cd2611138565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cf5906135ab565b60006040518083038185875af1925050503d8060008114610d32576040519150601f19603f3d011682016040523d82523d6000602084013e610d37565b606091505b5050905080610d4557600080fd5b506001600981905550565b610d6b8383836040518060200160405280600081525061168c565b505050565b610d78611cb3565b73ffffffffffffffffffffffffffffffffffffffff16610d96611138565b73ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de3906136a4565b60405180910390fd5b80600c8190555050565b610dfe611cb3565b73ffffffffffffffffffffffffffffffffffffffff16610e1c611138565b73ffffffffffffffffffffffffffffffffffffffff1614610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e69906136a4565b60405180910390fd5b80600b9080519060200190610e88929190612d01565b5050565b601060019054906101000a900460ff1681565b610ea7611cb3565b73ffffffffffffffffffffffffffffffffffffffff16610ec5611138565b73ffffffffffffffffffffffffffffffffffffffff1614610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f12906136a4565b60405180910390fd5b8181600a9190610f2c929190612d87565b505050565b601060009054906101000a900460ff1681565b6000610f4f8261222c565b600001519050919050565b610f62611cb3565b73ffffffffffffffffffffffffffffffffffffffff16610f80611138565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd906136a4565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611048576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110b8611cb3565b73ffffffffffffffffffffffffffffffffffffffff166110d6611138565b73ffffffffffffffffffffffffffffffffffffffff161461112c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611123906136a4565b60405180910390fd5b61113660006124bb565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606003805461117790613a3f565b80601f01602080910402602001604051908101604052809291908181526020018280546111a390613a3f565b80156111f05780601f106111c5576101008083540402835291602001916111f0565b820191906000526020600020905b8154815290600101906020018083116111d357829003601f168201915b5050505050905090565b60026009541415611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790613724565b60405180910390fd5b600260098190555060008111801561125a5750600f548111155b611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090613684565b60405180910390fd5b600d54816112a5610bd1565b6112af9190613874565b11156112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e790613704565b60405180910390fd5b601060009054906101000a900460ff1615611340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611337906136c4565b60405180910390fd5b80600c5461134e91906138fb565b341015611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790613764565b60405180910390fd5b600e5461139b610bd1565b106113e457600034116113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da906136e4565b60405180910390fd5b5b6113f56113ef611cb3565b82612581565b600160098190555050565b611408611cb3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561146d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061147a611cb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611527611cb3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161156c9190613627565b60405180910390a35050565b600b805461158590613a3f565b80601f01602080910402602001604051908101604052809291908181526020018280546115b190613a3f565b80156115fe5780601f106115d3576101008083540402835291602001916115fe565b820191906000526020600020905b8154815290600101906020018083116115e157829003601f168201915b505050505081565b61160e611cb3565b73ffffffffffffffffffffffffffffffffffffffff1661162c611138565b73ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611679906136a4565b60405180910390fd5b80600f8190555050565b611697848484611d76565b6116b68373ffffffffffffffffffffffffffffffffffffffff1661259f565b80156116cb57506116c9848484846125c2565b155b15611702576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061171382611c65565b611752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174990613744565b60405180910390fd5b601060019054906101000a900460ff161561179f5761176f612722565b611778836127b4565b604051602001611789929190613587565b604051602081830303815290604052905061182d565b600b80546117ac90613a3f565b80601f01602080910402602001604051908101604052809291908181526020018280546117d890613a3f565b80156118255780601f106117fa57610100808354040283529160200191611825565b820191906000526020600020905b81548152906001019060200180831161180857829003601f168201915b505050505090505b919050565b600a805461183f90613a3f565b80601f016020809104026020016040519081016040528092919081815260200182805461186b90613a3f565b80156118b85780601f1061188d576101008083540402835291602001916118b8565b820191906000526020600020905b81548152906001019060200180831161189b57829003601f168201915b505050505081565b600d5481565b6118ce611cb3565b73ffffffffffffffffffffffffffffffffffffffff166118ec611138565b73ffffffffffffffffffffffffffffffffffffffff1614611942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611939906136a4565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119fb611cb3565b73ffffffffffffffffffffffffffffffffffffffff16611a19611138565b73ffffffffffffffffffffffffffffffffffffffff1614611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a66906136a4565b60405180910390fd5b611a798183612581565b5050565b611a85611cb3565b73ffffffffffffffffffffffffffffffffffffffff16611aa3611138565b73ffffffffffffffffffffffffffffffffffffffff1614611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af0906136a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090613664565b60405180910390fd5b611b72816124bb565b50565b611b7d611cb3565b73ffffffffffffffffffffffffffffffffffffffff16611b9b611138565b73ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be8906136a4565b60405180910390fd5b80600e8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c70611d6d565b11158015611c7f575060005482105b8015611cac575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d818261222c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611dec576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e0d611cb3565b73ffffffffffffffffffffffffffffffffffffffff161480611e3c5750611e3b85611e36611cb3565b61195f565b5b80611e815750611e4a611cb3565b73ffffffffffffffffffffffffffffffffffffffff16611e69846109ab565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611eba576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f21576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f2e8585856001612915565b611f3a60008487611cbb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121ba5760005482146121b957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612225858585600161291b565b5050505050565b612234612e0d565b600082905080612242611d6d565b11158015612251575060005481105b15612484576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161248257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123665780925050506124b6565b5b60011561248157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461247c5780925050506124b6565b612367565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61259b828260405180602001604052806000815250612921565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125e8611cb3565b8786866040518563ffffffff1660e01b815260040161260a94939291906135db565b602060405180830381600087803b15801561262457600080fd5b505af192505050801561265557506040513d601f19601f820116820180604052508101906126529190613229565b60015b6126cf573d8060008114612685576040519150601f19603f3d011682016040523d82523d6000602084013e61268a565b606091505b506000815114156126c7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461273190613a3f565b80601f016020809104026020016040519081016040528092919081815260200182805461275d90613a3f565b80156127aa5780601f1061277f576101008083540402835291602001916127aa565b820191906000526020600020905b81548152906001019060200180831161278d57829003601f168201915b5050505050905090565b606060008214156127fc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612910565b600082905060005b6000821461282e57808061281790613aa2565b915050600a8261282791906138ca565b9150612804565b60008167ffffffffffffffff81111561284a57612849613bd8565b5b6040519080825280601f01601f19166020018201604052801561287c5781602001600182028036833780820191505090505b5090505b60008514612909576001826128959190613955565b9150600a856128a49190613aeb565b60306128b09190613874565b60f81b8183815181106128c6576128c5613ba9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561290291906138ca565b9450612880565b8093505050505b919050565b50505050565b50505050565b61292e8383836001612933565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156129a0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129db576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129e86000868387612915565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612bb25750612bb18773ffffffffffffffffffffffffffffffffffffffff1661259f565b5b15612c78575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2760008884806001019550886125c2565b612c5d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612bb8578260005414612c7357600080fd5b612ce4565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c79575b816000819055505050612cfa600086838761291b565b5050505050565b828054612d0d90613a3f565b90600052602060002090601f016020900481019282612d2f5760008555612d76565b82601f10612d4857805160ff1916838001178555612d76565b82800160010185558215612d76579182015b82811115612d75578251825591602001919060010190612d5a565b5b509050612d839190612e50565b5090565b828054612d9390613a3f565b90600052602060002090601f016020900481019282612db55760008555612dfc565b82601f10612dce57803560ff1916838001178555612dfc565b82800160010185558215612dfc579182015b82811115612dfb578235825591602001919060010190612de0565b5b509050612e099190612e50565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e69576000816000905550600101612e51565b5090565b6000612e80612e7b846137c4565b61379f565b905082815260208101848484011115612e9c57612e9b613c16565b5b612ea78482856139fd565b509392505050565b6000612ec2612ebd846137f5565b61379f565b905082815260208101848484011115612ede57612edd613c16565b5b612ee98482856139fd565b509392505050565b600081359050612f0081613dd0565b92915050565b600081359050612f1581613de7565b92915050565b600081359050612f2a81613dfe565b92915050565b600081519050612f3f81613dfe565b92915050565b600082601f830112612f5a57612f59613c0c565b5b8135612f6a848260208601612e6d565b91505092915050565b60008083601f840112612f8957612f88613c0c565b5b8235905067ffffffffffffffff811115612fa657612fa5613c07565b5b602083019150836001820283011115612fc257612fc1613c11565b5b9250929050565b600082601f830112612fde57612fdd613c0c565b5b8135612fee848260208601612eaf565b91505092915050565b60008135905061300681613e15565b92915050565b60006020828403121561302257613021613c20565b5b600061303084828501612ef1565b91505092915050565b600080604083850312156130505761304f613c20565b5b600061305e85828601612ef1565b925050602061306f85828601612ef1565b9150509250929050565b60008060006060848603121561309257613091613c20565b5b60006130a086828701612ef1565b93505060206130b186828701612ef1565b92505060406130c286828701612ff7565b9150509250925092565b600080600080608085870312156130e6576130e5613c20565b5b60006130f487828801612ef1565b945050602061310587828801612ef1565b935050604061311687828801612ff7565b925050606085013567ffffffffffffffff81111561313757613136613c1b565b5b61314387828801612f45565b91505092959194509250565b6000806040838503121561316657613165613c20565b5b600061317485828601612ef1565b925050602061318585828601612f06565b9150509250929050565b600080604083850312156131a6576131a5613c20565b5b60006131b485828601612ef1565b92505060206131c585828601612ff7565b9150509250929050565b6000602082840312156131e5576131e4613c20565b5b60006131f384828501612f06565b91505092915050565b60006020828403121561321257613211613c20565b5b600061322084828501612f1b565b91505092915050565b60006020828403121561323f5761323e613c20565b5b600061324d84828501612f30565b91505092915050565b6000806020838503121561326d5761326c613c20565b5b600083013567ffffffffffffffff81111561328b5761328a613c1b565b5b61329785828601612f73565b92509250509250929050565b6000602082840312156132b9576132b8613c20565b5b600082013567ffffffffffffffff8111156132d7576132d6613c1b565b5b6132e384828501612fc9565b91505092915050565b60006020828403121561330257613301613c20565b5b600061331084828501612ff7565b91505092915050565b600080604083850312156133305761332f613c20565b5b600061333e85828601612ff7565b925050602061334f85828601612ef1565b9150509250929050565b61336281613989565b82525050565b6133718161399b565b82525050565b600061338282613826565b61338c818561383c565b935061339c818560208601613a0c565b6133a581613c25565b840191505092915050565b60006133bb82613831565b6133c58185613858565b93506133d5818560208601613a0c565b6133de81613c25565b840191505092915050565b60006133f482613831565b6133fe8185613869565b935061340e818560208601613a0c565b80840191505092915050565b6000613427602683613858565b915061343282613c36565b604082019050919050565b600061344a601483613858565b915061345582613c85565b602082019050919050565b600061346d602083613858565b915061347882613cae565b602082019050919050565b6000613490601783613858565b915061349b82613cd7565b602082019050919050565b60006134b3601983613858565b91506134be82613d00565b602082019050919050565b60006134d660008361384d565b91506134e182613d29565b600082019050919050565b60006134f9601483613858565b915061350482613d2c565b602082019050919050565b600061351c601f83613858565b915061352782613d55565b602082019050919050565b600061353f601383613858565b915061354a82613d7e565b602082019050919050565b6000613562601383613858565b915061356d82613da7565b602082019050919050565b613581816139f3565b82525050565b600061359382856133e9565b915061359f82846133e9565b91508190509392505050565b60006135b6826134c9565b9150819050919050565b60006020820190506135d56000830184613359565b92915050565b60006080820190506135f06000830187613359565b6135fd6020830186613359565b61360a6040830185613578565b818103606083015261361c8184613377565b905095945050505050565b600060208201905061363c6000830184613368565b92915050565b6000602082019050818103600083015261365c81846133b0565b905092915050565b6000602082019050818103600083015261367d8161341a565b9050919050565b6000602082019050818103600083015261369d8161343d565b9050919050565b600060208201905081810360008301526136bd81613460565b9050919050565b600060208201905081810360008301526136dd81613483565b9050919050565b600060208201905081810360008301526136fd816134a6565b9050919050565b6000602082019050818103600083015261371d816134ec565b9050919050565b6000602082019050818103600083015261373d8161350f565b9050919050565b6000602082019050818103600083015261375d81613532565b9050919050565b6000602082019050818103600083015261377d81613555565b9050919050565b60006020820190506137996000830184613578565b92915050565b60006137a96137ba565b90506137b58282613a71565b919050565b6000604051905090565b600067ffffffffffffffff8211156137df576137de613bd8565b5b6137e882613c25565b9050602081019050919050565b600067ffffffffffffffff8211156138105761380f613bd8565b5b61381982613c25565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061387f826139f3565b915061388a836139f3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138bf576138be613b1c565b5b828201905092915050565b60006138d5826139f3565b91506138e0836139f3565b9250826138f0576138ef613b4b565b5b828204905092915050565b6000613906826139f3565b9150613911836139f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561394a57613949613b1c565b5b828202905092915050565b6000613960826139f3565b915061396b836139f3565b92508282101561397e5761397d613b1c565b5b828203905092915050565b6000613994826139d3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a2a578082015181840152602081019050613a0f565b83811115613a39576000848401525b50505050565b60006002820490506001821680613a5757607f821691505b60208210811415613a6b57613a6a613b7a565b5b50919050565b613a7a82613c25565b810181811067ffffffffffffffff82111715613a9957613a98613bd8565b5b80604052505050565b6000613aad826139f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ae057613adf613b1c565b5b600182019050919050565b6000613af6826139f3565b9150613b01836139f3565b925082613b1157613b10613b4b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f55524920646f6573206e6f742065786973742100000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613dd981613989565b8114613de457600080fd5b50565b613df08161399b565b8114613dfb57600080fd5b50565b613e07816139a7565b8114613e1257600080fd5b50565b613e1e816139f3565b8114613e2957600080fd5b5056fea2646970667358221220140f1303cfc0ab74a63f06560a837c273b6f0461f90b9f3fce34344ba19a75c664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _hiddenMetadataUri (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47597:2754:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29766:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32879:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34382:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33945:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47763:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49401:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29015:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35247:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47837:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49485:150;;;;;;;;;;;;;:::i;:::-;;35488:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48979:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49669:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47943:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49808:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47920:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32687:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49197:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30135:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7524:103;;;;;;;;;;;;;:::i;:::-;;6873:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47874:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33048:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48126:522;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34658:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47724:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49060:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35744:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50030:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47692:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47801:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48891:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35016:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48655:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7782:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49297:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29766:305;29868:4;29920:25;29905:40;;;:11;:40;;;;:105;;;;29977:33;29962:48;;;:11;:48;;;;29905:105;:158;;;;30027:36;30051:11;30027:23;:36::i;:::-;29905:158;29885:178;;29766:305;;;:::o;32879:100::-;32933:13;32966:5;32959:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32879:100;:::o;34382:204::-;34450:7;34475:16;34483:7;34475;:16::i;:::-;34470:64;;34500:34;;;;;;;;;;;;;;34470:64;34554:15;:24;34570:7;34554:24;;;;;;;;;;;;;;;;;;;;;34547:31;;34382:204;;;:::o;33945:371::-;34018:13;34034:24;34050:7;34034:15;:24::i;:::-;34018:40;;34079:5;34073:11;;:2;:11;;;34069:48;;;34093:24;;;;;;;;;;;;;;34069:48;34150:5;34134:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34160:37;34177:5;34184:12;:10;:12::i;:::-;34160:16;:37::i;:::-;34159:38;34134:63;34130:138;;;34221:35;;;;;;;;;;;;;;34130:138;34280:28;34289:2;34293:7;34302:5;34280:8;:28::i;:::-;34007:309;33945:371;;:::o;47763:33::-;;;;:::o;49401:77::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49466:6:::1;49457;;:15;;;;;;;;;;;;;;;;;;49401:77:::0;:::o;29015:303::-;29059:7;29284:15;:13;:15::i;:::-;29269:12;;29253:13;;:28;:46;29246:53;;29015:303;:::o;35247:170::-;35381:28;35391:4;35397:2;35401:7;35381:9;:28::i;:::-;35247:170;;;:::o;47837:32::-;;;;:::o;49485:150::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:1:::1;2445:7;;:19;;2437:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:1;2578:7;:18;;;;49543:7:::2;49564;:5;:7::i;:::-;49556:21;;49585;49556:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49542:69;;;49626:2;49618:11;;;::::0;::::2;;49535:100;1803:1:::1;2757:7;:22;;;;49485:150::o:0;35488:185::-;35626:39;35643:4;35649:2;35653:7;35626:39;;;;;;;;;;;;:16;:39::i;:::-;35488:185;;;:::o;48979:74::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49042:5:::1;49035:4;:12;;;;48979:74:::0;:::o;49669:132::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49777:18:::1;49757:17;:38;;;;;;;;;;;;:::i;:::-;;49669:132:::0;:::o;47943:27::-;;;;;;;;;;;;;:::o;49808:98::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49893:7:::1;;49877:13;:23;;;;;;;:::i;:::-;;49808:98:::0;;:::o;47920:18::-;;;;;;;;;;;;;:::o;32687:125::-;32751:7;32778:21;32791:7;32778:12;:21::i;:::-;:26;;;32771:33;;32687:125;;;:::o;49197:94::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49275:10:::1;49263:9;:22;;;;49197:94:::0;:::o;30135:206::-;30199:7;30240:1;30223:19;;:5;:19;;;30219:60;;;30251:28;;;;;;;;;;;;;;30219:60;30305:12;:19;30318:5;30305:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30297:36;;30290:43;;30135:206;;;:::o;7524:103::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7589:30:::1;7616:1;7589:18;:30::i;:::-;7524:103::o:0;6873:87::-;6919:7;6946:6;;;;;;;;;;;6939:13;;6873:87;:::o;47874:38::-;;;;:::o;33048:104::-;33104:13;33137:7;33130:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33048:104;:::o;48126:522::-;1847:1;2445:7;;:19;;2437:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:1;2578:7;:18;;;;48218:1:::1;48204:11;:15;:52;;;;;48238:18;;48223:11;:33;;48204:52;48196:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48327:9;;48312:11;48296:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48288:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48377:6;;;;;;;;;;;48376:7;48368:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48446:11;48439:4;;:18;;;;:::i;:::-;48426:9;:31;;48418:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48511:10;;48494:13;:11;:13::i;:::-;:27;48490:107;;48556:1;48544:9;:13;48536:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48490:107;48606:36;48616:12;:10;:12::i;:::-;48630:11;48606:9;:36::i;:::-;1803:1:::0;2757:7;:22;;;;48126:522;:::o;34658:287::-;34769:12;:10;:12::i;:::-;34757:24;;:8;:24;;;34753:54;;;34790:17;;;;;;;;;;;;;;34753:54;34865:8;34820:18;:32;34839:12;:10;:12::i;:::-;34820:32;;;;;;;;;;;;;;;:42;34853:8;34820:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34918:8;34889:48;;34904:12;:10;:12::i;:::-;34889:48;;;34928:8;34889:48;;;;;;:::i;:::-;;;;;;;;34658:287;;:::o;47724:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49060:130::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49165:19:::1;49144:18;:40;;;;49060:130:::0;:::o;35744:369::-;35911:28;35921:4;35927:2;35931:7;35911:9;:28::i;:::-;35954:15;:2;:13;;;:15::i;:::-;:76;;;;;35974:56;36005:4;36011:2;36015:7;36024:5;35974:30;:56::i;:::-;35973:57;35954:76;35950:156;;;36054:40;;;;;;;;;;;;;;35950:156;35744:369;;;;:::o;50030:318::-;50104:13;50136:17;50144:8;50136:7;:17::i;:::-;50128:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;50193:8;;;;;;;;;;;50189:154;;;50247:10;:8;:10::i;:::-;50259:19;:8;:17;:19::i;:::-;50230:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50216:64;;;;50189:154;50316:17;50309:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50030:318;;;;:::o;47692:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47801:31::-;;;;:::o;48891:81::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48960:6:::1;48949:8;;:17;;;;;;;;;;;;;;;;;;48891:81:::0;:::o;35016:164::-;35113:4;35137:18;:25;35156:5;35137:25;;;;;;;;;;;;;;;:35;35163:8;35137:35;;;;;;;;;;;;;;;;;;;;;;;;;35130:42;;35016:164;;;;:::o;48655:127::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48743:33:::1;48753:9;48764:11;48743:9;:33::i;:::-;48655:127:::0;;:::o;7782:201::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7891:1:::1;7871:22;;:8;:22;;;;7863:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7947:28;7966:8;7947:18;:28::i;:::-;7782:201:::0;:::o;49297:98::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49378:11:::1;49365:10;:24;;;;49297:98:::0;:::o;19657:157::-;19742:4;19781:25;19766:40;;;:11;:40;;;;19759:47;;19657:157;;;:::o;36368:174::-;36425:4;36468:7;36449:15;:13;:15::i;:::-;:26;;:53;;;;;36489:13;;36479:7;:23;36449:53;:85;;;;;36507:11;:20;36519:7;36507:20;;;;;;;;;;;:27;;;;;;;;;;;;36506:28;36449:85;36442:92;;36368:174;;;:::o;5597:98::-;5650:7;5677:10;5670:17;;5597:98;:::o;44525:196::-;44667:2;44640:15;:24;44656:7;44640:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44705:7;44701:2;44685:28;;44694:5;44685:28;;;;;;;;;;;;44525:196;;;:::o;48789:95::-;48854:7;48877:1;48870:8;;48789:95;:::o;39468:2130::-;39583:35;39621:21;39634:7;39621:12;:21::i;:::-;39583:59;;39681:4;39659:26;;:13;:18;;;:26;;;39655:67;;39694:28;;;;;;;;;;;;;;39655:67;39735:22;39777:4;39761:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39798:36;39815:4;39821:12;:10;:12::i;:::-;39798:16;:36::i;:::-;39761:73;:126;;;;39875:12;:10;:12::i;:::-;39851:36;;:20;39863:7;39851:11;:20::i;:::-;:36;;;39761:126;39735:153;;39906:17;39901:66;;39932:35;;;;;;;;;;;;;;39901:66;39996:1;39982:16;;:2;:16;;;39978:52;;;40007:23;;;;;;;;;;;;;;39978:52;40043:43;40065:4;40071:2;40075:7;40084:1;40043:21;:43::i;:::-;40151:35;40168:1;40172:7;40181:4;40151:8;:35::i;:::-;40512:1;40482:12;:18;40495:4;40482:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40556:1;40528:12;:16;40541:2;40528:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40574:31;40608:11;:20;40620:7;40608:20;;;;;;;;;;;40574:54;;40659:2;40643:8;:13;;;:18;;;;;;;;;;;;;;;;;;40709:15;40676:8;:23;;;:49;;;;;;;;;;;;;;;;;;40977:19;41009:1;40999:7;:11;40977:33;;41025:31;41059:11;:24;41071:11;41059:24;;;;;;;;;;;41025:58;;41127:1;41102:27;;:8;:13;;;;;;;;;;;;:27;;;41098:384;;;41312:13;;41297:11;:28;41293:174;;41366:4;41350:8;:13;;;:20;;;;;;;;;;;;;;;;;;41419:13;:28;;;41393:8;:23;;;:54;;;;;;;;;;;;;;;;;;41293:174;41098:384;40457:1036;;;41529:7;41525:2;41510:27;;41519:4;41510:27;;;;;;;;;;;;41548:42;41569:4;41575:2;41579:7;41588:1;41548:20;:42::i;:::-;39572:2026;;39468:2130;;;:::o;31516:1109::-;31578:21;;:::i;:::-;31612:12;31627:7;31612:22;;31695:4;31676:15;:13;:15::i;:::-;:23;;:47;;;;;31710:13;;31703:4;:20;31676:47;31672:886;;;31744:31;31778:11;:17;31790:4;31778:17;;;;;;;;;;;31744:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31819:9;:16;;;31814:729;;31890:1;31864:28;;:9;:14;;;:28;;;31860:101;;31928:9;31921:16;;;;;;31860:101;32263:261;32270:4;32263:261;;;32303:6;;;;;;;;32348:11;:17;32360:4;32348:17;;;;;;;;;;;32336:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32422:1;32396:28;;:9;:14;;;:28;;;32392:109;;32464:9;32457:16;;;;;;32392:109;32263:261;;;31814:729;31725:833;31672:886;32586:31;;;;;;;;;;;;;;31516:1109;;;;:::o;8143:191::-;8217:16;8236:6;;;;;;;;;;;8217:25;;8262:8;8253:6;;:17;;;;;;;;;;;;;;;;;;8317:8;8286:40;;8307:8;8286:40;;;;;;;;;;;;8206:128;8143:191;:::o;36550:104::-;36619:27;36629:2;36633:8;36619:27;;;;;;;;;;;;:9;:27::i;:::-;36550:104;;:::o;9574:326::-;9634:4;9891:1;9869:7;:19;;;:23;9862:30;;9574:326;;;:::o;45213:667::-;45376:4;45413:2;45397:36;;;45434:12;:10;:12::i;:::-;45448:4;45454:7;45463:5;45397:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45393:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45648:1;45631:6;:13;:18;45627:235;;;45677:40;;;;;;;;;;;;;;45627:235;45820:6;45814:13;45805:6;45801:2;45797:15;45790:38;45393:480;45526:45;;;45516:55;;;:6;:55;;;;45509:62;;;45213:667;;;;;;:::o;49913:110::-;49973:13;50004;49997:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49913:110;:::o;3159:723::-;3215:13;3445:1;3436:5;:10;3432:53;;;3463:10;;;;;;;;;;;;;;;;;;;;;3432:53;3495:12;3510:5;3495:20;;3526:14;3551:78;3566:1;3558:4;:9;3551:78;;3584:8;;;;;:::i;:::-;;;;3615:2;3607:10;;;;;:::i;:::-;;;3551:78;;;3639:19;3671:6;3661:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3639:39;;3689:154;3705:1;3696:5;:10;3689:154;;3733:1;3723:11;;;;;:::i;:::-;;;3800:2;3792:5;:10;;;;:::i;:::-;3779:2;:24;;;;:::i;:::-;3766:39;;3749:6;3756;3749:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3829:2;3820:11;;;;;:::i;:::-;;;3689:154;;;3867:6;3853:21;;;;;3159:723;;;;:::o;46528:159::-;;;;;:::o;47346:158::-;;;;;:::o;37017:163::-;37140:32;37146:2;37150:8;37160:5;37167:4;37140:5;:32::i;:::-;37017:163;;;:::o;37439:1775::-;37578:20;37601:13;;37578:36;;37643:1;37629:16;;:2;:16;;;37625:48;;;37654:19;;;;;;;;;;;;;;37625:48;37700:1;37688:8;:13;37684:44;;;37710:18;;;;;;;;;;;;;;37684:44;37741:61;37771:1;37775:2;37779:12;37793:8;37741:21;:61::i;:::-;38114:8;38079:12;:16;38092:2;38079:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38178:8;38138:12;:16;38151:2;38138:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38237:2;38204:11;:25;38216:12;38204:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38304:15;38254:11;:25;38266:12;38254:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38337:20;38360:12;38337:35;;38387:11;38416:8;38401:12;:23;38387:37;;38445:4;:23;;;;;38453:15;:2;:13;;;:15::i;:::-;38445:23;38441:641;;;38489:314;38545:12;38541:2;38520:38;;38537:1;38520:38;;;;;;;;;;;;38586:69;38625:1;38629:2;38633:14;;;;;;38649:5;38586:30;:69::i;:::-;38581:174;;38691:40;;;;;;;;;;;;;;38581:174;38798:3;38782:12;:19;;38489:314;;38884:12;38867:13;;:29;38863:43;;38898:8;;;38863:43;38441:641;;;38947:120;39003:14;;;;;;38999:2;38978:40;;38995:1;38978:40;;;;;;;;;;;;39062:3;39046:12;:19;;38947:120;;38441:641;39112:12;39096:13;:28;;;;38054:1082;;39146:60;39175:1;39179:2;39183:12;39197:8;39146:20;:60::i;:::-;37567:1647;37439:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:553::-;1844:8;1854:6;1904:3;1897:4;1889:6;1885:17;1881:27;1871:122;;1912:79;;:::i;:::-;1871:122;2025:6;2012:20;2002:30;;2055:18;2047:6;2044:30;2041:117;;;2077:79;;:::i;:::-;2041:117;2191:4;2183:6;2179:17;2167:29;;2245:3;2237:4;2229:6;2225:17;2215:8;2211:32;2208:41;2205:128;;;2252:79;;:::i;:::-;2205:128;1786:553;;;;;:::o;2359:340::-;2415:5;2464:3;2457:4;2449:6;2445:17;2441:27;2431:122;;2472:79;;:::i;:::-;2431:122;2589:6;2576:20;2614:79;2689:3;2681:6;2674:4;2666:6;2662:17;2614:79;:::i;:::-;2605:88;;2421:278;2359:340;;;;:::o;2705:139::-;2751:5;2789:6;2776:20;2767:29;;2805:33;2832:5;2805:33;:::i;:::-;2705:139;;;;:::o;2850:329::-;2909:6;2958:2;2946:9;2937:7;2933:23;2929:32;2926:119;;;2964:79;;:::i;:::-;2926:119;3084:1;3109:53;3154:7;3145:6;3134:9;3130:22;3109:53;:::i;:::-;3099:63;;3055:117;2850:329;;;;:::o;3185:474::-;3253:6;3261;3310:2;3298:9;3289:7;3285:23;3281:32;3278:119;;;3316:79;;:::i;:::-;3278:119;3436:1;3461:53;3506:7;3497:6;3486:9;3482:22;3461:53;:::i;:::-;3451:63;;3407:117;3563:2;3589:53;3634:7;3625:6;3614:9;3610:22;3589:53;:::i;:::-;3579:63;;3534:118;3185:474;;;;;:::o;3665:619::-;3742:6;3750;3758;3807:2;3795:9;3786:7;3782:23;3778:32;3775:119;;;3813:79;;:::i;:::-;3775:119;3933:1;3958:53;4003:7;3994:6;3983:9;3979:22;3958:53;:::i;:::-;3948:63;;3904:117;4060:2;4086:53;4131:7;4122:6;4111:9;4107:22;4086:53;:::i;:::-;4076:63;;4031:118;4188:2;4214:53;4259:7;4250:6;4239:9;4235:22;4214:53;:::i;:::-;4204:63;;4159:118;3665:619;;;;;:::o;4290:943::-;4385:6;4393;4401;4409;4458:3;4446:9;4437:7;4433:23;4429:33;4426:120;;;4465:79;;:::i;:::-;4426:120;4585:1;4610:53;4655:7;4646:6;4635:9;4631:22;4610:53;:::i;:::-;4600:63;;4556:117;4712:2;4738:53;4783:7;4774:6;4763:9;4759:22;4738:53;:::i;:::-;4728:63;;4683:118;4840:2;4866:53;4911:7;4902:6;4891:9;4887:22;4866:53;:::i;:::-;4856:63;;4811:118;4996:2;4985:9;4981:18;4968:32;5027:18;5019:6;5016:30;5013:117;;;5049:79;;:::i;:::-;5013:117;5154:62;5208:7;5199:6;5188:9;5184:22;5154:62;:::i;:::-;5144:72;;4939:287;4290:943;;;;;;;:::o;5239:468::-;5304:6;5312;5361:2;5349:9;5340:7;5336:23;5332:32;5329:119;;;5367:79;;:::i;:::-;5329:119;5487:1;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5458:117;5614:2;5640:50;5682:7;5673:6;5662:9;5658:22;5640:50;:::i;:::-;5630:60;;5585:115;5239:468;;;;;:::o;5713:474::-;5781:6;5789;5838:2;5826:9;5817:7;5813:23;5809:32;5806:119;;;5844:79;;:::i;:::-;5806:119;5964:1;5989:53;6034:7;6025:6;6014:9;6010:22;5989:53;:::i;:::-;5979:63;;5935:117;6091:2;6117:53;6162:7;6153:6;6142:9;6138:22;6117:53;:::i;:::-;6107:63;;6062:118;5713:474;;;;;:::o;6193:323::-;6249:6;6298:2;6286:9;6277:7;6273:23;6269:32;6266:119;;;6304:79;;:::i;:::-;6266:119;6424:1;6449:50;6491:7;6482:6;6471:9;6467:22;6449:50;:::i;:::-;6439:60;;6395:114;6193:323;;;;:::o;6522:327::-;6580:6;6629:2;6617:9;6608:7;6604:23;6600:32;6597:119;;;6635:79;;:::i;:::-;6597:119;6755:1;6780:52;6824:7;6815:6;6804:9;6800:22;6780:52;:::i;:::-;6770:62;;6726:116;6522:327;;;;:::o;6855:349::-;6924:6;6973:2;6961:9;6952:7;6948:23;6944:32;6941:119;;;6979:79;;:::i;:::-;6941:119;7099:1;7124:63;7179:7;7170:6;7159:9;7155:22;7124:63;:::i;:::-;7114:73;;7070:127;6855:349;;;;:::o;7210:529::-;7281:6;7289;7338:2;7326:9;7317:7;7313:23;7309:32;7306:119;;;7344:79;;:::i;:::-;7306:119;7492:1;7481:9;7477:17;7464:31;7522:18;7514:6;7511:30;7508:117;;;7544:79;;:::i;:::-;7508:117;7657:65;7714:7;7705:6;7694:9;7690:22;7657:65;:::i;:::-;7639:83;;;;7435:297;7210:529;;;;;:::o;7745:509::-;7814:6;7863:2;7851:9;7842:7;7838:23;7834:32;7831:119;;;7869:79;;:::i;:::-;7831:119;8017:1;8006:9;8002:17;7989:31;8047:18;8039:6;8036:30;8033:117;;;8069:79;;:::i;:::-;8033:117;8174:63;8229:7;8220:6;8209:9;8205:22;8174:63;:::i;:::-;8164:73;;7960:287;7745:509;;;;:::o;8260:329::-;8319:6;8368:2;8356:9;8347:7;8343:23;8339:32;8336:119;;;8374:79;;:::i;:::-;8336:119;8494:1;8519:53;8564:7;8555:6;8544:9;8540:22;8519:53;:::i;:::-;8509:63;;8465:117;8260:329;;;;:::o;8595:474::-;8663:6;8671;8720:2;8708:9;8699:7;8695:23;8691:32;8688:119;;;8726:79;;:::i;:::-;8688:119;8846:1;8871:53;8916:7;8907:6;8896:9;8892:22;8871:53;:::i;:::-;8861:63;;8817:117;8973:2;8999:53;9044:7;9035:6;9024:9;9020:22;8999:53;:::i;:::-;8989:63;;8944:118;8595:474;;;;;:::o;9075:118::-;9162:24;9180:5;9162:24;:::i;:::-;9157:3;9150:37;9075:118;;:::o;9199:109::-;9280:21;9295:5;9280:21;:::i;:::-;9275:3;9268:34;9199:109;;:::o;9314:360::-;9400:3;9428:38;9460:5;9428:38;:::i;:::-;9482:70;9545:6;9540:3;9482:70;:::i;:::-;9475:77;;9561:52;9606:6;9601:3;9594:4;9587:5;9583:16;9561:52;:::i;:::-;9638:29;9660:6;9638:29;:::i;:::-;9633:3;9629:39;9622:46;;9404:270;9314:360;;;;:::o;9680:364::-;9768:3;9796:39;9829:5;9796:39;:::i;:::-;9851:71;9915:6;9910:3;9851:71;:::i;:::-;9844:78;;9931:52;9976:6;9971:3;9964:4;9957:5;9953:16;9931:52;:::i;:::-;10008:29;10030:6;10008:29;:::i;:::-;10003:3;9999:39;9992:46;;9772:272;9680:364;;;;:::o;10050:377::-;10156:3;10184:39;10217:5;10184:39;:::i;:::-;10239:89;10321:6;10316:3;10239:89;:::i;:::-;10232:96;;10337:52;10382:6;10377:3;10370:4;10363:5;10359:16;10337:52;:::i;:::-;10414:6;10409:3;10405:16;10398:23;;10160:267;10050:377;;;;:::o;10433:366::-;10575:3;10596:67;10660:2;10655:3;10596:67;:::i;:::-;10589:74;;10672:93;10761:3;10672:93;:::i;:::-;10790:2;10785:3;10781:12;10774:19;;10433:366;;;:::o;10805:::-;10947:3;10968:67;11032:2;11027:3;10968:67;:::i;:::-;10961:74;;11044:93;11133:3;11044:93;:::i;:::-;11162:2;11157:3;11153:12;11146:19;;10805:366;;;:::o;11177:::-;11319:3;11340:67;11404:2;11399:3;11340:67;:::i;:::-;11333:74;;11416:93;11505:3;11416:93;:::i;:::-;11534:2;11529:3;11525:12;11518:19;;11177:366;;;:::o;11549:::-;11691:3;11712:67;11776:2;11771:3;11712:67;:::i;:::-;11705:74;;11788:93;11877:3;11788:93;:::i;:::-;11906:2;11901:3;11897:12;11890:19;;11549:366;;;:::o;11921:::-;12063:3;12084:67;12148:2;12143:3;12084:67;:::i;:::-;12077:74;;12160:93;12249:3;12160:93;:::i;:::-;12278:2;12273:3;12269:12;12262:19;;11921:366;;;:::o;12293:398::-;12452:3;12473:83;12554:1;12549:3;12473:83;:::i;:::-;12466:90;;12565:93;12654:3;12565:93;:::i;:::-;12683:1;12678:3;12674:11;12667:18;;12293:398;;;:::o;12697:366::-;12839:3;12860:67;12924:2;12919:3;12860:67;:::i;:::-;12853:74;;12936:93;13025:3;12936:93;:::i;:::-;13054:2;13049:3;13045:12;13038:19;;12697:366;;;:::o;13069:::-;13211:3;13232:67;13296:2;13291:3;13232:67;:::i;:::-;13225:74;;13308:93;13397:3;13308:93;:::i;:::-;13426:2;13421:3;13417:12;13410:19;;13069:366;;;:::o;13441:::-;13583:3;13604:67;13668:2;13663:3;13604:67;:::i;:::-;13597:74;;13680:93;13769:3;13680:93;:::i;:::-;13798:2;13793:3;13789:12;13782:19;;13441:366;;;:::o;13813:::-;13955:3;13976:67;14040:2;14035:3;13976:67;:::i;:::-;13969:74;;14052:93;14141:3;14052:93;:::i;:::-;14170:2;14165:3;14161:12;14154:19;;13813:366;;;:::o;14185:118::-;14272:24;14290:5;14272:24;:::i;:::-;14267:3;14260:37;14185:118;;:::o;14309:435::-;14489:3;14511:95;14602:3;14593:6;14511:95;:::i;:::-;14504:102;;14623:95;14714:3;14705:6;14623:95;:::i;:::-;14616:102;;14735:3;14728:10;;14309:435;;;;;:::o;14750:379::-;14934:3;14956:147;15099:3;14956:147;:::i;:::-;14949:154;;15120:3;15113:10;;14750:379;;;:::o;15135:222::-;15228:4;15266:2;15255:9;15251:18;15243:26;;15279:71;15347:1;15336:9;15332:17;15323:6;15279:71;:::i;:::-;15135:222;;;;:::o;15363:640::-;15558:4;15596:3;15585:9;15581:19;15573:27;;15610:71;15678:1;15667:9;15663:17;15654:6;15610:71;:::i;:::-;15691:72;15759:2;15748:9;15744:18;15735:6;15691:72;:::i;:::-;15773;15841:2;15830:9;15826:18;15817:6;15773:72;:::i;:::-;15892:9;15886:4;15882:20;15877:2;15866:9;15862:18;15855:48;15920:76;15991:4;15982:6;15920:76;:::i;:::-;15912:84;;15363:640;;;;;;;:::o;16009:210::-;16096:4;16134:2;16123:9;16119:18;16111:26;;16147:65;16209:1;16198:9;16194:17;16185:6;16147:65;:::i;:::-;16009:210;;;;:::o;16225:313::-;16338:4;16376:2;16365:9;16361:18;16353:26;;16425:9;16419:4;16415:20;16411:1;16400:9;16396:17;16389:47;16453:78;16526:4;16517:6;16453:78;:::i;:::-;16445:86;;16225:313;;;;:::o;16544:419::-;16710:4;16748:2;16737:9;16733:18;16725:26;;16797:9;16791:4;16787:20;16783:1;16772:9;16768:17;16761:47;16825:131;16951:4;16825:131;:::i;:::-;16817:139;;16544:419;;;:::o;16969:::-;17135:4;17173:2;17162:9;17158:18;17150:26;;17222:9;17216:4;17212:20;17208:1;17197:9;17193:17;17186:47;17250:131;17376:4;17250:131;:::i;:::-;17242:139;;16969:419;;;:::o;17394:::-;17560:4;17598:2;17587:9;17583:18;17575:26;;17647:9;17641:4;17637:20;17633:1;17622:9;17618:17;17611:47;17675:131;17801:4;17675:131;:::i;:::-;17667:139;;17394:419;;;:::o;17819:::-;17985:4;18023:2;18012:9;18008:18;18000:26;;18072:9;18066:4;18062:20;18058:1;18047:9;18043:17;18036:47;18100:131;18226:4;18100:131;:::i;:::-;18092:139;;17819:419;;;:::o;18244:::-;18410:4;18448:2;18437:9;18433:18;18425:26;;18497:9;18491:4;18487:20;18483:1;18472:9;18468:17;18461:47;18525:131;18651:4;18525:131;:::i;:::-;18517:139;;18244:419;;;:::o;18669:::-;18835:4;18873:2;18862:9;18858:18;18850:26;;18922:9;18916:4;18912:20;18908:1;18897:9;18893:17;18886:47;18950:131;19076:4;18950:131;:::i;:::-;18942:139;;18669:419;;;:::o;19094:::-;19260:4;19298:2;19287:9;19283:18;19275:26;;19347:9;19341:4;19337:20;19333:1;19322:9;19318:17;19311:47;19375:131;19501:4;19375:131;:::i;:::-;19367:139;;19094:419;;;:::o;19519:::-;19685:4;19723:2;19712:9;19708:18;19700:26;;19772:9;19766:4;19762:20;19758:1;19747:9;19743:17;19736:47;19800:131;19926:4;19800:131;:::i;:::-;19792:139;;19519:419;;;:::o;19944:::-;20110:4;20148:2;20137:9;20133:18;20125:26;;20197:9;20191:4;20187:20;20183:1;20172:9;20168:17;20161:47;20225:131;20351:4;20225:131;:::i;:::-;20217:139;;19944:419;;;:::o;20369:222::-;20462:4;20500:2;20489:9;20485:18;20477:26;;20513:71;20581:1;20570:9;20566:17;20557:6;20513:71;:::i;:::-;20369:222;;;;:::o;20597:129::-;20631:6;20658:20;;:::i;:::-;20648:30;;20687:33;20715:4;20707:6;20687:33;:::i;:::-;20597:129;;;:::o;20732:75::-;20765:6;20798:2;20792:9;20782:19;;20732:75;:::o;20813:307::-;20874:4;20964:18;20956:6;20953:30;20950:56;;;20986:18;;:::i;:::-;20950:56;21024:29;21046:6;21024:29;:::i;:::-;21016:37;;21108:4;21102;21098:15;21090:23;;20813:307;;;:::o;21126:308::-;21188:4;21278:18;21270:6;21267:30;21264:56;;;21300:18;;:::i;:::-;21264:56;21338:29;21360:6;21338:29;:::i;:::-;21330:37;;21422:4;21416;21412:15;21404:23;;21126:308;;;:::o;21440:98::-;21491:6;21525:5;21519:12;21509:22;;21440:98;;;:::o;21544:99::-;21596:6;21630:5;21624:12;21614:22;;21544:99;;;:::o;21649:168::-;21732:11;21766:6;21761:3;21754:19;21806:4;21801:3;21797:14;21782:29;;21649:168;;;;:::o;21823:147::-;21924:11;21961:3;21946:18;;21823:147;;;;:::o;21976:169::-;22060:11;22094:6;22089:3;22082:19;22134:4;22129:3;22125:14;22110:29;;21976:169;;;;:::o;22151:148::-;22253:11;22290:3;22275:18;;22151:148;;;;:::o;22305:305::-;22345:3;22364:20;22382:1;22364:20;:::i;:::-;22359:25;;22398:20;22416:1;22398:20;:::i;:::-;22393:25;;22552:1;22484:66;22480:74;22477:1;22474:81;22471:107;;;22558:18;;:::i;:::-;22471:107;22602:1;22599;22595:9;22588:16;;22305:305;;;;:::o;22616:185::-;22656:1;22673:20;22691:1;22673:20;:::i;:::-;22668:25;;22707:20;22725:1;22707:20;:::i;:::-;22702:25;;22746:1;22736:35;;22751:18;;:::i;:::-;22736:35;22793:1;22790;22786:9;22781:14;;22616:185;;;;:::o;22807:348::-;22847:7;22870:20;22888:1;22870:20;:::i;:::-;22865:25;;22904:20;22922:1;22904:20;:::i;:::-;22899:25;;23092:1;23024:66;23020:74;23017:1;23014:81;23009:1;23002:9;22995:17;22991:105;22988:131;;;23099:18;;:::i;:::-;22988:131;23147:1;23144;23140:9;23129:20;;22807:348;;;;:::o;23161:191::-;23201:4;23221:20;23239:1;23221:20;:::i;:::-;23216:25;;23255:20;23273:1;23255:20;:::i;:::-;23250:25;;23294:1;23291;23288:8;23285:34;;;23299:18;;:::i;:::-;23285:34;23344:1;23341;23337:9;23329:17;;23161:191;;;;:::o;23358:96::-;23395:7;23424:24;23442:5;23424:24;:::i;:::-;23413:35;;23358:96;;;:::o;23460:90::-;23494:7;23537:5;23530:13;23523:21;23512:32;;23460:90;;;:::o;23556:149::-;23592:7;23632:66;23625:5;23621:78;23610:89;;23556:149;;;:::o;23711:126::-;23748:7;23788:42;23781:5;23777:54;23766:65;;23711:126;;;:::o;23843:77::-;23880:7;23909:5;23898:16;;23843:77;;;:::o;23926:154::-;24010:6;24005:3;24000;23987:30;24072:1;24063:6;24058:3;24054:16;24047:27;23926:154;;;:::o;24086:307::-;24154:1;24164:113;24178:6;24175:1;24172:13;24164:113;;;24263:1;24258:3;24254:11;24248:18;24244:1;24239:3;24235:11;24228:39;24200:2;24197:1;24193:10;24188:15;;24164:113;;;24295:6;24292:1;24289:13;24286:101;;;24375:1;24366:6;24361:3;24357:16;24350:27;24286:101;24135:258;24086:307;;;:::o;24399:320::-;24443:6;24480:1;24474:4;24470:12;24460:22;;24527:1;24521:4;24517:12;24548:18;24538:81;;24604:4;24596:6;24592:17;24582:27;;24538:81;24666:2;24658:6;24655:14;24635:18;24632:38;24629:84;;;24685:18;;:::i;:::-;24629:84;24450:269;24399:320;;;:::o;24725:281::-;24808:27;24830:4;24808:27;:::i;:::-;24800:6;24796:40;24938:6;24926:10;24923:22;24902:18;24890:10;24887:34;24884:62;24881:88;;;24949:18;;:::i;:::-;24881:88;24989:10;24985:2;24978:22;24768:238;24725:281;;:::o;25012:233::-;25051:3;25074:24;25092:5;25074:24;:::i;:::-;25065:33;;25120:66;25113:5;25110:77;25107:103;;;25190:18;;:::i;:::-;25107:103;25237:1;25230:5;25226:13;25219:20;;25012:233;;;:::o;25251:176::-;25283:1;25300:20;25318:1;25300:20;:::i;:::-;25295:25;;25334:20;25352:1;25334:20;:::i;:::-;25329:25;;25373:1;25363:35;;25378:18;;:::i;:::-;25363:35;25419:1;25416;25412:9;25407:14;;25251:176;;;;:::o;25433:180::-;25481:77;25478:1;25471:88;25578:4;25575:1;25568:15;25602:4;25599:1;25592:15;25619:180;25667:77;25664:1;25657:88;25764:4;25761:1;25754:15;25788:4;25785:1;25778:15;25805:180;25853:77;25850:1;25843:88;25950:4;25947:1;25940:15;25974:4;25971:1;25964:15;25991:180;26039:77;26036:1;26029:88;26136:4;26133:1;26126:15;26160:4;26157:1;26150:15;26177:180;26225:77;26222:1;26215:88;26322:4;26319:1;26312:15;26346:4;26343:1;26336:15;26363:117;26472:1;26469;26462:12;26486:117;26595:1;26592;26585:12;26609:117;26718:1;26715;26708:12;26732:117;26841:1;26838;26831:12;26855:117;26964:1;26961;26954:12;26978:117;27087:1;27084;27077:12;27101:102;27142:6;27193:2;27189:7;27184:2;27177:5;27173:14;27169:28;27159:38;;27101:102;;;:::o;27209:225::-;27349:34;27345:1;27337:6;27333:14;27326:58;27418:8;27413:2;27405:6;27401:15;27394:33;27209:225;:::o;27440:170::-;27580:22;27576:1;27568:6;27564:14;27557:46;27440:170;:::o;27616:182::-;27756:34;27752:1;27744:6;27740:14;27733:58;27616:182;:::o;27804:173::-;27944:25;27940:1;27932:6;27928:14;27921:49;27804:173;:::o;27983:175::-;28123:27;28119:1;28111:6;28107:14;28100:51;27983:175;:::o;28164:114::-;;:::o;28284:170::-;28424:22;28420:1;28412:6;28408:14;28401:46;28284:170;:::o;28460:181::-;28600:33;28596:1;28588:6;28584:14;28577:57;28460:181;:::o;28647:169::-;28787:21;28783:1;28775:6;28771:14;28764:45;28647:169;:::o;28822:::-;28962:21;28958:1;28950:6;28946:14;28939:45;28822:169;:::o;28997:122::-;29070:24;29088:5;29070:24;:::i;:::-;29063:5;29060:35;29050:63;;29109:1;29106;29099:12;29050:63;28997:122;:::o;29125:116::-;29195:21;29210:5;29195:21;:::i;:::-;29188:5;29185:32;29175:60;;29231:1;29228;29221:12;29175:60;29125:116;:::o;29247:120::-;29319:23;29336:5;29319:23;:::i;:::-;29312:5;29309:34;29299:62;;29357:1;29354;29347:12;29299:62;29247:120;:::o;29373:122::-;29446:24;29464:5;29446:24;:::i;:::-;29439:5;29436:35;29426:63;;29485:1;29482;29475:12;29426:63;29373:122;:::o
Swarm Source
ipfs://140f1303cfc0ab74a63f06560a837c273b6f0461f90b9f3fce34344ba19a75c6
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.