Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,442 SMG
Holders
750
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SMGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
StreetMeltGenesis
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-10 */ // SPDX-License-Identifier: GPL-3.0 /** ╔═╗┌┬┐┬─┐┌─┐┌─┐┌┬┐╔╦╗┌─┐┬ ┌┬┐┌─┐ ╚═╗ │ ├┬┘├┤ ├┤ │ ║║║├┤ │ │ └─┐ ╚═╝ ┴ ┴└─└─┘└─┘ ┴ ╩ ╩└─┘┴─┘┴ └─┘ Contract by @texoid__ */ // 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); } } // 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; } } // 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); } } } } // 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; } } // 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); } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) 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; } // 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; } } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // 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); } // 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); } // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata 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 See {IERC721Enumerable-totalSupply}. * @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) { if (owner == address(0)) revert MintedQueryForZeroAddress(); 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) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); 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) { if (owner == address(0)) revert AuxQueryForZeroAddress(); 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 { if (owner == address(0)) revert AuxQueryForZeroAddress(); _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 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 {} } pragma solidity >=0.8.9 <0.9.0; contract StreetMeltGenesis is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public baseURI = ''; string public uriSuffix = '.json'; uint256 public maxSupply = 1442; //---------------[ ]---------------\\ constructor( string memory _tokenName, string memory _tokenSymbol, string memory _initBaseURI ) ERC721A(_tokenName, _tokenSymbol) { baseURI = _initBaseURI; } //---------------[ Modifiers ]---------------\\ modifier mintCompliance(uint256 _mintAmount) { require(totalSupply() + _mintAmount <= maxSupply, 'Maximum NFT supply exceeded'); _; } //---------------[ Mint Functions ]---------------\\ function airdrop(address[] memory _receiver, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner nonReentrant { for(uint256 i = 0; i < _receiver.length; i++) { _safeMint(_receiver[i], _mintAmount, ""); } } //---------------[ Public Functions ]---------------\\ function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = _startTokenId(); uint256 ownedTokenIndex = 0; address latestOwnerAddress; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { TokenOwnership memory ownership = _ownerships[currentTokenId]; if (!ownership.burned && ownership.addr != address(0)) { latestOwnerAddress = ownership.addr; } if (latestOwnerAddress == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ''; } //---------------[ Internal Functions ]---------------\\ function _startTokenId() internal view virtual override returns (uint256) { return 1; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } //---------------[ onlyOwner Functions ]---------------\\ function setBaseURI(string memory _newURI) public onlyOwner { baseURI = _newURI; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } //- We leave this here in case the original token supply is incorrect and we require to increase size to complete the airdrop function updateMaxSupply(uint256 _newSupply) public onlyOwner { maxSupply = _newSupply; } function withdraw() public onlyOwner nonReentrant { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_initBaseURI","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":[{"internalType":"address[]","name":"_receiver","type":"address[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600a908162000024919062000477565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200006b919062000477565b506105a2600c553480156200007f57600080fd5b50604051620040d5380380620040d58339818101604052810190620000a59190620006c2565b82828160029081620000b8919062000477565b508060039081620000ca919062000477565b50620000db6200012660201b60201c565b600081905550505062000103620000f76200012f60201b60201c565b6200013760201b60201c565b600160098190555080600a90816200011c919062000477565b505050506200077b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200027f57607f821691505b60208210810362000295576200029462000237565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002c0565b6200030b8683620002c0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000358620003526200034c8462000323565b6200032d565b62000323565b9050919050565b6000819050919050565b620003748362000337565b6200038c62000383826200035f565b848454620002cd565b825550505050565b600090565b620003a362000394565b620003b081848462000369565b505050565b5b81811015620003d857620003cc60008262000399565b600181019050620003b6565b5050565b601f8211156200042757620003f1816200029b565b620003fc84620002b0565b810160208510156200040c578190505b620004246200041b85620002b0565b830182620003b5565b50505b505050565b600082821c905092915050565b60006200044c600019846008026200042c565b1980831691505092915050565b600062000467838362000439565b9150826002028217905092915050565b6200048282620001fd565b67ffffffffffffffff8111156200049e576200049d62000208565b5b620004aa825462000266565b620004b7828285620003dc565b600060209050601f831160018114620004ef5760008415620004da578287015190505b620004e6858262000459565b86555062000556565b601f198416620004ff866200029b565b60005b82811015620005295784890151825560018201915060208501945060208101905062000502565b8683101562000549578489015162000545601f89168262000439565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000598826200057c565b810181811067ffffffffffffffff82111715620005ba57620005b962000208565b5b80604052505050565b6000620005cf6200055e565b9050620005dd82826200058d565b919050565b600067ffffffffffffffff8211156200060057620005ff62000208565b5b6200060b826200057c565b9050602081019050919050565b60005b83811015620006385780820151818401526020810190506200061b565b60008484015250505050565b60006200065b6200065584620005e2565b620005c3565b9050828152602081018484840111156200067a576200067962000577565b5b6200068784828562000618565b509392505050565b600082601f830112620006a757620006a662000572565b5b8151620006b984826020860162000644565b91505092915050565b600080600060608486031215620006de57620006dd62000568565b5b600084015167ffffffffffffffff811115620006ff57620006fe6200056d565b5b6200070d868287016200068f565b935050602084015167ffffffffffffffff8111156200073157620007306200056d565b5b6200073f868287016200068f565b925050604084015167ffffffffffffffff8111156200076357620007626200056d565b5b62000771868287016200068f565b9150509250925092565b61394a806200078b6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636c0360eb116100de578063b88d4fde11610097578063d5abeb0111610071578063d5abeb011461045b578063e985e9c514610479578063f103b433146104a9578063f2fde38b146104c55761018e565b8063b88d4fde146103f3578063c204642c1461040f578063c87b56dd1461042b5761018e565b80636c0360eb1461034357806370a0823114610361578063715018a6146103915780638da5cb5b1461039b57806395d89b41146103b9578063a22cb465146103d75761018e565b806323b872dd1161014b578063438b630011610125578063438b6300146102a95780635503a0e8146102d957806355f804b3146102f75780636352211e146103135761018e565b806323b872dd146102675780633ccfd60b1461028357806342842e0e1461028d5761018e565b806301ffc9a71461019357806306fdde03146101c3578063081812fc146101e1578063095ea7b31461021157806316ba10e01461022d57806318160ddd14610249575b600080fd5b6101ad60048036038101906101a891906127da565b6104e1565b6040516101ba9190612822565b60405180910390f35b6101cb6105c3565b6040516101d891906128cd565b60405180910390f35b6101fb60048036038101906101f69190612925565b610655565b6040516102089190612993565b60405180910390f35b61022b600480360381019061022691906129da565b6106d1565b005b61024760048036038101906102429190612b4f565b6107db565b005b61025161086a565b60405161025e9190612ba7565b60405180910390f35b610281600480360381019061027c9190612bc2565b610881565b005b61028b610891565b005b6102a760048036038101906102a29190612bc2565b6109db565b005b6102c360048036038101906102be9190612c15565b6109fb565b6040516102d09190612d00565b60405180910390f35b6102e1610c15565b6040516102ee91906128cd565b60405180910390f35b610311600480360381019061030c9190612b4f565b610ca3565b005b61032d60048036038101906103289190612925565b610d32565b60405161033a9190612993565b60405180910390f35b61034b610d48565b60405161035891906128cd565b60405180910390f35b61037b60048036038101906103769190612c15565b610dd6565b6040516103889190612ba7565b60405180910390f35b610399610ea5565b005b6103a3610f2d565b6040516103b09190612993565b60405180910390f35b6103c1610f57565b6040516103ce91906128cd565b60405180910390f35b6103f160048036038101906103ec9190612d4e565b610fe9565b005b61040d60048036038101906104089190612e2f565b611160565b005b61042960048036038101906104249190612f7a565b6111dc565b005b61044560048036038101906104409190612925565b61135e565b60405161045291906128cd565b60405180910390f35b610463611408565b6040516104709190612ba7565b60405180910390f35b610493600480360381019061048e9190612fd6565b61140e565b6040516104a09190612822565b60405180910390f35b6104c360048036038101906104be9190612925565b6114a2565b005b6104df60048036038101906104da9190612c15565b611528565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105bc57506105bb8261161f565b5b9050919050565b6060600280546105d290613045565b80601f01602080910402602001604051908101604052809291908181526020018280546105fe90613045565b801561064b5780601f106106205761010080835404028352916020019161064b565b820191906000526020600020905b81548152906001019060200180831161062e57829003601f168201915b5050505050905090565b600061066082611689565b610696576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106dc82610d32565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610743576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107626116d7565b73ffffffffffffffffffffffffffffffffffffffff161415801561079457506107928161078d6116d7565b61140e565b155b156107cb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107d68383836116df565b505050565b6107e36116d7565b73ffffffffffffffffffffffffffffffffffffffff16610801610f2d565b73ffffffffffffffffffffffffffffffffffffffff1614610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e906130c2565b60405180910390fd5b80600b9081610866919061328e565b5050565b6000610874611791565b6001546000540303905090565b61088c83838361179a565b505050565b6108996116d7565b73ffffffffffffffffffffffffffffffffffffffff166108b7610f2d565b73ffffffffffffffffffffffffffffffffffffffff161461090d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610904906130c2565b60405180910390fd5b600260095403610952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610949906133ac565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610980906133fd565b60006040518083038185875af1925050503d80600081146109bd576040519150601f19603f3d011682016040523d82523d6000602084013e6109c2565b606091505b50509050806109d057600080fd5b506001600981905550565b6109f683838360405180602001604052806000815250611160565b505050565b60606000610a0883610dd6565b905060008167ffffffffffffffff811115610a2657610a25612a24565b5b604051908082528060200260200182016040528015610a545781602001602082028036833780820191505090505b5090506000610a61611791565b90506000805b8482108015610a785750600c548311155b15610c08576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151158015610b855750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b15610b9257806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf45783858481518110610bd957610bd8613412565b5b6020026020010181815250508280610bf090613470565b9350505b8380610bff90613470565b94505050610a67565b8395505050505050919050565b600b8054610c2290613045565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4e90613045565b8015610c9b5780601f10610c7057610100808354040283529160200191610c9b565b820191906000526020600020905b815481529060010190602001808311610c7e57829003601f168201915b505050505081565b610cab6116d7565b73ffffffffffffffffffffffffffffffffffffffff16610cc9610f2d565b73ffffffffffffffffffffffffffffffffffffffff1614610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d16906130c2565b60405180910390fd5b80600a9081610d2e919061328e565b5050565b6000610d3d82611c89565b600001519050919050565b600a8054610d5590613045565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8190613045565b8015610dce5780601f10610da357610100808354040283529160200191610dce565b820191906000526020600020905b815481529060010190602001808311610db157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ead6116d7565b73ffffffffffffffffffffffffffffffffffffffff16610ecb610f2d565b73ffffffffffffffffffffffffffffffffffffffff1614610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f18906130c2565b60405180910390fd5b610f2b6000611f18565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f6690613045565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9290613045565b8015610fdf5780601f10610fb457610100808354040283529160200191610fdf565b820191906000526020600020905b815481529060010190602001808311610fc257829003601f168201915b5050505050905090565b610ff16116d7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611055576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110626116d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661110f6116d7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111549190612822565b60405180910390a35050565b61116b84848461179a565b61118a8373ffffffffffffffffffffffffffffffffffffffff16611fde565b801561119f575061119d84848484612001565b155b156111d6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b80600c54816111e961086a565b6111f391906134b8565b1115611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90613538565b60405180910390fd5b61123c6116d7565b73ffffffffffffffffffffffffffffffffffffffff1661125a610f2d565b73ffffffffffffffffffffffffffffffffffffffff16146112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a7906130c2565b60405180910390fd5b6002600954036112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec906133ac565b60405180910390fd5b600260098190555060005b83518110156113505761133d84828151811061131f5761131e613412565b5b60200260200101518460405180602001604052806000815250612151565b808061134890613470565b915050611300565b506001600981905550505050565b606061136982611689565b6113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f906135ca565b60405180910390fd5b60006113b2612163565b905060008151116113d25760405180602001604052806000815250611400565b806113dc846121f5565b600b6040516020016113f0939291906136a9565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114aa6116d7565b73ffffffffffffffffffffffffffffffffffffffff166114c8610f2d565b73ffffffffffffffffffffffffffffffffffffffff161461151e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611515906130c2565b60405180910390fd5b80600c8190555050565b6115306116d7565b73ffffffffffffffffffffffffffffffffffffffff1661154e610f2d565b73ffffffffffffffffffffffffffffffffffffffff16146115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b906130c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a9061374c565b60405180910390fd5b61161c81611f18565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611694611791565b111580156116a3575060005482105b80156116d0575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006117a582611c89565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166117cc6116d7565b73ffffffffffffffffffffffffffffffffffffffff1614806117ff57506117fe82600001516117f96116d7565b61140e565b5b80611844575061180d6116d7565b73ffffffffffffffffffffffffffffffffffffffff1661182c84610655565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061187d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146118e6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361194c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119598585856001612355565b61196960008484600001516116df565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611c1957600054811015611c185782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c82858585600161235b565b5050505050565b611c9161272b565b600082905080611c9f611791565b11158015611cae575060005481105b15611ee1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611edf57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611dc3578092505050611f13565b5b600115611ede57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ed9578092505050611f13565b611dc4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120276116d7565b8786866040518563ffffffff1660e01b815260040161204994939291906137c1565b6020604051808303816000875af192505050801561208557506040513d601f19601f820116820180604052508101906120829190613822565b60015b6120fe573d80600081146120b5576040519150601f19603f3d011682016040523d82523d6000602084013e6120ba565b606091505b5060008151036120f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61215e8383836001612361565b505050565b6060600a805461217290613045565b80601f016020809104026020016040519081016040528092919081815260200182805461219e90613045565b80156121eb5780601f106121c0576101008083540402835291602001916121eb565b820191906000526020600020905b8154815290600101906020018083116121ce57829003601f168201915b5050505050905090565b60606000820361223c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612350565b600082905060005b6000821461226e57808061225790613470565b915050600a82612267919061387e565b9150612244565b60008167ffffffffffffffff81111561228a57612289612a24565b5b6040519080825280601f01601f1916602001820160405280156122bc5781602001600182028036833780820191505090505b5090505b60008514612349576001826122d591906138af565b9150600a856122e491906138e3565b60306122f091906134b8565b60f81b81838151811061230657612305613412565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612342919061387e565b94506122c0565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036123cd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612407576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124146000868387612355565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156125de57506125dd8773ffffffffffffffffffffffffffffffffffffffff16611fde565b5b156126a3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126536000888480600101955088612001565b612689576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036125e457826000541461269e57600080fd5b61270e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036126a4575b816000819055505050612724600086838761235b565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127b781612782565b81146127c257600080fd5b50565b6000813590506127d4816127ae565b92915050565b6000602082840312156127f0576127ef612778565b5b60006127fe848285016127c5565b91505092915050565b60008115159050919050565b61281c81612807565b82525050565b60006020820190506128376000830184612813565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561287757808201518184015260208101905061285c565b60008484015250505050565b6000601f19601f8301169050919050565b600061289f8261283d565b6128a98185612848565b93506128b9818560208601612859565b6128c281612883565b840191505092915050565b600060208201905081810360008301526128e78184612894565b905092915050565b6000819050919050565b612902816128ef565b811461290d57600080fd5b50565b60008135905061291f816128f9565b92915050565b60006020828403121561293b5761293a612778565b5b600061294984828501612910565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061297d82612952565b9050919050565b61298d81612972565b82525050565b60006020820190506129a86000830184612984565b92915050565b6129b781612972565b81146129c257600080fd5b50565b6000813590506129d4816129ae565b92915050565b600080604083850312156129f1576129f0612778565b5b60006129ff858286016129c5565b9250506020612a1085828601612910565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a5c82612883565b810181811067ffffffffffffffff82111715612a7b57612a7a612a24565b5b80604052505050565b6000612a8e61276e565b9050612a9a8282612a53565b919050565b600067ffffffffffffffff821115612aba57612ab9612a24565b5b612ac382612883565b9050602081019050919050565b82818337600083830152505050565b6000612af2612aed84612a9f565b612a84565b905082815260208101848484011115612b0e57612b0d612a1f565b5b612b19848285612ad0565b509392505050565b600082601f830112612b3657612b35612a1a565b5b8135612b46848260208601612adf565b91505092915050565b600060208284031215612b6557612b64612778565b5b600082013567ffffffffffffffff811115612b8357612b8261277d565b5b612b8f84828501612b21565b91505092915050565b612ba1816128ef565b82525050565b6000602082019050612bbc6000830184612b98565b92915050565b600080600060608486031215612bdb57612bda612778565b5b6000612be9868287016129c5565b9350506020612bfa868287016129c5565b9250506040612c0b86828701612910565b9150509250925092565b600060208284031215612c2b57612c2a612778565b5b6000612c39848285016129c5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612c77816128ef565b82525050565b6000612c898383612c6e565b60208301905092915050565b6000602082019050919050565b6000612cad82612c42565b612cb78185612c4d565b9350612cc283612c5e565b8060005b83811015612cf3578151612cda8882612c7d565b9750612ce583612c95565b925050600181019050612cc6565b5085935050505092915050565b60006020820190508181036000830152612d1a8184612ca2565b905092915050565b612d2b81612807565b8114612d3657600080fd5b50565b600081359050612d4881612d22565b92915050565b60008060408385031215612d6557612d64612778565b5b6000612d73858286016129c5565b9250506020612d8485828601612d39565b9150509250929050565b600067ffffffffffffffff821115612da957612da8612a24565b5b612db282612883565b9050602081019050919050565b6000612dd2612dcd84612d8e565b612a84565b905082815260208101848484011115612dee57612ded612a1f565b5b612df9848285612ad0565b509392505050565b600082601f830112612e1657612e15612a1a565b5b8135612e26848260208601612dbf565b91505092915050565b60008060008060808587031215612e4957612e48612778565b5b6000612e57878288016129c5565b9450506020612e68878288016129c5565b9350506040612e7987828801612910565b925050606085013567ffffffffffffffff811115612e9a57612e9961277d565b5b612ea687828801612e01565b91505092959194509250565b600067ffffffffffffffff821115612ecd57612ecc612a24565b5b602082029050602081019050919050565b600080fd5b6000612ef6612ef184612eb2565b612a84565b90508083825260208201905060208402830185811115612f1957612f18612ede565b5b835b81811015612f425780612f2e88826129c5565b845260208401935050602081019050612f1b565b5050509392505050565b600082601f830112612f6157612f60612a1a565b5b8135612f71848260208601612ee3565b91505092915050565b60008060408385031215612f9157612f90612778565b5b600083013567ffffffffffffffff811115612faf57612fae61277d565b5b612fbb85828601612f4c565b9250506020612fcc85828601612910565b9150509250929050565b60008060408385031215612fed57612fec612778565b5b6000612ffb858286016129c5565b925050602061300c858286016129c5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305d57607f821691505b6020821081036130705761306f613016565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130ac602083612848565b91506130b782613076565b602082019050919050565b600060208201905081810360008301526130db8161309f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613107565b61314e8683613107565b95508019841693508086168417925050509392505050565b6000819050919050565b600061318b613186613181846128ef565b613166565b6128ef565b9050919050565b6000819050919050565b6131a583613170565b6131b96131b182613192565b848454613114565b825550505050565b600090565b6131ce6131c1565b6131d981848461319c565b505050565b5b818110156131fd576131f26000826131c6565b6001810190506131df565b5050565b601f82111561324257613213816130e2565b61321c846130f7565b8101602085101561322b578190505b61323f613237856130f7565b8301826131de565b50505b505050565b600082821c905092915050565b600061326560001984600802613247565b1980831691505092915050565b600061327e8383613254565b9150826002028217905092915050565b6132978261283d565b67ffffffffffffffff8111156132b0576132af612a24565b5b6132ba8254613045565b6132c5828285613201565b600060209050601f8311600181146132f857600084156132e6578287015190505b6132f08582613272565b865550613358565b601f198416613306866130e2565b60005b8281101561332e57848901518255600182019150602085019450602081019050613309565b8683101561334b5784890151613347601f891682613254565b8355505b6001600288020188555050505b505050505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613396601f83612848565b91506133a182613360565b602082019050919050565b600060208201905081810360008301526133c581613389565b9050919050565b600081905092915050565b50565b60006133e76000836133cc565b91506133f2826133d7565b600082019050919050565b6000613408826133da565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347b826128ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134ad576134ac613441565b5b600182019050919050565b60006134c3826128ef565b91506134ce836128ef565b92508282019050808211156134e6576134e5613441565b5b92915050565b7f4d6178696d756d204e465420737570706c792065786365656465640000000000600082015250565b6000613522601b83612848565b915061352d826134ec565b602082019050919050565b6000602082019050818103600083015261355181613515565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135b4602f83612848565b91506135bf82613558565b604082019050919050565b600060208201905081810360008301526135e3816135a7565b9050919050565b600081905092915050565b60006136008261283d565b61360a81856135ea565b935061361a818560208601612859565b80840191505092915050565b6000815461363381613045565b61363d81866135ea565b94506001821660008114613658576001811461366d576136a0565b60ff19831686528115158202860193506136a0565b613676856130e2565b60005b8381101561369857815481890152600182019150602081019050613679565b838801955050505b50505092915050565b60006136b582866135f5565b91506136c182856135f5565b91506136cd8284613626565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613736602683612848565b9150613741826136da565b604082019050919050565b6000602082019050818103600083015261376581613729565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137938261376c565b61379d8185613777565b93506137ad818560208601612859565b6137b681612883565b840191505092915050565b60006080820190506137d66000830187612984565b6137e36020830186612984565b6137f06040830185612b98565b81810360608301526138028184613788565b905095945050505050565b60008151905061381c816127ae565b92915050565b60006020828403121561383857613837612778565b5b60006138468482850161380d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613889826128ef565b9150613894836128ef565b9250826138a4576138a361384f565b5b828204905092915050565b60006138ba826128ef565b91506138c5836128ef565b92508282039050818111156138dd576138dc613441565b5b92915050565b60006138ee826128ef565b91506138f9836128ef565b9250826139095761390861384f565b5b82820690509291505056fea2646970667358221220b0a9bb70da1163a7fb8fe33b79da4cbc459f4b834012f9cfc372aeeca61d006e64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000013537472656574204d656c742047656e65736973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534d470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e7374726565746d656c74732e636f6d2f67656e657369732f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636c0360eb116100de578063b88d4fde11610097578063d5abeb0111610071578063d5abeb011461045b578063e985e9c514610479578063f103b433146104a9578063f2fde38b146104c55761018e565b8063b88d4fde146103f3578063c204642c1461040f578063c87b56dd1461042b5761018e565b80636c0360eb1461034357806370a0823114610361578063715018a6146103915780638da5cb5b1461039b57806395d89b41146103b9578063a22cb465146103d75761018e565b806323b872dd1161014b578063438b630011610125578063438b6300146102a95780635503a0e8146102d957806355f804b3146102f75780636352211e146103135761018e565b806323b872dd146102675780633ccfd60b1461028357806342842e0e1461028d5761018e565b806301ffc9a71461019357806306fdde03146101c3578063081812fc146101e1578063095ea7b31461021157806316ba10e01461022d57806318160ddd14610249575b600080fd5b6101ad60048036038101906101a891906127da565b6104e1565b6040516101ba9190612822565b60405180910390f35b6101cb6105c3565b6040516101d891906128cd565b60405180910390f35b6101fb60048036038101906101f69190612925565b610655565b6040516102089190612993565b60405180910390f35b61022b600480360381019061022691906129da565b6106d1565b005b61024760048036038101906102429190612b4f565b6107db565b005b61025161086a565b60405161025e9190612ba7565b60405180910390f35b610281600480360381019061027c9190612bc2565b610881565b005b61028b610891565b005b6102a760048036038101906102a29190612bc2565b6109db565b005b6102c360048036038101906102be9190612c15565b6109fb565b6040516102d09190612d00565b60405180910390f35b6102e1610c15565b6040516102ee91906128cd565b60405180910390f35b610311600480360381019061030c9190612b4f565b610ca3565b005b61032d60048036038101906103289190612925565b610d32565b60405161033a9190612993565b60405180910390f35b61034b610d48565b60405161035891906128cd565b60405180910390f35b61037b60048036038101906103769190612c15565b610dd6565b6040516103889190612ba7565b60405180910390f35b610399610ea5565b005b6103a3610f2d565b6040516103b09190612993565b60405180910390f35b6103c1610f57565b6040516103ce91906128cd565b60405180910390f35b6103f160048036038101906103ec9190612d4e565b610fe9565b005b61040d60048036038101906104089190612e2f565b611160565b005b61042960048036038101906104249190612f7a565b6111dc565b005b61044560048036038101906104409190612925565b61135e565b60405161045291906128cd565b60405180910390f35b610463611408565b6040516104709190612ba7565b60405180910390f35b610493600480360381019061048e9190612fd6565b61140e565b6040516104a09190612822565b60405180910390f35b6104c360048036038101906104be9190612925565b6114a2565b005b6104df60048036038101906104da9190612c15565b611528565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105bc57506105bb8261161f565b5b9050919050565b6060600280546105d290613045565b80601f01602080910402602001604051908101604052809291908181526020018280546105fe90613045565b801561064b5780601f106106205761010080835404028352916020019161064b565b820191906000526020600020905b81548152906001019060200180831161062e57829003601f168201915b5050505050905090565b600061066082611689565b610696576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106dc82610d32565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610743576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107626116d7565b73ffffffffffffffffffffffffffffffffffffffff161415801561079457506107928161078d6116d7565b61140e565b155b156107cb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107d68383836116df565b505050565b6107e36116d7565b73ffffffffffffffffffffffffffffffffffffffff16610801610f2d565b73ffffffffffffffffffffffffffffffffffffffff1614610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e906130c2565b60405180910390fd5b80600b9081610866919061328e565b5050565b6000610874611791565b6001546000540303905090565b61088c83838361179a565b505050565b6108996116d7565b73ffffffffffffffffffffffffffffffffffffffff166108b7610f2d565b73ffffffffffffffffffffffffffffffffffffffff161461090d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610904906130c2565b60405180910390fd5b600260095403610952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610949906133ac565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610980906133fd565b60006040518083038185875af1925050503d80600081146109bd576040519150601f19603f3d011682016040523d82523d6000602084013e6109c2565b606091505b50509050806109d057600080fd5b506001600981905550565b6109f683838360405180602001604052806000815250611160565b505050565b60606000610a0883610dd6565b905060008167ffffffffffffffff811115610a2657610a25612a24565b5b604051908082528060200260200182016040528015610a545781602001602082028036833780820191505090505b5090506000610a61611791565b90506000805b8482108015610a785750600c548311155b15610c08576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151158015610b855750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b15610b9257806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf45783858481518110610bd957610bd8613412565b5b6020026020010181815250508280610bf090613470565b9350505b8380610bff90613470565b94505050610a67565b8395505050505050919050565b600b8054610c2290613045565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4e90613045565b8015610c9b5780601f10610c7057610100808354040283529160200191610c9b565b820191906000526020600020905b815481529060010190602001808311610c7e57829003601f168201915b505050505081565b610cab6116d7565b73ffffffffffffffffffffffffffffffffffffffff16610cc9610f2d565b73ffffffffffffffffffffffffffffffffffffffff1614610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d16906130c2565b60405180910390fd5b80600a9081610d2e919061328e565b5050565b6000610d3d82611c89565b600001519050919050565b600a8054610d5590613045565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8190613045565b8015610dce5780601f10610da357610100808354040283529160200191610dce565b820191906000526020600020905b815481529060010190602001808311610db157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ead6116d7565b73ffffffffffffffffffffffffffffffffffffffff16610ecb610f2d565b73ffffffffffffffffffffffffffffffffffffffff1614610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f18906130c2565b60405180910390fd5b610f2b6000611f18565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f6690613045565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9290613045565b8015610fdf5780601f10610fb457610100808354040283529160200191610fdf565b820191906000526020600020905b815481529060010190602001808311610fc257829003601f168201915b5050505050905090565b610ff16116d7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611055576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110626116d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661110f6116d7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111549190612822565b60405180910390a35050565b61116b84848461179a565b61118a8373ffffffffffffffffffffffffffffffffffffffff16611fde565b801561119f575061119d84848484612001565b155b156111d6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b80600c54816111e961086a565b6111f391906134b8565b1115611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90613538565b60405180910390fd5b61123c6116d7565b73ffffffffffffffffffffffffffffffffffffffff1661125a610f2d565b73ffffffffffffffffffffffffffffffffffffffff16146112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a7906130c2565b60405180910390fd5b6002600954036112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec906133ac565b60405180910390fd5b600260098190555060005b83518110156113505761133d84828151811061131f5761131e613412565b5b60200260200101518460405180602001604052806000815250612151565b808061134890613470565b915050611300565b506001600981905550505050565b606061136982611689565b6113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f906135ca565b60405180910390fd5b60006113b2612163565b905060008151116113d25760405180602001604052806000815250611400565b806113dc846121f5565b600b6040516020016113f0939291906136a9565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114aa6116d7565b73ffffffffffffffffffffffffffffffffffffffff166114c8610f2d565b73ffffffffffffffffffffffffffffffffffffffff161461151e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611515906130c2565b60405180910390fd5b80600c8190555050565b6115306116d7565b73ffffffffffffffffffffffffffffffffffffffff1661154e610f2d565b73ffffffffffffffffffffffffffffffffffffffff16146115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b906130c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a9061374c565b60405180910390fd5b61161c81611f18565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611694611791565b111580156116a3575060005482105b80156116d0575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006117a582611c89565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166117cc6116d7565b73ffffffffffffffffffffffffffffffffffffffff1614806117ff57506117fe82600001516117f96116d7565b61140e565b5b80611844575061180d6116d7565b73ffffffffffffffffffffffffffffffffffffffff1661182c84610655565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061187d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146118e6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361194c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119598585856001612355565b61196960008484600001516116df565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611c1957600054811015611c185782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c82858585600161235b565b5050505050565b611c9161272b565b600082905080611c9f611791565b11158015611cae575060005481105b15611ee1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611edf57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611dc3578092505050611f13565b5b600115611ede57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ed9578092505050611f13565b611dc4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120276116d7565b8786866040518563ffffffff1660e01b815260040161204994939291906137c1565b6020604051808303816000875af192505050801561208557506040513d601f19601f820116820180604052508101906120829190613822565b60015b6120fe573d80600081146120b5576040519150601f19603f3d011682016040523d82523d6000602084013e6120ba565b606091505b5060008151036120f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61215e8383836001612361565b505050565b6060600a805461217290613045565b80601f016020809104026020016040519081016040528092919081815260200182805461219e90613045565b80156121eb5780601f106121c0576101008083540402835291602001916121eb565b820191906000526020600020905b8154815290600101906020018083116121ce57829003601f168201915b5050505050905090565b60606000820361223c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612350565b600082905060005b6000821461226e57808061225790613470565b915050600a82612267919061387e565b9150612244565b60008167ffffffffffffffff81111561228a57612289612a24565b5b6040519080825280601f01601f1916602001820160405280156122bc5781602001600182028036833780820191505090505b5090505b60008514612349576001826122d591906138af565b9150600a856122e491906138e3565b60306122f091906134b8565b60f81b81838151811061230657612305613412565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612342919061387e565b94506122c0565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036123cd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612407576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124146000868387612355565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156125de57506125dd8773ffffffffffffffffffffffffffffffffffffffff16611fde565b5b156126a3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126536000888480600101955088612001565b612689576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036125e457826000541461269e57600080fd5b61270e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036126a4575b816000819055505050612724600086838761235b565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127b781612782565b81146127c257600080fd5b50565b6000813590506127d4816127ae565b92915050565b6000602082840312156127f0576127ef612778565b5b60006127fe848285016127c5565b91505092915050565b60008115159050919050565b61281c81612807565b82525050565b60006020820190506128376000830184612813565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561287757808201518184015260208101905061285c565b60008484015250505050565b6000601f19601f8301169050919050565b600061289f8261283d565b6128a98185612848565b93506128b9818560208601612859565b6128c281612883565b840191505092915050565b600060208201905081810360008301526128e78184612894565b905092915050565b6000819050919050565b612902816128ef565b811461290d57600080fd5b50565b60008135905061291f816128f9565b92915050565b60006020828403121561293b5761293a612778565b5b600061294984828501612910565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061297d82612952565b9050919050565b61298d81612972565b82525050565b60006020820190506129a86000830184612984565b92915050565b6129b781612972565b81146129c257600080fd5b50565b6000813590506129d4816129ae565b92915050565b600080604083850312156129f1576129f0612778565b5b60006129ff858286016129c5565b9250506020612a1085828601612910565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a5c82612883565b810181811067ffffffffffffffff82111715612a7b57612a7a612a24565b5b80604052505050565b6000612a8e61276e565b9050612a9a8282612a53565b919050565b600067ffffffffffffffff821115612aba57612ab9612a24565b5b612ac382612883565b9050602081019050919050565b82818337600083830152505050565b6000612af2612aed84612a9f565b612a84565b905082815260208101848484011115612b0e57612b0d612a1f565b5b612b19848285612ad0565b509392505050565b600082601f830112612b3657612b35612a1a565b5b8135612b46848260208601612adf565b91505092915050565b600060208284031215612b6557612b64612778565b5b600082013567ffffffffffffffff811115612b8357612b8261277d565b5b612b8f84828501612b21565b91505092915050565b612ba1816128ef565b82525050565b6000602082019050612bbc6000830184612b98565b92915050565b600080600060608486031215612bdb57612bda612778565b5b6000612be9868287016129c5565b9350506020612bfa868287016129c5565b9250506040612c0b86828701612910565b9150509250925092565b600060208284031215612c2b57612c2a612778565b5b6000612c39848285016129c5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612c77816128ef565b82525050565b6000612c898383612c6e565b60208301905092915050565b6000602082019050919050565b6000612cad82612c42565b612cb78185612c4d565b9350612cc283612c5e565b8060005b83811015612cf3578151612cda8882612c7d565b9750612ce583612c95565b925050600181019050612cc6565b5085935050505092915050565b60006020820190508181036000830152612d1a8184612ca2565b905092915050565b612d2b81612807565b8114612d3657600080fd5b50565b600081359050612d4881612d22565b92915050565b60008060408385031215612d6557612d64612778565b5b6000612d73858286016129c5565b9250506020612d8485828601612d39565b9150509250929050565b600067ffffffffffffffff821115612da957612da8612a24565b5b612db282612883565b9050602081019050919050565b6000612dd2612dcd84612d8e565b612a84565b905082815260208101848484011115612dee57612ded612a1f565b5b612df9848285612ad0565b509392505050565b600082601f830112612e1657612e15612a1a565b5b8135612e26848260208601612dbf565b91505092915050565b60008060008060808587031215612e4957612e48612778565b5b6000612e57878288016129c5565b9450506020612e68878288016129c5565b9350506040612e7987828801612910565b925050606085013567ffffffffffffffff811115612e9a57612e9961277d565b5b612ea687828801612e01565b91505092959194509250565b600067ffffffffffffffff821115612ecd57612ecc612a24565b5b602082029050602081019050919050565b600080fd5b6000612ef6612ef184612eb2565b612a84565b90508083825260208201905060208402830185811115612f1957612f18612ede565b5b835b81811015612f425780612f2e88826129c5565b845260208401935050602081019050612f1b565b5050509392505050565b600082601f830112612f6157612f60612a1a565b5b8135612f71848260208601612ee3565b91505092915050565b60008060408385031215612f9157612f90612778565b5b600083013567ffffffffffffffff811115612faf57612fae61277d565b5b612fbb85828601612f4c565b9250506020612fcc85828601612910565b9150509250929050565b60008060408385031215612fed57612fec612778565b5b6000612ffb858286016129c5565b925050602061300c858286016129c5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305d57607f821691505b6020821081036130705761306f613016565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130ac602083612848565b91506130b782613076565b602082019050919050565b600060208201905081810360008301526130db8161309f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613107565b61314e8683613107565b95508019841693508086168417925050509392505050565b6000819050919050565b600061318b613186613181846128ef565b613166565b6128ef565b9050919050565b6000819050919050565b6131a583613170565b6131b96131b182613192565b848454613114565b825550505050565b600090565b6131ce6131c1565b6131d981848461319c565b505050565b5b818110156131fd576131f26000826131c6565b6001810190506131df565b5050565b601f82111561324257613213816130e2565b61321c846130f7565b8101602085101561322b578190505b61323f613237856130f7565b8301826131de565b50505b505050565b600082821c905092915050565b600061326560001984600802613247565b1980831691505092915050565b600061327e8383613254565b9150826002028217905092915050565b6132978261283d565b67ffffffffffffffff8111156132b0576132af612a24565b5b6132ba8254613045565b6132c5828285613201565b600060209050601f8311600181146132f857600084156132e6578287015190505b6132f08582613272565b865550613358565b601f198416613306866130e2565b60005b8281101561332e57848901518255600182019150602085019450602081019050613309565b8683101561334b5784890151613347601f891682613254565b8355505b6001600288020188555050505b505050505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613396601f83612848565b91506133a182613360565b602082019050919050565b600060208201905081810360008301526133c581613389565b9050919050565b600081905092915050565b50565b60006133e76000836133cc565b91506133f2826133d7565b600082019050919050565b6000613408826133da565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347b826128ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134ad576134ac613441565b5b600182019050919050565b60006134c3826128ef565b91506134ce836128ef565b92508282019050808211156134e6576134e5613441565b5b92915050565b7f4d6178696d756d204e465420737570706c792065786365656465640000000000600082015250565b6000613522601b83612848565b915061352d826134ec565b602082019050919050565b6000602082019050818103600083015261355181613515565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135b4602f83612848565b91506135bf82613558565b604082019050919050565b600060208201905081810360008301526135e3816135a7565b9050919050565b600081905092915050565b60006136008261283d565b61360a81856135ea565b935061361a818560208601612859565b80840191505092915050565b6000815461363381613045565b61363d81866135ea565b94506001821660008114613658576001811461366d576136a0565b60ff19831686528115158202860193506136a0565b613676856130e2565b60005b8381101561369857815481890152600182019150602081019050613679565b838801955050505b50505092915050565b60006136b582866135f5565b91506136c182856135f5565b91506136cd8284613626565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613736602683612848565b9150613741826136da565b604082019050919050565b6000602082019050818103600083015261376581613729565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137938261376c565b61379d8185613777565b93506137ad818560208601612859565b6137b681612883565b840191505092915050565b60006080820190506137d66000830187612984565b6137e36020830186612984565b6137f06040830185612b98565b81810360608301526138028184613788565b905095945050505050565b60008151905061381c816127ae565b92915050565b60006020828403121561383857613837612778565b5b60006138468482850161380d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613889826128ef565b9150613894836128ef565b9250826138a4576138a361384f565b5b828204905092915050565b60006138ba826128ef565b91506138c5836128ef565b92508282039050818111156138dd576138dc613441565b5b92915050565b60006138ee826128ef565b91506138f9836128ef565b9250826139095761390861384f565b5b82820690509291505056fea2646970667358221220b0a9bb70da1163a7fb8fe33b79da4cbc459f4b834012f9cfc372aeeca61d006e64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000013537472656574204d656c742047656e65736973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534d470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e7374726565746d656c74732e636f6d2f67656e657369732f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): Street Melt Genesis
Arg [1] : _tokenSymbol (string): SMG
Arg [2] : _initBaseURI (string): https://api.streetmelts.com/genesis/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [4] : 537472656574204d656c742047656e6573697300000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 534d470000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [8] : 68747470733a2f2f6170692e7374726565746d656c74732e636f6d2f67656e65
Arg [9] : 7369732f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
48059:3360:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30559:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33944:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35447:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35010:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50885:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29808:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36304:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51241:173;;;:::i;:::-;;36545:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49132:888;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48195:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50781:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33753:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48162:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30928:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16041:103;;;:::i;:::-;;15390:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34113:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35723:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36801:369;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48805:259;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50028:395;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48235:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36073:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51130:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16299:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30559:305;30661:4;30713:25;30698:40;;;:11;:40;;;;:105;;;;30770:33;30755:48;;;:11;:48;;;;30698:105;:158;;;;30820:36;30844:11;30820:23;:36::i;:::-;30698:158;30678:178;;30559:305;;;:::o;33944:100::-;33998:13;34031:5;34024:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33944:100;:::o;35447:204::-;35515:7;35540:16;35548:7;35540;:16::i;:::-;35535:64;;35565:34;;;;;;;;;;;;;;35535:64;35619:15;:24;35635:7;35619:24;;;;;;;;;;;;;;;;;;;;;35612:31;;35447:204;;;:::o;35010:371::-;35083:13;35099:24;35115:7;35099:15;:24::i;:::-;35083:40;;35144:5;35138:11;;:2;:11;;;35134:48;;35158:24;;;;;;;;;;;;;;35134:48;35215:5;35199:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35225:37;35242:5;35249:12;:10;:12::i;:::-;35225:16;:37::i;:::-;35224:38;35199:63;35195:138;;;35286:35;;;;;;;;;;;;;;35195:138;35345:28;35354:2;35358:7;35367:5;35345:8;:28::i;:::-;35072:309;35010:371;;:::o;50885:106::-;15621:12;:10;:12::i;:::-;15610:23;;:7;:5;:7::i;:::-;:23;;;15602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50973:10:::1;50961:9;:22;;;;;;:::i;:::-;;50885:106:::0;:::o;29808:303::-;29852:7;30077:15;:13;:15::i;:::-;30062:12;;30046:13;;:28;:46;30039:53;;29808:303;:::o;36304:170::-;36438:28;36448:4;36454:2;36458:7;36438:9;:28::i;:::-;36304:170;;;:::o;51241:173::-;15621:12;:10;:12::i;:::-;15610:23;;:7;:5;:7::i;:::-;:23;;;15602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13442:1:::1;14040:7;;:19:::0;14032:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;13442:1;14173:7;:18;;;;51303:12:::2;51329:10;51321:24;;51353:21;51321:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51302:77;;;51398:7;51390:16;;;::::0;::::2;;51291:123;13398:1:::1;14352:7;:22;;;;51241:173::o:0;36545:185::-;36683:39;36700:4;36706:2;36710:7;36683:39;;;;;;;;;;;;:16;:39::i;:::-;36545:185;;;:::o;49132:888::-;49192:16;49221:23;49247:17;49257:6;49247:9;:17::i;:::-;49221:43;;49275:30;49322:15;49308:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49275:63;;49349:22;49374:15;:13;:15::i;:::-;49349:40;;49400:23;49438:26;49477:503;49502:15;49484;:33;:64;;;;;49539:9;;49521:14;:27;;49484:64;49477:503;;;49565:31;49599:11;:27;49611:14;49599:27;;;;;;;;;;;49565:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49648:9;:16;;;49647:17;:49;;;;;49694:1;49668:28;;:9;:14;;;:28;;;;49647:49;49643:125;;;49738:9;:14;;;49717:35;;49643:125;49810:6;49788:28;;:18;:28;;;49784:152;;49870:14;49837:13;49851:15;49837:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;49903:17;;;;;:::i;:::-;;;;49784:152;49952:16;;;;;:::i;:::-;;;;49550:430;49477:503;;;49999:13;49992:20;;;;;;;49132:888;;;:::o;48195:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50781:96::-;15621:12;:10;:12::i;:::-;15610:23;;:7;:5;:7::i;:::-;:23;;;15602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50862:7:::1;50852;:17;;;;;;:::i;:::-;;50781:96:::0;:::o;33753:124::-;33817:7;33844:20;33856:7;33844:11;:20::i;:::-;:25;;;33837:32;;33753:124;;;:::o;48162:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30928:206::-;30992:7;31033:1;31016:19;;:5;:19;;;31012:60;;31044:28;;;;;;;;;;;;;;31012:60;31098:12;:19;31111:5;31098:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31090:36;;31083:43;;30928:206;;;:::o;16041:103::-;15621:12;:10;:12::i;:::-;15610:23;;:7;:5;:7::i;:::-;:23;;;15602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16106:30:::1;16133:1;16106:18;:30::i;:::-;16041:103::o:0;15390:87::-;15436:7;15463:6;;;;;;;;;;;15456:13;;15390:87;:::o;34113:104::-;34169:13;34202:7;34195:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34113:104;:::o;35723:279::-;35826:12;:10;:12::i;:::-;35814:24;;:8;:24;;;35810:54;;35847:17;;;;;;;;;;;;;;35810:54;35922:8;35877:18;:32;35896:12;:10;:12::i;:::-;35877:32;;;;;;;;;;;;;;;:42;35910:8;35877:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35975:8;35946:48;;35961:12;:10;:12::i;:::-;35946:48;;;35985:8;35946:48;;;;;;:::i;:::-;;;;;;;;35723:279;;:::o;36801:369::-;36968:28;36978:4;36984:2;36988:7;36968:9;:28::i;:::-;37011:15;:2;:13;;;:15::i;:::-;:76;;;;;37031:56;37062:4;37068:2;37072:7;37081:5;37031:30;:56::i;:::-;37030:57;37011:76;37007:156;;;37111:40;;;;;;;;;;;;;;37007:156;36801:369;;;;:::o;48805:259::-;48893:11;48678:9;;48663:11;48647:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48639:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;15621:12:::1;:10;:12::i;:::-;15610:23;;:7;:5;:7::i;:::-;:23;;;15602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13442:1:::2;14040:7;;:19:::0;14032:63:::2;;;;;;;;;;;;:::i;:::-;;;;;;;;;13442:1;14173:7;:18;;;;48946:9:::3;48942:113;48965:9;:16;48961:1;:20;48942:113;;;49003:40;49013:9;49023:1;49013:12;;;;;;;;:::i;:::-;;;;;;;;49027:11;49003:40;;;;;;;;;;;::::0;:9:::3;:40::i;:::-;48983:3;;;;;:::i;:::-;;;;48942:113;;;;13398:1:::2;14352:7;:22;;;;48805:259:::0;;;:::o;50028:395::-;50102:13;50136:17;50144:8;50136:7;:17::i;:::-;50128:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;50218:28;50249:10;:8;:10::i;:::-;50218:41;;50308:1;50283:14;50277:28;:32;:138;;;;;;;;;;;;;;;;;50349:14;50365:19;:8;:17;:19::i;:::-;50386:9;50332:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50277:138;50270:145;;;50028:395;;;:::o;48235:31::-;;;;:::o;36073:164::-;36170:4;36194:18;:25;36213:5;36194:25;;;;;;;;;;;;;;;:35;36220:8;36194:35;;;;;;;;;;;;;;;;;;;;;;;;;36187:42;;36073:164;;;;:::o;51130:103::-;15621:12;:10;:12::i;:::-;15610:23;;:7;:5;:7::i;:::-;:23;;;15602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51215:10:::1;51203:9;:22;;;;51130:103:::0;:::o;16299:201::-;15621:12;:10;:12::i;:::-;15610:23;;:7;:5;:7::i;:::-;:23;;;15602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16408:1:::1;16388:22;;:8;:22;;::::0;16380:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;16464:28;16483:8;16464:18;:28::i;:::-;16299:201:::0;:::o;23288:157::-;23373:4;23412:25;23397:40;;;:11;:40;;;;23390:47;;23288:157;;;:::o;37425:187::-;37482:4;37525:7;37506:15;:13;:15::i;:::-;:26;;:53;;;;;37546:13;;37536:7;:23;37506:53;:98;;;;;37577:11;:20;37589:7;37577:20;;;;;;;;;;;:27;;;;;;;;;;;;37576:28;37506:98;37499:105;;37425:187;;;:::o;3040:98::-;3093:7;3120:10;3113:17;;3040:98;:::o;45036:196::-;45178:2;45151:15;:24;45167:7;45151:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45216:7;45212:2;45196:28;;45205:5;45196:28;;;;;;;;;;;;45036:196;;;:::o;50493:101::-;50558:7;50585:1;50578:8;;50493:101;:::o;40538:2112::-;40653:35;40691:20;40703:7;40691:11;:20::i;:::-;40653:58;;40724:22;40766:13;:18;;;40750:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40801:50;40818:13;:18;;;40838:12;:10;:12::i;:::-;40801:16;:50::i;:::-;40750:101;:154;;;;40892:12;:10;:12::i;:::-;40868:36;;:20;40880:7;40868:11;:20::i;:::-;:36;;;40750:154;40724:181;;40923:17;40918:66;;40949:35;;;;;;;;;;;;;;40918:66;41021:4;40999:26;;:13;:18;;;:26;;;40995:67;;41034:28;;;;;;;;;;;;;;40995:67;41091:1;41077:16;;:2;:16;;;41073:52;;41102:23;;;;;;;;;;;;;;41073:52;41138:43;41160:4;41166:2;41170:7;41179:1;41138:21;:43::i;:::-;41246:49;41263:1;41267:7;41276:13;:18;;;41246:8;:49::i;:::-;41621:1;41591:12;:18;41604:4;41591:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41665:1;41637:12;:16;41650:2;41637:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41711:2;41683:11;:20;41695:7;41683:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41773:15;41728:11;:20;41740:7;41728:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42041:19;42073:1;42063:7;:11;42041:33;;42134:1;42093:43;;:11;:24;42105:11;42093:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42089:445;;42318:13;;42304:11;:27;42300:219;;;42388:13;:18;;;42356:11;:24;42368:11;42356:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42471:13;:28;;;42429:11;:24;42441:11;42429:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42300:219;42089:445;41566:979;42581:7;42577:2;42562:27;;42571:4;42562:27;;;;;;;;;;;;42600:42;42621:4;42627:2;42631:7;42640:1;42600:20;:42::i;:::-;40642:2008;;40538:2112;;;:::o;32583:1108::-;32644:21;;:::i;:::-;32678:12;32693:7;32678:22;;32761:4;32742:15;:13;:15::i;:::-;:23;;:47;;;;;32776:13;;32769:4;:20;32742:47;32738:886;;;32810:31;32844:11;:17;32856:4;32844:17;;;;;;;;;;;32810:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32885:9;:16;;;32880:729;;32956:1;32930:28;;:9;:14;;;:28;;;32926:101;;32994:9;32987:16;;;;;;32926:101;33329:261;33336:4;33329:261;;;33369:6;;;;;;;;33414:11;:17;33426:4;33414:17;;;;;;;;;;;33402:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33488:1;33462:28;;:9;:14;;;:28;;;33458:109;;33530:9;33523:16;;;;;;33458:109;33329:261;;;32880:729;32791:833;32738:886;33652:31;;;;;;;;;;;;;;32583:1108;;;;:::o;16660:191::-;16734:16;16753:6;;;;;;;;;;;16734:25;;16779:8;16770:6;;:17;;;;;;;;;;;;;;;;;;16834:8;16803:40;;16824:8;16803:40;;;;;;;;;;;;16723:128;16660:191;:::o;4429:326::-;4489:4;4746:1;4724:7;:19;;;:23;4717:30;;4429:326;;;:::o;45724:667::-;45887:4;45924:2;45908:36;;;45945:12;:10;:12::i;:::-;45959:4;45965:7;45974:5;45908:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45904:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46159:1;46142:6;:13;:18;46138:235;;46188:40;;;;;;;;;;;;;;46138:235;46331:6;46325:13;46316:6;46312:2;46308:15;46301:38;45904:480;46037:45;;;46027:55;;;:6;:55;;;;46020:62;;;45724:667;;;;;;:::o;38087:163::-;38210:32;38216:2;38220:8;38230:5;38237:4;38210:5;:32::i;:::-;38087:163;;;:::o;50602:108::-;50662:13;50695:7;50688:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50602:108;:::o;660:723::-;716:13;946:1;937:5;:10;933:53;;964:10;;;;;;;;;;;;;;;;;;;;;933:53;996:12;1011:5;996:20;;1027:14;1052:78;1067:1;1059:4;:9;1052:78;;1085:8;;;;;:::i;:::-;;;;1116:2;1108:10;;;;;:::i;:::-;;;1052:78;;;1140:19;1172:6;1162:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1140:39;;1190:154;1206:1;1197:5;:10;1190:154;;1234:1;1224:11;;;;;:::i;:::-;;;1301:2;1293:5;:10;;;;:::i;:::-;1280:2;:24;;;;:::i;:::-;1267:39;;1250:6;1257;1250:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1330:2;1321:11;;;;;:::i;:::-;;;1190:154;;;1368:6;1354:21;;;;;660:723;;;;:::o;47039:159::-;;;;;:::o;47857:158::-;;;;;:::o;38509:1775::-;38648:20;38671:13;;38648:36;;38713:1;38699:16;;:2;:16;;;38695:48;;38724:19;;;;;;;;;;;;;;38695:48;38770:1;38758:8;:13;38754:44;;38780:18;;;;;;;;;;;;;;38754:44;38811:61;38841:1;38845:2;38849:12;38863:8;38811:21;:61::i;:::-;39184:8;39149:12;:16;39162:2;39149:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39248:8;39208:12;:16;39221:2;39208:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39307:2;39274:11;:25;39286:12;39274:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39374:15;39324:11;:25;39336:12;39324:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39407:20;39430:12;39407:35;;39457:11;39486:8;39471:12;:23;39457:37;;39515:4;:23;;;;;39523:15;:2;:13;;;:15::i;:::-;39515:23;39511:641;;;39559:314;39615:12;39611:2;39590:38;;39607:1;39590:38;;;;;;;;;;;;39656:69;39695:1;39699:2;39703:14;;;;;;39719:5;39656:30;:69::i;:::-;39651:174;;39761:40;;;;;;;;;;;;;;39651:174;39868:3;39852:12;:19;39559:314;;39954:12;39937:13;;:29;39933:43;;39968:8;;;39933:43;39511:641;;;40017:120;40073:14;;;;;;40069:2;40048:40;;40065:1;40048:40;;;;;;;;;;;;40132:3;40116:12;:19;40017:120;;39511:641;40182:12;40166:13;:28;;;;39124:1082;;40216:60;40245:1;40249:2;40253:12;40267:8;40216:20;:60::i;:::-;38637:1647;38509:1775;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:180;5184:77;5181:1;5174:88;5281:4;5278:1;5271:15;5305:4;5302:1;5295:15;5322:281;5405:27;5427:4;5405:27;:::i;:::-;5397:6;5393:40;5535:6;5523:10;5520:22;5499:18;5487:10;5484:34;5481:62;5478:88;;;5546:18;;:::i;:::-;5478:88;5586:10;5582:2;5575:22;5365:238;5322:281;;:::o;5609:129::-;5643:6;5670:20;;:::i;:::-;5660:30;;5699:33;5727:4;5719:6;5699:33;:::i;:::-;5609:129;;;:::o;5744:308::-;5806:4;5896:18;5888:6;5885:30;5882:56;;;5918:18;;:::i;:::-;5882:56;5956:29;5978:6;5956:29;:::i;:::-;5948:37;;6040:4;6034;6030:15;6022:23;;5744:308;;;:::o;6058:146::-;6155:6;6150:3;6145;6132:30;6196:1;6187:6;6182:3;6178:16;6171:27;6058:146;;;:::o;6210:425::-;6288:5;6313:66;6329:49;6371:6;6329:49;:::i;:::-;6313:66;:::i;:::-;6304:75;;6402:6;6395:5;6388:21;6440:4;6433:5;6429:16;6478:3;6469:6;6464:3;6460:16;6457:25;6454:112;;;6485:79;;:::i;:::-;6454:112;6575:54;6622:6;6617:3;6612;6575:54;:::i;:::-;6294:341;6210:425;;;;;:::o;6655:340::-;6711:5;6760:3;6753:4;6745:6;6741:17;6737:27;6727:122;;6768:79;;:::i;:::-;6727:122;6885:6;6872:20;6910:79;6985:3;6977:6;6970:4;6962:6;6958:17;6910:79;:::i;:::-;6901:88;;6717:278;6655:340;;;;:::o;7001:509::-;7070:6;7119:2;7107:9;7098:7;7094:23;7090:32;7087:119;;;7125:79;;:::i;:::-;7087:119;7273:1;7262:9;7258:17;7245:31;7303:18;7295:6;7292:30;7289:117;;;7325:79;;:::i;:::-;7289:117;7430:63;7485:7;7476:6;7465:9;7461:22;7430:63;:::i;:::-;7420:73;;7216:287;7001:509;;;;:::o;7516:118::-;7603:24;7621:5;7603:24;:::i;:::-;7598:3;7591:37;7516:118;;:::o;7640:222::-;7733:4;7771:2;7760:9;7756:18;7748:26;;7784:71;7852:1;7841:9;7837:17;7828:6;7784:71;:::i;:::-;7640:222;;;;:::o;7868:619::-;7945:6;7953;7961;8010:2;7998:9;7989:7;7985:23;7981:32;7978:119;;;8016:79;;:::i;:::-;7978:119;8136:1;8161:53;8206:7;8197:6;8186:9;8182:22;8161:53;:::i;:::-;8151:63;;8107:117;8263:2;8289:53;8334:7;8325:6;8314:9;8310:22;8289:53;:::i;:::-;8279:63;;8234:118;8391:2;8417:53;8462:7;8453:6;8442:9;8438:22;8417:53;:::i;:::-;8407:63;;8362:118;7868:619;;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:114::-;8895:6;8929:5;8923:12;8913:22;;8828:114;;;:::o;8948:184::-;9047:11;9081:6;9076:3;9069:19;9121:4;9116:3;9112:14;9097:29;;8948:184;;;;:::o;9138:132::-;9205:4;9228:3;9220:11;;9258:4;9253:3;9249:14;9241:22;;9138:132;;;:::o;9276:108::-;9353:24;9371:5;9353:24;:::i;:::-;9348:3;9341:37;9276:108;;:::o;9390:179::-;9459:10;9480:46;9522:3;9514:6;9480:46;:::i;:::-;9558:4;9553:3;9549:14;9535:28;;9390:179;;;;:::o;9575:113::-;9645:4;9677;9672:3;9668:14;9660:22;;9575:113;;;:::o;9724:732::-;9843:3;9872:54;9920:5;9872:54;:::i;:::-;9942:86;10021:6;10016:3;9942:86;:::i;:::-;9935:93;;10052:56;10102:5;10052:56;:::i;:::-;10131:7;10162:1;10147:284;10172:6;10169:1;10166:13;10147:284;;;10248:6;10242:13;10275:63;10334:3;10319:13;10275:63;:::i;:::-;10268:70;;10361:60;10414:6;10361:60;:::i;:::-;10351:70;;10207:224;10194:1;10191;10187:9;10182:14;;10147:284;;;10151:14;10447:3;10440:10;;9848:608;;;9724:732;;;;:::o;10462:373::-;10605:4;10643:2;10632:9;10628:18;10620:26;;10692:9;10686:4;10682:20;10678:1;10667:9;10663:17;10656:47;10720:108;10823:4;10814:6;10720:108;:::i;:::-;10712:116;;10462:373;;;;:::o;10841:116::-;10911:21;10926:5;10911:21;:::i;:::-;10904:5;10901:32;10891:60;;10947:1;10944;10937:12;10891:60;10841:116;:::o;10963:133::-;11006:5;11044:6;11031:20;11022:29;;11060:30;11084:5;11060:30;:::i;:::-;10963:133;;;;:::o;11102:468::-;11167:6;11175;11224:2;11212:9;11203:7;11199:23;11195:32;11192:119;;;11230:79;;:::i;:::-;11192:119;11350:1;11375:53;11420:7;11411:6;11400:9;11396:22;11375:53;:::i;:::-;11365:63;;11321:117;11477:2;11503:50;11545:7;11536:6;11525:9;11521:22;11503:50;:::i;:::-;11493:60;;11448:115;11102:468;;;;;:::o;11576:307::-;11637:4;11727:18;11719:6;11716:30;11713:56;;;11749:18;;:::i;:::-;11713:56;11787:29;11809:6;11787:29;:::i;:::-;11779:37;;11871:4;11865;11861:15;11853:23;;11576:307;;;:::o;11889:423::-;11966:5;11991:65;12007:48;12048:6;12007:48;:::i;:::-;11991:65;:::i;:::-;11982:74;;12079:6;12072:5;12065:21;12117:4;12110:5;12106:16;12155:3;12146:6;12141:3;12137:16;12134:25;12131:112;;;12162:79;;:::i;:::-;12131:112;12252:54;12299:6;12294:3;12289;12252:54;:::i;:::-;11972:340;11889:423;;;;;:::o;12331:338::-;12386:5;12435:3;12428:4;12420:6;12416:17;12412:27;12402:122;;12443:79;;:::i;:::-;12402:122;12560:6;12547:20;12585:78;12659:3;12651:6;12644:4;12636:6;12632:17;12585:78;:::i;:::-;12576:87;;12392:277;12331:338;;;;:::o;12675:943::-;12770:6;12778;12786;12794;12843:3;12831:9;12822:7;12818:23;12814:33;12811:120;;;12850:79;;:::i;:::-;12811:120;12970:1;12995:53;13040:7;13031:6;13020:9;13016:22;12995:53;:::i;:::-;12985:63;;12941:117;13097:2;13123:53;13168:7;13159:6;13148:9;13144:22;13123:53;:::i;:::-;13113:63;;13068:118;13225:2;13251:53;13296:7;13287:6;13276:9;13272:22;13251:53;:::i;:::-;13241:63;;13196:118;13381:2;13370:9;13366:18;13353:32;13412:18;13404:6;13401:30;13398:117;;;13434:79;;:::i;:::-;13398:117;13539:62;13593:7;13584:6;13573:9;13569:22;13539:62;:::i;:::-;13529:72;;13324:287;12675:943;;;;;;;:::o;13624:311::-;13701:4;13791:18;13783:6;13780:30;13777:56;;;13813:18;;:::i;:::-;13777:56;13863:4;13855:6;13851:17;13843:25;;13923:4;13917;13913:15;13905:23;;13624:311;;;:::o;13941:117::-;14050:1;14047;14040:12;14081:710;14177:5;14202:81;14218:64;14275:6;14218:64;:::i;:::-;14202:81;:::i;:::-;14193:90;;14303:5;14332:6;14325:5;14318:21;14366:4;14359:5;14355:16;14348:23;;14419:4;14411:6;14407:17;14399:6;14395:30;14448:3;14440:6;14437:15;14434:122;;;14467:79;;:::i;:::-;14434:122;14582:6;14565:220;14599:6;14594:3;14591:15;14565:220;;;14674:3;14703:37;14736:3;14724:10;14703:37;:::i;:::-;14698:3;14691:50;14770:4;14765:3;14761:14;14754:21;;14641:144;14625:4;14620:3;14616:14;14609:21;;14565:220;;;14569:21;14183:608;;14081:710;;;;;:::o;14814:370::-;14885:5;14934:3;14927:4;14919:6;14915:17;14911:27;14901:122;;14942:79;;:::i;:::-;14901:122;15059:6;15046:20;15084:94;15174:3;15166:6;15159:4;15151:6;15147:17;15084:94;:::i;:::-;15075:103;;14891:293;14814:370;;;;:::o;15190:684::-;15283:6;15291;15340:2;15328:9;15319:7;15315:23;15311:32;15308:119;;;15346:79;;:::i;:::-;15308:119;15494:1;15483:9;15479:17;15466:31;15524:18;15516:6;15513:30;15510:117;;;15546:79;;:::i;:::-;15510:117;15651:78;15721:7;15712:6;15701:9;15697:22;15651:78;:::i;:::-;15641:88;;15437:302;15778:2;15804:53;15849:7;15840:6;15829:9;15825:22;15804:53;:::i;:::-;15794:63;;15749:118;15190:684;;;;;:::o;15880:474::-;15948:6;15956;16005:2;15993:9;15984:7;15980:23;15976:32;15973:119;;;16011:79;;:::i;:::-;15973:119;16131:1;16156:53;16201:7;16192:6;16181:9;16177:22;16156:53;:::i;:::-;16146:63;;16102:117;16258:2;16284:53;16329:7;16320:6;16309:9;16305:22;16284:53;:::i;:::-;16274:63;;16229:118;15880:474;;;;;:::o;16360:180::-;16408:77;16405:1;16398:88;16505:4;16502:1;16495:15;16529:4;16526:1;16519:15;16546:320;16590:6;16627:1;16621:4;16617:12;16607:22;;16674:1;16668:4;16664:12;16695:18;16685:81;;16751:4;16743:6;16739:17;16729:27;;16685:81;16813:2;16805:6;16802:14;16782:18;16779:38;16776:84;;16832:18;;:::i;:::-;16776:84;16597:269;16546:320;;;:::o;16872:182::-;17012:34;17008:1;17000:6;16996:14;16989:58;16872:182;:::o;17060:366::-;17202:3;17223:67;17287:2;17282:3;17223:67;:::i;:::-;17216:74;;17299:93;17388:3;17299:93;:::i;:::-;17417:2;17412:3;17408:12;17401:19;;17060:366;;;:::o;17432:419::-;17598:4;17636:2;17625:9;17621:18;17613:26;;17685:9;17679:4;17675:20;17671:1;17660:9;17656:17;17649:47;17713:131;17839:4;17713:131;:::i;:::-;17705:139;;17432:419;;;:::o;17857:141::-;17906:4;17929:3;17921:11;;17952:3;17949:1;17942:14;17986:4;17983:1;17973:18;17965:26;;17857:141;;;:::o;18004:93::-;18041:6;18088:2;18083;18076:5;18072:14;18068:23;18058:33;;18004:93;;;:::o;18103:107::-;18147:8;18197:5;18191:4;18187:16;18166:37;;18103:107;;;;:::o;18216:393::-;18285:6;18335:1;18323:10;18319:18;18358:97;18388:66;18377:9;18358:97;:::i;:::-;18476:39;18506:8;18495:9;18476:39;:::i;:::-;18464:51;;18548:4;18544:9;18537:5;18533:21;18524:30;;18597:4;18587:8;18583:19;18576:5;18573:30;18563:40;;18292:317;;18216:393;;;;;:::o;18615:60::-;18643:3;18664:5;18657:12;;18615:60;;;:::o;18681:142::-;18731:9;18764:53;18782:34;18791:24;18809:5;18791:24;:::i;:::-;18782:34;:::i;:::-;18764:53;:::i;:::-;18751:66;;18681:142;;;:::o;18829:75::-;18872:3;18893:5;18886:12;;18829:75;;;:::o;18910:269::-;19020:39;19051:7;19020:39;:::i;:::-;19081:91;19130:41;19154:16;19130:41;:::i;:::-;19122:6;19115:4;19109:11;19081:91;:::i;:::-;19075:4;19068:105;18986:193;18910:269;;;:::o;19185:73::-;19230:3;19185:73;:::o;19264:189::-;19341:32;;:::i;:::-;19382:65;19440:6;19432;19426:4;19382:65;:::i;:::-;19317:136;19264:189;;:::o;19459:186::-;19519:120;19536:3;19529:5;19526:14;19519:120;;;19590:39;19627:1;19620:5;19590:39;:::i;:::-;19563:1;19556:5;19552:13;19543:22;;19519:120;;;19459:186;;:::o;19651:543::-;19752:2;19747:3;19744:11;19741:446;;;19786:38;19818:5;19786:38;:::i;:::-;19870:29;19888:10;19870:29;:::i;:::-;19860:8;19856:44;20053:2;20041:10;20038:18;20035:49;;;20074:8;20059:23;;20035:49;20097:80;20153:22;20171:3;20153:22;:::i;:::-;20143:8;20139:37;20126:11;20097:80;:::i;:::-;19756:431;;19741:446;19651:543;;;:::o;20200:117::-;20254:8;20304:5;20298:4;20294:16;20273:37;;20200:117;;;;:::o;20323:169::-;20367:6;20400:51;20448:1;20444:6;20436:5;20433:1;20429:13;20400:51;:::i;:::-;20396:56;20481:4;20475;20471:15;20461:25;;20374:118;20323:169;;;;:::o;20497:295::-;20573:4;20719:29;20744:3;20738:4;20719:29;:::i;:::-;20711:37;;20781:3;20778:1;20774:11;20768:4;20765:21;20757:29;;20497:295;;;;:::o;20797:1395::-;20914:37;20947:3;20914:37;:::i;:::-;21016:18;21008:6;21005:30;21002:56;;;21038:18;;:::i;:::-;21002:56;21082:38;21114:4;21108:11;21082:38;:::i;:::-;21167:67;21227:6;21219;21213:4;21167:67;:::i;:::-;21261:1;21285:4;21272:17;;21317:2;21309:6;21306:14;21334:1;21329:618;;;;21991:1;22008:6;22005:77;;;22057:9;22052:3;22048:19;22042:26;22033:35;;22005:77;22108:67;22168:6;22161:5;22108:67;:::i;:::-;22102:4;22095:81;21964:222;21299:887;;21329:618;21381:4;21377:9;21369:6;21365:22;21415:37;21447:4;21415:37;:::i;:::-;21474:1;21488:208;21502:7;21499:1;21496:14;21488:208;;;21581:9;21576:3;21572:19;21566:26;21558:6;21551:42;21632:1;21624:6;21620:14;21610:24;;21679:2;21668:9;21664:18;21651:31;;21525:4;21522:1;21518:12;21513:17;;21488:208;;;21724:6;21715:7;21712:19;21709:179;;;21782:9;21777:3;21773:19;21767:26;21825:48;21867:4;21859:6;21855:17;21844:9;21825:48;:::i;:::-;21817:6;21810:64;21732:156;21709:179;21934:1;21930;21922:6;21918:14;21914:22;21908:4;21901:36;21336:611;;;21299:887;;20889:1303;;;20797:1395;;:::o;22198:181::-;22338:33;22334:1;22326:6;22322:14;22315:57;22198:181;:::o;22385:366::-;22527:3;22548:67;22612:2;22607:3;22548:67;:::i;:::-;22541:74;;22624:93;22713:3;22624:93;:::i;:::-;22742:2;22737:3;22733:12;22726:19;;22385:366;;;:::o;22757:419::-;22923:4;22961:2;22950:9;22946:18;22938:26;;23010:9;23004:4;23000:20;22996:1;22985:9;22981:17;22974:47;23038:131;23164:4;23038:131;:::i;:::-;23030:139;;22757:419;;;:::o;23182:147::-;23283:11;23320:3;23305:18;;23182:147;;;;:::o;23335:114::-;;:::o;23455:398::-;23614:3;23635:83;23716:1;23711:3;23635:83;:::i;:::-;23628:90;;23727:93;23816:3;23727:93;:::i;:::-;23845:1;23840:3;23836:11;23829:18;;23455:398;;;:::o;23859:379::-;24043:3;24065:147;24208:3;24065:147;:::i;:::-;24058:154;;24229:3;24222:10;;23859:379;;;:::o;24244:180::-;24292:77;24289:1;24282:88;24389:4;24386:1;24379:15;24413:4;24410:1;24403:15;24430:180;24478:77;24475:1;24468:88;24575:4;24572:1;24565:15;24599:4;24596:1;24589:15;24616:233;24655:3;24678:24;24696:5;24678:24;:::i;:::-;24669:33;;24724:66;24717:5;24714:77;24711:103;;24794:18;;:::i;:::-;24711:103;24841:1;24834:5;24830:13;24823:20;;24616:233;;;:::o;24855:191::-;24895:3;24914:20;24932:1;24914:20;:::i;:::-;24909:25;;24948:20;24966:1;24948:20;:::i;:::-;24943:25;;24991:1;24988;24984:9;24977:16;;25012:3;25009:1;25006:10;25003:36;;;25019:18;;:::i;:::-;25003:36;24855:191;;;;:::o;25052:177::-;25192:29;25188:1;25180:6;25176:14;25169:53;25052:177;:::o;25235:366::-;25377:3;25398:67;25462:2;25457:3;25398:67;:::i;:::-;25391:74;;25474:93;25563:3;25474:93;:::i;:::-;25592:2;25587:3;25583:12;25576:19;;25235:366;;;:::o;25607:419::-;25773:4;25811:2;25800:9;25796:18;25788:26;;25860:9;25854:4;25850:20;25846:1;25835:9;25831:17;25824:47;25888:131;26014:4;25888:131;:::i;:::-;25880:139;;25607:419;;;:::o;26032:234::-;26172:34;26168:1;26160:6;26156:14;26149:58;26241:17;26236:2;26228:6;26224:15;26217:42;26032:234;:::o;26272:366::-;26414:3;26435:67;26499:2;26494:3;26435:67;:::i;:::-;26428:74;;26511:93;26600:3;26511:93;:::i;:::-;26629:2;26624:3;26620:12;26613:19;;26272:366;;;:::o;26644:419::-;26810:4;26848:2;26837:9;26833:18;26825:26;;26897:9;26891:4;26887:20;26883:1;26872:9;26868:17;26861:47;26925:131;27051:4;26925:131;:::i;:::-;26917:139;;26644:419;;;:::o;27069:148::-;27171:11;27208:3;27193:18;;27069:148;;;;:::o;27223:390::-;27329:3;27357:39;27390:5;27357:39;:::i;:::-;27412:89;27494:6;27489:3;27412:89;:::i;:::-;27405:96;;27510:65;27568:6;27563:3;27556:4;27549:5;27545:16;27510:65;:::i;:::-;27600:6;27595:3;27591:16;27584:23;;27333:280;27223:390;;;;:::o;27643:874::-;27746:3;27783:5;27777:12;27812:36;27838:9;27812:36;:::i;:::-;27864:89;27946:6;27941:3;27864:89;:::i;:::-;27857:96;;27984:1;27973:9;27969:17;28000:1;27995:166;;;;28175:1;28170:341;;;;27962:549;;27995:166;28079:4;28075:9;28064;28060:25;28055:3;28048:38;28141:6;28134:14;28127:22;28119:6;28115:35;28110:3;28106:45;28099:52;;27995:166;;28170:341;28237:38;28269:5;28237:38;:::i;:::-;28297:1;28311:154;28325:6;28322:1;28319:13;28311:154;;;28399:7;28393:14;28389:1;28384:3;28380:11;28373:35;28449:1;28440:7;28436:15;28425:26;;28347:4;28344:1;28340:12;28335:17;;28311:154;;;28494:6;28489:3;28485:16;28478:23;;28177:334;;27962:549;;27750:767;;27643:874;;;;:::o;28523:589::-;28748:3;28770:95;28861:3;28852:6;28770:95;:::i;:::-;28763:102;;28882:95;28973:3;28964:6;28882:95;:::i;:::-;28875:102;;28994:92;29082:3;29073:6;28994:92;:::i;:::-;28987:99;;29103:3;29096:10;;28523:589;;;;;;:::o;29118:225::-;29258:34;29254:1;29246:6;29242:14;29235:58;29327:8;29322:2;29314:6;29310:15;29303:33;29118:225;:::o;29349:366::-;29491:3;29512:67;29576:2;29571:3;29512:67;:::i;:::-;29505:74;;29588:93;29677:3;29588:93;:::i;:::-;29706:2;29701:3;29697:12;29690:19;;29349:366;;;:::o;29721:419::-;29887:4;29925:2;29914:9;29910:18;29902:26;;29974:9;29968:4;29964:20;29960:1;29949:9;29945:17;29938:47;30002:131;30128:4;30002:131;:::i;:::-;29994:139;;29721:419;;;:::o;30146:98::-;30197:6;30231:5;30225:12;30215:22;;30146:98;;;:::o;30250:168::-;30333:11;30367:6;30362:3;30355:19;30407:4;30402:3;30398:14;30383:29;;30250:168;;;;:::o;30424:373::-;30510:3;30538:38;30570:5;30538:38;:::i;:::-;30592:70;30655:6;30650:3;30592:70;:::i;:::-;30585:77;;30671:65;30729:6;30724:3;30717:4;30710:5;30706:16;30671:65;:::i;:::-;30761:29;30783:6;30761:29;:::i;:::-;30756:3;30752:39;30745:46;;30514:283;30424:373;;;;:::o;30803:640::-;30998:4;31036:3;31025:9;31021:19;31013:27;;31050:71;31118:1;31107:9;31103:17;31094:6;31050:71;:::i;:::-;31131:72;31199:2;31188:9;31184:18;31175:6;31131:72;:::i;:::-;31213;31281:2;31270:9;31266:18;31257:6;31213:72;:::i;:::-;31332:9;31326:4;31322:20;31317:2;31306:9;31302:18;31295:48;31360:76;31431:4;31422:6;31360:76;:::i;:::-;31352:84;;30803:640;;;;;;;:::o;31449:141::-;31505:5;31536:6;31530:13;31521:22;;31552:32;31578:5;31552:32;:::i;:::-;31449:141;;;;:::o;31596:349::-;31665:6;31714:2;31702:9;31693:7;31689:23;31685:32;31682:119;;;31720:79;;:::i;:::-;31682:119;31840:1;31865:63;31920:7;31911:6;31900:9;31896:22;31865:63;:::i;:::-;31855:73;;31811:127;31596:349;;;;:::o;31951:180::-;31999:77;31996:1;31989:88;32096:4;32093:1;32086:15;32120:4;32117:1;32110:15;32137:185;32177:1;32194:20;32212:1;32194:20;:::i;:::-;32189:25;;32228:20;32246:1;32228:20;:::i;:::-;32223:25;;32267:1;32257:35;;32272:18;;:::i;:::-;32257:35;32314:1;32311;32307:9;32302:14;;32137:185;;;;:::o;32328:194::-;32368:4;32388:20;32406:1;32388:20;:::i;:::-;32383:25;;32422:20;32440:1;32422:20;:::i;:::-;32417:25;;32466:1;32463;32459:9;32451:17;;32490:1;32484:4;32481:11;32478:37;;;32495:18;;:::i;:::-;32478:37;32328:194;;;;:::o;32528:176::-;32560:1;32577:20;32595:1;32577:20;:::i;:::-;32572:25;;32611:20;32629:1;32611:20;:::i;:::-;32606:25;;32650:1;32640:35;;32655:18;;:::i;:::-;32640:35;32696:1;32693;32689:9;32684:14;;32528:176;;;;:::o
Swarm Source
ipfs://b0a9bb70da1163a7fb8fe33b79da4cbc459f4b834012f9cfc372aeeca61d006e
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.