Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
501
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NSMFUSION
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-30 */ //SPDX-License-Identifier: UNLISENCED pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 1; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } interface iYield { function balanceOf(address address_) external view returns (uint256); function transferFrom(address from_, address to_, uint256 amount_) external; } /* * /~\_ /~\_ * C oo /~\_ C oo * _( ^) C(oo) _( ^) * ~/ ~\ ~/ ^\ ~/ ~\ */ /// sumo technologies contract NSMFUSION is ERC721A, Ownable, ReentrancyGuard { address private tresureyaddy; uint256 public numberOfToken; uint256 public mintPrice = 630 ether; uint256 private maxMintsPerPS = 63; uint256 private _totalSupply = 6300; string private _baseTokenURI; string private baseTokenURI_EXT; bool public publicSaleEnabled = false; IERC721 private NSM; iYield private YieldToken; constructor () ERC721A ("NSMFUSION","FUSE", maxMintsPerPS, _totalSupply) { numberOfToken = 0; } function ownerMint(uint256 _amount, address _address) public onlyOwner { require((_amount + numberOfToken) <= (_totalSupply), "No more NFTs"); _safeMint(_address, _amount); numberOfToken += _amount; } function fusion(uint256 _nsmo, uint256 _nsmt, uint256 _amount) public payable nonReentrant { uint256 totaltran = mintPrice * _amount; require(publicSaleEnabled, "fuse paused"); require(maxMintsPerPS >= _amount, "max fuse amount"); require((_amount + numberOfToken) <= (_totalSupply), "No more NFTs"); require(_nsmo != _nsmt, "Cannot fuse same NSM"); require(msg.sender == NSM.ownerOf(_nsmo) && msg.sender == NSM.ownerOf(_nsmt), "You do not own these NSM"); require(YieldToken.balanceOf(msg.sender) >= totaltran, "No enough"); YieldToken.transferFrom(msg.sender, tresureyaddy, totaltran); _safeMint(msg.sender, _amount); numberOfToken += _amount; } function setNSM(address _address) external onlyOwner { NSM = IERC721(_address); } function setAddy(address _address) external onlyOwner { tresureyaddy = _address; } function setYield(address _address) external onlyOwner { YieldToken = iYield(_address); } function setPrice(uint256 newPrice) external onlyOwner { mintPrice = newPrice; } function setPublicSale(bool bool_) external onlyOwner { publicSaleEnabled = bool_; } function setBaseURI(string memory uri_) public onlyOwner { _baseTokenURI = uri_; } function setBaseTokenURI_EXT(string memory ext_) public onlyOwner { baseTokenURI_EXT = ext_; } function currentBaseURI() private view returns (string memory){ return _baseTokenURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Token not exist"); return string(abi.encodePacked(currentBaseURI(), Strings.toString(tokenId), baseTokenURI_EXT)); } function withdraw() public payable onlyOwner nonReentrant { require(payable(msg.sender).send(address(this).balance)); } function walletOfOwner(address _address) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_address); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_address, i); } return tokenIds; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nsmo","type":"uint256"},{"internalType":"uint256","name":"_nsmt","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"fusion","outputs":[],"stateMutability":"payable","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":"mintPrice","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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setAddy","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":"ext_","type":"string"}],"name":"setBaseTokenURI_EXT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setNSM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setYield","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c060405260016000908155600755682227019e1df0180000600c55603f600d5561189c600e556011805460ff191690553480156200003d57600080fd5b50604051806040016040528060098152602001682729a6a32aa9a4a7a760b91b815250604051806040016040528060048152602001634655534560e01b815250600d54600e5460008111620000f05760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001525760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000e7565b835162000167906001906020870190620001f7565b5082516200017d906002906020860190620001f7565b5060a0919091526080525062000195905033620001a5565b60016009556000600b55620002da565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000205906200029d565b90600052602060002090601f01602090048101928262000229576000855562000274565b82601f106200024457805160ff191683800117855562000274565b8280016001018555821562000274579182015b828111156200027457825182559160200191906001019062000257565b506200028292915062000286565b5090565b5b8082111562000282576000815560010162000287565b600181811c90821680620002b257607f821691505b60208210811415620002d457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516128e86200030b60003960008181611a7901528181611aa30152611ecb0152600050506128e86000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d578063b88d4fde116100a0578063d52c57e01161006f578063d52c57e014610584578063d7224ba0146105a4578063d95edafe146105ba578063e985e9c5146105da578063f2fde38b1461062357600080fd5b8063b88d4fde1461050e578063bf1f577b1461052e578063c87b56dd14610544578063cd989d2d1461056457600080fd5b80638da5cb5b116100dc5780638da5cb5b1461049b57806391b7f5ed146104b957806395d89b41146104d9578063a22cb465146104ee57600080fd5b80636352211e146104305780636817c76c1461045057806370a0823114610466578063715018a61461048657600080fd5b80632f745c59116101905780634e6c52b81161015f5780634e6c52b81461039d5780634f6ccce7146103bd578063500dbdb8146103dd57806355f804b3146103f05780635aca1bb61461041057600080fd5b80632f745c59146103285780633ccfd60b1461034857806342842e0e14610350578063438b63001461037057600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806318160ddd146102cf57806323b872dd146102ee5780632ab91bba1461030e57600080fd5b806301ffc9a7146101fe57806302ffaed11461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e6102193660046123bb565b610643565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e3660046123f5565b6106b0565b005b34801561026157600080fd5b5061026a6106fa565b60405161022a9190612632565b34801561028357600080fd5b5061029761029236600461243e565b61078c565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004612374565b610817565b3480156102db57600080fd5b506000545b60405190815260200161022a565b3480156102fa57600080fd5b5061025361030936600461227e565b61092f565b34801561031a57600080fd5b5060115461021e9060ff1681565b34801561033457600080fd5b506102e0610343366004612374565b61093a565b610253610aa8565b34801561035c57600080fd5b5061025361036b36600461227e565b610b55565b34801561037c57600080fd5b5061039061038b366004612204565b610b70565b60405161022a91906125ee565b3480156103a957600080fd5b506102536103b8366004612204565b610c12565b3480156103c957600080fd5b506102e06103d836600461243e565b610c64565b6102536103eb366004612495565b610cc6565b3480156103fc57600080fd5b5061025361040b3660046123f5565b611115565b34801561041c57600080fd5b5061025361042b3660046123a0565b611152565b34801561043c57600080fd5b5061029761044b36600461243e565b61118f565b34801561045c57600080fd5b506102e0600c5481565b34801561047257600080fd5b506102e0610481366004612204565b6111a1565b34801561049257600080fd5b50610253611232565b3480156104a757600080fd5b506008546001600160a01b0316610297565b3480156104c557600080fd5b506102536104d436600461243e565b611268565b3480156104e557600080fd5b5061026a611297565b3480156104fa57600080fd5b5061025361050936600461233f565b6112a6565b34801561051a57600080fd5b506102536105293660046122bf565b61136b565b34801561053a57600080fd5b506102e0600b5481565b34801561055057600080fd5b5061026a61055f36600461243e565b6113a4565b34801561057057600080fd5b5061025361057f366004612204565b61142a565b34801561059057600080fd5b5061025361059f366004612470565b611476565b3480156105b057600080fd5b506102e060075481565b3480156105c657600080fd5b506102536105d5366004612204565b611512565b3480156105e657600080fd5b5061021e6105f5366004612245565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561062f57600080fd5b5061025361063e366004612204565b61155e565b60006001600160e01b031982166380ac58cd60e01b148061067457506001600160e01b03198216635b5e139f60e01b145b8061068f57506001600160e01b0319821663780e9d6360e01b145b806106aa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106e35760405162461bcd60e51b81526004016106da90612645565b60405180910390fd5b80516106f69060109060208401906120e9565b5050565b606060018054610709906127c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610735906127c5565b80156107825780601f1061075757610100808354040283529160200191610782565b820191906000526020600020905b81548152906001019060200180831161076557829003601f168201915b5050505050905090565b6000610799826000541190565b6107fb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016106da565b506000908152600560205260409020546001600160a01b031690565b60006108228261118f565b9050806001600160a01b0316836001600160a01b031614156108915760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106da565b336001600160a01b03821614806108ad57506108ad81336105f5565b61091f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106da565b61092a8383836115f9565b505050565b61092a838383611655565b6000610945836111a1565b821061099e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106da565b600080549080805b83811015610a48576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109f957805192505b876001600160a01b0316836001600160a01b03161415610a355786841415610a27575093506106aa92505050565b83610a3181612800565b9450505b5080610a4081612800565b9150506109a6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106da565b6008546001600160a01b03163314610ad25760405162461bcd60e51b81526004016106da90612645565b60026009541415610b255760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106da565b600260095560405133904780156108fc02916000818181858888f19350505050610b4e57600080fd5b6001600955565b61092a8383836040518060200160405280600081525061136b565b60606000610b7d836111a1565b905060008167ffffffffffffffff811115610b9a57610b9a612871565b604051908082528060200260200182016040528015610bc3578160200160208202803683370190505b50905060005b82811015610c0a57610bdb858261093a565b828281518110610bed57610bed61285b565b602090810291909101015280610c0281612800565b915050610bc9565b509392505050565b6008546001600160a01b03163314610c3c5760405162461bcd60e51b81526004016106da90612645565b601180546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600080548210610cc25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106da565b5090565b60026009541415610d195760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106da565b6002600955600c54600090610d2f908390612724565b60115490915060ff16610d725760405162461bcd60e51b815260206004820152600b60248201526a199d5cd9481c185d5cd95960aa1b60448201526064016106da565b81600d541015610db65760405162461bcd60e51b815260206004820152600f60248201526e1b585e08199d5cd948185b5bdd5b9d608a1b60448201526064016106da565b600e54600b54610dc690846126f8565b1115610e035760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265204e46547360a01b60448201526064016106da565b82841415610e4a5760405162461bcd60e51b815260206004820152601460248201527343616e6e6f7420667573652073616d65204e534d60601b60448201526064016106da565b6011546040516331a9108f60e11b8152600481018690526101009091046001600160a01b031690636352211e9060240160206040518083038186803b158015610e9257600080fd5b505afa158015610ea6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eca9190612228565b6001600160a01b0316336001600160a01b0316148015610f7a57506011546040516331a9108f60e11b8152600481018590526101009091046001600160a01b031690636352211e9060240160206040518083038186803b158015610f2d57600080fd5b505afa158015610f41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f659190612228565b6001600160a01b0316336001600160a01b0316145b610fc65760405162461bcd60e51b815260206004820152601860248201527f596f7520646f206e6f74206f776e207468657365204e534d000000000000000060448201526064016106da565b6012546040516370a0823160e01b815233600482015282916001600160a01b0316906370a082319060240160206040518083038186803b15801561100957600080fd5b505afa15801561101d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110419190612457565b101561107b5760405162461bcd60e51b815260206004820152600960248201526809cde40cadcdeeaced60bb1b60448201526064016106da565b601254600a546040516323b872dd60e01b81523360048201526001600160a01b039182166024820152604481018490529116906323b872dd90606401600060405180830381600087803b1580156110d157600080fd5b505af11580156110e5573d6000803e3d6000fd5b505050506110f333836119dd565b81600b600082825461110591906126f8565b9091555050600160095550505050565b6008546001600160a01b0316331461113f5760405162461bcd60e51b81526004016106da90612645565b80516106f690600f9060208401906120e9565b6008546001600160a01b0316331461117c5760405162461bcd60e51b81526004016106da90612645565b6011805460ff1916911515919091179055565b600061119a826119f7565b5192915050565b60006001600160a01b03821661120d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106da565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b0316331461125c5760405162461bcd60e51b81526004016106da90612645565b6112666000611ba1565b565b6008546001600160a01b031633146112925760405162461bcd60e51b81526004016106da90612645565b600c55565b606060028054610709906127c5565b6001600160a01b0382163314156112ff5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106da565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611376848484611655565b61138284848484611bf3565b61139e5760405162461bcd60e51b81526004016106da9061267a565b50505050565b60606113b1826000541190565b6113ef5760405162461bcd60e51b815260206004820152600f60248201526e151bdad95b881b9bdd08195e1a5cdd608a1b60448201526064016106da565b6113f7611d01565b61140083611d10565b6010604051602001611414939291906124ed565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146114545760405162461bcd60e51b81526004016106da90612645565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b031633146114a05760405162461bcd60e51b81526004016106da90612645565b600e54600b546114b090846126f8565b11156114ed5760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265204e46547360a01b60448201526064016106da565b6114f781836119dd565b81600b600082825461150991906126f8565b90915550505050565b6008546001600160a01b0316331461153c5760405162461bcd60e51b81526004016106da90612645565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b031633146115885760405162461bcd60e51b81526004016106da90612645565b6001600160a01b0381166115ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106da565b6115f681611ba1565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611660826119f7565b80519091506000906001600160a01b0316336001600160a01b0316148061169757503361168c8461078c565b6001600160a01b0316145b806116a9575081516116a990336105f5565b9050806117135760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106da565b846001600160a01b031682600001516001600160a01b0316146117875760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106da565b6001600160a01b0384166117eb5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106da565b6117fb60008484600001516115f9565b6001600160a01b038516600090815260046020526040812080546001929061182d9084906001600160801b0316612743565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611879918591166126cd565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556119018460016126f8565b6000818152600360205260409020549091506001600160a01b03166119935761192b816000541190565b156119935760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6106f6828260405180602001604052806000815250611e0e565b6040805180820190915260008082526020820152611a16826000541190565b611a755760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106da565b60007f00000000000000000000000000000000000000000000000000000000000000008310611ad657611ac87f00000000000000000000000000000000000000000000000000000000000000008461276b565b611ad39060016126f8565b90505b825b818110611b40576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b2d57949350505050565b5080611b38816127ae565b915050611ad8565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106da565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611cf557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c379033908990889088906004016125b1565b602060405180830381600087803b158015611c5157600080fd5b505af1925050508015611c81575060408051601f3d908101601f19168201909252611c7e918101906123d8565b60015b611cdb573d808015611caf576040519150601f19603f3d011682016040523d82523d6000602084013e611cb4565b606091505b508051611cd35760405162461bcd60e51b81526004016106da9061267a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cf9565b5060015b949350505050565b6060600f8054610709906127c5565b606081611d345750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d5e5780611d4881612800565b9150611d579050600a83612710565b9150611d38565b60008167ffffffffffffffff811115611d7957611d79612871565b6040519080825280601f01601f191660200182016040528015611da3576020820181803683370190505b5090505b8415611cf957611db860018361276b565b9150611dc5600a8661281b565b611dd09060306126f8565b60f81b818381518110611de557611de561285b565b60200101906001600160f81b031916908160001a905350611e07600a86612710565b9450611da7565b6000546001600160a01b038416611e715760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106da565b611e7c816000541190565b15611ec95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106da565b7f0000000000000000000000000000000000000000000000000000000000000000831115611f445760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106da565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fa09087906126cd565b6001600160801b03168152602001858360200151611fbe91906126cd565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156120de5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120a26000888488611bf3565b6120be5760405162461bcd60e51b81526004016106da9061267a565b816120c881612800565b92505080806120d690612800565b915050612055565b5060008190556119d5565b8280546120f5906127c5565b90600052602060002090601f016020900481019282612117576000855561215d565b82601f1061213057805160ff191683800117855561215d565b8280016001018555821561215d579182015b8281111561215d578251825591602001919060010190612142565b50610cc29291505b80821115610cc25760008155600101612165565b600067ffffffffffffffff8084111561219457612194612871565b604051601f8501601f19908116603f011681019082821181831017156121bc576121bc612871565b816040528093508581528686860111156121d557600080fd5b858560208301376000602087830101525050509392505050565b803580151581146121ff57600080fd5b919050565b60006020828403121561221657600080fd5b813561222181612887565b9392505050565b60006020828403121561223a57600080fd5b815161222181612887565b6000806040838503121561225857600080fd5b823561226381612887565b9150602083013561227381612887565b809150509250929050565b60008060006060848603121561229357600080fd5b833561229e81612887565b925060208401356122ae81612887565b929592945050506040919091013590565b600080600080608085870312156122d557600080fd5b84356122e081612887565b935060208501356122f081612887565b925060408501359150606085013567ffffffffffffffff81111561231357600080fd5b8501601f8101871361232457600080fd5b61233387823560208401612179565b91505092959194509250565b6000806040838503121561235257600080fd5b823561235d81612887565b915061236b602084016121ef565b90509250929050565b6000806040838503121561238757600080fd5b823561239281612887565b946020939093013593505050565b6000602082840312156123b257600080fd5b612221826121ef565b6000602082840312156123cd57600080fd5b81356122218161289c565b6000602082840312156123ea57600080fd5b81516122218161289c565b60006020828403121561240757600080fd5b813567ffffffffffffffff81111561241e57600080fd5b8201601f8101841361242f57600080fd5b611cf984823560208401612179565b60006020828403121561245057600080fd5b5035919050565b60006020828403121561246957600080fd5b5051919050565b6000806040838503121561248357600080fd5b82359150602083013561227381612887565b6000806000606084860312156124aa57600080fd5b505081359360208301359350604090920135919050565b600081518084526124d9816020860160208601612782565b601f01601f19169290920160200192915050565b6000845160206125008285838a01612782565b8551918401916125138184848a01612782565b8554920191600090600181811c908083168061253057607f831692505b85831081141561254e57634e487b7160e01b85526022600452602485fd5b8080156125625760018114612573576125a0565b60ff198516885283880195506125a0565b60008b81526020902060005b858110156125985781548a82015290840190880161257f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125e4908301846124c1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126265783518352928401929184019160010161260a565b50909695505050505050565b60208152600061222160208301846124c1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156126ef576126ef61282f565b01949350505050565b6000821982111561270b5761270b61282f565b500190565b60008261271f5761271f612845565b500490565b600081600019048311821515161561273e5761273e61282f565b500290565b60006001600160801b03838116908316818110156127635761276361282f565b039392505050565b60008282101561277d5761277d61282f565b500390565b60005b8381101561279d578181015183820152602001612785565b8381111561139e5750506000910152565b6000816127bd576127bd61282f565b506000190190565b600181811c908216806127d957607f821691505b602082108114156127fa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128145761281461282f565b5060010190565b60008261282a5761282a612845565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146115f657600080fd5b6001600160e01b0319811681146115f657600080fdfea2646970667358221220f1d6047d226355a834d93fb5d5b1a4fca9bf01df0c5e3240955078374c68347e64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80636352211e1161010d578063b88d4fde116100a0578063d52c57e01161006f578063d52c57e014610584578063d7224ba0146105a4578063d95edafe146105ba578063e985e9c5146105da578063f2fde38b1461062357600080fd5b8063b88d4fde1461050e578063bf1f577b1461052e578063c87b56dd14610544578063cd989d2d1461056457600080fd5b80638da5cb5b116100dc5780638da5cb5b1461049b57806391b7f5ed146104b957806395d89b41146104d9578063a22cb465146104ee57600080fd5b80636352211e146104305780636817c76c1461045057806370a0823114610466578063715018a61461048657600080fd5b80632f745c59116101905780634e6c52b81161015f5780634e6c52b81461039d5780634f6ccce7146103bd578063500dbdb8146103dd57806355f804b3146103f05780635aca1bb61461041057600080fd5b80632f745c59146103285780633ccfd60b1461034857806342842e0e14610350578063438b63001461037057600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806318160ddd146102cf57806323b872dd146102ee5780632ab91bba1461030e57600080fd5b806301ffc9a7146101fe57806302ffaed11461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e6102193660046123bb565b610643565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e3660046123f5565b6106b0565b005b34801561026157600080fd5b5061026a6106fa565b60405161022a9190612632565b34801561028357600080fd5b5061029761029236600461243e565b61078c565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004612374565b610817565b3480156102db57600080fd5b506000545b60405190815260200161022a565b3480156102fa57600080fd5b5061025361030936600461227e565b61092f565b34801561031a57600080fd5b5060115461021e9060ff1681565b34801561033457600080fd5b506102e0610343366004612374565b61093a565b610253610aa8565b34801561035c57600080fd5b5061025361036b36600461227e565b610b55565b34801561037c57600080fd5b5061039061038b366004612204565b610b70565b60405161022a91906125ee565b3480156103a957600080fd5b506102536103b8366004612204565b610c12565b3480156103c957600080fd5b506102e06103d836600461243e565b610c64565b6102536103eb366004612495565b610cc6565b3480156103fc57600080fd5b5061025361040b3660046123f5565b611115565b34801561041c57600080fd5b5061025361042b3660046123a0565b611152565b34801561043c57600080fd5b5061029761044b36600461243e565b61118f565b34801561045c57600080fd5b506102e0600c5481565b34801561047257600080fd5b506102e0610481366004612204565b6111a1565b34801561049257600080fd5b50610253611232565b3480156104a757600080fd5b506008546001600160a01b0316610297565b3480156104c557600080fd5b506102536104d436600461243e565b611268565b3480156104e557600080fd5b5061026a611297565b3480156104fa57600080fd5b5061025361050936600461233f565b6112a6565b34801561051a57600080fd5b506102536105293660046122bf565b61136b565b34801561053a57600080fd5b506102e0600b5481565b34801561055057600080fd5b5061026a61055f36600461243e565b6113a4565b34801561057057600080fd5b5061025361057f366004612204565b61142a565b34801561059057600080fd5b5061025361059f366004612470565b611476565b3480156105b057600080fd5b506102e060075481565b3480156105c657600080fd5b506102536105d5366004612204565b611512565b3480156105e657600080fd5b5061021e6105f5366004612245565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561062f57600080fd5b5061025361063e366004612204565b61155e565b60006001600160e01b031982166380ac58cd60e01b148061067457506001600160e01b03198216635b5e139f60e01b145b8061068f57506001600160e01b0319821663780e9d6360e01b145b806106aa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106e35760405162461bcd60e51b81526004016106da90612645565b60405180910390fd5b80516106f69060109060208401906120e9565b5050565b606060018054610709906127c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610735906127c5565b80156107825780601f1061075757610100808354040283529160200191610782565b820191906000526020600020905b81548152906001019060200180831161076557829003601f168201915b5050505050905090565b6000610799826000541190565b6107fb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016106da565b506000908152600560205260409020546001600160a01b031690565b60006108228261118f565b9050806001600160a01b0316836001600160a01b031614156108915760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106da565b336001600160a01b03821614806108ad57506108ad81336105f5565b61091f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106da565b61092a8383836115f9565b505050565b61092a838383611655565b6000610945836111a1565b821061099e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106da565b600080549080805b83811015610a48576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109f957805192505b876001600160a01b0316836001600160a01b03161415610a355786841415610a27575093506106aa92505050565b83610a3181612800565b9450505b5080610a4081612800565b9150506109a6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106da565b6008546001600160a01b03163314610ad25760405162461bcd60e51b81526004016106da90612645565b60026009541415610b255760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106da565b600260095560405133904780156108fc02916000818181858888f19350505050610b4e57600080fd5b6001600955565b61092a8383836040518060200160405280600081525061136b565b60606000610b7d836111a1565b905060008167ffffffffffffffff811115610b9a57610b9a612871565b604051908082528060200260200182016040528015610bc3578160200160208202803683370190505b50905060005b82811015610c0a57610bdb858261093a565b828281518110610bed57610bed61285b565b602090810291909101015280610c0281612800565b915050610bc9565b509392505050565b6008546001600160a01b03163314610c3c5760405162461bcd60e51b81526004016106da90612645565b601180546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600080548210610cc25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106da565b5090565b60026009541415610d195760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106da565b6002600955600c54600090610d2f908390612724565b60115490915060ff16610d725760405162461bcd60e51b815260206004820152600b60248201526a199d5cd9481c185d5cd95960aa1b60448201526064016106da565b81600d541015610db65760405162461bcd60e51b815260206004820152600f60248201526e1b585e08199d5cd948185b5bdd5b9d608a1b60448201526064016106da565b600e54600b54610dc690846126f8565b1115610e035760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265204e46547360a01b60448201526064016106da565b82841415610e4a5760405162461bcd60e51b815260206004820152601460248201527343616e6e6f7420667573652073616d65204e534d60601b60448201526064016106da565b6011546040516331a9108f60e11b8152600481018690526101009091046001600160a01b031690636352211e9060240160206040518083038186803b158015610e9257600080fd5b505afa158015610ea6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eca9190612228565b6001600160a01b0316336001600160a01b0316148015610f7a57506011546040516331a9108f60e11b8152600481018590526101009091046001600160a01b031690636352211e9060240160206040518083038186803b158015610f2d57600080fd5b505afa158015610f41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f659190612228565b6001600160a01b0316336001600160a01b0316145b610fc65760405162461bcd60e51b815260206004820152601860248201527f596f7520646f206e6f74206f776e207468657365204e534d000000000000000060448201526064016106da565b6012546040516370a0823160e01b815233600482015282916001600160a01b0316906370a082319060240160206040518083038186803b15801561100957600080fd5b505afa15801561101d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110419190612457565b101561107b5760405162461bcd60e51b815260206004820152600960248201526809cde40cadcdeeaced60bb1b60448201526064016106da565b601254600a546040516323b872dd60e01b81523360048201526001600160a01b039182166024820152604481018490529116906323b872dd90606401600060405180830381600087803b1580156110d157600080fd5b505af11580156110e5573d6000803e3d6000fd5b505050506110f333836119dd565b81600b600082825461110591906126f8565b9091555050600160095550505050565b6008546001600160a01b0316331461113f5760405162461bcd60e51b81526004016106da90612645565b80516106f690600f9060208401906120e9565b6008546001600160a01b0316331461117c5760405162461bcd60e51b81526004016106da90612645565b6011805460ff1916911515919091179055565b600061119a826119f7565b5192915050565b60006001600160a01b03821661120d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106da565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b0316331461125c5760405162461bcd60e51b81526004016106da90612645565b6112666000611ba1565b565b6008546001600160a01b031633146112925760405162461bcd60e51b81526004016106da90612645565b600c55565b606060028054610709906127c5565b6001600160a01b0382163314156112ff5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106da565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611376848484611655565b61138284848484611bf3565b61139e5760405162461bcd60e51b81526004016106da9061267a565b50505050565b60606113b1826000541190565b6113ef5760405162461bcd60e51b815260206004820152600f60248201526e151bdad95b881b9bdd08195e1a5cdd608a1b60448201526064016106da565b6113f7611d01565b61140083611d10565b6010604051602001611414939291906124ed565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146114545760405162461bcd60e51b81526004016106da90612645565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b031633146114a05760405162461bcd60e51b81526004016106da90612645565b600e54600b546114b090846126f8565b11156114ed5760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265204e46547360a01b60448201526064016106da565b6114f781836119dd565b81600b600082825461150991906126f8565b90915550505050565b6008546001600160a01b0316331461153c5760405162461bcd60e51b81526004016106da90612645565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b031633146115885760405162461bcd60e51b81526004016106da90612645565b6001600160a01b0381166115ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106da565b6115f681611ba1565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611660826119f7565b80519091506000906001600160a01b0316336001600160a01b0316148061169757503361168c8461078c565b6001600160a01b0316145b806116a9575081516116a990336105f5565b9050806117135760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106da565b846001600160a01b031682600001516001600160a01b0316146117875760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106da565b6001600160a01b0384166117eb5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106da565b6117fb60008484600001516115f9565b6001600160a01b038516600090815260046020526040812080546001929061182d9084906001600160801b0316612743565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611879918591166126cd565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556119018460016126f8565b6000818152600360205260409020549091506001600160a01b03166119935761192b816000541190565b156119935760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6106f6828260405180602001604052806000815250611e0e565b6040805180820190915260008082526020820152611a16826000541190565b611a755760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106da565b60007f000000000000000000000000000000000000000000000000000000000000003f8310611ad657611ac87f000000000000000000000000000000000000000000000000000000000000003f8461276b565b611ad39060016126f8565b90505b825b818110611b40576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b2d57949350505050565b5080611b38816127ae565b915050611ad8565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106da565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611cf557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c379033908990889088906004016125b1565b602060405180830381600087803b158015611c5157600080fd5b505af1925050508015611c81575060408051601f3d908101601f19168201909252611c7e918101906123d8565b60015b611cdb573d808015611caf576040519150601f19603f3d011682016040523d82523d6000602084013e611cb4565b606091505b508051611cd35760405162461bcd60e51b81526004016106da9061267a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cf9565b5060015b949350505050565b6060600f8054610709906127c5565b606081611d345750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d5e5780611d4881612800565b9150611d579050600a83612710565b9150611d38565b60008167ffffffffffffffff811115611d7957611d79612871565b6040519080825280601f01601f191660200182016040528015611da3576020820181803683370190505b5090505b8415611cf957611db860018361276b565b9150611dc5600a8661281b565b611dd09060306126f8565b60f81b818381518110611de557611de561285b565b60200101906001600160f81b031916908160001a905350611e07600a86612710565b9450611da7565b6000546001600160a01b038416611e715760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106da565b611e7c816000541190565b15611ec95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106da565b7f000000000000000000000000000000000000000000000000000000000000003f831115611f445760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106da565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fa09087906126cd565b6001600160801b03168152602001858360200151611fbe91906126cd565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156120de5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120a26000888488611bf3565b6120be5760405162461bcd60e51b81526004016106da9061267a565b816120c881612800565b92505080806120d690612800565b915050612055565b5060008190556119d5565b8280546120f5906127c5565b90600052602060002090601f016020900481019282612117576000855561215d565b82601f1061213057805160ff191683800117855561215d565b8280016001018555821561215d579182015b8281111561215d578251825591602001919060010190612142565b50610cc29291505b80821115610cc25760008155600101612165565b600067ffffffffffffffff8084111561219457612194612871565b604051601f8501601f19908116603f011681019082821181831017156121bc576121bc612871565b816040528093508581528686860111156121d557600080fd5b858560208301376000602087830101525050509392505050565b803580151581146121ff57600080fd5b919050565b60006020828403121561221657600080fd5b813561222181612887565b9392505050565b60006020828403121561223a57600080fd5b815161222181612887565b6000806040838503121561225857600080fd5b823561226381612887565b9150602083013561227381612887565b809150509250929050565b60008060006060848603121561229357600080fd5b833561229e81612887565b925060208401356122ae81612887565b929592945050506040919091013590565b600080600080608085870312156122d557600080fd5b84356122e081612887565b935060208501356122f081612887565b925060408501359150606085013567ffffffffffffffff81111561231357600080fd5b8501601f8101871361232457600080fd5b61233387823560208401612179565b91505092959194509250565b6000806040838503121561235257600080fd5b823561235d81612887565b915061236b602084016121ef565b90509250929050565b6000806040838503121561238757600080fd5b823561239281612887565b946020939093013593505050565b6000602082840312156123b257600080fd5b612221826121ef565b6000602082840312156123cd57600080fd5b81356122218161289c565b6000602082840312156123ea57600080fd5b81516122218161289c565b60006020828403121561240757600080fd5b813567ffffffffffffffff81111561241e57600080fd5b8201601f8101841361242f57600080fd5b611cf984823560208401612179565b60006020828403121561245057600080fd5b5035919050565b60006020828403121561246957600080fd5b5051919050565b6000806040838503121561248357600080fd5b82359150602083013561227381612887565b6000806000606084860312156124aa57600080fd5b505081359360208301359350604090920135919050565b600081518084526124d9816020860160208601612782565b601f01601f19169290920160200192915050565b6000845160206125008285838a01612782565b8551918401916125138184848a01612782565b8554920191600090600181811c908083168061253057607f831692505b85831081141561254e57634e487b7160e01b85526022600452602485fd5b8080156125625760018114612573576125a0565b60ff198516885283880195506125a0565b60008b81526020902060005b858110156125985781548a82015290840190880161257f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125e4908301846124c1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126265783518352928401929184019160010161260a565b50909695505050505050565b60208152600061222160208301846124c1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156126ef576126ef61282f565b01949350505050565b6000821982111561270b5761270b61282f565b500190565b60008261271f5761271f612845565b500490565b600081600019048311821515161561273e5761273e61282f565b500290565b60006001600160801b03838116908316818110156127635761276361282f565b039392505050565b60008282101561277d5761277d61282f565b500390565b60005b8381101561279d578181015183820152602001612785565b8381111561139e5750506000910152565b6000816127bd576127bd61282f565b506000190190565b600181811c908216806127d957607f821691505b602082108114156127fa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128145761281461282f565b5060010190565b60008261282a5761282a612845565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146115f657600080fd5b6001600160e01b0319811681146115f657600080fdfea2646970667358221220f1d6047d226355a834d93fb5d5b1a4fca9bf01df0c5e3240955078374c68347e64736f6c63430008070033
Deployed Bytecode Sourcemap
42847:3179:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30171:370;;;;;;;;;;-1:-1:-1;30171:370:0;;;;;:::i;:::-;;:::i;:::-;;;9452:14:1;;9445:22;9427:41;;9415:2;9400:18;30171:370:0;;;;;;;;45031:108;;;;;;;;;;-1:-1:-1;45031:108:0;;;;;:::i;:::-;;:::i;:::-;;31897:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33422:204::-;;;;;;;;;;-1:-1:-1;33422:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7733:32:1;;;7715:51;;7703:2;7688:18;33422:204:0;7569:203:1;32985:379:0;;;;;;;;;;-1:-1:-1;32985:379:0;;;;;:::i;:::-;;:::i;28732:94::-;;;;;;;;;;-1:-1:-1;28785:7:0;28808:12;28732:94;;;20259:25:1;;;20247:2;20232:18;28732:94:0;20113:177:1;34272:142:0;;;;;;;;;;-1:-1:-1;34272:142:0;;;;;:::i;:::-;;:::i;43183:37::-;;;;;;;;;;-1:-1:-1;43183:37:0;;;;;;;;29363:744;;;;;;;;;;-1:-1:-1;29363:744:0;;;;;:::i;:::-;;:::i;45520:133::-;;;:::i;34477:157::-;;;;;;;;;;-1:-1:-1;34477:157:0;;;;;:::i;:::-;;:::i;45661:362::-;;;;;;;;;;-1:-1:-1;45661:362:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44401:95::-;;;;;;;;;;-1:-1:-1;44401:95:0;;;;;:::i;:::-;;:::i;28895:177::-;;;;;;;;;;-1:-1:-1;28895:177:0;;;;;:::i;:::-;;:::i;43649:744::-;;;;;;:::i;:::-;;:::i;44927:96::-;;;;;;;;;;-1:-1:-1;44927:96:0;;;;;:::i;:::-;;:::i;44821:98::-;;;;;;;;;;-1:-1:-1;44821:98:0;;;;;:::i;:::-;;:::i;31720:118::-;;;;;;;;;;-1:-1:-1;31720:118:0;;;;;:::i;:::-;;:::i;42982:36::-;;;;;;;;;;;;;;;;30597:211;;;;;;;;;;-1:-1:-1;30597:211:0;;;;;:::i;:::-;;:::i;7388:103::-;;;;;;;;;;;;;:::i;6737:87::-;;;;;;;;;;-1:-1:-1;6810:6:0;;-1:-1:-1;;;;;6810:6:0;6737:87;;44719:94;;;;;;;;;;-1:-1:-1;44719:94:0;;;;;:::i;:::-;;:::i;32052:98::-;;;;;;;;;;;;;:::i;33690:274::-;;;;;;;;;;-1:-1:-1;33690:274:0;;;;;:::i;:::-;;:::i;34697:311::-;;;;;;;;;;-1:-1:-1;34697:311:0;;;;;:::i;:::-;;:::i;42947:28::-;;;;;;;;;;;;;;;;45256:256;;;;;;;;;;-1:-1:-1;45256:256:0;;;;;:::i;:::-;;:::i;44504:96::-;;;;;;;;;;-1:-1:-1;44504:96:0;;;;;:::i;:::-;;:::i;43406:235::-;;;;;;;;;;-1:-1:-1;43406:235:0;;;;;:::i;:::-;;:::i;39112:43::-;;;;;;;;;;;;;;;;44608:103;;;;;;;;;;-1:-1:-1;44608:103:0;;;;;:::i;:::-;;:::i;34027:186::-;;;;;;;;;;-1:-1:-1;34027:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;34172:25:0;;;34149:4;34172:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34027:186;7646:201;;;;;;;;;;-1:-1:-1;7646:201:0;;;;;:::i;:::-;;:::i;30171:370::-;30298:4;-1:-1:-1;;;;;;30328:40:0;;-1:-1:-1;;;30328:40:0;;:99;;-1:-1:-1;;;;;;;30379:48:0;;-1:-1:-1;;;30379:48:0;30328:99;:160;;;-1:-1:-1;;;;;;;30438:50:0;;-1:-1:-1;;;30438:50:0;30328:160;:207;;;-1:-1:-1;;;;;;;;;;19626:40:0;;;30499:36;30314:221;30171:370;-1:-1:-1;;30171:370:0:o;45031:108::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;;;;;;;;;45108:23;;::::1;::::0;:16:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45031:108:::0;:::o;31897:94::-;31951:13;31980:5;31973:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31897:94;:::o;33422:204::-;33490:7;33514:16;33522:7;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;33514:16;33506:74;;;;-1:-1:-1;;;33506:74:0;;19498:2:1;33506:74:0;;;19480:21:1;19537:2;19517:18;;;19510:30;19576:34;19556:18;;;19549:62;-1:-1:-1;;;19627:18:1;;;19620:43;19680:19;;33506:74:0;19296:409:1;33506:74:0;-1:-1:-1;33596:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33596:24:0;;33422:204::o;32985:379::-;33054:13;33070:24;33086:7;33070:15;:24::i;:::-;33054:40;;33115:5;-1:-1:-1;;;;;33109:11:0;:2;-1:-1:-1;;;;;33109:11:0;;;33101:58;;;;-1:-1:-1;;;33101:58:0;;15687:2:1;33101:58:0;;;15669:21:1;15726:2;15706:18;;;15699:30;15765:34;15745:18;;;15738:62;-1:-1:-1;;;15816:18:1;;;15809:32;15858:19;;33101:58:0;15485:398:1;33101:58:0;5545:10;-1:-1:-1;;;;;33184:21:0;;;;:62;;-1:-1:-1;33209:37:0;33226:5;5545:10;34027:186;:::i;33209:37::-;33168:153;;;;-1:-1:-1;;;33168:153:0;;12629:2:1;33168:153:0;;;12611:21:1;12668:2;12648:18;;;12641:30;12707:34;12687:18;;;12680:62;12778:27;12758:18;;;12751:55;12823:19;;33168:153:0;12427:421:1;33168:153:0;33330:28;33339:2;33343:7;33352:5;33330:8;:28::i;:::-;33047:317;32985:379;;:::o;34272:142::-;34380:28;34390:4;34396:2;34400:7;34380:9;:28::i;29363:744::-;29472:7;29507:16;29517:5;29507:9;:16::i;:::-;29499:5;:24;29491:71;;;;-1:-1:-1;;;29491:71:0;;9905:2:1;29491:71:0;;;9887:21:1;9944:2;9924:18;;;9917:30;9983:34;9963:18;;;9956:62;-1:-1:-1;;;10034:18:1;;;10027:32;10076:19;;29491:71:0;9703:398:1;29491:71:0;29569:22;28808:12;;;29569:22;;29689:350;29713:14;29709:1;:18;29689:350;;;29743:31;29777:14;;;:11;:14;;;;;;;;;29743:48;;;;;;;;;-1:-1:-1;;;;;29743:48:0;;;;;-1:-1:-1;;;29743:48:0;;;;;;;;;;;;29804:28;29800:89;;29865:14;;;-1:-1:-1;29800:89:0;29922:5;-1:-1:-1;;;;;29901:26:0;:17;-1:-1:-1;;;;;29901:26:0;;29897:135;;;29959:5;29944:11;:20;29940:59;;;-1:-1:-1;29986:1:0;-1:-1:-1;29979:8:0;;-1:-1:-1;;;29979:8:0;29940:59;30009:13;;;;:::i;:::-;;;;29897:135;-1:-1:-1;29729:3:0;;;;:::i;:::-;;;;29689:350;;;-1:-1:-1;30045:56:0;;-1:-1:-1;;;30045:56:0;;17958:2:1;30045:56:0;;;17940:21:1;17997:2;17977:18;;;17970:30;18036:34;18016:18;;;18009:62;-1:-1:-1;;;18087:18:1;;;18080:44;18141:19;;30045:56:0;17756:410:1;45520:133:0;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;1719:1:::1;2317:7;;:19;;2309:63;;;::::0;-1:-1:-1;;;2309:63:0;;18722:2:1;2309:63:0::1;::::0;::::1;18704:21:1::0;18761:2;18741:18;;;18734:30;18800:33;18780:18;;;18773:61;18851:18;;2309:63:0::1;18520:355:1::0;2309:63:0::1;1719:1;2450:7;:18:::0;45597:47:::2;::::0;45605:10:::2;::::0;45622:21:::2;45597:47:::0;::::2;;;::::0;::::2;::::0;;;45622:21;45605:10;45597:47;::::2;;;;;;45589:56;;;::::0;::::2;;1675:1:::1;2629:7;:22:::0;45520:133::o;34477:157::-;34589:39;34606:4;34612:2;34616:7;34589:39;;;;;;;;;;;;:16;:39::i;45661:362::-;45723:16;45752:23;45778:19;45788:8;45778:9;:19::i;:::-;45752:45;;45808:25;45850:15;45836:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45836:30:0;;45808:58;;45882:9;45877:113;45897:15;45893:1;:19;45877:113;;;45946:32;45966:8;45976:1;45946:19;:32::i;:::-;45932:8;45941:1;45932:11;;;;;;;;:::i;:::-;;;;;;;;;;:46;45914:3;;;;:::i;:::-;;;;45877:113;;;-1:-1:-1;46007:8:0;45661:362;-1:-1:-1;;;45661:362:0:o;44401:95::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;44465:3:::1;:23:::0;;-1:-1:-1;;;;;44465:23:0;;::::1;;;-1:-1:-1::0;;;;;;44465:23:0;;::::1;::::0;;;::::1;::::0;;44401:95::o;28895:177::-;28962:7;28808:12;;28986:5;:21;28978:69;;;;-1:-1:-1;;;28978:69:0;;11819:2:1;28978:69:0;;;11801:21:1;11858:2;11838:18;;;11831:30;11897:34;11877:18;;;11870:62;-1:-1:-1;;;11948:18:1;;;11941:33;11991:19;;28978:69:0;11617:399:1;28978:69:0;-1:-1:-1;29061:5:0;28895:177::o;43649:744::-;1719:1;2317:7;;:19;;2309:63;;;;-1:-1:-1;;;2309:63:0;;18722:2:1;2309:63:0;;;18704:21:1;18761:2;18741:18;;;18734:30;18800:33;18780:18;;;18773:61;18851:18;;2309:63:0;18520:355:1;2309:63:0;1719:1;2450:7;:18;43771:9:::1;::::0;43751:17:::1;::::0;43771:19:::1;::::0;43783:7;;43771:19:::1;:::i;:::-;43809:17;::::0;43751:39;;-1:-1:-1;43809:17:0::1;;43801:41;;;::::0;-1:-1:-1;;;43801:41:0;;10308:2:1;43801:41:0::1;::::0;::::1;10290:21:1::0;10347:2;10327:18;;;10320:30;-1:-1:-1;;;10366:18:1;;;10359:41;10417:18;;43801:41:0::1;10106:335:1::0;43801:41:0::1;43878:7;43861:13;;:24;;43853:52;;;::::0;-1:-1:-1;;;43853:52:0;;16868:2:1;43853:52:0::1;::::0;::::1;16850:21:1::0;16907:2;16887:18;;;16880:30;-1:-1:-1;;;16926:18:1;;;16919:45;16981:18;;43853:52:0::1;16666:339:1::0;43853:52:0::1;43954:12;::::0;43935:13:::1;::::0;43925:23:::1;::::0;:7;:23:::1;:::i;:::-;43924:43;;43916:68;;;::::0;-1:-1:-1;;;43916:68:0;;15346:2:1;43916:68:0::1;::::0;::::1;15328:21:1::0;15385:2;15365:18;;;15358:30;-1:-1:-1;;;15404:18:1;;;15397:42;15456:18;;43916:68:0::1;15144:336:1::0;43916:68:0::1;44012:5;44003;:14;;43995:47;;;::::0;-1:-1:-1;;;43995:47:0;;18373:2:1;43995:47:0::1;::::0;::::1;18355:21:1::0;18412:2;18392:18;;;18385:30;-1:-1:-1;;;18431:18:1;;;18424:50;18491:18;;43995:47:0::1;18171:344:1::0;43995:47:0::1;44075:3;::::0;:18:::1;::::0;-1:-1:-1;;;44075:18:0;;::::1;::::0;::::1;20259:25:1::0;;;44075:3:0::1;::::0;;::::1;-1:-1:-1::0;;;;;44075:3:0::1;::::0;:11:::1;::::0;20232:18:1;;44075::0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44061:32:0::1;:10;-1:-1:-1::0;;;;;44061:32:0::1;;:68;;;;-1:-1:-1::0;44111:3:0::1;::::0;:18:::1;::::0;-1:-1:-1;;;44111:18:0;;::::1;::::0;::::1;20259:25:1::0;;;44111:3:0::1;::::0;;::::1;-1:-1:-1::0;;;;;44111:3:0::1;::::0;:11:::1;::::0;20232:18:1;;44111::0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44097:32:0::1;:10;-1:-1:-1::0;;;;;44097:32:0::1;;44061:68;44053:105;;;::::0;-1:-1:-1;;;44053:105:0;;11466:2:1;44053:105:0::1;::::0;::::1;11448:21:1::0;11505:2;11485:18;;;11478:30;11544:26;11524:18;;;11517:54;11588:18;;44053:105:0::1;11264:348:1::0;44053:105:0::1;44177:10;::::0;:32:::1;::::0;-1:-1:-1;;;44177:32:0;;44198:10:::1;44177:32;::::0;::::1;7715:51:1::0;44213:9:0;;-1:-1:-1;;;;;44177:10:0::1;::::0;:20:::1;::::0;7688:18:1;;44177:32:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:45;;44169:67;;;::::0;-1:-1:-1;;;44169:67:0;;13055:2:1;44169:67:0::1;::::0;::::1;13037:21:1::0;13094:1;13074:18;;;13067:29;-1:-1:-1;;;13112:18:1;;;13105:39;13161:18;;44169:67:0::1;12853:332:1::0;44169:67:0::1;44249:10;::::0;44285:12:::1;::::0;44249:60:::1;::::0;-1:-1:-1;;;44249:60:0;;44273:10:::1;44249:60;::::0;::::1;8017:34:1::0;-1:-1:-1;;;;;44285:12:0;;::::1;8067:18:1::0;;;8060:43;8119:18;;;8112:34;;;44249:10:0;::::1;::::0;:23:::1;::::0;7952:18:1;;44249:60:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;44320:30;44330:10;44342:7;44320:9;:30::i;:::-;44378:7;44361:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1675:1:0;2629:7;:22;-1:-1:-1;;;;43649:744:0:o;44927:96::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;44995:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;44821:98::-:0;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;44886:17:::1;:25:::0;;-1:-1:-1;;44886:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44821:98::o;31720:118::-;31784:7;31807:20;31819:7;31807:11;:20::i;:::-;:25;;31720:118;-1:-1:-1;;31720:118:0:o;30597:211::-;30661:7;-1:-1:-1;;;;;30685:19:0;;30677:75;;;;-1:-1:-1;;;30677:75:0;;13392:2:1;30677:75:0;;;13374:21:1;13431:2;13411:18;;;13404:30;13470:34;13450:18;;;13443:62;-1:-1:-1;;;13521:18:1;;;13514:41;13572:19;;30677:75:0;13190:407:1;30677:75:0;-1:-1:-1;;;;;;30774:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30774:27:0;;30597:211::o;7388:103::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;7453:30:::1;7480:1;7453:18;:30::i;:::-;7388:103::o:0;44719:94::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;44785:9:::1;:20:::0;44719:94::o;32052:98::-;32108:13;32137:7;32130:14;;;;;:::i;33690:274::-;-1:-1:-1;;;;;33781:24:0;;5545:10;33781:24;;33773:63;;;;-1:-1:-1;;;33773:63:0;;14572:2:1;33773:63:0;;;14554:21:1;14611:2;14591:18;;;14584:30;14650:28;14630:18;;;14623:56;14696:18;;33773:63:0;14370:350:1;33773:63:0;5545:10;33845:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33845:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33845:53:0;;;;;;;;;;33910:48;;9427:41:1;;;33845:42:0;;5545:10;33910:48;;9400:18:1;33910:48:0;;;;;;;33690:274;;:::o;34697:311::-;34834:28;34844:4;34850:2;34854:7;34834:9;:28::i;:::-;34885:48;34908:4;34914:2;34918:7;34927:5;34885:22;:48::i;:::-;34869:133;;;;-1:-1:-1;;;34869:133:0;;;;;;;:::i;:::-;34697:311;;;;:::o;45256:256::-;45329:13;45363:16;45371:7;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;45363:16;45355:44;;;;-1:-1:-1;;;45355:44:0;;17614:2:1;45355:44:0;;;17596:21:1;17653:2;17633:18;;;17626:30;-1:-1:-1;;;17672:18:1;;;17665:45;17727:18;;45355:44:0;17412:339:1;45355:44:0;45441:16;:14;:16::i;:::-;45459:25;45476:7;45459:16;:25::i;:::-;45486:16;45424:79;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45410:94;;45256:256;;;:::o;44504:96::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;44569:12:::1;:23:::0;;-1:-1:-1;;;;;;44569:23:0::1;-1:-1:-1::0;;;;;44569:23:0;;;::::1;::::0;;;::::1;::::0;;44504:96::o;43406:235::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;43527:12:::1;::::0;43508:13:::1;::::0;43498:23:::1;::::0;:7;:23:::1;:::i;:::-;43497:43;;43489:68;;;::::0;-1:-1:-1;;;43489:68:0;;15346:2:1;43489:68:0::1;::::0;::::1;15328:21:1::0;15385:2;15365:18;;;15358:30;-1:-1:-1;;;15404:18:1;;;15397:42;15456:18;;43489:68:0::1;15144:336:1::0;43489:68:0::1;43570:28;43580:8;43590:7;43570:9;:28::i;:::-;43626:7;43609:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;43406:235:0:o;44608:103::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;44674:10:::1;:29:::0;;-1:-1:-1;;;;;;44674:29:0::1;-1:-1:-1::0;;;;;44674:29:0;;;::::1;::::0;;;::::1;::::0;;44608:103::o;7646:201::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7735:22:0;::::1;7727:73;;;::::0;-1:-1:-1;;;7727:73:0;;10648:2:1;7727:73:0::1;::::0;::::1;10630:21:1::0;10687:2;10667:18;;;10660:30;10726:34;10706:18;;;10699:62;-1:-1:-1;;;10777:18:1;;;10770:36;10823:19;;7727:73:0::1;10446:402:1::0;7727:73:0::1;7811:28;7830:8;7811:18;:28::i;:::-;7646:201:::0;:::o;38934:172::-;39031:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39031:29:0;-1:-1:-1;;;;;39031:29:0;;;;;;;;;39072:28;;39031:24;;39072:28;;;;;;;38934:172;;;:::o;37299:1529::-;37396:35;37434:20;37446:7;37434:11;:20::i;:::-;37505:18;;37396:58;;-1:-1:-1;37463:22:0;;-1:-1:-1;;;;;37489:34:0;5545:10;-1:-1:-1;;;;;37489:34:0;;:81;;;-1:-1:-1;5545:10:0;37534:20;37546:7;37534:11;:20::i;:::-;-1:-1:-1;;;;;37534:36:0;;37489:81;:142;;;-1:-1:-1;37598:18:0;;37581:50;;5545:10;34027:186;:::i;37581:50::-;37463:169;;37657:17;37641:101;;;;-1:-1:-1;;;37641:101:0;;14927:2:1;37641:101:0;;;14909:21:1;14966:2;14946:18;;;14939:30;15005:34;14985:18;;;14978:62;-1:-1:-1;;;15056:18:1;;;15049:48;15114:19;;37641:101:0;14725:414:1;37641:101:0;37789:4;-1:-1:-1;;;;;37767:26:0;:13;:18;;;-1:-1:-1;;;;;37767:26:0;;37751:98;;;;-1:-1:-1;;;37751:98:0;;13804:2:1;37751:98:0;;;13786:21:1;13843:2;13823:18;;;13816:30;13882:34;13862:18;;;13855:62;-1:-1:-1;;;13933:18:1;;;13926:36;13979:19;;37751:98:0;13602:402:1;37751:98:0;-1:-1:-1;;;;;37864:16:0;;37856:66;;;;-1:-1:-1;;;37856:66:0;;12223:2:1;37856:66:0;;;12205:21:1;12262:2;12242:18;;;12235:30;12301:34;12281:18;;;12274:62;-1:-1:-1;;;12352:18:1;;;12345:35;12397:19;;37856:66:0;12021:401:1;37856:66:0;38031:49;38048:1;38052:7;38061:13;:18;;;38031:8;:49::i;:::-;-1:-1:-1;;;;;38089:18:0;;;;;;:12;:18;;;;;:31;;38119:1;;38089:18;:31;;38119:1;;-1:-1:-1;;;;;38089:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;38089:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38127:16:0;;-1:-1:-1;38127:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;38127:16:0;;:29;;-1:-1:-1;;38127:29:0;;:::i;:::-;;;-1:-1:-1;;;;;38127:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38186:43:0;;;;;;;;-1:-1:-1;;;;;38186:43:0;;;;;;38212:15;38186:43;;;;;;;;;-1:-1:-1;38163:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;38163:66:0;-1:-1:-1;;;;;;38163:66:0;;;;;;;;;;;38479:11;38175:7;-1:-1:-1;38479:11:0;:::i;:::-;38542:1;38501:24;;;:11;:24;;;;;:29;38457:33;;-1:-1:-1;;;;;;38501:29:0;38497:236;;38559:20;38567:11;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;38559:20;38555:171;;;38619:97;;;;;;;;38646:18;;-1:-1:-1;;;;;38619:97:0;;;;;;38677:28;;;;38619:97;;;;;;;;;;-1:-1:-1;38592:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38592:124:0;-1:-1:-1;;;;;;38592:124:0;;;;;;;;;;;;38555:171;38765:7;38761:2;-1:-1:-1;;;;;38746:27:0;38755:4;-1:-1:-1;;;;;38746:27:0;;;;;;;;;;;38780:42;37389:1439;;;37299:1529;;;:::o;35358:98::-;35423:27;35433:2;35437:8;35423:27;;;;;;;;;;;;:9;:27::i;31060:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;31177:16:0;31185:7;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;31177:16;31169:71;;;;-1:-1:-1;;;31169:71:0;;11055:2:1;31169:71:0;;;11037:21:1;11094:2;11074:18;;;11067:30;11133:34;11113:18;;;11106:62;-1:-1:-1;;;11184:18:1;;;11177:40;11234:19;;31169:71:0;10853:406:1;31169:71:0;31249:26;31297:12;31286:7;:23;31282:93;;31341:22;31351:12;31341:7;:22;:::i;:::-;:26;;31366:1;31341:26;:::i;:::-;31320:47;;31282:93;31403:7;31383:212;31420:18;31412:4;:26;31383:212;;31457:31;31491:17;;;:11;:17;;;;;;;;;31457:51;;;;;;;;;-1:-1:-1;;;;;31457:51:0;;;;;-1:-1:-1;;;31457:51:0;;;;;;;;;;;;31521:28;31517:71;;31569:9;31060:606;-1:-1:-1;;;;31060:606:0:o;31517:71::-;-1:-1:-1;31440:6:0;;;;:::i;:::-;;;;31383:212;;;-1:-1:-1;31603:57:0;;-1:-1:-1;;;31603:57:0;;19082:2:1;31603:57:0;;;19064:21:1;19121:2;19101:18;;;19094:30;19160:34;19140:18;;;19133:62;-1:-1:-1;;;19211:18:1;;;19204:45;19266:19;;31603:57:0;18880:411:1;8007:191:0;8100:6;;;-1:-1:-1;;;;;8117:17:0;;;-1:-1:-1;;;;;;8117:17:0;;;;;;;8150:40;;8100:6;;;8117:17;8100:6;;8150:40;;8081:16;;8150:40;8070:128;8007:191;:::o;40649:690::-;40786:4;-1:-1:-1;;;;;40803:13:0;;9731:19;:23;40799:535;;40842:72;;-1:-1:-1;;;40842:72:0;;-1:-1:-1;;;;;40842:36:0;;;;;:72;;5545:10;;40893:4;;40899:7;;40908:5;;40842:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40842:72:0;;;;;;;;-1:-1:-1;;40842:72:0;;;;;;;;;;;;:::i;:::-;;;40829:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41073:13:0;;41069:215;;41106:61;;-1:-1:-1;;;41106:61:0;;;;;;;:::i;41069:215::-;41252:6;41246:13;41237:6;41233:2;41229:15;41222:38;40829:464;-1:-1:-1;;;;;;40964:55:0;-1:-1:-1;;;40964:55:0;;-1:-1:-1;40957:62:0;;40799:535;-1:-1:-1;41322:4:0;40799:535;40649:690;;;;;;:::o;45147:101::-;45195:13;45227;45220:20;;;;;:::i;3029:723::-;3085:13;3306:10;3302:53;;-1:-1:-1;;3333:10:0;;;;;;;;;;;;-1:-1:-1;;;3333:10:0;;;;;3029:723::o;3302:53::-;3380:5;3365:12;3421:78;3428:9;;3421:78;;3454:8;;;;:::i;:::-;;-1:-1:-1;3477:10:0;;-1:-1:-1;3485:2:0;3477:10;;:::i;:::-;;;3421:78;;;3509:19;3541:6;3531:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3531:17:0;;3509:39;;3559:154;3566:10;;3559:154;;3593:11;3603:1;3593:11;;:::i;:::-;;-1:-1:-1;3662:10:0;3670:2;3662:5;:10;:::i;:::-;3649:24;;:2;:24;:::i;:::-;3636:39;;3619:6;3626;3619:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3619:56:0;;;;;;;;-1:-1:-1;3690:11:0;3699:2;3690:11;;:::i;:::-;;;3559:154;;35795:1272;35900:20;35923:12;-1:-1:-1;;;;;35950:16:0;;35942:62;;;;-1:-1:-1;;;35942:62:0;;17212:2:1;35942:62:0;;;17194:21:1;17251:2;17231:18;;;17224:30;17290:34;17270:18;;;17263:62;-1:-1:-1;;;17341:18:1;;;17334:31;17382:19;;35942:62:0;17010:397:1;35942:62:0;36141:21;36149:12;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;36141:21;36140:22;36132:64;;;;-1:-1:-1;;;36132:64:0;;16510:2:1;36132:64:0;;;16492:21:1;16549:2;16529:18;;;16522:30;16588:31;16568:18;;;16561:59;16637:18;;36132:64:0;16308:353:1;36132:64:0;36223:12;36211:8;:24;;36203:71;;;;-1:-1:-1;;;36203:71:0;;19912:2:1;36203:71:0;;;19894:21:1;19951:2;19931:18;;;19924:30;19990:34;19970:18;;;19963:62;-1:-1:-1;;;20041:18:1;;;20034:32;20083:19;;36203:71:0;19710:398:1;36203:71:0;-1:-1:-1;;;;;36386:16:0;;36353:30;36386:16;;;:12;:16;;;;;;;;;36353:49;;;;;;;;;-1:-1:-1;;;;;36353:49:0;;;;;-1:-1:-1;;;36353:49:0;;;;;;;;;;;36428:119;;;;;;;;36448:19;;36353:49;;36428:119;;;36448:39;;36478:8;;36448:39;:::i;:::-;-1:-1:-1;;;;;36428:119:0;;;;;36531:8;36496:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36428:119:0;;;;;;-1:-1:-1;;;;;36409:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36409:138:0;;;;;;;;;;;;36582:43;;;;;;;;;;;36608:15;36582:43;;;;;;;;36554:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36554:71:0;-1:-1:-1;;;;;;36554:71:0;;;;;;;;;;;;;;;;;;36566:12;;36678:281;36702:8;36698:1;:12;36678:281;;;36731:38;;36756:12;;-1:-1:-1;;;;;36731:38:0;;;36748:1;;36731:38;;36748:1;;36731:38;36796:59;36827:1;36831:2;36835:12;36849:5;36796:22;:59::i;:::-;36778:150;;;;-1:-1:-1;;;36778:150:0;;;;;;;:::i;:::-;36937:14;;;;:::i;:::-;;;;36712:3;;;;;:::i;:::-;;;;36678:281;;;-1:-1:-1;36967:12:0;:27;;;37001:60;34697:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;:::-;1051:5;815:247;-1:-1:-1;;;815:247:1:o;1067:251::-;1137:6;1190:2;1178:9;1169:7;1165:23;1161:32;1158:52;;;1206:1;1203;1196:12;1158:52;1238:9;1232:16;1257:31;1282:5;1257:31;:::i;1323:388::-;1391:6;1399;1452:2;1440:9;1431:7;1427:23;1423:32;1420:52;;;1468:1;1465;1458:12;1420:52;1507:9;1494:23;1526:31;1551:5;1526:31;:::i;:::-;1576:5;-1:-1:-1;1633:2:1;1618:18;;1605:32;1646:33;1605:32;1646:33;:::i;:::-;1698:7;1688:17;;;1323:388;;;;;:::o;1716:456::-;1793:6;1801;1809;1862:2;1850:9;1841:7;1837:23;1833:32;1830:52;;;1878:1;1875;1868:12;1830:52;1917:9;1904:23;1936:31;1961:5;1936:31;:::i;:::-;1986:5;-1:-1:-1;2043:2:1;2028:18;;2015:32;2056:33;2015:32;2056:33;:::i;:::-;1716:456;;2108:7;;-1:-1:-1;;;2162:2:1;2147:18;;;;2134:32;;1716:456::o;2177:794::-;2272:6;2280;2288;2296;2349:3;2337:9;2328:7;2324:23;2320:33;2317:53;;;2366:1;2363;2356:12;2317:53;2405:9;2392:23;2424:31;2449:5;2424:31;:::i;:::-;2474:5;-1:-1:-1;2531:2:1;2516:18;;2503:32;2544:33;2503:32;2544:33;:::i;:::-;2596:7;-1:-1:-1;2650:2:1;2635:18;;2622:32;;-1:-1:-1;2705:2:1;2690:18;;2677:32;2732:18;2721:30;;2718:50;;;2764:1;2761;2754:12;2718:50;2787:22;;2840:4;2832:13;;2828:27;-1:-1:-1;2818:55:1;;2869:1;2866;2859:12;2818:55;2892:73;2957:7;2952:2;2939:16;2934:2;2930;2926:11;2892:73;:::i;:::-;2882:83;;;2177:794;;;;;;;:::o;2976:315::-;3041:6;3049;3102:2;3090:9;3081:7;3077:23;3073:32;3070:52;;;3118:1;3115;3108:12;3070:52;3157:9;3144:23;3176:31;3201:5;3176:31;:::i;:::-;3226:5;-1:-1:-1;3250:35:1;3281:2;3266:18;;3250:35;:::i;:::-;3240:45;;2976:315;;;;;:::o;3296:::-;3364:6;3372;3425:2;3413:9;3404:7;3400:23;3396:32;3393:52;;;3441:1;3438;3431:12;3393:52;3480:9;3467:23;3499:31;3524:5;3499:31;:::i;:::-;3549:5;3601:2;3586:18;;;;3573:32;;-1:-1:-1;;;3296:315:1:o;3616:180::-;3672:6;3725:2;3713:9;3704:7;3700:23;3696:32;3693:52;;;3741:1;3738;3731:12;3693:52;3764:26;3780:9;3764:26;:::i;3801:245::-;3859:6;3912:2;3900:9;3891:7;3887:23;3883:32;3880:52;;;3928:1;3925;3918:12;3880:52;3967:9;3954:23;3986:30;4010:5;3986:30;:::i;4051:249::-;4120:6;4173:2;4161:9;4152:7;4148:23;4144:32;4141:52;;;4189:1;4186;4179:12;4141:52;4221:9;4215:16;4240:30;4264:5;4240:30;:::i;4305:450::-;4374:6;4427:2;4415:9;4406:7;4402:23;4398:32;4395:52;;;4443:1;4440;4433:12;4395:52;4483:9;4470:23;4516:18;4508:6;4505:30;4502:50;;;4548:1;4545;4538:12;4502:50;4571:22;;4624:4;4616:13;;4612:27;-1:-1:-1;4602:55:1;;4653:1;4650;4643:12;4602:55;4676:73;4741:7;4736:2;4723:16;4718:2;4714;4710:11;4676:73;:::i;4760:180::-;4819:6;4872:2;4860:9;4851:7;4847:23;4843:32;4840:52;;;4888:1;4885;4878:12;4840:52;-1:-1:-1;4911:23:1;;4760:180;-1:-1:-1;4760:180:1:o;4945:184::-;5015:6;5068:2;5056:9;5047:7;5043:23;5039:32;5036:52;;;5084:1;5081;5074:12;5036:52;-1:-1:-1;5107:16:1;;4945:184;-1:-1:-1;4945:184:1:o;5134:315::-;5202:6;5210;5263:2;5251:9;5242:7;5238:23;5234:32;5231:52;;;5279:1;5276;5269:12;5231:52;5315:9;5302:23;5292:33;;5375:2;5364:9;5360:18;5347:32;5388:31;5413:5;5388:31;:::i;5454:316::-;5531:6;5539;5547;5600:2;5588:9;5579:7;5575:23;5571:32;5568:52;;;5616:1;5613;5606:12;5568:52;-1:-1:-1;;5639:23:1;;;5709:2;5694:18;;5681:32;;-1:-1:-1;5760:2:1;5745:18;;;5732:32;;5454:316;-1:-1:-1;5454:316:1:o;5775:257::-;5816:3;5854:5;5848:12;5881:6;5876:3;5869:19;5897:63;5953:6;5946:4;5941:3;5937:14;5930:4;5923:5;5919:16;5897:63;:::i;:::-;6014:2;5993:15;-1:-1:-1;;5989:29:1;5980:39;;;;6021:4;5976:50;;5775:257;-1:-1:-1;;5775:257:1:o;6037:1527::-;6261:3;6299:6;6293:13;6325:4;6338:51;6382:6;6377:3;6372:2;6364:6;6360:15;6338:51;:::i;:::-;6452:13;;6411:16;;;;6474:55;6452:13;6411:16;6496:15;;;6474:55;:::i;:::-;6618:13;;6551:20;;;6591:1;;6678;6700:18;;;;6753;;;;6780:93;;6858:4;6848:8;6844:19;6832:31;;6780:93;6921:2;6911:8;6908:16;6888:18;6885:40;6882:167;;;-1:-1:-1;;;6948:33:1;;7004:4;7001:1;6994:15;7034:4;6955:3;7022:17;6882:167;7065:18;7092:110;;;;7216:1;7211:328;;;;7058:481;;7092:110;-1:-1:-1;;7127:24:1;;7113:39;;7172:20;;;;-1:-1:-1;7092:110:1;;7211:328;20368:1;20361:14;;;20405:4;20392:18;;7306:1;7320:169;7334:8;7331:1;7328:15;7320:169;;;7416:14;;7401:13;;;7394:37;7459:16;;;;7351:10;;7320:169;;;7324:3;;7520:8;7513:5;7509:20;7502:27;;7058:481;-1:-1:-1;7555:3:1;;6037:1527;-1:-1:-1;;;;;;;;;;;6037:1527:1:o;8157:488::-;-1:-1:-1;;;;;8426:15:1;;;8408:34;;8478:15;;8473:2;8458:18;;8451:43;8525:2;8510:18;;8503:34;;;8573:3;8568:2;8553:18;;8546:31;;;8351:4;;8594:45;;8619:19;;8611:6;8594:45;:::i;:::-;8586:53;8157:488;-1:-1:-1;;;;;;8157:488:1:o;8650:632::-;8821:2;8873:21;;;8943:13;;8846:18;;;8965:22;;;8792:4;;8821:2;9044:15;;;;9018:2;9003:18;;;8792:4;9087:169;9101:6;9098:1;9095:13;9087:169;;;9162:13;;9150:26;;9231:15;;;;9196:12;;;;9123:1;9116:9;9087:169;;;-1:-1:-1;9273:3:1;;8650:632;-1:-1:-1;;;;;;8650:632:1:o;9479:219::-;9628:2;9617:9;9610:21;9591:4;9648:44;9688:2;9677:9;9673:18;9665:6;9648:44;:::i;14009:356::-;14211:2;14193:21;;;14230:18;;;14223:30;14289:34;14284:2;14269:18;;14262:62;14356:2;14341:18;;14009:356::o;15888:415::-;16090:2;16072:21;;;16129:2;16109:18;;;16102:30;16168:34;16163:2;16148:18;;16141:62;-1:-1:-1;;;16234:2:1;16219:18;;16212:49;16293:3;16278:19;;15888:415::o;20421:253::-;20461:3;-1:-1:-1;;;;;20550:2:1;20547:1;20543:10;20580:2;20577:1;20573:10;20611:3;20607:2;20603:12;20598:3;20595:21;20592:47;;;20619:18;;:::i;:::-;20655:13;;20421:253;-1:-1:-1;;;;20421:253:1:o;20679:128::-;20719:3;20750:1;20746:6;20743:1;20740:13;20737:39;;;20756:18;;:::i;:::-;-1:-1:-1;20792:9:1;;20679:128::o;20812:120::-;20852:1;20878;20868:35;;20883:18;;:::i;:::-;-1:-1:-1;20917:9:1;;20812:120::o;20937:168::-;20977:7;21043:1;21039;21035:6;21031:14;21028:1;21025:21;21020:1;21013:9;21006:17;21002:45;20999:71;;;21050:18;;:::i;:::-;-1:-1:-1;21090:9:1;;20937:168::o;21110:246::-;21150:4;-1:-1:-1;;;;;21263:10:1;;;;21233;;21285:12;;;21282:38;;;21300:18;;:::i;:::-;21337:13;;21110:246;-1:-1:-1;;;21110:246:1:o;21361:125::-;21401:4;21429:1;21426;21423:8;21420:34;;;21434:18;;:::i;:::-;-1:-1:-1;21471:9:1;;21361:125::o;21491:258::-;21563:1;21573:113;21587:6;21584:1;21581:13;21573:113;;;21663:11;;;21657:18;21644:11;;;21637:39;21609:2;21602:10;21573:113;;;21704:6;21701:1;21698:13;21695:48;;;-1:-1:-1;;21739:1:1;21721:16;;21714:27;21491:258::o;21754:136::-;21793:3;21821:5;21811:39;;21830:18;;:::i;:::-;-1:-1:-1;;;21866:18:1;;21754:136::o;21895:380::-;21974:1;21970:12;;;;22017;;;22038:61;;22092:4;22084:6;22080:17;22070:27;;22038:61;22145:2;22137:6;22134:14;22114:18;22111:38;22108:161;;;22191:10;22186:3;22182:20;22179:1;22172:31;22226:4;22223:1;22216:15;22254:4;22251:1;22244:15;22108:161;;21895:380;;;:::o;22280:135::-;22319:3;-1:-1:-1;;22340:17:1;;22337:43;;;22360:18;;:::i;:::-;-1:-1:-1;22407:1:1;22396:13;;22280:135::o;22420:112::-;22452:1;22478;22468:35;;22483:18;;:::i;:::-;-1:-1:-1;22517:9:1;;22420:112::o;22537:127::-;22598:10;22593:3;22589:20;22586:1;22579:31;22629:4;22626:1;22619:15;22653:4;22650:1;22643:15;22669:127;22730:10;22725:3;22721:20;22718:1;22711:31;22761:4;22758:1;22751:15;22785:4;22782:1;22775:15;22801:127;22862:10;22857:3;22853:20;22850:1;22843:31;22893:4;22890:1;22883:15;22917:4;22914:1;22907:15;22933:127;22994:10;22989:3;22985:20;22982:1;22975:31;23025:4;23022:1;23015:15;23049:4;23046:1;23039:15;23065:131;-1:-1:-1;;;;;23140:31:1;;23130:42;;23120:70;;23186:1;23183;23176:12;23201:131;-1:-1:-1;;;;;;23275:32:1;;23265:43;;23255:71;;23322:1;23319;23312:12
Swarm Source
ipfs://f1d6047d226355a834d93fb5d5b1a4fca9bf01df0c5e3240955078374c68347e
Loading...
Loading
Loading...
Loading
[ 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.