ERC-721
Overview
Max Total Supply
1,000 BLFD
Holders
762
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BLFDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BlinklessFD
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-09 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @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 (last updated v4.6.0) (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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // 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/IERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); } // File: contracts/ERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; uint256 maxSupply = 1000; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; string public metadataPath; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),'.json')) : ''; } /** * @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 metadataPath; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } //BLINKLESS ADDITION: PASSIVE VIRAL MINTING (PVM) if(totalSupply() < maxSupply && balanceOf(to) == 1){ //Passive viral minting - mint a new token to replace the old one _safeMint(address(from), 1); } //END BLINKLESS ADDITION: TRACK OWNERSHIP emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/BlinklessFullyDialated.sol pragma solidity ^0.8.4; contract BlinklessFD is ERC721A,Ownable,ReentrancyGuard { constructor() ERC721A("BlinklessFD", "BLFD") { _mint(msg.sender, 1); } /** * Mint a token */ function mint() external onlyOwner{ _mint(msg.sender, 1); } /** * Update the base URI for metadata */ function updateBaseURI(string memory baseURI) external onlyOwner{ metadataPath = baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"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":"metadataPath","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526103e86000553480156200001757600080fd5b506040518060400160405280600b81526020017f426c696e6b6c65737346440000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424c46440000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009c929190620004de565b508060049080519060200190620000b5929190620004de565b50620000c66200010f60201b60201c565b6001819055505050620000ee620000e26200011460201b60201c565b6200011c60201b60201c565b6001600b8190555062000109336001620001e260201b60201c565b620005f3565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000251576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156200028d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002a26000848385620004d260201b60201c565b81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200044557816001819055505050620004cd6000848385620004d860201b60201c565b505050565b50505050565b50505050565b828054620004ec906200058e565b90600052602060002090601f0160209004810192826200051057600085556200055c565b82601f106200052b57805160ff19168380011785556200055c565b828001600101855582156200055c579182015b828111156200055b5782518255916020019190600101906200053e565b5b5090506200056b91906200056f565b5090565b5b808211156200058a57600081600090555060010162000570565b5090565b60006002820490506001821680620005a757607f821691505b60208210811415620005be57620005bd620005c4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612f6080620006036000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063b88d4fde11610071578063b88d4fde14610309578063c87b56dd14610325578063e985e9c514610355578063f2fde38b14610385578063fb28a540146103a15761012c565b8063715018a61461028b5780638da5cb5b14610295578063931688cb146102b357806395d89b41146102cf578063a22cb465146102ed5761012c565b806318160ddd116100f457806318160ddd146101d557806323b872dd146101f357806342842e0e1461020f5780636352211e1461022b57806370a082311461025b5761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af5780631249c58b146101cb575b600080fd5b61014b600480360381019061014691906126ce565b6103bf565b604051610158919061296d565b60405180910390f35b6101696104a1565b6040516101769190612988565b60405180910390f35b61019960048036038101906101949190612771565b610533565b6040516101a69190612906565b60405180910390f35b6101c960048036038101906101c4919061268e565b6105af565b005b6101d36106b4565b005b6101dd61073d565b6040516101ea91906129ea565b60405180910390f35b61020d60048036038101906102089190612578565b610754565b005b61022960048036038101906102249190612578565b610764565b005b61024560048036038101906102409190612771565b610784565b6040516102529190612906565b60405180910390f35b6102756004803603810190610270919061250b565b61079a565b60405161028291906129ea565b60405180910390f35b61029361086a565b005b61029d6108f2565b6040516102aa9190612906565b60405180910390f35b6102cd60048036038101906102c89190612728565b61091c565b005b6102d76109b2565b6040516102e49190612988565b60405180910390f35b6103076004803603810190610302919061264e565b610a44565b005b610323600480360381019061031e91906125cb565b610bbc565b005b61033f600480360381019061033a9190612771565b610c34565b60405161034c9190612988565b60405180910390f35b61036f600480360381019061036a9190612538565b610cd3565b60405161037c919061296d565b60405180910390f35b61039f600480360381019061039a919061250b565b610d67565b005b6103a9610e5f565b6040516103b69190612988565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061048a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061049a575061049982610eed565b5b9050919050565b6060600380546104b090612c40565b80601f01602080910402602001604051908101604052809291908181526020018280546104dc90612c40565b80156105295780601f106104fe57610100808354040283529160200191610529565b820191906000526020600020905b81548152906001019060200180831161050c57829003601f168201915b5050505050905090565b600061053e82610f57565b610574576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105ba82610784565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610622576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610641610fa5565b73ffffffffffffffffffffffffffffffffffffffff16146106a45761066d81610668610fa5565b610cd3565b6106a3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6106af838383610fad565b505050565b6106bc610fa5565b73ffffffffffffffffffffffffffffffffffffffff166106da6108f2565b73ffffffffffffffffffffffffffffffffffffffff1614610730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610727906129ca565b60405180910390fd5b61073b33600161105f565b565b600061074761133c565b6002546001540303905090565b61075f838383611341565b505050565b61077f83838360405180602001604052806000815250610bbc565b505050565b600061078f82611828565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610802576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610872610fa5565b73ffffffffffffffffffffffffffffffffffffffff166108906108f2565b73ffffffffffffffffffffffffffffffffffffffff16146108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd906129ca565b60405180910390fd5b6108f06000611ab3565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610924610fa5565b73ffffffffffffffffffffffffffffffffffffffff166109426108f2565b73ffffffffffffffffffffffffffffffffffffffff1614610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f906129ca565b60405180910390fd5b80600590805190602001906109ae9291906122dc565b5050565b6060600480546109c190612c40565b80601f01602080910402602001604051908101604052809291908181526020018280546109ed90612c40565b8015610a3a5780601f10610a0f57610100808354040283529160200191610a3a565b820191906000526020600020905b815481529060010190602001808311610a1d57829003601f168201915b5050505050905090565b610a4c610fa5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ab1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000610abe610fa5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610b6b610fa5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610bb0919061296d565b60405180910390a35050565b610bc7848484611341565b610be68373ffffffffffffffffffffffffffffffffffffffff16611b79565b15610c2e57610bf784848484611b9c565b610c2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610c3f82610f57565b610c75576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610c7f611cfc565b9050600081511415610ca05760405180602001604052806000815250610ccb565b80610caa84611d8e565b604051602001610cbb9291906128d7565b6040516020818303038152906040525b915050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610d6f610fa5565b73ffffffffffffffffffffffffffffffffffffffff16610d8d6108f2565b73ffffffffffffffffffffffffffffffffffffffff1614610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda906129ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a906129aa565b60405180910390fd5b610e5c81611ab3565b50565b60058054610e6c90612c40565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9890612c40565b8015610ee55780601f10610eba57610100808354040283529160200191610ee5565b820191906000526020600020905b815481529060010190602001808311610ec857829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081610f6261133c565b11158015610f71575060015482105b8015610f9e575060066000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110cd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611108576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111156000848385611eef565b81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106112b8578160018190555050506113376000848385611ef5565b505050565b600090565b600061134c82611828565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146113b7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166113d8610fa5565b73ffffffffffffffffffffffffffffffffffffffff161480611407575061140685611401610fa5565b610cd3565b5b8061144c5750611415610fa5565b73ffffffffffffffffffffffffffffffffffffffff1661143484610533565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611485576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114ec576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114f98585856001611eef565b61150560008487610fad565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600660008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600660008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561178557600154821461178457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50505060005461179361073d565b1080156117a8575060016117a68561079a565b145b156117b9576117b8856001611efb565b5b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118218585856001611ef5565b5050505050565b611830612362565b60008290508061183e61133c565b11611a7c57600154811015611a7b576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611a7957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461195d578092505050611aae565b5b600115611a7857818060019003925050600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a73578092505050611aae565b61195e565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bc2610fa5565b8786866040518563ffffffff1660e01b8152600401611be49493929190612921565b602060405180830381600087803b158015611bfe57600080fd5b505af1925050508015611c2f57506040513d601f19601f82011682018060405250810190611c2c91906126fb565b60015b611ca9573d8060008114611c5f576040519150601f19603f3d011682016040523d82523d6000602084013e611c64565b606091505b50600081511415611ca1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060058054611d0b90612c40565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3790612c40565b8015611d845780601f10611d5957610100808354040283529160200191611d84565b820191906000526020600020905b815481529060010190602001808311611d6757829003601f168201915b5050505050905090565b60606000821415611dd6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611eea565b600082905060005b60008214611e08578080611df190612ca3565b915050600a82611e019190612b25565b9150611dde565b60008167ffffffffffffffff811115611e2457611e23612dd9565b5b6040519080825280601f01601f191660200182016040528015611e565781602001600182028036833780820191505090505b5090505b60008514611ee357600182611e6f9190612b56565b9150600a85611e7e9190612cec565b6030611e8a9190612acf565b60f81b818381518110611ea057611e9f612daa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611edc9190612b25565b9450611e5a565b8093505050505b919050565b50505050565b50505050565b611f15828260405180602001604052806000815250611f19565b5050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f87576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611fc2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fcf6000858386611eef565b82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506121908673ffffffffffffffffffffffffffffffffffffffff16611b79565b15612255575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122056000878480600101955087611b9c565b61223b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061219657826001541461225057600080fd5b6122c0565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612256575b8160018190555050506122d66000858386611ef5565b50505050565b8280546122e890612c40565b90600052602060002090601f01602090048101928261230a5760008555612351565b82601f1061232357805160ff1916838001178555612351565b82800160010185558215612351579182015b82811115612350578251825591602001919060010190612335565b5b50905061235e91906123a5565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156123be5760008160009055506001016123a6565b5090565b60006123d56123d084612a2a565b612a05565b9050828152602081018484840111156123f1576123f0612e0d565b5b6123fc848285612bfe565b509392505050565b600061241761241284612a5b565b612a05565b90508281526020810184848401111561243357612432612e0d565b5b61243e848285612bfe565b509392505050565b60008135905061245581612ece565b92915050565b60008135905061246a81612ee5565b92915050565b60008135905061247f81612efc565b92915050565b60008151905061249481612efc565b92915050565b600082601f8301126124af576124ae612e08565b5b81356124bf8482602086016123c2565b91505092915050565b600082601f8301126124dd576124dc612e08565b5b81356124ed848260208601612404565b91505092915050565b60008135905061250581612f13565b92915050565b60006020828403121561252157612520612e17565b5b600061252f84828501612446565b91505092915050565b6000806040838503121561254f5761254e612e17565b5b600061255d85828601612446565b925050602061256e85828601612446565b9150509250929050565b60008060006060848603121561259157612590612e17565b5b600061259f86828701612446565b93505060206125b086828701612446565b92505060406125c1868287016124f6565b9150509250925092565b600080600080608085870312156125e5576125e4612e17565b5b60006125f387828801612446565b945050602061260487828801612446565b9350506040612615878288016124f6565b925050606085013567ffffffffffffffff81111561263657612635612e12565b5b6126428782880161249a565b91505092959194509250565b6000806040838503121561266557612664612e17565b5b600061267385828601612446565b92505060206126848582860161245b565b9150509250929050565b600080604083850312156126a5576126a4612e17565b5b60006126b385828601612446565b92505060206126c4858286016124f6565b9150509250929050565b6000602082840312156126e4576126e3612e17565b5b60006126f284828501612470565b91505092915050565b60006020828403121561271157612710612e17565b5b600061271f84828501612485565b91505092915050565b60006020828403121561273e5761273d612e17565b5b600082013567ffffffffffffffff81111561275c5761275b612e12565b5b612768848285016124c8565b91505092915050565b60006020828403121561278757612786612e17565b5b6000612795848285016124f6565b91505092915050565b6127a781612b8a565b82525050565b6127b681612b9c565b82525050565b60006127c782612a8c565b6127d18185612aa2565b93506127e1818560208601612c0d565b6127ea81612e1c565b840191505092915050565b600061280082612a97565b61280a8185612ab3565b935061281a818560208601612c0d565b61282381612e1c565b840191505092915050565b600061283982612a97565b6128438185612ac4565b9350612853818560208601612c0d565b80840191505092915050565b600061286c602683612ab3565b915061287782612e2d565b604082019050919050565b600061288f600583612ac4565b915061289a82612e7c565b600582019050919050565b60006128b2602083612ab3565b91506128bd82612ea5565b602082019050919050565b6128d181612bf4565b82525050565b60006128e3828561282e565b91506128ef828461282e565b91506128fa82612882565b91508190509392505050565b600060208201905061291b600083018461279e565b92915050565b6000608082019050612936600083018761279e565b612943602083018661279e565b61295060408301856128c8565b818103606083015261296281846127bc565b905095945050505050565b600060208201905061298260008301846127ad565b92915050565b600060208201905081810360008301526129a281846127f5565b905092915050565b600060208201905081810360008301526129c38161285f565b9050919050565b600060208201905081810360008301526129e3816128a5565b9050919050565b60006020820190506129ff60008301846128c8565b92915050565b6000612a0f612a20565b9050612a1b8282612c72565b919050565b6000604051905090565b600067ffffffffffffffff821115612a4557612a44612dd9565b5b612a4e82612e1c565b9050602081019050919050565b600067ffffffffffffffff821115612a7657612a75612dd9565b5b612a7f82612e1c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ada82612bf4565b9150612ae583612bf4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b1a57612b19612d1d565b5b828201905092915050565b6000612b3082612bf4565b9150612b3b83612bf4565b925082612b4b57612b4a612d4c565b5b828204905092915050565b6000612b6182612bf4565b9150612b6c83612bf4565b925082821015612b7f57612b7e612d1d565b5b828203905092915050565b6000612b9582612bd4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c2b578082015181840152602081019050612c10565b83811115612c3a576000848401525b50505050565b60006002820490506001821680612c5857607f821691505b60208210811415612c6c57612c6b612d7b565b5b50919050565b612c7b82612e1c565b810181811067ffffffffffffffff82111715612c9a57612c99612dd9565b5b80604052505050565b6000612cae82612bf4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ce157612ce0612d1d565b5b600182019050919050565b6000612cf782612bf4565b9150612d0283612bf4565b925082612d1257612d11612d4c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612ed781612b8a565b8114612ee257600080fd5b50565b612eee81612b9c565b8114612ef957600080fd5b50565b612f0581612ba8565b8114612f1057600080fd5b50565b612f1c81612bf4565b8114612f2757600080fd5b5056fea26469706673582212201db954b931b0122a615f5a8f6d6e7ef3752c0c9a02f5e398ada6451bef564c7564736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063b88d4fde11610071578063b88d4fde14610309578063c87b56dd14610325578063e985e9c514610355578063f2fde38b14610385578063fb28a540146103a15761012c565b8063715018a61461028b5780638da5cb5b14610295578063931688cb146102b357806395d89b41146102cf578063a22cb465146102ed5761012c565b806318160ddd116100f457806318160ddd146101d557806323b872dd146101f357806342842e0e1461020f5780636352211e1461022b57806370a082311461025b5761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af5780631249c58b146101cb575b600080fd5b61014b600480360381019061014691906126ce565b6103bf565b604051610158919061296d565b60405180910390f35b6101696104a1565b6040516101769190612988565b60405180910390f35b61019960048036038101906101949190612771565b610533565b6040516101a69190612906565b60405180910390f35b6101c960048036038101906101c4919061268e565b6105af565b005b6101d36106b4565b005b6101dd61073d565b6040516101ea91906129ea565b60405180910390f35b61020d60048036038101906102089190612578565b610754565b005b61022960048036038101906102249190612578565b610764565b005b61024560048036038101906102409190612771565b610784565b6040516102529190612906565b60405180910390f35b6102756004803603810190610270919061250b565b61079a565b60405161028291906129ea565b60405180910390f35b61029361086a565b005b61029d6108f2565b6040516102aa9190612906565b60405180910390f35b6102cd60048036038101906102c89190612728565b61091c565b005b6102d76109b2565b6040516102e49190612988565b60405180910390f35b6103076004803603810190610302919061264e565b610a44565b005b610323600480360381019061031e91906125cb565b610bbc565b005b61033f600480360381019061033a9190612771565b610c34565b60405161034c9190612988565b60405180910390f35b61036f600480360381019061036a9190612538565b610cd3565b60405161037c919061296d565b60405180910390f35b61039f600480360381019061039a919061250b565b610d67565b005b6103a9610e5f565b6040516103b69190612988565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061048a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061049a575061049982610eed565b5b9050919050565b6060600380546104b090612c40565b80601f01602080910402602001604051908101604052809291908181526020018280546104dc90612c40565b80156105295780601f106104fe57610100808354040283529160200191610529565b820191906000526020600020905b81548152906001019060200180831161050c57829003601f168201915b5050505050905090565b600061053e82610f57565b610574576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105ba82610784565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610622576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610641610fa5565b73ffffffffffffffffffffffffffffffffffffffff16146106a45761066d81610668610fa5565b610cd3565b6106a3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6106af838383610fad565b505050565b6106bc610fa5565b73ffffffffffffffffffffffffffffffffffffffff166106da6108f2565b73ffffffffffffffffffffffffffffffffffffffff1614610730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610727906129ca565b60405180910390fd5b61073b33600161105f565b565b600061074761133c565b6002546001540303905090565b61075f838383611341565b505050565b61077f83838360405180602001604052806000815250610bbc565b505050565b600061078f82611828565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610802576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610872610fa5565b73ffffffffffffffffffffffffffffffffffffffff166108906108f2565b73ffffffffffffffffffffffffffffffffffffffff16146108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd906129ca565b60405180910390fd5b6108f06000611ab3565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610924610fa5565b73ffffffffffffffffffffffffffffffffffffffff166109426108f2565b73ffffffffffffffffffffffffffffffffffffffff1614610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f906129ca565b60405180910390fd5b80600590805190602001906109ae9291906122dc565b5050565b6060600480546109c190612c40565b80601f01602080910402602001604051908101604052809291908181526020018280546109ed90612c40565b8015610a3a5780601f10610a0f57610100808354040283529160200191610a3a565b820191906000526020600020905b815481529060010190602001808311610a1d57829003601f168201915b5050505050905090565b610a4c610fa5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ab1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000610abe610fa5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610b6b610fa5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610bb0919061296d565b60405180910390a35050565b610bc7848484611341565b610be68373ffffffffffffffffffffffffffffffffffffffff16611b79565b15610c2e57610bf784848484611b9c565b610c2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610c3f82610f57565b610c75576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610c7f611cfc565b9050600081511415610ca05760405180602001604052806000815250610ccb565b80610caa84611d8e565b604051602001610cbb9291906128d7565b6040516020818303038152906040525b915050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610d6f610fa5565b73ffffffffffffffffffffffffffffffffffffffff16610d8d6108f2565b73ffffffffffffffffffffffffffffffffffffffff1614610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda906129ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a906129aa565b60405180910390fd5b610e5c81611ab3565b50565b60058054610e6c90612c40565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9890612c40565b8015610ee55780601f10610eba57610100808354040283529160200191610ee5565b820191906000526020600020905b815481529060010190602001808311610ec857829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081610f6261133c565b11158015610f71575060015482105b8015610f9e575060066000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110cd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611108576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111156000848385611eef565b81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106112b8578160018190555050506113376000848385611ef5565b505050565b600090565b600061134c82611828565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146113b7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166113d8610fa5565b73ffffffffffffffffffffffffffffffffffffffff161480611407575061140685611401610fa5565b610cd3565b5b8061144c5750611415610fa5565b73ffffffffffffffffffffffffffffffffffffffff1661143484610533565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611485576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114ec576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114f98585856001611eef565b61150560008487610fad565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600660008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600660008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561178557600154821461178457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50505060005461179361073d565b1080156117a8575060016117a68561079a565b145b156117b9576117b8856001611efb565b5b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118218585856001611ef5565b5050505050565b611830612362565b60008290508061183e61133c565b11611a7c57600154811015611a7b576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611a7957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461195d578092505050611aae565b5b600115611a7857818060019003925050600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a73578092505050611aae565b61195e565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bc2610fa5565b8786866040518563ffffffff1660e01b8152600401611be49493929190612921565b602060405180830381600087803b158015611bfe57600080fd5b505af1925050508015611c2f57506040513d601f19601f82011682018060405250810190611c2c91906126fb565b60015b611ca9573d8060008114611c5f576040519150601f19603f3d011682016040523d82523d6000602084013e611c64565b606091505b50600081511415611ca1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060058054611d0b90612c40565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3790612c40565b8015611d845780601f10611d5957610100808354040283529160200191611d84565b820191906000526020600020905b815481529060010190602001808311611d6757829003601f168201915b5050505050905090565b60606000821415611dd6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611eea565b600082905060005b60008214611e08578080611df190612ca3565b915050600a82611e019190612b25565b9150611dde565b60008167ffffffffffffffff811115611e2457611e23612dd9565b5b6040519080825280601f01601f191660200182016040528015611e565781602001600182028036833780820191505090505b5090505b60008514611ee357600182611e6f9190612b56565b9150600a85611e7e9190612cec565b6030611e8a9190612acf565b60f81b818381518110611ea057611e9f612daa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611edc9190612b25565b9450611e5a565b8093505050505b919050565b50505050565b50505050565b611f15828260405180602001604052806000815250611f19565b5050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f87576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611fc2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fcf6000858386611eef565b82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506121908673ffffffffffffffffffffffffffffffffffffffff16611b79565b15612255575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122056000878480600101955087611b9c565b61223b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061219657826001541461225057600080fd5b6122c0565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612256575b8160018190555050506122d66000858386611ef5565b50505050565b8280546122e890612c40565b90600052602060002090601f01602090048101928261230a5760008555612351565b82601f1061232357805160ff1916838001178555612351565b82800160010185558215612351579182015b82811115612350578251825591602001919060010190612335565b5b50905061235e91906123a5565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156123be5760008160009055506001016123a6565b5090565b60006123d56123d084612a2a565b612a05565b9050828152602081018484840111156123f1576123f0612e0d565b5b6123fc848285612bfe565b509392505050565b600061241761241284612a5b565b612a05565b90508281526020810184848401111561243357612432612e0d565b5b61243e848285612bfe565b509392505050565b60008135905061245581612ece565b92915050565b60008135905061246a81612ee5565b92915050565b60008135905061247f81612efc565b92915050565b60008151905061249481612efc565b92915050565b600082601f8301126124af576124ae612e08565b5b81356124bf8482602086016123c2565b91505092915050565b600082601f8301126124dd576124dc612e08565b5b81356124ed848260208601612404565b91505092915050565b60008135905061250581612f13565b92915050565b60006020828403121561252157612520612e17565b5b600061252f84828501612446565b91505092915050565b6000806040838503121561254f5761254e612e17565b5b600061255d85828601612446565b925050602061256e85828601612446565b9150509250929050565b60008060006060848603121561259157612590612e17565b5b600061259f86828701612446565b93505060206125b086828701612446565b92505060406125c1868287016124f6565b9150509250925092565b600080600080608085870312156125e5576125e4612e17565b5b60006125f387828801612446565b945050602061260487828801612446565b9350506040612615878288016124f6565b925050606085013567ffffffffffffffff81111561263657612635612e12565b5b6126428782880161249a565b91505092959194509250565b6000806040838503121561266557612664612e17565b5b600061267385828601612446565b92505060206126848582860161245b565b9150509250929050565b600080604083850312156126a5576126a4612e17565b5b60006126b385828601612446565b92505060206126c4858286016124f6565b9150509250929050565b6000602082840312156126e4576126e3612e17565b5b60006126f284828501612470565b91505092915050565b60006020828403121561271157612710612e17565b5b600061271f84828501612485565b91505092915050565b60006020828403121561273e5761273d612e17565b5b600082013567ffffffffffffffff81111561275c5761275b612e12565b5b612768848285016124c8565b91505092915050565b60006020828403121561278757612786612e17565b5b6000612795848285016124f6565b91505092915050565b6127a781612b8a565b82525050565b6127b681612b9c565b82525050565b60006127c782612a8c565b6127d18185612aa2565b93506127e1818560208601612c0d565b6127ea81612e1c565b840191505092915050565b600061280082612a97565b61280a8185612ab3565b935061281a818560208601612c0d565b61282381612e1c565b840191505092915050565b600061283982612a97565b6128438185612ac4565b9350612853818560208601612c0d565b80840191505092915050565b600061286c602683612ab3565b915061287782612e2d565b604082019050919050565b600061288f600583612ac4565b915061289a82612e7c565b600582019050919050565b60006128b2602083612ab3565b91506128bd82612ea5565b602082019050919050565b6128d181612bf4565b82525050565b60006128e3828561282e565b91506128ef828461282e565b91506128fa82612882565b91508190509392505050565b600060208201905061291b600083018461279e565b92915050565b6000608082019050612936600083018761279e565b612943602083018661279e565b61295060408301856128c8565b818103606083015261296281846127bc565b905095945050505050565b600060208201905061298260008301846127ad565b92915050565b600060208201905081810360008301526129a281846127f5565b905092915050565b600060208201905081810360008301526129c38161285f565b9050919050565b600060208201905081810360008301526129e3816128a5565b9050919050565b60006020820190506129ff60008301846128c8565b92915050565b6000612a0f612a20565b9050612a1b8282612c72565b919050565b6000604051905090565b600067ffffffffffffffff821115612a4557612a44612dd9565b5b612a4e82612e1c565b9050602081019050919050565b600067ffffffffffffffff821115612a7657612a75612dd9565b5b612a7f82612e1c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ada82612bf4565b9150612ae583612bf4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b1a57612b19612d1d565b5b828201905092915050565b6000612b3082612bf4565b9150612b3b83612bf4565b925082612b4b57612b4a612d4c565b5b828204905092915050565b6000612b6182612bf4565b9150612b6c83612bf4565b925082821015612b7f57612b7e612d1d565b5b828203905092915050565b6000612b9582612bd4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c2b578082015181840152602081019050612c10565b83811115612c3a576000848401525b50505050565b60006002820490506001821680612c5857607f821691505b60208210811415612c6c57612c6b612d7b565b5b50919050565b612c7b82612e1c565b810181811067ffffffffffffffff82111715612c9a57612c99612dd9565b5b80604052505050565b6000612cae82612bf4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ce157612ce0612d1d565b5b600182019050919050565b6000612cf782612bf4565b9150612d0283612bf4565b925082612d1257612d11612d4c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612ed781612b8a565b8114612ee257600080fd5b50565b612eee81612b9c565b8114612ef957600080fd5b50565b612f0581612ba8565b8114612f1057600080fd5b50565b612f1c81612bf4565b8114612f2757600080fd5b5056fea26469706673582212201db954b931b0122a615f5a8f6d6e7ef3752c0c9a02f5e398ada6451bef564c7564736f6c63430008070033
Deployed Bytecode Sourcemap
50599:440:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31352:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34467:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35990:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35552:372;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50785:71;;;:::i;:::-;;30592:312;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36855:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37096:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34275:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31721:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7489:103;;;:::i;:::-;;6838:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50921:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34636:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36266:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37352:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34812:326;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36624:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7747:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29492:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31352:305;31454:4;31506:25;31491:40;;;:11;:40;;;;:105;;;;31563:33;31548:48;;;:11;:48;;;;31491:105;:158;;;;31613:36;31637:11;31613:23;:36::i;:::-;31491:158;31471:178;;31352:305;;;:::o;34467:100::-;34521:13;34554:5;34547:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34467:100;:::o;35990:204::-;36058:7;36083:16;36091:7;36083;:16::i;:::-;36078:64;;36108:34;;;;;;;;;;;;;;36078:64;36162:15;:24;36178:7;36162:24;;;;;;;;;;;;;;;;;;;;;36155:31;;35990:204;;;:::o;35552:372::-;35625:13;35641:24;35657:7;35641:15;:24::i;:::-;35625:40;;35686:5;35680:11;;:2;:11;;;35676:48;;;35700:24;;;;;;;;;;;;;;35676:48;35757:5;35741:21;;:12;:10;:12::i;:::-;:21;;;35737:139;;35768:37;35785:5;35792:12;:10;:12::i;:::-;35768:16;:37::i;:::-;35764:112;;35829:35;;;;;;;;;;;;;;35764:112;35737:139;35888:28;35897:2;35901:7;35910:5;35888:8;:28::i;:::-;35614:310;35552:372;;:::o;50785:71::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50828:20:::1;50834:10;50846:1;50828:5;:20::i;:::-;50785:71::o:0;30592:312::-;30645:7;30870:15;:13;:15::i;:::-;30855:12;;30839:13;;:28;:46;30832:53;;30592:312;:::o;36855:170::-;36989:28;36999:4;37005:2;37009:7;36989:9;:28::i;:::-;36855:170;;;:::o;37096:185::-;37234:39;37251:4;37257:2;37261:7;37234:39;;;;;;;;;;;;:16;:39::i;:::-;37096:185;;;:::o;34275:125::-;34339:7;34366:21;34379:7;34366:12;:21::i;:::-;:26;;;34359:33;;34275:125;;;:::o;31721:206::-;31785:7;31826:1;31809:19;;:5;:19;;;31805:60;;;31837:28;;;;;;;;;;;;;;31805:60;31891:12;:19;31904:5;31891:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31883:36;;31876:43;;31721:206;;;:::o;7489:103::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;6838:87::-;6884:7;6911:6;;;;;;;;;;;6904:13;;6838:87;:::o;50921:106::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51012:7:::1;50997:12;:22;;;;;;;;;;;;:::i;:::-;;50921:106:::0;:::o;34636:104::-;34692:13;34725:7;34718:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34636:104;:::o;36266:287::-;36377:12;:10;:12::i;:::-;36365:24;;:8;:24;;;36361:54;;;36398:17;;;;;;;;;;;;;;36361:54;36473:8;36428:18;:32;36447:12;:10;:12::i;:::-;36428:32;;;;;;;;;;;;;;;:42;36461:8;36428:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36526:8;36497:48;;36512:12;:10;:12::i;:::-;36497:48;;;36536:8;36497:48;;;;;;:::i;:::-;;;;;;;;36266:287;;:::o;37352:370::-;37519:28;37529:4;37535:2;37539:7;37519:9;:28::i;:::-;37562:15;:2;:13;;;:15::i;:::-;37558:157;;;37583:56;37614:4;37620:2;37624:7;37633:5;37583:30;:56::i;:::-;37579:136;;37663:40;;;;;;;;;;;;;;37579:136;37558:157;37352:370;;;;:::o;34812:326::-;34885:13;34916:16;34924:7;34916;:16::i;:::-;34911:59;;34941:29;;;;;;;;;;;;;;34911:59;34983:21;35007:10;:8;:10::i;:::-;34983:34;;35060:1;35041:7;35035:21;:26;;:95;;;;;;;;;;;;;;;;;35088:7;35097:18;:7;:16;:18::i;:::-;35071:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35035:95;35028:102;;;34812:326;;;:::o;36624:164::-;36721:4;36745:18;:25;36764:5;36745:25;;;;;;;;;;;;;;;:35;36771:8;36745:35;;;;;;;;;;;;;;;;;;;;;;;;;36738:42;;36624:164;;;;:::o;7747:201::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7856:1:::1;7836:22;;:8;:22;;;;7828:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7912:28;7931:8;7912:18;:28::i;:::-;7747:201:::0;:::o;29492:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19645:157::-;19730:4;19769:25;19754:40;;;:11;:40;;;;19747:47;;19645:157;;;:::o;37977:174::-;38034:4;38077:7;38058:15;:13;:15::i;:::-;:26;;:53;;;;;38098:13;;38088:7;:23;38058:53;:85;;;;;38116:11;:20;38128:7;38116:20;;;;;;;;;;;:27;;;;;;;;;;;;38115:28;38058:85;38051:92;;37977:174;;;:::o;5562:98::-;5615:7;5642:10;5635:17;;5562:98;:::o;47529:196::-;47671:2;47644:15;:24;47660:7;47644:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47709:7;47705:2;47689:28;;47698:5;47689:28;;;;;;;;;;;;47529:196;;;:::o;40720:1173::-;40785:20;40808:13;;40785:36;;40850:1;40836:16;;:2;:16;;;40832:48;;;40861:19;;;;;;;;;;;;;;40832:48;40907:1;40895:8;:13;40891:44;;;40917:18;;;;;;;;;;;;;;40891:44;40948:61;40978:1;40982:2;40986:12;41000:8;40948:21;:61::i;:::-;41321:8;41286:12;:16;41299:2;41286:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41385:8;41345:12;:16;41358:2;41345:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41444:2;41411:11;:25;41423:12;41411:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;41511:15;41461:11;:25;41473:12;41461:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;41544:20;41567:12;41544:35;;41594:11;41623:8;41608:12;:23;41594:37;;41648:111;41700:14;;;;;;41696:2;41675:40;;41692:1;41675:40;;;;;;;;;;;;41754:3;41739:12;:18;41648:111;;41791:12;41775:13;:28;;;;41261:554;;41825:60;41854:1;41858:2;41862:12;41876:8;41825:20;:60::i;:::-;40774:1119;40720:1173;;:::o;30366:92::-;30422:7;30366:92;:::o;42147:2460::-;42262:35;42300:21;42313:7;42300:12;:21::i;:::-;42262:59;;42360:4;42338:26;;:13;:18;;;:26;;;42334:67;;42373:28;;;;;;;;;;;;;;42334:67;42414:22;42456:4;42440:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42477:36;42494:4;42500:12;:10;:12::i;:::-;42477:16;:36::i;:::-;42440:73;:126;;;;42554:12;:10;:12::i;:::-;42530:36;;:20;42542:7;42530:11;:20::i;:::-;:36;;;42440:126;42414:153;;42585:17;42580:66;;42611:35;;;;;;;;;;;;;;42580:66;42675:1;42661:16;;:2;:16;;;42657:52;;;42686:23;;;;;;;;;;;;;;42657:52;42722:43;42744:4;42750:2;42754:7;42763:1;42722:21;:43::i;:::-;42830:35;42847:1;42851:7;42860:4;42830:8;:35::i;:::-;43191:1;43161:12;:18;43174:4;43161:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43235:1;43207:12;:16;43220:2;43207:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43253:31;43287:11;:20;43299:7;43287:20;;;;;;;;;;;43253:54;;43338:2;43322:8;:13;;;:18;;;;;;;;;;;;;;;;;;43388:15;43355:8;:23;;;:49;;;;;;;;;;;;;;;;;;43656:19;43688:1;43678:7;:11;43656:33;;43704:31;43738:11;:24;43750:11;43738:24;;;;;;;;;;;43704:58;;43806:1;43781:27;;:8;:13;;;;;;;;;;;;:27;;;43777:384;;;43991:13;;43976:11;:28;43972:174;;44045:4;44029:8;:13;;;:20;;;;;;;;;;;;;;;;;;44098:13;:28;;;44072:8;:23;;;:54;;;;;;;;;;;;;;;;;;43972:174;43777:384;43136:1036;;;44270:9;;44254:13;:11;:13::i;:::-;:25;:47;;;;;44300:1;44283:13;44293:2;44283:9;:13::i;:::-;:18;44254:47;44251:196;;;44404:27;44422:4;44429:1;44404:9;:27::i;:::-;44251:196;44538:7;44534:2;44519:27;;44528:4;44519:27;;;;;;;;;;;;44557:42;44578:4;44584:2;44588:7;44597:1;44557:20;:42::i;:::-;42251:2356;;42147:2460;;;:::o;33102:1111::-;33164:21;;:::i;:::-;33198:12;33213:7;33198:22;;33281:4;33262:15;:13;:15::i;:::-;:23;33258:888;;33298:13;;33291:4;:20;33287:859;;;33332:31;33366:11;:17;33378:4;33366:17;;;;;;;;;;;33332:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33407:9;:16;;;33402:729;;33478:1;33452:28;;:9;:14;;;:28;;;33448:101;;33516:9;33509:16;;;;;;33448:101;33851:261;33858:4;33851:261;;;33891:6;;;;;;;;33936:11;:17;33948:4;33936:17;;;;;;;;;;;33924:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34010:1;33984:28;;:9;:14;;;:28;;;33980:109;;34052:9;34045:16;;;;;;33980:109;33851:261;;;33402:729;33313:833;33287:859;33258:888;34174:31;;;;;;;;;;;;;;33102:1111;;;;:::o;8108:191::-;8182:16;8201:6;;;;;;;;;;;8182:25;;8227:8;8218:6;;:17;;;;;;;;;;;;;;;;;;8282:8;8251:40;;8272:8;8251:40;;;;;;;;;;;;8171:128;8108:191;:::o;9539:326::-;9599:4;9856:1;9834:7;:19;;;:23;9827:30;;9539:326;;;:::o;48217:667::-;48380:4;48417:2;48401:36;;;48438:12;:10;:12::i;:::-;48452:4;48458:7;48467:5;48401:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48397:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48652:1;48635:6;:13;:18;48631:235;;;48681:40;;;;;;;;;;;;;;48631:235;48824:6;48818:13;48809:6;48805:2;48801:15;48794:38;48397:480;48530:45;;;48520:55;;;:6;:55;;;;48513:62;;;48217:667;;;;;;:::o;35386:104::-;35437:13;35470:12;35463:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35386:104;:::o;3124:723::-;3180:13;3410:1;3401:5;:10;3397:53;;;3428:10;;;;;;;;;;;;;;;;;;;;;3397:53;3460:12;3475:5;3460:20;;3491:14;3516:78;3531:1;3523:4;:9;3516:78;;3549:8;;;;;:::i;:::-;;;;3580:2;3572:10;;;;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3604:39;;3654:154;3670:1;3661:5;:10;3654:154;;3698:1;3688:11;;;;;:::i;:::-;;;3765:2;3757:5;:10;;;;:::i;:::-;3744:2;:24;;;;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3794:2;3785:11;;;;;:::i;:::-;;;3654:154;;;3832:6;3818:21;;;;;3124:723;;;;:::o;49532:159::-;;;;;:::o;50350:158::-;;;;;:::o;38235:104::-;38304:27;38314:2;38318:8;38304:27;;;;;;;;;;;;:9;:27::i;:::-;38235:104;;:::o;38712:1749::-;38835:20;38858:13;;38835:36;;38900:1;38886:16;;:2;:16;;;38882:48;;;38911:19;;;;;;;;;;;;;;38882:48;38957:1;38945:8;:13;38941:44;;;38967:18;;;;;;;;;;;;;;38941:44;38998:61;39028:1;39032:2;39036:12;39050:8;38998:21;:61::i;:::-;39371:8;39336:12;:16;39349:2;39336:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39435:8;39395:12;:16;39408:2;39395:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39494:2;39461:11;:25;39473:12;39461:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39561:15;39511:11;:25;39523:12;39511:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39594:20;39617:12;39594:35;;39644:11;39673:8;39658:12;:23;39644:37;;39702:15;:2;:13;;;:15::i;:::-;39698:631;;;39738:313;39794:12;39790:2;39769:38;;39786:1;39769:38;;;;;;;;;;;;39835:69;39874:1;39878:2;39882:14;;;;;;39898:5;39835:30;:69::i;:::-;39830:174;;39940:40;;;;;;;;;;;;;;39830:174;40046:3;40031:12;:18;39738:313;;40132:12;40115:13;;:29;40111:43;;40146:8;;;40111:43;39698:631;;;40195:119;40251:14;;;;;;40247:2;40226:40;;40243:1;40226:40;;;;;;;;;;;;40309:3;40294:12;:18;40195:119;;39698:631;40359:12;40343:13;:28;;;;39311:1072;;40393:60;40422:1;40426:2;40430:12;40444:8;40393:20;:60::i;:::-;38824:1637;38712:1749;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:400::-;9048:3;9069:84;9151:1;9146:3;9069:84;:::i;:::-;9062:91;;9162:93;9251:3;9162:93;:::i;:::-;9280:1;9275:3;9271:11;9264:18;;8888:400;;;:::o;9294:366::-;9436:3;9457:67;9521:2;9516:3;9457:67;:::i;:::-;9450:74;;9533:93;9622:3;9533:93;:::i;:::-;9651:2;9646:3;9642:12;9635:19;;9294:366;;;:::o;9666:118::-;9753:24;9771:5;9753:24;:::i;:::-;9748:3;9741:37;9666:118;;:::o;9790:701::-;10071:3;10093:95;10184:3;10175:6;10093:95;:::i;:::-;10086:102;;10205:95;10296:3;10287:6;10205:95;:::i;:::-;10198:102;;10317:148;10461:3;10317:148;:::i;:::-;10310:155;;10482:3;10475:10;;9790:701;;;;;:::o;10497:222::-;10590:4;10628:2;10617:9;10613:18;10605:26;;10641:71;10709:1;10698:9;10694:17;10685:6;10641:71;:::i;:::-;10497:222;;;;:::o;10725:640::-;10920:4;10958:3;10947:9;10943:19;10935:27;;10972:71;11040:1;11029:9;11025:17;11016:6;10972:71;:::i;:::-;11053:72;11121:2;11110:9;11106:18;11097:6;11053:72;:::i;:::-;11135;11203:2;11192:9;11188:18;11179:6;11135:72;:::i;:::-;11254:9;11248:4;11244:20;11239:2;11228:9;11224:18;11217:48;11282:76;11353:4;11344:6;11282:76;:::i;:::-;11274:84;;10725:640;;;;;;;:::o;11371:210::-;11458:4;11496:2;11485:9;11481:18;11473:26;;11509:65;11571:1;11560:9;11556:17;11547:6;11509:65;:::i;:::-;11371:210;;;;:::o;11587:313::-;11700:4;11738:2;11727:9;11723:18;11715:26;;11787:9;11781:4;11777:20;11773:1;11762:9;11758:17;11751:47;11815:78;11888:4;11879:6;11815:78;:::i;:::-;11807:86;;11587:313;;;;:::o;11906:419::-;12072:4;12110:2;12099:9;12095:18;12087:26;;12159:9;12153:4;12149:20;12145:1;12134:9;12130:17;12123:47;12187:131;12313:4;12187:131;:::i;:::-;12179:139;;11906:419;;;:::o;12331:::-;12497:4;12535:2;12524:9;12520:18;12512:26;;12584:9;12578:4;12574:20;12570:1;12559:9;12555:17;12548:47;12612:131;12738:4;12612:131;:::i;:::-;12604:139;;12331:419;;;:::o;12756:222::-;12849:4;12887:2;12876:9;12872:18;12864:26;;12900:71;12968:1;12957:9;12953:17;12944:6;12900:71;:::i;:::-;12756:222;;;;:::o;12984:129::-;13018:6;13045:20;;:::i;:::-;13035:30;;13074:33;13102:4;13094:6;13074:33;:::i;:::-;12984:129;;;:::o;13119:75::-;13152:6;13185:2;13179:9;13169:19;;13119:75;:::o;13200:307::-;13261:4;13351:18;13343:6;13340:30;13337:56;;;13373:18;;:::i;:::-;13337:56;13411:29;13433:6;13411:29;:::i;:::-;13403:37;;13495:4;13489;13485:15;13477:23;;13200:307;;;:::o;13513:308::-;13575:4;13665:18;13657:6;13654:30;13651:56;;;13687:18;;:::i;:::-;13651:56;13725:29;13747:6;13725:29;:::i;:::-;13717:37;;13809:4;13803;13799:15;13791:23;;13513:308;;;:::o;13827:98::-;13878:6;13912:5;13906:12;13896:22;;13827:98;;;:::o;13931:99::-;13983:6;14017:5;14011:12;14001:22;;13931:99;;;:::o;14036:168::-;14119:11;14153:6;14148:3;14141:19;14193:4;14188:3;14184:14;14169:29;;14036:168;;;;:::o;14210:169::-;14294:11;14328:6;14323:3;14316:19;14368:4;14363:3;14359:14;14344:29;;14210:169;;;;:::o;14385:148::-;14487:11;14524:3;14509:18;;14385:148;;;;:::o;14539:305::-;14579:3;14598:20;14616:1;14598:20;:::i;:::-;14593:25;;14632:20;14650:1;14632:20;:::i;:::-;14627:25;;14786:1;14718:66;14714:74;14711:1;14708:81;14705:107;;;14792:18;;:::i;:::-;14705:107;14836:1;14833;14829:9;14822:16;;14539:305;;;;:::o;14850:185::-;14890:1;14907:20;14925:1;14907:20;:::i;:::-;14902:25;;14941:20;14959:1;14941:20;:::i;:::-;14936:25;;14980:1;14970:35;;14985:18;;:::i;:::-;14970:35;15027:1;15024;15020:9;15015:14;;14850:185;;;;:::o;15041:191::-;15081:4;15101:20;15119:1;15101:20;:::i;:::-;15096:25;;15135:20;15153:1;15135:20;:::i;:::-;15130:25;;15174:1;15171;15168:8;15165:34;;;15179:18;;:::i;:::-;15165:34;15224:1;15221;15217:9;15209:17;;15041:191;;;;:::o;15238:96::-;15275:7;15304:24;15322:5;15304:24;:::i;:::-;15293:35;;15238:96;;;:::o;15340:90::-;15374:7;15417:5;15410:13;15403:21;15392:32;;15340:90;;;:::o;15436:149::-;15472:7;15512:66;15505:5;15501:78;15490:89;;15436:149;;;:::o;15591:126::-;15628:7;15668:42;15661:5;15657:54;15646:65;;15591:126;;;:::o;15723:77::-;15760:7;15789:5;15778:16;;15723:77;;;:::o;15806:154::-;15890:6;15885:3;15880;15867:30;15952:1;15943:6;15938:3;15934:16;15927:27;15806:154;;;:::o;15966:307::-;16034:1;16044:113;16058:6;16055:1;16052:13;16044:113;;;16143:1;16138:3;16134:11;16128:18;16124:1;16119:3;16115:11;16108:39;16080:2;16077:1;16073:10;16068:15;;16044:113;;;16175:6;16172:1;16169:13;16166:101;;;16255:1;16246:6;16241:3;16237:16;16230:27;16166:101;16015:258;15966:307;;;:::o;16279:320::-;16323:6;16360:1;16354:4;16350:12;16340:22;;16407:1;16401:4;16397:12;16428:18;16418:81;;16484:4;16476:6;16472:17;16462:27;;16418:81;16546:2;16538:6;16535:14;16515:18;16512:38;16509:84;;;16565:18;;:::i;:::-;16509:84;16330:269;16279:320;;;:::o;16605:281::-;16688:27;16710:4;16688:27;:::i;:::-;16680:6;16676:40;16818:6;16806:10;16803:22;16782:18;16770:10;16767:34;16764:62;16761:88;;;16829:18;;:::i;:::-;16761:88;16869:10;16865:2;16858:22;16648:238;16605:281;;:::o;16892:233::-;16931:3;16954:24;16972:5;16954:24;:::i;:::-;16945:33;;17000:66;16993:5;16990:77;16987:103;;;17070:18;;:::i;:::-;16987:103;17117:1;17110:5;17106:13;17099:20;;16892:233;;;:::o;17131:176::-;17163:1;17180:20;17198:1;17180:20;:::i;:::-;17175:25;;17214:20;17232:1;17214:20;:::i;:::-;17209:25;;17253:1;17243:35;;17258:18;;:::i;:::-;17243:35;17299:1;17296;17292:9;17287:14;;17131:176;;;;:::o;17313:180::-;17361:77;17358:1;17351:88;17458:4;17455:1;17448:15;17482:4;17479:1;17472:15;17499:180;17547:77;17544:1;17537:88;17644:4;17641:1;17634:15;17668:4;17665:1;17658:15;17685:180;17733:77;17730:1;17723:88;17830:4;17827:1;17820:15;17854:4;17851:1;17844:15;17871:180;17919:77;17916:1;17909:88;18016:4;18013:1;18006:15;18040:4;18037:1;18030:15;18057:180;18105:77;18102:1;18095:88;18202:4;18199:1;18192:15;18226:4;18223:1;18216:15;18243:117;18352:1;18349;18342:12;18366:117;18475:1;18472;18465:12;18489:117;18598:1;18595;18588:12;18612:117;18721:1;18718;18711:12;18735:102;18776:6;18827:2;18823:7;18818:2;18811:5;18807:14;18803:28;18793:38;;18735:102;;;:::o;18843:225::-;18983:34;18979:1;18971:6;18967:14;18960:58;19052:8;19047:2;19039:6;19035:15;19028:33;18843:225;:::o;19074:155::-;19214:7;19210:1;19202:6;19198:14;19191:31;19074:155;:::o;19235:182::-;19375:34;19371:1;19363:6;19359:14;19352:58;19235:182;:::o;19423:122::-;19496:24;19514:5;19496:24;:::i;:::-;19489:5;19486:35;19476:63;;19535:1;19532;19525:12;19476:63;19423:122;:::o;19551:116::-;19621:21;19636:5;19621:21;:::i;:::-;19614:5;19611:32;19601:60;;19657:1;19654;19647:12;19601:60;19551:116;:::o;19673:120::-;19745:23;19762:5;19745:23;:::i;:::-;19738:5;19735:34;19725:62;;19783:1;19780;19773:12;19725:62;19673:120;:::o;19799:122::-;19872:24;19890:5;19872:24;:::i;:::-;19865:5;19862:35;19852:63;;19911:1;19908;19901:12;19852:63;19799:122;:::o
Swarm Source
ipfs://1db954b931b0122a615f5a8f6d6e7ef3752c0c9a02f5e398ada6451bef564c75
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.