diff --git a/Package.swift b/Package.swift index 550d0ee3..a5f9bfc4 100644 --- a/Package.swift +++ b/Package.swift @@ -48,6 +48,7 @@ let package = Package( .copy("Resources/SettingsIntegrationsIllustration.png"), .copy("Resources/SettingsAboutIllustration.png"), .copy("Resources/IndustryLexicons.json"), + .copy("Resources/THUOCL-LICENSE.txt"), .copy("Resources/Sounds"), .copy("Resources/AppIcon.icns"), .copy("Resources/AppIconLight.icns"), diff --git a/Sources/App/AppDelegate+Integrations.swift b/Sources/App/AppDelegate+Integrations.swift index 102a9fc1..a9734a77 100644 --- a/Sources/App/AppDelegate+Integrations.swift +++ b/Sources/App/AppDelegate+Integrations.swift @@ -117,10 +117,9 @@ extension AppDelegate { func makeIntegrationSessionCoordinator(service: OpenTypeService) -> InputSessionCoordinator { InputSessionCoordinator( service: service, + engineProvider: speechEngineProvider, textProcessor: textProcessor, - isUserWorkflowBusy: { [weak self] in - self?.appState.isBusy ?? false - } + ownership: inputOwnership ) } } diff --git a/Sources/App/InputSessionOwnership.swift b/Sources/App/InputSessionOwnership.swift new file mode 100644 index 00000000..3af8ed88 --- /dev/null +++ b/Sources/App/InputSessionOwnership.swift @@ -0,0 +1,35 @@ +import Foundation + +/// All input entries share this reservation, including preparation and cancellation drain. +@MainActor +final class InputSessionOwnership { + private var current: UUID? + private var cancelled = false + + var isBusy: Bool { current != nil } + + func acquire() throws -> UUID { + guard current == nil else { throw IntegrationError.busy } + let id = UUID() + current = id + cancelled = false + return id + } + + func check(_ id: UUID) throws { + try Task.checkCancellation() + guard current == id, !cancelled else { throw CancellationError() } + } + + func cancel(_ id: UUID) { + guard current == id else { return } + cancelled = true + } + + /// Called only after the owner has stopped touching execution resources. + func release(_ id: UUID) { + guard current == id else { return } + current = nil + cancelled = false + } +} diff --git a/Sources/App/OpenTypeApp.swift b/Sources/App/OpenTypeApp.swift index 19b991fb..5c3ddac1 100644 --- a/Sources/App/OpenTypeApp.swift +++ b/Sources/App/OpenTypeApp.swift @@ -24,6 +24,8 @@ final class AppDelegate: NSObject, NSApplicationDelegate, ObservableObject { private var settingsWindowDelegate: SettingsWindowDelegate? private var onboardingWindow: NSWindow? private let popoverOutsideClickMonitor = PopoverOutsideClickMonitor() + let inputOwnership = InputSessionOwnership() + let speechEngineProvider = SpeechEngineProvider() let textProcessor: TextProcessor var cancellables = Set() var iconTimer: Timer? @@ -102,7 +104,7 @@ final class AppDelegate: NSObject, NSApplicationDelegate, ObservableObject { } private func setupPipeline() { - pipeline = VoicePipeline(appState: appState, textProcessor: textProcessor) + pipeline = VoicePipeline(appState: appState, textProcessor: textProcessor, ownership: inputOwnership, engineProvider: speechEngineProvider) Task { await pipeline?.warmUp() } } @@ -150,26 +152,23 @@ final class AppDelegate: NSObject, NSApplicationDelegate, ObservableObject { action: HotkeyAction, remoteSessionToken: UInt64? = nil ) -> Task? { - if integrationSessionCoordinator.isBusy { - pipeline?.showBusyHint() - return nil - } savePreviousApp() if popover.isShown { closePopover() } let mode: VoiceInputMode = action == .translation ? .translation(AppSettings.shared.translationTargetLanguage) : .dictation + let targetApp = previousApp return Task { await pipeline?.start( mode: mode, - targetApp: previousApp, + targetApp: targetApp, remoteSessionToken: remoteSessionToken ) } } func stopRecording() { - Task { await pipeline?.stop(targetApp: previousApp) } + Task { await pipeline?.stop() } } private func applyPendingReplacement() async { diff --git a/Sources/App/VoiceInputSettings.swift b/Sources/App/VoiceInputSettings.swift new file mode 100644 index 00000000..ccba5bce --- /dev/null +++ b/Sources/App/VoiceInputSettings.swift @@ -0,0 +1,35 @@ +import Foundation + +/// Immutable choices for one utterance; settings changes apply to the next session. +struct VoiceInputSettings { + let processing: TextProcessingOptions + let speech: SpeechEngineProvider.Selection + let dictionary: PersonalDictionarySnapshot + let outputMode: OutputMode + let enableInstantInsert: Bool + let enableMemory: Bool + let memoryWindowMinutes: Int + let useScreenContext: Bool + let streamingEnabled: Bool + let microphoneID: String? + let audioActivityThresholds: AudioActivityThresholds + + var inputLanguage: InputLanguage { processing.inputLanguage } + var llmModel: String { processing.llmModel } + var espressoModelPath: String { processing.espressoModelPath } + + @MainActor + init(settings: AppSettings, inputLanguage: InputLanguage? = nil) { + processing = TextProcessingOptions(settings: settings, inputLanguage: inputLanguage) + speech = SpeechEngineProvider.Selection(settings: settings, inputLanguage: inputLanguage) + dictionary = PersonalDictionary.shared.snapshot(settings: settings) + outputMode = settings.outputMode + enableInstantInsert = settings.enableInstantInsert + enableMemory = settings.enableMemory + memoryWindowMinutes = settings.memoryWindowMinutes + useScreenContext = settings.useScreenContext + streamingEnabled = settings.enableStreamingRecognitionBeta + microphoneID = settings.microphoneID + audioActivityThresholds = settings.audioActivityThresholds + } +} diff --git a/Sources/App/VoicePipeline+EditCommandHelpers.swift b/Sources/App/VoicePipeline+EditCommandHelpers.swift index 1ee53948..f471fee6 100644 --- a/Sources/App/VoicePipeline+EditCommandHelpers.swift +++ b/Sources/App/VoicePipeline+EditCommandHelpers.swift @@ -4,7 +4,7 @@ import Foundation @MainActor extension VoicePipeline { func replacementInputContext( - settings: AppSettings, + settings: VoiceInputSettings, targetApp: NSRunningApplication? ) -> InputContext { InputContext.capture( @@ -18,7 +18,7 @@ extension VoicePipeline { func finalizedReplacementText( _ text: String, - settings: AppSettings + settings: VoiceInputSettings ) -> String { textProcessor.cleanCommandGeneratedOutput( text, @@ -29,7 +29,7 @@ extension VoicePipeline { func rewriteSelectedText( raw: String, intent: SelectionRewriteIntent, - settings: AppSettings, + settings: VoiceInputSettings, targetApp: NSRunningApplication? ) async { cancelScreenContextCapture() @@ -48,11 +48,12 @@ extension VoicePipeline { inputLanguage: settings.inputLanguage, source: .menuBar ) - var options = TextProcessingOptions(settings: settings) + var options = settings.processing options.llmModel = settings.llmModel let memoryContext = VoicePipelinePolicy.memoryContext( for: .command, - settings: settings, + enableMemory: settings.enableMemory, + memoryWindowMinutes: settings.memoryWindowMinutes, currentContext: context ) @@ -76,6 +77,7 @@ extension VoicePipeline { appState.statusMessage = L("pipeline.replacing") let result = await textInserter.replaceSelectedText(text: rewrittenText, targetApp: targetApp) + guard !Task.isCancelled else { return } appState.phase = .done appState.statusMessage = L("status.done") hideOverlayAfterDelay() diff --git a/Sources/App/VoicePipeline+EditCommandResolution.swift b/Sources/App/VoicePipeline+EditCommandResolution.swift index 362c6d59..39474fec 100644 --- a/Sources/App/VoicePipeline+EditCommandResolution.swift +++ b/Sources/App/VoicePipeline+EditCommandResolution.swift @@ -5,7 +5,7 @@ import Foundation extension VoicePipeline { func resolvedSpokenEditCommand( raw: String, - settings: AppSettings, + settings: VoiceInputSettings, targetApp: NSRunningApplication? ) async -> SpokenEditCommand? { guard VoicePipelinePolicy.shouldResolveEditCommandWithLLMFirst(outputMode: settings.outputMode) else { @@ -47,10 +47,10 @@ extension VoicePipeline { private func resolveSpokenEditCommandWithLLM( raw: String, - settings: AppSettings, + settings: VoiceInputSettings, targetApp: NSRunningApplication? ) async -> SpokenEditCommandLLMResolution? { - var options = TextProcessingOptions(settings: settings) + var options = settings.processing options.llmModel = settings.llmModel return await textProcessor.resolveSpokenEditCommandResolution( text: raw, diff --git a/Sources/App/VoicePipeline+EditCommands.swift b/Sources/App/VoicePipeline+EditCommands.swift index b288aa9d..150e247d 100644 --- a/Sources/App/VoicePipeline+EditCommands.swift +++ b/Sources/App/VoicePipeline+EditCommands.swift @@ -5,7 +5,7 @@ import Foundation extension VoicePipeline { func handleSpokenEditCommandIfNeeded( raw: String, - settings: AppSettings, + settings: VoiceInputSettings, targetApp: NSRunningApplication? ) async -> Bool { let expectedEspressoModelPath = settings.espressoModelPath @@ -17,6 +17,7 @@ extension VoicePipeline { return false } + guard !Task.isCancelled else { return true } switch command { case .replaceLast(let replacementRaw): await replaceLastInsertion( @@ -54,7 +55,7 @@ extension VoicePipeline { guard !Task.isCancelled else { return true } if let espressoOutcome = await consumeEspressoOutcome( - settings: settings, + settings: appState.settings, expectedEspressoModelPath: expectedEspressoModelPath ) { if case .error = appState.phase, espressoOutcome == .fallback { @@ -74,7 +75,7 @@ extension VoicePipeline { private func replaceLastInsertion( raw: String, replacementRaw: String, - settings: AppSettings, + settings: VoiceInputSettings, targetApp: NSRunningApplication? ) async { cancelScreenContextCapture() @@ -101,6 +102,7 @@ extension VoicePipeline { previouslyInserted: appState.lastInsertedText, targetApp: targetApp ) + guard !Task.isCancelled else { return } appState.phase = .done appState.statusMessage = L("status.done") @@ -130,7 +132,7 @@ extension VoicePipeline { private func replaceSelectedText( raw: String, replacementRaw: String, - settings: AppSettings, + settings: VoiceInputSettings, targetApp: NSRunningApplication? ) async { cancelScreenContextCapture() @@ -148,6 +150,7 @@ extension VoicePipeline { Log.sensitive("[VoicePipeline] voice edit replace selection \(replacementText.count) chars") let result = await textInserter.replaceSelectedText(text: replacementText, targetApp: targetApp) + guard !Task.isCancelled else { return } appState.phase = .done appState.statusMessage = L("status.done") @@ -183,6 +186,7 @@ extension VoicePipeline { Log.info("[VoicePipeline] voice edit delete selection") let result = await textInserter.deleteSelectedText(targetApp: targetApp) + guard !Task.isCancelled else { return } if case .probablyFailed(let reason) = result { Log.info("[VoicePipeline] voice edit delete selection probably failed: \(reason)") @@ -213,6 +217,7 @@ extension VoicePipeline { previouslyInserted: appState.lastInsertedText, targetApp: targetApp ) + guard !Task.isCancelled else { return } if case .probablyFailed(let reason) = result { Log.info("[VoicePipeline] voice edit undo probably failed: \(reason)") diff --git a/Sources/App/VoicePipeline+ModelLifecycle.swift b/Sources/App/VoicePipeline+ModelLifecycle.swift index e5bed5ff..3c57b434 100644 --- a/Sources/App/VoicePipeline+ModelLifecycle.swift +++ b/Sources/App/VoicePipeline+ModelLifecycle.swift @@ -5,7 +5,6 @@ extension VoicePipeline { func unloadLLM() { formattingPreloadGeneration += 1 processingTask?.cancel() - processingTask = nil replacementTask?.cancel() replacementTask = nil appState.clearPendingReplacement() @@ -37,7 +36,8 @@ extension VoicePipeline { let precedingTask = formattingModelLifecycleTask let task: Task = Task { @MainActor [weak self] in _ = await precedingTask?.value - guard let self else { return nil } + guard let self, let lease = try? self.ownership.acquire() else { return nil } + defer { self.ownership.release(lease) } return await self.preloadFormattingModelNow( showFailureInStatus: showFailureInStatus ) diff --git a/Sources/App/VoicePipeline+Models.swift b/Sources/App/VoicePipeline+Models.swift index b3a8a752..d4a04741 100644 --- a/Sources/App/VoicePipeline+Models.swift +++ b/Sources/App/VoicePipeline+Models.swift @@ -3,14 +3,13 @@ import Foundation @MainActor extension VoicePipeline { func unloadWhisper() { - whisperEngine?.unload() - whisperEngine = nil + engineProvider.discardCachedEngine() appState.whisperModelReady = false appState.statusMessage = L("pipeline.whisper_unloaded") } func unloadLocalASR() { - qwenSpeechEngine = nil + engineProvider.discardCachedEngine() } @discardableResult @@ -132,154 +131,31 @@ extension VoicePipeline { } func ensureEngineLoaded(requestPermission: Bool = true) async { - switch appState.settings.speechEngine { - case .whisper: - await ensureWhisperLoaded(showMissingModelError: requestPermission) - case .apple: - if appleSpeechEngine == nil { - let locale = Locale(identifier: appState.settings.inputLanguage.localeIdentifier) - appleSpeechEngine = AppleSpeechEngine(locale: locale) - } - if requestPermission, !(appleSpeechEngine?.isReady ?? false) { - appleSpeechEngine?.requestAccess() - try? await Task.sleep(nanoseconds: 500_000_000) - } - case .volc: - let settings = appState.settings - volcSpeechEngine = VolcSpeechEngine( - appKey: settings.volcAppKey, - accessKey: settings.volcAccessKey, - resourceId: settings.volcResourceId - ) - case .qwen3: - let settings = appState.settings - let catalog = ModelCatalog.shared - guard localASRIsAvailable(settings.qwenASRModel) else { - qwenSpeechEngine = nil - markSpeechModelDownloadRequired(showInStatus: requestPermission) - return - } - let modelPath = catalog.asrModelPath(for: settings.qwenASRModel) - if qwenSpeechEngine?.usesModel(at: modelPath) == true { return } - let engine = QwenNativeASREngine( - modelPath: modelPath, - modelID: settings.qwenASRModel - ) - qwenSpeechEngine = engine - Task { await engine.prepare() } - case .firered, .megaASR: - let settings = appState.settings - guard let modelID = settings.speechEngine.asrModelID else { return } - guard localASRIsAvailable(modelID) else { - mlxSTTEngine = nil - markSpeechModelDownloadRequired(showInStatus: requestPermission) - return - } - if mlxSTTEngine?.modelID == modelID { return } - let engine = MLXSTTEngine(modelID: modelID) - mlxSTTEngine = engine - Task { await engine.prepare() } - } - } - - private func localASRIsAvailable(_ modelID: String) -> Bool { - ModelCatalog.shared.refreshASRStatus(recheckingErrors: true) - guard let status = ModelCatalog.shared.asrModels.first(where: { $0.id == modelID })?.status else { - return false - } - return status == .downloaded || status == .ready - } - - private func ensureWhisperLoaded(showMissingModelError: Bool) async { - if let engine = whisperEngine { - if engine.isReady || engine.isLoading { return } - } - - let modelID = appState.settings.whisperModel - let catalog = ModelCatalog.shared - catalog.refreshStatus(recheckingErrors: true) - - let alreadyDownloaded = catalog.isWhisperDownloaded(modelID) - guard alreadyDownloaded else { - whisperEngine = nil - appState.whisperModelReady = false - markSpeechModelDownloadRequired(showInStatus: showMissingModelError) - return + let settings = appState.settings + let isWhisper = settings.speechEngine == .whisper + let lease = sessionLease + if isWhisper { + appState.phase = .loadingModel + appState.statusMessage = L("pipeline.preparing_model") } - - let engine = WhisperEngine(modelName: modelID) - whisperEngine = engine - appState.phase = .loadingModel - appState.statusMessage = L("pipeline.preparing_model") - appState.resetDownloadProgress() - catalog.updateWhisperStatus(modelID, status: .loading, detail: L("model.loading")) - - do { - try await engine.loadModel { [weak self] progress in - Task { @MainActor in - guard let self else { return } - self.appState.downloadProgress = progress.fraction - - switch progress.stage { - case .downloading: - self.appState.statusMessage = L("pipeline.loading_model") - self.appState.resetDownloadProgress() - self.appState.downloadProgress = progress.fraction - catalog.updateWhisperStatus(modelID, status: .loading, detail: L("model.loading")) - case .compiling: - self.appState.statusMessage = L("pipeline.loading_model") - self.appState.resetDownloadProgress() - self.appState.downloadProgress = progress.fraction - catalog.updateWhisperStatus(modelID, status: .compiling, detail: L("model.loading")) - case .loading: - self.appState.statusMessage = L("pipeline.loading_model") - self.appState.resetDownloadProgress() - self.appState.downloadProgress = progress.fraction - catalog.updateWhisperStatus(modelID, status: .loading, detail: L("model.loading")) - case .done: - break - } - } + let engine = await engineProvider.engine(settings: settings, requestPermission: requestPermission, selection: sessionSettings?.speech) { [weak self] progress in + Task { @MainActor in + guard let self, self.sessionLease == lease, self.appState.phase == .loadingModel else { return } + self.appState.downloadProgress = progress.fraction + self.appState.statusMessage = L("pipeline.loading_model") } - - appState.whisperModelReady = true + } + if let lease, (try? ownership.check(lease)) == nil { return } + sessionEngine = engine + if isWhisper { + appState.whisperModelReady = engine?.isReady ?? false appState.resetDownloadProgress() appState.phase = .idle - appState.statusMessage = L("status.ready") - catalog.updateWhisperStatus(modelID, status: .ready) - } catch let error as WhisperError { - appState.whisperModelReady = false - appState.resetDownloadProgress() - - let message: String - switch error { - case .downloadFailed: - message = L("pipeline.download_failed") - case .compileFailed: - message = L("pipeline.compile_failed") - case .loadFailed: - message = L("pipeline.load_failed") - default: - message = error.localizedDescription - } - appState.phase = .error(message) - appState.statusMessage = message - catalog.updateWhisperStatus(modelID, status: .error(message)) - } catch { - appState.whisperModelReady = false - appState.resetDownloadProgress() - let message = L("pipeline.model_load_failed_prefix") + error.localizedDescription + } + if engine == nil, requestPermission { + let message = engineProvider.failureMessage ?? L("pipeline.model_load_failed") appState.phase = .error(message) appState.statusMessage = message - catalog.updateWhisperStatus(modelID, status: .error(message)) } } - - private func markSpeechModelDownloadRequired(showInStatus: Bool) { - guard showInStatus else { return } - appState.resetDownloadProgress() - let message = L("pipeline.speech_model_download_required") - appState.phase = .error(message) - appState.statusMessage = message - } } diff --git a/Sources/App/VoicePipeline+Processing.swift b/Sources/App/VoicePipeline+Processing.swift index 82bfa5a5..6bc98c41 100644 --- a/Sources/App/VoicePipeline+Processing.swift +++ b/Sources/App/VoicePipeline+Processing.swift @@ -7,7 +7,7 @@ extension VoicePipeline { audioURL: URL?, audioActivity: AudioCaptureActivity, language: String?, - settings: AppSettings, + settings: VoiceInputSettings, inputMode: VoiceInputMode, targetApp: NSRunningApplication? ) async { @@ -90,11 +90,11 @@ extension VoicePipeline { audioURL: URL?, audioActivity: AudioCaptureActivity, language: String?, - settings: AppSettings + settings: VoiceInputSettings ) async throws -> String { let started = CFAbsoluteTimeGetCurrent() let raw: String - if settings.enableStreamingRecognitionBeta { + if recordingStreaming { raw = try await currentEngine?.finishListening(audioURL: audioURL, language: language) ?? "" } else { raw = try await currentEngine?.transcribe(audioURL: audioURL, language: language) ?? "" @@ -102,6 +102,7 @@ extension VoicePipeline { let elapsed = CFAbsoluteTimeGetCurrent() - started Log.info("[VoicePipeline] ASR stage finished in \(String(format: "%.2f", elapsed))s") + try Task.checkCancellation() guard let prepared = TranscriptionSanitizer.prepare(raw, audioActivity: audioActivity) else { showNoSpeechDetected(reason: "transcription has no meaningful content: \(raw)") throw VoicePipelineStop.noSpeech @@ -113,7 +114,7 @@ extension VoicePipeline { private func outputText( for raw: String, - settings: AppSettings, + settings: VoiceInputSettings, inputMode: VoiceInputMode, targetApp: NSRunningApplication? ) async -> VoicePipelineOutput { @@ -133,7 +134,7 @@ extension VoicePipeline { return await processCommand(raw, settings: settings, targetApp: targetApp) case .direct: cancelScreenContextCapture() - let dictionarySnapshot = PersonalDictionary.shared.snapshot(settings: settings) + let dictionarySnapshot = settings.dictionary let context = InputContext.capture( targetApp: targetApp, screenContext: "", @@ -154,15 +155,15 @@ extension VoicePipeline { private func processSmartFormat( _ raw: String, - settings: AppSettings, + settings: VoiceInputSettings, targetApp: NSRunningApplication? ) async -> VoicePipelineOutput { appState.phase = .processing appState.statusMessage = L("pipeline.formatting") let started = CFAbsoluteTimeGetCurrent() - let processingOptions = TextProcessingOptions(settings: settings) - let dictionarySnapshot = PersonalDictionary.shared.snapshot(settings: settings) + let processingOptions = settings.processing + let dictionarySnapshot = settings.dictionary let enableMemory = settings.enableMemory let memoryWindowMinutes = settings.memoryWindowMinutes let screenContext = await finishScreenContextCapture() @@ -199,15 +200,15 @@ extension VoicePipeline { private func processCommand( _ raw: String, - settings: AppSettings, + settings: VoiceInputSettings, targetApp: NSRunningApplication? ) async -> VoicePipelineOutput { appState.phase = .processing appState.statusMessage = L("pipeline.formatting") let started = CFAbsoluteTimeGetCurrent() - let processingOptions = TextProcessingOptions(settings: settings) - let dictionarySnapshot = PersonalDictionary.shared.snapshot(settings: settings) + let processingOptions = settings.processing + let dictionarySnapshot = settings.dictionary let enableMemory = settings.enableMemory let memoryWindowMinutes = settings.memoryWindowMinutes let screenContext = await finishScreenContextCapture() diff --git a/Sources/App/VoicePipeline+Recording.swift b/Sources/App/VoicePipeline+Recording.swift new file mode 100644 index 00000000..be3aa4c4 --- /dev/null +++ b/Sources/App/VoicePipeline+Recording.swift @@ -0,0 +1,165 @@ +import AppKit +import Foundation + +@MainActor +extension VoicePipeline { + // MARK: - Recording + + func start( + mode: VoiceInputMode = .dictation, + targetApp: NSRunningApplication? = nil, + remoteSessionToken: UInt64? = nil + ) async { + if appState.isBusy { + Log.info("[VoicePipeline] start: busy (\(appState.phase)), ignoring") + showBusyHint() + return + } + + if appState.isDownloading { return } + guard let lease = try? ownership.acquire() else { + showBusyHint() + return + } + sessionLease = lease + var started = false + defer { if !started { releaseSession(lease) } } + let snapshot = VoiceInputSettings(settings: appState.settings) + sessionSettings = snapshot + recordingLanguage = snapshot.inputLanguage.whisperCode + recordingStreaming = snapshot.streamingEnabled + let microphoneID = snapshot.microphoneID + let vocabularySnapshot = snapshot.dictionary + + correctionCapture.finishCurrentSession() + + if let engineLoadBarrier { + await engineLoadBarrier() + } + + if engineOverride == nil { + await ensureEngineLoaded(requestPermission: true) + } + + guard (try? ownership.check(lease)) != nil else { return } + + // Model loading above can take a while. A remote voice-key session may + // have been released meanwhile; never commit that start (and never fall + // back to the system microphone for a key the user already let go). + if let remoteSessionToken, + !RemoteMicStartGuard.shouldCommit( + remoteSessionToken: remoteSessionToken, + isCancelled: Task.isCancelled, + isSessionCurrent: XiaomiRemoteMicBridge.isSessionCurrent + ) { + Log.info("[VoicePipeline] start: remote session superseded before commit; aborting") + currentEngine?.cancelListening() + cancelScreenContextCapture() + return + } + + guard currentEngine?.isReady ?? false else { + let message = appState.statusMessage == L("pipeline.speech_model_download_required") + ? appState.statusMessage + : L("pipeline.model_load_failed") + showErrorHint(message) + return + } + + clearInFlightWork() + + appState.reset() + appState.activeInputMode = mode + appState.phase = .recording + appState.statusMessage = mode.isTranslation + ? L("pipeline.recording_translation") + : L("pipeline.recording") + recordingTargetApp = targetApp + + if mode.isTranslation { + cancelScreenContextCapture() + } else { + startScreenContextCaptureIfNeeded() + } + + soundPlayer.playStart() + showOverlay() + + let language = recordingLanguage + let streamingEnabled = recordingStreaming && (currentEngine?.supportsStreaming ?? false) + recordingStreaming = streamingEnabled + currentEngine?.configureRecognition( + context: SpeechRecognitionContext(phrases: vocabularySnapshot.recognitionPhrases) + ) + if streamingEnabled { + currentEngine?.startListening(language: language) { [weak self] partialText in + Task { @MainActor in + guard let self, self.appState.isRecording, + self.sessionLease == lease, (try? self.ownership.check(lease)) != nil else { return } + self.appState.rawTranscription = TranscriptionSanitizer.previewText( + partialText, + inputLanguage: snapshot.inputLanguage + ) + } + } + } + + if let remoteCaptureSpy { + let token = remoteCaptureSpy.currentToken + let startedSpy = token.map { remoteCaptureSpy.start(token: $0) } ?? false + guard startedSpy else { + currentEngine?.cancelListening() + cancelScreenContextCapture() + recordingTargetApp = nil + appState.phase = .error(L("pipeline.mic_failed_permissions")) + appState.statusMessage = L("pipeline.mic_unavailable") + overlay.hide() + return + } + commitRecording(mode: mode, targetApp: targetApp) + started = true + return + } + + activeCapture.thresholds = snapshot.audioActivityThresholds + + let micStarted = activeCapture.start( + deviceID: microphoneID, + levelUpdate: { [weak self] level in + Task { @MainActor in + guard let self, self.sessionLease == lease, self.appState.isRecording else { return } + self.appState.audioLevel = level + } + }, + bufferUpdate: { [weak self] buffer in + guard streamingEnabled, self?.sessionLease == lease else { return } + self?.currentEngine?.appendAudioBuffer(buffer) + } + ) + guard micStarted else { + currentEngine?.cancelListening() + cancelScreenContextCapture() + recordingTargetApp = nil + appState.phase = .error(L("pipeline.mic_failed_permissions")) + appState.statusMessage = L("pipeline.mic_unavailable") + overlay.hide() + return + } + commitRecording(mode: mode, targetApp: targetApp) + started = true + } + + /// Marks the pipeline as committed and recording. Extracted so the + /// test-only capture seam and the real capture path share one commit point. + private func commitRecording(mode: VoiceInputMode, targetApp: NSRunningApplication?) { + appState.phase = .recording + appState.statusMessage = mode.isTranslation + ? L("pipeline.recording_translation") + : L("pipeline.recording") + recordingTargetApp = targetApp + if let engine = currentEngine { + enginePreparationTask = Task { await engine.prepare() } + } + } + +} diff --git a/Sources/App/VoicePipeline+Replacement.swift b/Sources/App/VoicePipeline+Replacement.swift index 30790894..372812dd 100644 --- a/Sources/App/VoicePipeline+Replacement.swift +++ b/Sources/App/VoicePipeline+Replacement.swift @@ -12,6 +12,8 @@ extension VoicePipeline { } func applyPendingReplacement() async { + guard let lease = try? ownership.acquire() else { return } + defer { ownership.release(lease) } refreshPendingReplacement() guard var replacement = appState.pendingReplacement else { return } @@ -35,11 +37,11 @@ extension VoicePipeline { func handleDeferredSmartFormat( raw: String, - settings: AppSettings, + settings: VoiceInputSettings, targetApp: NSRunningApplication? ) async { - let processingOptions = TextProcessingOptions(settings: settings) - let dictionarySnapshot = PersonalDictionary.shared.snapshot(settings: settings) + let processingOptions = settings.processing + let dictionarySnapshot = settings.dictionary let enableMemory = settings.enableMemory let memoryWindowMinutes = settings.memoryWindowMinutes let quickText = immediateInsertText( @@ -75,6 +77,7 @@ extension VoicePipeline { Log.sensitive("[VoicePipeline] instant insert \(quickText.count) chars") let started = CFAbsoluteTimeGetCurrent() let result = await textInserter.insert(text: quickText, targetApp: targetApp) + guard !Task.isCancelled else { return } let elapsed = CFAbsoluteTimeGetCurrent() - started Log.info("[VoicePipeline] instant insert stage finished in \(String(format: "%.2f", elapsed))s") @@ -146,6 +149,7 @@ extension VoicePipeline { previouslyInserted: replacement.insertedText, targetApp: targetApp ) + guard !Task.isCancelled else { return } if case .probablyFailed = result { TextInserter.copyToClipboard(formattedText) @@ -232,7 +236,6 @@ extension VoicePipeline { inputContext: inputContext, formatKind: currentReplacement.formatKind, allowsPreparedFallback: false, - allowsGuardFallback: false, dictionarySnapshot: dictionarySnapshot ) let elapsed = CFAbsoluteTimeGetCurrent() - started diff --git a/Sources/App/VoicePipeline+RewriteLast.swift b/Sources/App/VoicePipeline+RewriteLast.swift index 532a2597..27c893ed 100644 --- a/Sources/App/VoicePipeline+RewriteLast.swift +++ b/Sources/App/VoicePipeline+RewriteLast.swift @@ -6,7 +6,7 @@ extension VoicePipeline { func rewriteLastInsertion( raw: String, intent: SelectionRewriteIntent, - settings: AppSettings, + settings: VoiceInputSettings, targetApp: NSRunningApplication? ) async { cancelScreenContextCapture() @@ -24,11 +24,12 @@ extension VoicePipeline { inputLanguage: settings.inputLanguage, source: .menuBar ) - var options = TextProcessingOptions(settings: settings) + var options = settings.processing options.llmModel = settings.llmModel let memoryContext = VoicePipelinePolicy.memoryContext( for: .command, - settings: settings, + enableMemory: settings.enableMemory, + memoryWindowMinutes: settings.memoryWindowMinutes, currentContext: context ) @@ -56,6 +57,7 @@ extension VoicePipeline { previouslyInserted: appState.lastInsertedText, targetApp: targetApp ) + guard !Task.isCancelled else { return } appState.phase = .done appState.statusMessage = L("status.done") hideOverlayAfterDelay() diff --git a/Sources/App/VoicePipeline+ScreenContext.swift b/Sources/App/VoicePipeline+ScreenContext.swift index 276b2c8c..2645e518 100644 --- a/Sources/App/VoicePipeline+ScreenContext.swift +++ b/Sources/App/VoicePipeline+ScreenContext.swift @@ -3,9 +3,10 @@ import Foundation @MainActor extension VoicePipeline { func startScreenContextCaptureIfNeeded() { + let snapshot = sessionSettings ?? VoiceInputSettings(settings: appState.settings) let needsScreenContext = VoicePipelinePolicy.shouldCaptureScreenContext( - outputMode: appState.settings.outputMode, - useScreenContext: appState.settings.useScreenContext + outputMode: snapshot.outputMode, + useScreenContext: snapshot.useScreenContext ) guard needsScreenContext else { cancelScreenContextCapture() @@ -14,10 +15,10 @@ extension VoicePipeline { screenOCRStartedAt = CFAbsoluteTimeGetCurrent() let mode = ScreenContextMode.effectiveCaptureMode( - preference: appState.settings.screenContextMode, - useRemoteLLM: appState.settings.useRemoteLLM - || appState.settings.localLLMBackend == .espresso, - modelID: appState.settings.llmModel + preference: snapshot.processing.screenContextMode, + useRemoteLLM: snapshot.processing.useRemoteLLM + || snapshot.processing.localLLMBackend == .espresso, + modelID: snapshot.llmModel ) screenOCRTask = Task.detached(priority: .utility) { await ScreenOCR.capture(mode: mode) diff --git a/Sources/App/VoicePipeline+Translation.swift b/Sources/App/VoicePipeline+Translation.swift index c81abc9f..bd2c24f3 100644 --- a/Sources/App/VoicePipeline+Translation.swift +++ b/Sources/App/VoicePipeline+Translation.swift @@ -6,7 +6,7 @@ extension VoicePipeline { func processTranslation( _ raw: String, targetLanguage: TranslationLanguage, - settings: AppSettings, + settings: VoiceInputSettings, targetApp: NSRunningApplication? ) async -> VoicePipelineOutput { appState.phase = .processing @@ -21,7 +21,7 @@ extension VoicePipeline { inputLanguage: settings.inputLanguage, source: .menuBar ) - let options = TextProcessingOptions(settings: settings) + let options = settings.processing let text = await textProcessor.translate( text: raw, targetLanguage: targetLanguage, diff --git a/Sources/App/VoicePipeline.swift b/Sources/App/VoicePipeline.swift index 436009e4..78547a61 100644 --- a/Sources/App/VoicePipeline.swift +++ b/Sources/App/VoicePipeline.swift @@ -14,11 +14,14 @@ final class VoicePipeline { let correctionCapture = CorrectionCaptureService() let textProcessor: TextProcessor let overlay = OverlayPanel() - var whisperEngine: WhisperEngine? - var appleSpeechEngine: AppleSpeechEngine? - var volcSpeechEngine: VolcSpeechEngine? - var qwenSpeechEngine: QwenNativeASREngine? - var mlxSTTEngine: MLXSTTEngine? + let ownership: InputSessionOwnership + let engineProvider: SpeechEngineProvider + var sessionLease: UUID? + var sessionEngine: (any SpeechEngine)? + var enginePreparationTask: Task? + var sessionSettings: VoiceInputSettings? + var recordingLanguage: String? + var recordingStreaming = false var screenOCRTask: Task? var screenOCRStartedAt: CFAbsoluteTime? var processingTask: Task? @@ -41,20 +44,18 @@ final class VoicePipeline { /// Test-only observation point for whether the remote capture path is used. var remoteCaptureSpy: RemoteMicCaptureSpy? - var currentEngine: (any SpeechEngine)? { - if let engineOverride { return engineOverride } - switch appState.settings.speechEngine { - case .whisper: return whisperEngine - case .apple: return appleSpeechEngine - case .volc: return volcSpeechEngine - case .qwen3: return qwenSpeechEngine - case .firered, .megaASR: return mlxSTTEngine - } - } + var currentEngine: (any SpeechEngine)? { engineOverride ?? sessionEngine } - init(appState: AppState, textProcessor: TextProcessor = TextProcessor()) { + init( + appState: AppState, + textProcessor: TextProcessor = TextProcessor(), + ownership: InputSessionOwnership? = nil, + engineProvider: SpeechEngineProvider? = nil + ) { self.appState = appState self.textProcessor = textProcessor + self.ownership = ownership ?? InputSessionOwnership() + self.engineProvider = engineProvider ?? SpeechEngineProvider() } func warmUp() async { @@ -80,8 +81,10 @@ final class VoicePipeline { modelDownloaded: formattingModelAvailable ) - if shouldLoadSpeech { + if shouldLoadSpeech, let lease = try? ownership.acquire() { await ensureEngineLoaded(requestPermission: false) + sessionEngine = nil + ownership.release(lease) } if shouldLoadFormatting { @@ -93,155 +96,12 @@ final class VoicePipeline { } } - markReadyIfPossible() - } - - // MARK: - Recording - - func start( - mode: VoiceInputMode = .dictation, - targetApp: NSRunningApplication? = nil, - remoteSessionToken: UInt64? = nil - ) async { - if appState.isBusy { - Log.info("[VoicePipeline] start: busy (\(appState.phase)), ignoring") - showBusyHint() - return - } - - if appState.isDownloading { return } - - correctionCapture.finishCurrentSession() - - if let engineLoadBarrier { - await engineLoadBarrier() - } - - if !(currentEngine?.isReady ?? false) { - await ensureEngineLoaded(requestPermission: true) - } - - // Model loading above can take a while. A remote voice-key session may - // have been released meanwhile; never commit that start (and never fall - // back to the system microphone for a key the user already let go). - if let remoteSessionToken, - !RemoteMicStartGuard.shouldCommit( - remoteSessionToken: remoteSessionToken, - isCancelled: Task.isCancelled, - isSessionCurrent: XiaomiRemoteMicBridge.isSessionCurrent - ) { - Log.info("[VoicePipeline] start: remote session superseded before commit; aborting") - currentEngine?.cancelListening() - cancelScreenContextCapture() - return - } - - guard currentEngine?.isReady ?? false else { - let message = appState.statusMessage == L("pipeline.speech_model_download_required") - ? appState.statusMessage - : L("pipeline.model_load_failed") - showErrorHint(message) - return - } - - // Warm the engine while the user is still speaking (no-op if already warm). - if let engine = currentEngine { - Task { await engine.prepare() } - } - - clearInFlightWork() - - appState.reset() - appState.activeInputMode = mode - appState.phase = .recording - appState.statusMessage = mode.isTranslation - ? L("pipeline.recording_translation") - : L("pipeline.recording") - recordingTargetApp = targetApp - - if mode.isTranslation { - cancelScreenContextCapture() - } else { - startScreenContextCaptureIfNeeded() - } - - soundPlayer.playStart() - showOverlay() - - let micID = appState.settings.microphoneID - let language = appState.settings.inputLanguage.whisperCode - let streamingEnabled = appState.settings.enableStreamingRecognitionBeta - let vocabularySnapshot = PersonalDictionary.shared.snapshot( - settings: appState.settings - ) - currentEngine?.configureRecognition( - context: SpeechRecognitionContext(phrases: vocabularySnapshot.recognitionPhrases) - ) - if streamingEnabled { - currentEngine?.startListening(language: language) { [weak self] partialText in - Task { @MainActor in - guard let self, self.appState.isRecording else { return } - self.appState.rawTranscription = TranscriptionSanitizer.previewText( - partialText, - inputLanguage: self.appState.settings.inputLanguage - ) - } - } - } - - if let remoteCaptureSpy { - let token = remoteCaptureSpy.currentToken - let startedSpy = token.map { remoteCaptureSpy.start(token: $0) } ?? false - guard startedSpy else { - currentEngine?.cancelListening() - cancelScreenContextCapture() - recordingTargetApp = nil - appState.phase = .error(L("pipeline.mic_failed_permissions")) - appState.statusMessage = L("pipeline.mic_unavailable") - overlay.hide() - return - } - commitRecording(mode: mode, targetApp: targetApp) - return - } - - activeCapture.thresholds = appState.settings.audioActivityThresholds - - let micStarted = activeCapture.start( - deviceID: micID, - levelUpdate: { [weak self] level in - Task { @MainActor in - self?.appState.audioLevel = level - } - }, - bufferUpdate: { [weak self] buffer in - guard streamingEnabled else { return } - self?.currentEngine?.appendAudioBuffer(buffer) - } - ) - guard micStarted else { - currentEngine?.cancelListening() - cancelScreenContextCapture() - recordingTargetApp = nil - appState.phase = .error(L("pipeline.mic_failed_permissions")) - appState.statusMessage = L("pipeline.mic_unavailable") - overlay.hide() - return - } - } - - /// Marks the pipeline as committed and recording. Extracted so the - /// test-only capture seam and the real capture path share one commit point. - private func commitRecording(mode: VoiceInputMode, targetApp: NSRunningApplication?) { - appState.phase = .recording - appState.statusMessage = mode.isTranslation - ? L("pipeline.recording_translation") - : L("pipeline.recording") - recordingTargetApp = targetApp + if !ownership.isBusy { markReadyIfPossible() } } func stop(targetApp: NSRunningApplication? = nil) async { guard appState.isRecording else { + if sessionLease != nil, processingTask == nil { cancel() } Log.info("[VoicePipeline] stop: not recording (\(appState.phase)), ignoring") return } @@ -254,14 +114,21 @@ final class VoicePipeline { appState.phase = .transcribing appState.statusMessage = L("pipeline.transcribing") - let language = appState.settings.inputLanguage.whisperCode + let language = recordingLanguage let audioURL = activeCapture.lastRecordingURL let audioActivity = activeCapture.lastActivity - let settings = appState.settings + guard let settings = sessionSettings else { return } let inputMode = appState.activeInputMode + guard let lease = sessionLease else { return } processingTask = Task { @MainActor [weak self] in guard let self else { return } + defer { + self.processingTask = nil + self.releaseSession(lease) + } + await self.enginePreparationTask?.value + guard !Task.isCancelled else { return } await TextProcessor.withEspressoOutcomeTracking { await self.processRecording( audioURL: audioURL, @@ -276,23 +143,40 @@ final class VoicePipeline { } func cancel() { - guard appState.isRecording else { - Log.info("[VoicePipeline] cancel: not recording (\(appState.phase)), ignoring") - return - } - - Log.info("[VoicePipeline] recording cancelled by user") - clearInFlightWork() + guard let lease = sessionLease else { return } + ownership.cancel(lease) + processingTask?.cancel() + enginePreparationTask?.cancel() + replacementTask?.cancel() currentEngine?.cancelListening() - audioCapture.stop() - audioCapture.cleanupLastRecording() + activeCapture.stop() + cancelScreenContextCapture() recordingTargetApp = nil soundPlayer.playStop() + let wasRecording = appState.isRecording appState.reset() overlay.hide() + // Preparation/processing releases only after its suspended work returns. + if wasRecording, processingTask == nil { + processingTask = Task { @MainActor in + await enginePreparationTask?.value + processingTask = nil + releaseSession(lease) + } + } + } + + func releaseSession(_ lease: UUID) { + guard sessionLease == lease else { return } + activeCapture.cleanupLastRecording() + sessionEngine = nil + enginePreparationTask = nil + sessionSettings = nil + sessionLease = nil + ownership.release(lease) } - private func clearInFlightWork() { + func clearInFlightWork() { processingTask?.cancel() processingTask = nil replacementTask?.cancel() diff --git a/Sources/App/VoicePipelineOutput.swift b/Sources/App/VoicePipelineOutput.swift index 3730a9b1..56531fd8 100644 --- a/Sources/App/VoicePipelineOutput.swift +++ b/Sources/App/VoicePipelineOutput.swift @@ -22,16 +22,17 @@ extension VoicePipeline { func insertFinalText( _ output: VoicePipelineOutput, raw: String, - settings: AppSettings, + settings: VoiceInputSettings, expectedEspressoModelPath: String, inputMode: VoiceInputMode, targetApp: NSRunningApplication? ) async { let finalText = output.text let espressoOutcome = await consumeEspressoOutcome( - settings: settings, + settings: appState.settings, expectedEspressoModelPath: expectedEspressoModelPath ) + guard !Task.isCancelled else { return } guard !finalText.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty else { Log.info("[VoicePipeline] skipping empty final text") showErrorHint(espressoOutcome?.message ?? L("error.operation_failed")) @@ -45,6 +46,7 @@ extension VoicePipeline { Log.sensitive("[VoicePipeline] inserting \(finalText.count) chars") let started = CFAbsoluteTimeGetCurrent() let result = await textInserter.insert(text: finalText, targetApp: targetApp) + guard !Task.isCancelled else { return } let elapsed = CFAbsoluteTimeGetCurrent() - started Log.info("[VoicePipeline] insert stage finished in \(String(format: "%.2f", elapsed))s") diff --git a/Sources/Integration/InputSessionCoordinator+AudioFile.swift b/Sources/Integration/InputSessionCoordinator+AudioFile.swift index f5c76b3c..a3e6d7e1 100644 --- a/Sources/Integration/InputSessionCoordinator+AudioFile.swift +++ b/Sources/Integration/InputSessionCoordinator+AudioFile.swift @@ -9,71 +9,41 @@ extension InputSessionCoordinator { cleanup: Bool ) async throws -> InputSessionResult { defer { - if cleanup { - try? FileManager.default.removeItem(at: audioURL) - } - } - guard activeSession == nil, !isUserWorkflowBusy() else { - throw IntegrationError.busy - } - guard let session = try service.session(sessionID, clientID: clientID) else { - throw IntegrationError.sessionNotFound - } - let effective = effectiveSettings(for: session.request) - guard let engine = await engineProvider.engine(settings: settings), engine.isReady else { - throw IntegrationError.modelNotReady + if cleanup { try? FileManager.default.removeItem(at: audioURL) } } - let vocabularySnapshot = PersonalDictionary.shared.snapshot(settings: settings) - engine.configureRecognition( - context: SpeechRecognitionContext(phrases: vocabularySnapshot.recognitionPhrases) - ) - - do { - try service.emitAudioReceived(sessionID: sessionID, clientID: clientID) - try await service.beginProcessing(sessionID: sessionID, clientID: clientID) - let transcript = try await transcribeAudioURL( - audioURL, - engine: engine, - languageCode: effective.languageCode - ) - try service.emitTranscriptFinal(sessionID: sessionID, clientID: clientID, text: transcript) + let session = try reserve(sessionID: sessionID, clientID: clientID) + return try await runOperation { + let effective = self.effectiveSettings(for: session.request) + guard let snapshot = self.requestSettings else { throw CancellationError() } + let vocabulary = snapshot.dictionary + let engine = try await self.loadSpeechEngine() + engine.configureRecognition(context: SpeechRecognitionContext(phrases: vocabulary.recognitionPhrases)) let active = ActiveSession( - sessionID: sessionID, - clientID: clientID, - engine: engine, - languageCode: effective.languageCode, - mode: effective.mode, - inputLanguage: effective.inputLanguage, - useScreenContext: effective.useScreenContext, + sessionID: sessionID, clientID: clientID, engine: engine, + languageCode: effective.languageCode, mode: effective.mode, + inputLanguage: effective.inputLanguage, useScreenContext: effective.useScreenContext, streamingEnabled: false, - screenContextTask: startScreenContextCaptureIfNeeded( - mode: effective.mode, - useScreenContext: effective.useScreenContext + screenContextTask: self.startScreenContextCaptureIfNeeded( + mode: effective.mode, useScreenContext: effective.useScreenContext ), - client: service.integrationClient(id: clientID) + client: self.service.integrationClient(id: clientID), + snapshot: snapshot ) - let text = try await outputText(for: transcript, active: active) - try await service.completeSession(sessionID: sessionID, clientID: clientID, finalText: text) - guard let completed = try service.session(sessionID, clientID: clientID) else { + self.activeSession = active + try self.service.emitAudioReceived(sessionID: sessionID, clientID: clientID) + try await self.service.beginProcessing(sessionID: sessionID, clientID: clientID) + try self.checkCurrent() + let raw = try await engine.transcribe(audioURL: audioURL, language: effective.languageCode) + try self.checkCurrent() + let transcript = try self.prepareTranscript(raw, audioActivity: nil) + try self.service.emitTranscriptFinal(sessionID: sessionID, clientID: clientID, text: transcript) + let text = try await self.outputText(for: transcript, active: active) + try self.checkCurrent() + try self.commitOutput(text, sessionID: sessionID, clientID: clientID) + guard let completed = try self.service.session(sessionID, clientID: clientID) else { throw IntegrationError.sessionNotFound } return InputSessionResult(session: completed, transcript: transcript, text: text) - } catch let error as IntegrationError { - try? await service.failSession(sessionID: sessionID, clientID: clientID, error: error) - throw error - } catch { - Log.error("[InputSessionCoordinator] audio file processing failed: \(error.localizedDescription)") - try? await service.failSession(sessionID: sessionID, clientID: clientID, error: .operationFailed) - throw IntegrationError.operationFailed } } - - private func transcribeAudioURL( - _ audioURL: URL, - engine: any SpeechEngine, - languageCode: String? - ) async throws -> String { - let raw = try await engine.transcribe(audioURL: audioURL, language: languageCode) - return try prepareTranscript(raw, audioActivity: nil) - } } diff --git a/Sources/Integration/InputSessionCoordinator+Lifecycle.swift b/Sources/Integration/InputSessionCoordinator+Lifecycle.swift new file mode 100644 index 00000000..9ad72a15 --- /dev/null +++ b/Sources/Integration/InputSessionCoordinator+Lifecycle.swift @@ -0,0 +1,93 @@ +import Foundation + +@MainActor +extension InputSessionCoordinator { + func reserve(sessionID: UUID, clientID: String) throws -> InputSession { + guard let session = try service.session(sessionID, clientID: clientID) else { + throw IntegrationError.sessionNotFound + } + guard session.state == .created else { throw IntegrationError.invalidSessionState } + let reservation = try ownership.acquire() + lease = reservation + owner = (sessionID, clientID) + requestSettings = VoiceInputSettings(settings: settings, inputLanguage: session.request.language) + return session + } + + func checkCurrent() throws { + guard let lease else { throw CancellationError() } + try ownership.check(lease) + } + + func loadSpeechEngine() async throws -> any SpeechEngine { + let engine: (any SpeechEngine)? + if let engineLoader { + engine = await engineLoader(settings) + } else { + engine = await engineProvider.engine(settings: settings, selection: requestSettings?.speech) + } + try checkCurrent() + guard let engine, engine.isReady else { throw IntegrationError.modelNotReady } + return engine + } + + func runOperation( + keepRecording: Bool = false, + _ operation: @escaping @MainActor () async throws -> Value + ) async throws -> Value { + guard let lease, let owner, cancelOperation == nil else { + throw IntegrationError.invalidSessionState + } + let task = Task { @MainActor in + try self.ownership.check(lease) + return try await operation() + } + cancelOperation = { task.cancel() } + do { + let value = try await withTaskCancellationHandler { + try await task.value + } onCancel: { + task.cancel() + } + try ownership.check(lease) + cancelOperation = nil + if !keepRecording { release(lease) } + return value + } catch { + cancelOperation = nil + release(lease) + let failure = (error as? IntegrationError) ?? .operationFailed + if error is CancellationError || Task.isCancelled { + try? await service.cancel(sessionID: owner.sessionID, clientID: owner.clientID) + } else { + try? await service.failSession(sessionID: owner.sessionID, clientID: owner.clientID, error: failure) + } + throw error + } + } + + func cancelOwnedWork() { + guard let lease else { return } + ownership.cancel(lease) + activeSession?.engine.cancelListening() + activeSession?.screenContextTask?.cancel() + if let cancelOperation { + cancelOperation() + } else { + release(lease) + } + } + + private func release(_ reservation: UUID) { + guard lease == reservation else { return } + activeSession?.engine.cancelListening() + activeSession?.screenContextTask?.cancel() + finishCapture() + activeSession = nil + requestSettings = nil + pendingHistory = nil + owner = nil + lease = nil + ownership.release(reservation) + } +} diff --git a/Sources/Integration/InputSessionCoordinator+Output.swift b/Sources/Integration/InputSessionCoordinator+Output.swift index bb183543..9466f5b6 100644 --- a/Sources/Integration/InputSessionCoordinator+Output.swift +++ b/Sources/Integration/InputSessionCoordinator+Output.swift @@ -9,10 +9,11 @@ extension InputSessionCoordinator { } private func trackedOutputText(for raw: String, active: ActiveSession) async throws -> String { - let options = TextProcessingOptions(settings: settings, inputLanguage: active.inputLanguage) - let dictionarySnapshot = PersonalDictionary.shared.snapshot(settings: settings) - let enableMemory = settings.enableMemory - let memoryWindowMinutes = settings.memoryWindowMinutes + let snapshot = active.snapshot ?? VoiceInputSettings(settings: settings, inputLanguage: active.inputLanguage) + let options = snapshot.processing + let dictionarySnapshot = snapshot.dictionary + let enableMemory = snapshot.enableMemory + let memoryWindowMinutes = snapshot.memoryWindowMinutes let text: String let context: InputContext let formatKind: TextFormatKind? @@ -86,16 +87,30 @@ extension InputSessionCoordinator { throw IntegrationError.operationFailed } - InputHistory.shared.addRecord( - rawText: raw, - processedText: text, - wasProcessed: active.mode != .direct, - context: context, - formatKind: formatKind - ) + try checkCurrent() + guard let session = try service.session(active.sessionID, clientID: active.clientID), + !session.state.isTerminal else { throw CancellationError() } + pendingHistory = { + InputHistory.shared.addRecord( + rawText: raw, + processedText: text, + wasProcessed: active.mode != .direct, + context: context, + formatKind: formatKind + ) + } return text } + func commitOutput(_ text: String, sessionID: UUID, clientID: String) throws { + try checkCurrent() + try service.commitSession( + sessionID: sessionID, clientID: clientID, finalText: text, + record: pendingHistory ?? {} + ) + pendingHistory = nil + } + private func inputContext( for active: ActiveSession, screenContext: String, diff --git a/Sources/Integration/InputSessionCoordinator.swift b/Sources/Integration/InputSessionCoordinator.swift index 292b635c..d1af5e4e 100644 --- a/Sources/Integration/InputSessionCoordinator.swift +++ b/Sources/Integration/InputSessionCoordinator.swift @@ -14,6 +14,7 @@ final class InputSessionCoordinator { let streamingEnabled: Bool let screenContextTask: Task? let client: IntegrationClient? + var snapshot: VoiceInputSettings? = nil } let service: OpenTypeService @@ -21,10 +22,16 @@ final class InputSessionCoordinator { let engineProvider: SpeechEngineProvider let textProcessor: TextProcessor let settings: AppSettings - let isUserWorkflowBusy: @MainActor () -> Bool + let ownership: InputSessionOwnership + var lease: UUID? + var owner: (sessionID: UUID, clientID: String)? + var cancelOperation: (() -> Void)? + var engineLoader: ((AppSettings) async -> (any SpeechEngine)?)? var activeSession: ActiveSession? + var requestSettings: VoiceInputSettings? + var pendingHistory: (() -> Void)? - var isBusy: Bool { activeSession != nil } + var isBusy: Bool { lease != nil } init( service: OpenTypeService, @@ -32,28 +39,32 @@ final class InputSessionCoordinator { engineProvider: SpeechEngineProvider? = nil, textProcessor: TextProcessor = TextProcessor(), settings: AppSettings = .shared, - isUserWorkflowBusy: @escaping @MainActor () -> Bool = { false } + ownership: InputSessionOwnership? = nil ) { self.service = service self.audioCapture = audioCapture self.engineProvider = engineProvider ?? SpeechEngineProvider() self.textProcessor = textProcessor self.settings = settings - self.isUserWorkflowBusy = isUserWorkflowBusy + self.ownership = ownership ?? InputSessionOwnership() } func startRecording(sessionID: UUID, clientID: String) async throws { - guard activeSession == nil, !isUserWorkflowBusy() else { - throw IntegrationError.busy - } - guard let session = try service.session(sessionID, clientID: clientID) else { - throw IntegrationError.sessionNotFound + let session = try reserve(sessionID: sessionID, clientID: clientID) + try await runOperation(keepRecording: true) { + try await self.prepareRecording(session) } + } + + private func prepareRecording(_ session: InputSession) async throws { + guard let owner else { throw CancellationError() } + let (sessionID, clientID) = owner let effective = effectiveSettings(for: session.request) - guard let engine = await engineProvider.engine(settings: settings), engine.isReady else { - throw IntegrationError.modelNotReady - } - let vocabularySnapshot = PersonalDictionary.shared.snapshot(settings: settings) + guard let snapshot = requestSettings else { throw CancellationError() } + let microphoneID = snapshot.microphoneID + let thresholds = snapshot.audioActivityThresholds + let engine = try await loadSpeechEngine() + let vocabularySnapshot = snapshot.dictionary engine.configureRecognition( context: SpeechRecognitionContext(phrases: vocabularySnapshot.recognitionPhrases) ) @@ -75,10 +86,10 @@ final class InputSessionCoordinator { } } - audioCapture.thresholds = settings.audioActivityThresholds + audioCapture.thresholds = thresholds let micStarted = audioCapture.start( - deviceID: settings.microphoneID, + deviceID: microphoneID, levelUpdate: { _ in }, bufferUpdate: effective.streamingEnabled && engine.supportsStreaming ? { buffer in engine.appendAudioBuffer(buffer) @@ -93,6 +104,7 @@ final class InputSessionCoordinator { do { try await service.startRecording(sessionID: sessionID, clientID: clientID) + try checkCurrent() activeSession = ActiveSession( sessionID: sessionID, clientID: clientID, @@ -106,7 +118,8 @@ final class InputSessionCoordinator { mode: effective.mode, useScreenContext: effective.useScreenContext ), - client: service.integrationClient(id: clientID) + client: service.integrationClient(id: clientID), + snapshot: snapshot ) } catch { audioCapture.stop() @@ -123,37 +136,33 @@ final class InputSessionCoordinator { throw IntegrationError.invalidSessionState } - audioCapture.stop() - do { - try await service.beginProcessing(sessionID: sessionID, clientID: clientID) - let result = try await processRecording(active) - try await service.completeSession(sessionID: sessionID, clientID: clientID, finalText: result.text) - guard let completed = try service.session(sessionID, clientID: clientID) else { + guard cancelOperation == nil else { throw IntegrationError.invalidSessionState } + return try await runOperation { + self.audioCapture.stop() + try await self.service.beginProcessing(sessionID: sessionID, clientID: clientID) + try self.checkCurrent() + let result = try await self.processRecording(active) + try self.checkCurrent() + try self.commitOutput(result.text, sessionID: sessionID, clientID: clientID) + guard let completed = try self.service.session(sessionID, clientID: clientID) else { throw IntegrationError.sessionNotFound } - activeSession = nil - audioCapture.cleanupLastRecording() return InputSessionResult(session: completed, transcript: result.transcript, text: result.text) - } catch let error as IntegrationError { - await failActiveSession(active, error: error) - throw error - } catch { - Log.error("[InputSessionCoordinator] stop failed: \(error.localizedDescription)") - await failActiveSession(active, error: .operationFailed) - throw IntegrationError.operationFailed } } func cancel(sessionID: UUID, clientID: String) async throws { - if let active = activeSession, active.sessionID == sessionID, active.clientID == clientID { - release(active) - } + // Authorize before touching shared capture or model resources. try await service.cancel(sessionID: sessionID, clientID: clientID) + guard try service.session(sessionID, clientID: clientID)?.state == .cancelled, + owner?.sessionID == sessionID, owner?.clientID == clientID else { return } + cancelOwnedWork() } - func releaseActiveSessionForShutdown() { - guard let active = activeSession else { return } - release(active) + func releaseActiveSessionForShutdown(clientID: String? = nil) { + guard let owner, clientID == nil || owner.clientID == clientID else { return } + cancelOwnedWork() + Task { try? await service.cancel(sessionID: owner.sessionID, clientID: owner.clientID) } } private func processRecording(_ active: ActiveSession) async throws -> (transcript: String, text: String) { @@ -175,6 +184,7 @@ final class InputSessionCoordinator { ) } + try checkCurrent() let transcript = try prepareTranscript(raw, audioActivity: audioCapture.lastActivity) try service.emitTranscriptFinal( @@ -187,6 +197,11 @@ final class InputSessionCoordinator { return (transcript, text) } + func finishCapture() { + audioCapture.stop() + audioCapture.cleanupLastRecording() + } + func prepareTranscript(_ raw: String, audioActivity: AudioCaptureActivity?) throws -> String { guard let transcript = TranscriptionSanitizer.prepare(raw, audioActivity: audioActivity) else { throw IntegrationError.noSpeechDetected @@ -194,28 +209,16 @@ final class InputSessionCoordinator { return transcript } - private func failActiveSession(_ active: ActiveSession, error: IntegrationError) async { - release(active) - try? await service.failSession(sessionID: active.sessionID, clientID: active.clientID, error: error) - } - - private func release(_ active: ActiveSession) { - active.engine.cancelListening() - active.screenContextTask?.cancel() - audioCapture.stop() - audioCapture.cleanupLastRecording() - activeSession = nil - } - func effectiveSettings( for request: InputSessionRequest ) -> (mode: OutputMode, inputLanguage: InputLanguage, useScreenContext: Bool, streamingEnabled: Bool, languageCode: String?) { - let inputLanguage = request.language ?? settings.inputLanguage + let snapshot = requestSettings ?? VoiceInputSettings(settings: settings) + let inputLanguage = request.language ?? snapshot.inputLanguage return ( - mode: request.mode ?? settings.outputMode, + mode: request.mode ?? snapshot.outputMode, inputLanguage: inputLanguage, - useScreenContext: request.useScreenContext ?? settings.useScreenContext, - streamingEnabled: true, + useScreenContext: request.useScreenContext ?? snapshot.useScreenContext, + streamingEnabled: snapshot.streamingEnabled, languageCode: inputLanguage.whisperCode ) } @@ -230,10 +233,11 @@ final class InputSessionCoordinator { ) else { return nil } + let options = requestSettings?.processing ?? TextProcessingOptions(settings: settings) let contextMode = ScreenContextMode.effectiveCaptureMode( - preference: settings.screenContextMode, - useRemoteLLM: settings.useRemoteLLM || settings.localLLMBackend == .espresso, - modelID: settings.llmModel + preference: options.screenContextMode, + useRemoteLLM: options.useRemoteLLM || options.localLLMBackend == .espresso, + modelID: options.llmModel ) return Task.detached(priority: .utility) { await ScreenOCR.capture(mode: contextMode) diff --git a/Sources/Integration/IntegrationXPCConnectionHandler.swift b/Sources/Integration/IntegrationXPCConnectionHandler.swift index 2e44cd5a..cafe468f 100644 --- a/Sources/Integration/IntegrationXPCConnectionHandler.swift +++ b/Sources/Integration/IntegrationXPCConnectionHandler.swift @@ -144,7 +144,7 @@ final class IntegrationXPCConnectionHandler: NSObject, OpenTypeXPCProtocol { } func invalidate() { - coordinator.releaseActiveSessionForShutdown() + coordinator.releaseActiveSessionForShutdown(clientID: clientID) for subscription in subscriptions.values { service.unsubscribeEvents( sessionID: subscription.sessionID, diff --git a/Sources/Integration/OpenTypeService.swift b/Sources/Integration/OpenTypeService.swift index a8bfd769..7d6b9f95 100644 --- a/Sources/Integration/OpenTypeService.swift +++ b/Sources/Integration/OpenTypeService.swift @@ -107,6 +107,11 @@ final class OpenTypeService { } func completeSession(sessionID: UUID, clientID: String, finalText: String?) async throws { + try commitSession(sessionID: sessionID, clientID: clientID, finalText: finalText) + } + + /// Result and history commit without an await between the terminal-state check and publication. + func commitSession(sessionID: UUID, clientID: String, finalText: String?, record: () -> Void = {}) throws { try requireAuthorized(clientID: clientID, capability: .record) guard var session = sessions[sessionID] else { throw IntegrationError.sessionNotFound @@ -121,6 +126,7 @@ final class OpenTypeService { } let now = Date() + record() session.state = .completed session.updatedAt = now sessions[sessionID] = session diff --git a/Sources/Output/TextInserter+Keyboard.swift b/Sources/Output/TextInserter+Keyboard.swift index 53f6bc0e..a3a8bbcd 100644 --- a/Sources/Output/TextInserter+Keyboard.swift +++ b/Sources/Output/TextInserter+Keyboard.swift @@ -12,7 +12,7 @@ extension TextInserter { @discardableResult func simulateCommandShortcut(keyCode: CGKeyCode, scriptKey: String) async -> Bool { - guard AXIsProcessTrusted() else { return false } + guard !Task.isCancelled, AXIsProcessTrusted() else { return false } let source = CGEventSource(stateID: .combinedSessionState) guard let keyDown = CGEvent(keyboardEventSource: source, virtualKey: keyCode, keyDown: true), @@ -31,7 +31,7 @@ extension TextInserter { @discardableResult func simulateKeyPress(keyCode: CGKeyCode, scriptKeyCode: Int) async -> Bool { - guard AXIsProcessTrusted() else { return false } + guard !Task.isCancelled, AXIsProcessTrusted() else { return false } let source = CGEventSource(stateID: .combinedSessionState) guard let keyDown = CGEvent(keyboardEventSource: source, virtualKey: keyCode, keyDown: true), diff --git a/Sources/Output/TextInserter.swift b/Sources/Output/TextInserter.swift index 5784c64d..80f9ffc4 100644 --- a/Sources/Output/TextInserter.swift +++ b/Sources/Output/TextInserter.swift @@ -13,12 +13,14 @@ final class TextInserter { var recentInsertionAnchor: RecentInsertionAnchor? func insert(text: String, targetApp: NSRunningApplication? = nil) async -> InsertResult { + guard !Task.isCancelled else { return .probablyFailed(reason: L("error.operation_failed")) } guard AXIsProcessTrusted() else { Log.error("[TextInserter] no AX trust") return .probablyFailed(reason: "Accessibility permission not granted") } await activateTarget(targetApp) + guard !Task.isCancelled else { return .probablyFailed(reason: L("error.operation_failed")) } let front = NSWorkspace.shared.frontmostApplication let targetPID = targetApp?.processIdentifier @@ -89,12 +91,14 @@ final class TextInserter { // MARK: - Activate target private func activateTarget(_ app: NSRunningApplication?) async { + guard !Task.isCancelled else { return } guard let app, !app.isTerminated else { return } NSApp.yieldActivation(to: app) app.activate() for _ in 0..<30 { + guard !Task.isCancelled else { return } try? await Task.sleep(nanoseconds: 50_000_000) if NSWorkspace.shared.frontmostApplication?.processIdentifier == app.processIdentifier { break @@ -159,6 +163,7 @@ final class TextInserter { } await activateTarget(targetApp) + guard !Task.isCancelled else { return .probablyFailed(reason: L("error.operation_failed")) } let front = NSWorkspace.shared.frontmostApplication let targetPID = targetApp?.processIdentifier @@ -175,36 +180,54 @@ final class TextInserter { // MARK: - Clipboard + Cmd+V /// Returns true if at least one paste method was executed without errors. - func insertViaClipboard(text: String) async -> Bool { - let pasteboard = NSPasteboard.general - let prevChange = pasteboard.changeCount - let previousContents = pasteboard.string(forType: .string) + func insertViaClipboard( + text: String, + pasteboard: NSPasteboard = .general, + paste: (() async -> Bool)? = nil + ) async -> Bool { + guard !Task.isCancelled else { return false } + let previousItems = (pasteboard.pasteboardItems ?? []).map { item in + let copy = NSPasteboardItem() + for type in item.types { + if let data = item.data(forType: type) { copy.setData(data, forType: type) } + } + return copy + } pasteboard.clearContents() pasteboard.setString(text, forType: .string) + let insertedChange = pasteboard.changeCount + defer { + if pasteboard.changeCount == insertedChange { + pasteboard.clearContents() + pasteboard.writeObjects(previousItems) + } + } try? await Task.sleep(nanoseconds: 50_000_000) + guard !Task.isCancelled else { return false } let pasteOK: Bool - if await simulatePaste() { - pasteOK = true + if let paste { + pasteOK = await paste() } else { - Log.info("[TextInserter] CGEvent failed, trying AppleScript") - pasteOK = pasteViaAppleScript() + pasteOK = await performPaste() } - - try? await Task.sleep(nanoseconds: 300_000_000) - - if pasteboard.changeCount == prevChange + 1 { - pasteboard.clearContents() - if let prev = previousContents { - pasteboard.setString(prev, forType: .string) - } + if pasteOK { + // A posted key cannot be recalled. Let the target read the clipboard + // before restoring it, even when the caller cancels after posting. + await Task.detached { try? await Task.sleep(nanoseconds: 300_000_000) }.value } - return pasteOK } + private func performPaste() async -> Bool { + if await simulatePaste() { return true } + guard !Task.isCancelled else { return false } + Log.info("[TextInserter] CGEvent failed, trying AppleScript") + return pasteViaAppleScript() + } + /// Place text on the clipboard so the user can manually Cmd+V. static func copyToClipboard(_ text: String) { NSPasteboard.general.clearContents() diff --git a/Sources/Processing/IndustryLexicon.swift b/Sources/Processing/IndustryLexicon.swift index d873cc8b..10a054c3 100644 --- a/Sources/Processing/IndustryLexicon.swift +++ b/Sources/Processing/IndustryLexicon.swift @@ -62,18 +62,24 @@ private struct IndustryLexiconDocument: Codable, Sendable { } struct IndustryLexiconSnapshot: Equatable, Sendable { + static let maximumRecognitionPhrases = 100 + static let maximumPromptTerms = 80 + static let maximumPromptCharacters = 2000 + static let empty = IndustryLexiconSnapshot(pack: nil) let pack: IndustryLexiconPack? var recognitionPhrases: [String] { guard let pack else { return [] } - return unique(pack.terms.flatMap { [$0.term] + $0.aliases }) + return Array(unique(pack.terms.prefix(Self.maximumRecognitionPhrases).flatMap { [$0.term] + $0.aliases }) + .prefix(Self.maximumRecognitionPhrases)) } var protectedTerms: [String] { guard let pack else { return [] } - return unique(pack.terms.map(\.term)) + // Imported common words are hints, not mandatory literal-output constraints. + return unique(pack.terms.filter { $0.category != "thuocl-common" }.map(\.term)) } var corrections: [IndustryLexiconCorrection] { @@ -85,12 +91,31 @@ struct IndustryLexiconSnapshot: Equatable, Sendable { } } - var promptDescription: String { + var promptDescription: String { promptDescription(matching: "") } + + func promptDescription(matching transcript: String) -> String { guard let pack else { return "" } - return pack.terms.map { item in - guard !item.aliases.isEmpty else { return item.term } - return "\(item.term)(\(item.aliases.joined(separator: "、")))" - }.joined(separator: "\n") + let text = transcript.lowercased() + let matching = text.isEmpty ? [] : pack.terms.filter { item in + ([item.term] + item.aliases + item.corrections).contains { + text.contains($0.lowercased()) + } + }.sorted { $0.term.count > $1.term.count } + let candidates = matching + pack.terms.prefix(Self.maximumPromptTerms) + var seen = Set() + var lines: [String] = [] + var characters = 0 + for item in candidates { + guard seen.insert(item.id).inserted else { continue } + let line = item.aliases.isEmpty ? item.term + : "\(item.term)(\(item.aliases.joined(separator: "、")))" + let cost = line.count + (lines.isEmpty ? 0 : 1) + guard characters + cost <= Self.maximumPromptCharacters else { continue } + lines.append(line) + characters += cost + if lines.count == Self.maximumPromptTerms { break } + } + return lines.joined(separator: "\n") } private func unique(_ values: [String]) -> [String] { @@ -135,8 +160,8 @@ struct IndustryLexiconCatalog: Sendable { !source.id.isEmpty && !source.title.isEmpty && URL(string: source.url)?.scheme?.hasPrefix("http") == true - && source.usage == "reference-only" - && source.redistribution == "not-redistributed" + && ((source.usage == "reference-only" && source.redistribution == "not-redistributed") + || (source.usage == "redistributed-terms" && source.redistribution == "MIT")) }) else { throw IndustryLexiconError.invalidSource } @@ -148,7 +173,8 @@ struct IndustryLexiconCatalog: Sendable { for pack in document.packs { guard !pack.version.isEmpty, pack.locale == "zh-CN", - pack.reviewStatus == "project-seed-needs-domain-review", + ["project-seed-needs-domain-review", "curated-and-imported-needs-domain-review"] + .contains(pack.reviewStatus), !pack.terms.isEmpty, Set(pack.terms.map(\.id)).count == pack.terms.count, !pack.sourceIDs.isEmpty, diff --git a/Sources/Processing/PersonalDictionary.swift b/Sources/Processing/PersonalDictionary.swift index 2261612e..472ba850 100644 --- a/Sources/Processing/PersonalDictionary.swift +++ b/Sources/Processing/PersonalDictionary.swift @@ -69,10 +69,6 @@ struct PersonalDictionarySnapshot: Sendable { .joined(separator: "\n") } - var activeIndustryTermsDescription: String { - industryLexicon.promptDescription - } - var recognitionPhrases: [String] { let personal = SpeechRecognitionContext(dictionaryEntries: entries).phrases return SpeechRecognitionContext( diff --git a/Sources/Processing/TextProcessor+Output.swift b/Sources/Processing/TextProcessor+Output.swift index 6500a1c8..e220f18b 100644 --- a/Sources/Processing/TextProcessor+Output.swift +++ b/Sources/Processing/TextProcessor+Output.swift @@ -92,20 +92,19 @@ extension TextProcessor { return cleanGeneratedOutput(text, inputLanguage: inputLanguage) } - /// Guard rejections must never drop the user's dictation. The safe, - /// content-preserving result is always the prepared source transcript: the - /// rejected candidate is discarded, so no hallucinated content can enter, - /// while the dictation survives. - /// - /// `allowsGuardFallback` is kept so call sites can document intent; it no - /// longer suppresses the fallback, since suppressing it produced empty - /// output on a guard rejection. - func rejectedOutputFallback( - _ cleanedText: String, - allowsGuardFallback: Bool + func validatedOutput( + _ candidate: String, + source: String, + protectedTerms: [String] = [], + inputLanguage: InputLanguage, + enforceSemanticFidelity: Bool = true ) -> String { - _ = allowsGuardFallback - return cleanedText + guard let violation = TranscriptFidelityGuard.violation( + source: source, candidate: candidate, protectedTerms: protectedTerms, + inputLanguage: inputLanguage, enforceSemanticFidelity: enforceSemanticFidelity + ) else { return candidate } + Log.error("[TextProcessor] rejected formatting output: \(violation); keeping source transcript") + return source } /// Keeps line breaks while collapsing surrounding whitespace. diff --git a/Sources/Processing/TextProcessor+PromptConstruction.swift b/Sources/Processing/TextProcessor+PromptConstruction.swift index fa037a2a..198742c2 100644 --- a/Sources/Processing/TextProcessor+PromptConstruction.swift +++ b/Sources/Processing/TextProcessor+PromptConstruction.swift @@ -26,7 +26,8 @@ extension TextProcessor { memoryContext: String, inputContext: InputContext?, formatKind: TextFormatKind? = nil, - dictionarySnapshot: PersonalDictionarySnapshot? = nil + dictionarySnapshot: PersonalDictionarySnapshot? = nil, + transcript: String = "" ) -> String { systemPromptWithPersonalContext( PromptBuilder.buildSystemPrompt( @@ -42,7 +43,8 @@ extension TextProcessor { customSystemPrompt: options.customSystemPrompt ), inputLanguage: options.inputLanguage, - dictionarySnapshot: dictionarySnapshot + dictionarySnapshot: dictionarySnapshot, + transcript: transcript ) } @@ -52,7 +54,8 @@ extension TextProcessor { screenImageAvailable: Bool, memoryContext: String, inputContext: InputContext?, - dictionarySnapshot: PersonalDictionarySnapshot? = nil + dictionarySnapshot: PersonalDictionarySnapshot? = nil, + transcript: String = "" ) -> String { systemPromptWithPersonalContext( PromptBuilder.buildCommandSystemPrompt( @@ -63,19 +66,21 @@ extension TextProcessor { inputLanguage: options.inputLanguage ), inputLanguage: options.inputLanguage, - dictionarySnapshot: dictionarySnapshot + dictionarySnapshot: dictionarySnapshot, + transcript: transcript ) } func systemPromptWithPersonalContext( _ systemPrompt: String, inputLanguage: InputLanguage, - dictionarySnapshot: PersonalDictionarySnapshot? = nil + dictionarySnapshot: PersonalDictionarySnapshot? = nil, + transcript: String = "" ) -> String { let snapshot = dictionarySnapshot ?? PersonalDictionary.shared.snapshot(settings: .shared) let extraSections = [ PromptCatalog.activeIndustryLexiconSection( - snapshot.activeIndustryTermsDescription, + snapshot.industryLexicon.promptDescription(matching: transcript), industry: snapshot.industryLexicon.pack?.id, inputLanguage: inputLanguage ), diff --git a/Sources/Processing/TextProcessor.swift b/Sources/Processing/TextProcessor.swift index 98f04071..81986c56 100644 --- a/Sources/Processing/TextProcessor.swift +++ b/Sources/Processing/TextProcessor.swift @@ -46,8 +46,7 @@ final class TextProcessor { memoryContext: String = "", inputContext: InputContext? = nil, formatKind: TextFormatKind? = nil, - allowsPreparedFallback: Bool = TextProcessor.defaultAllowsPreparedFallback, - allowsGuardFallback: Bool = true + allowsPreparedFallback: Bool = TextProcessor.defaultAllowsPreparedFallback ) async -> String { let settings = AppSettings.shared var options = TextProcessingOptions(settings: settings) @@ -61,8 +60,7 @@ final class TextProcessor { memoryContext: memoryContext, inputContext: inputContext, formatKind: formatKind, - allowsPreparedFallback: allowsPreparedFallback, - allowsGuardFallback: allowsGuardFallback + allowsPreparedFallback: allowsPreparedFallback ) } @@ -75,7 +73,6 @@ final class TextProcessor { inputContext: InputContext? = nil, formatKind: TextFormatKind? = nil, allowsPreparedFallback: Bool = TextProcessor.defaultAllowsPreparedFallback, - allowsGuardFallback: Bool = true, dictionarySnapshot requestedDictionarySnapshot: PersonalDictionarySnapshot? = nil ) async -> String { let prepareStarted = CFAbsoluteTimeGetCurrent() @@ -97,7 +94,8 @@ final class TextProcessor { memoryContext: memoryContext, inputContext: inputContext, formatKind: formatKind, - dictionarySnapshot: dictionarySnapshot + dictionarySnapshot: dictionarySnapshot, + transcript: cleanedText ) let userPrompt = formattingUserPrompt( @@ -129,7 +127,8 @@ final class TextProcessor { memoryContext: memoryContext, inputContext: inputContext, formatKind: formatKind, - dictionarySnapshot: dictionarySnapshot + dictionarySnapshot: dictionarySnapshot, + transcript: cleanedText ) return try await generateText( prompt: userPrompt, @@ -158,24 +157,12 @@ final class TextProcessor { inputLanguage: options.inputLanguage, fallback: fallback ) - if let violation = TranscriptFidelityGuard.violation( - source: cleanedText, - candidate: output, + return validatedOutput( + output, source: cleanedText, protectedTerms: dictionarySnapshot.protectedTerms, inputLanguage: options.inputLanguage, enforceSemanticFidelity: options.fidelityPolicy == .faithfulCorrection - ) { - Log.error( - "[TextProcessor] rejected unsafe formatting output: \(violation) " - + "(source \(cleanedText.count) chars, candidate \(output.count) chars); " - + "keeping source transcript" - ) - return rejectedOutputFallback( - cleanedText, - allowsGuardFallback: allowsGuardFallback - ) - } - return output + ) } catch { if allowsPreparedFallback { Log.error("[TextProcessor] LLM failed, falling back to prepared raw text: \(error.localizedDescription)") @@ -225,7 +212,8 @@ final class TextProcessor { screenImageAvailable: useScreenImage, memoryContext: memoryContext, inputContext: inputContext, - dictionarySnapshot: dictionarySnapshot + dictionarySnapshot: dictionarySnapshot, + transcript: text ) let userPrompt = PromptBuilder.buildCommandUserPrompt( text: text, @@ -253,7 +241,8 @@ final class TextProcessor { screenImageAvailable: false, memoryContext: memoryContext, inputContext: inputContext, - dictionarySnapshot: dictionarySnapshot + dictionarySnapshot: dictionarySnapshot, + transcript: text ) return try await generateText( prompt: userPrompt, diff --git a/Sources/Resources/IndustryLexicons.json b/Sources/Resources/IndustryLexicons.json index cd744b34..919f805d 100644 --- a/Sources/Resources/IndustryLexicons.json +++ b/Sources/Resources/IndustryLexicons.json @@ -1,8 +1,8 @@ { "schemaVersion": 1, - "version": "2026.08.24-v1", - "updatedAt": "2026-08-24", - "rights": "Utter-curated seed lists of short public terminology; no external code set or source corpus is redistributed.", + "version": "2026.09.24-v2", + "updatedAt": "2026-09-24", + "rights": "Utter-curated seed terms plus THUOCL common terms, Copyright (c) 2018 THUNLP, MIT License. See THUOCL-LICENSE.txt. Imported terms have no automatic correction mappings.", "sources": [ { "id": "nhc-standards", @@ -108,53 +108,2085 @@ "url": "https://spdx.github.io/spdx-spec/v3.0/", "usage": "reference-only", "redistribution": "not-redistributed" + }, + { + "id": "thuocl-medical", + "title": "THUOCL medical (MIT, 2016/2017 corpus)", + "url": "https://raw.githubusercontent.com/thunlp/THUOCL/a30ce79d895d01ab5132a5c74c29703ff7efb4cc/data/THUOCL_medical.txt", + "usage": "redistributed-terms", + "redistribution": "MIT" + }, + { + "id": "thuocl-legal", + "title": "THUOCL legal (MIT, 2016/2017 corpus)", + "url": "https://raw.githubusercontent.com/thunlp/THUOCL/a30ce79d895d01ab5132a5c74c29703ff7efb4cc/data/THUOCL_law.txt", + "usage": "redistributed-terms", + "redistribution": "MIT" + }, + { + "id": "thuocl-finance", + "title": "THUOCL finance (MIT, 2016/2017 corpus)", + "url": "https://raw.githubusercontent.com/thunlp/THUOCL/a30ce79d895d01ab5132a5c74c29703ff7efb4cc/data/THUOCL_caijing.txt", + "usage": "redistributed-terms", + "redistribution": "MIT" + }, + { + "id": "thuocl-technology", + "title": "THUOCL technology (MIT, 2016/2017 corpus)", + "url": "https://raw.githubusercontent.com/thunlp/THUOCL/a30ce79d895d01ab5132a5c74c29703ff7efb4cc/data/THUOCL_IT.txt", + "usage": "redistributed-terms", + "redistribution": "MIT" } ], "packs": [ { "id": "medical", - "version": "medical-zh-v1", + "version": "2026.09.24-v2", "locale": "zh-CN", - "reviewStatus": "project-seed-needs-domain-review", - "sourceIDs": ["nhc-standards", "who-icd11"], + "reviewStatus": "curated-and-imported-needs-domain-review", + "sourceIDs": [ + "nhc-standards", + "who-icd11", + "thuocl-medical" + ], "terms": [ - {"id":"medical-chief-complaint","term":"主诉","aliases":[],"corrections":["主愫"],"category":"documentation"}, - {"id":"medical-present-illness","term":"现病史","aliases":[],"corrections":["现病时"],"category":"documentation"}, - {"id":"medical-past-history","term":"既往史","aliases":[],"corrections":["既往式"],"category":"documentation"}, - {"id":"medical-allergy-history","term":"过敏史","aliases":[],"corrections":["过敏时"],"category":"documentation"}, - {"id":"medical-family-history","term":"家族史","aliases":[],"corrections":[],"category":"documentation"}, - {"id":"medical-physical-exam","term":"体格检查","aliases":[],"corrections":["体格捡查"],"category":"documentation"}, - {"id":"medical-differential","term":"鉴别诊断","aliases":[],"corrections":["鉴别珍断"],"category":"documentation"}, - {"id":"medical-critical-care","term":"呼吸与危重症医学科","aliases":[],"corrections":[],"category":"department"}, - {"id":"medical-palpitations","term":"心悸","aliases":[],"corrections":["心季"],"category":"symptom"}, - {"id":"medical-dyspnea","term":"呼吸困难","aliases":[],"corrections":[],"category":"symptom"}, - {"id":"medical-hemoptysis","term":"咯血","aliases":[],"corrections":[],"category":"symptom"}, - {"id":"medical-syncope","term":"晕厥","aliases":[],"corrections":[],"category":"symptom"}, - {"id":"medical-hypertension","term":"高血压","aliases":[],"corrections":[],"category":"diagnosis"}, - {"id":"medical-t2dm","term":"2型糖尿病","aliases":["T2DM"],"corrections":[],"category":"diagnosis"}, - {"id":"medical-copd","term":"慢性阻塞性肺疾病","aliases":["COPD"],"corrections":[],"category":"diagnosis"}, - {"id":"medical-chd","term":"冠状动脉粥样硬化性心脏病","aliases":["冠心病"],"corrections":[],"category":"diagnosis"}, - {"id":"medical-af","term":"心房颤动","aliases":["房颤"],"corrections":["心房禅动"],"category":"diagnosis"}, - {"id":"medical-heart-failure","term":"心力衰竭","aliases":["心衰"],"corrections":["心力衰揭"],"category":"diagnosis"}, - {"id":"medical-ckd","term":"慢性肾脏病","aliases":["CKD"],"corrections":["慢性肾张病"],"category":"diagnosis"}, - {"id":"medical-cbc","term":"血常规","aliases":["CBC"],"corrections":[],"category":"examination"}, - {"id":"medical-hba1c","term":"糖化血红蛋白","aliases":["HbA1c"],"corrections":["糖化血红旦白"],"category":"examination"}, - {"id":"medical-egfr","term":"估算肾小球滤过率","aliases":["eGFR"],"corrections":["估算肾小球虑过率"],"category":"examination"}, - {"id":"medical-crp","term":"C反应蛋白","aliases":["CRP"],"corrections":["C反映蛋白"],"category":"examination"}, - {"id":"medical-ecg","term":"心电图","aliases":["ECG"],"corrections":[],"category":"examination"}, - {"id":"medical-mri","term":"磁共振成像","aliases":["MRI"],"corrections":[],"category":"examination"}, - {"id":"medical-spo2","term":"血氧饱和度","aliases":["SpO2"],"corrections":["血氧包和度"],"category":"vital-sign"}, - {"id":"medical-infusion","term":"静脉滴注","aliases":[],"corrections":["静脉低注"],"category":"medication"}, - {"id":"medical-im","term":"肌内注射","aliases":[],"corrections":["肌内住射"],"category":"medication"}, - {"id":"medical-cpr","term":"心肺复苏","aliases":["CPR"],"corrections":["心肺腹苏"],"category":"procedure"}, - {"id":"medical-contraindication","term":"禁忌证","aliases":[],"corrections":["禁忌症"],"category":"safety"} + {"id": "medical-chief-complaint", "term": "主诉", "aliases": [], "corrections": ["主愫"], "category": "documentation"}, + {"id": "medical-present-illness", "term": "现病史", "aliases": [], "corrections": ["现病时"], "category": "documentation"}, + {"id": "medical-past-history", "term": "既往史", "aliases": [], "corrections": ["既往式"], "category": "documentation"}, + {"id": "medical-allergy-history", "term": "过敏史", "aliases": [], "corrections": ["过敏时"], "category": "documentation"}, + {"id": "medical-family-history", "term": "家族史", "aliases": [], "corrections": [], "category": "documentation"}, + {"id": "medical-physical-exam", "term": "体格检查", "aliases": [], "corrections": ["体格捡查"], "category": "documentation"}, + {"id": "medical-differential", "term": "鉴别诊断", "aliases": [], "corrections": ["鉴别珍断"], "category": "documentation"}, + {"id": "medical-critical-care", "term": "呼吸与危重症医学科", "aliases": [], "corrections": [], "category": "department"}, + {"id": "medical-palpitations", "term": "心悸", "aliases": [], "corrections": ["心季"], "category": "symptom"}, + {"id": "medical-dyspnea", "term": "呼吸困难", "aliases": [], "corrections": [], "category": "symptom"}, + {"id": "medical-hemoptysis", "term": "咯血", "aliases": [], "corrections": [], "category": "symptom"}, + {"id": "medical-syncope", "term": "晕厥", "aliases": [], "corrections": [], "category": "symptom"}, + {"id": "medical-hypertension", "term": "高血压", "aliases": [], "corrections": [], "category": "diagnosis"}, + {"id": "medical-t2dm", "term": "2型糖尿病", "aliases": ["T2DM"], "corrections": [], "category": "diagnosis"}, + {"id": "medical-copd", "term": "慢性阻塞性肺疾病", "aliases": ["COPD"], "corrections": [], "category": "diagnosis"}, + {"id": "medical-chd", "term": "冠状动脉粥样硬化性心脏病", "aliases": ["冠心病"], "corrections": [], "category": "diagnosis"}, + {"id": "medical-af", "term": "心房颤动", "aliases": ["房颤"], "corrections": ["心房禅动"], "category": "diagnosis"}, + {"id": "medical-heart-failure", "term": "心力衰竭", "aliases": ["心衰"], "corrections": ["心力衰揭"], "category": "diagnosis"}, + {"id": "medical-ckd", "term": "慢性肾脏病", "aliases": ["CKD"], "corrections": ["慢性肾张病"], "category": "diagnosis"}, + {"id": "medical-cbc", "term": "血常规", "aliases": ["CBC"], "corrections": [], "category": "examination"}, + {"id": "medical-hba1c", "term": "糖化血红蛋白", "aliases": ["HbA1c"], "corrections": ["糖化血红旦白"], "category": "examination"}, + {"id": "medical-egfr", "term": "估算肾小球滤过率", "aliases": ["eGFR"], "corrections": ["估算肾小球虑过率"], "category": "examination"}, + {"id": "medical-crp", "term": "C反应蛋白", "aliases": ["CRP"], "corrections": ["C反映蛋白"], "category": "examination"}, + {"id": "medical-ecg", "term": "心电图", "aliases": ["ECG"], "corrections": [], "category": "examination"}, + {"id": "medical-mri", "term": "磁共振成像", "aliases": ["MRI"], "corrections": [], "category": "examination"}, + {"id": "medical-spo2", "term": "血氧饱和度", "aliases": ["SpO2"], "corrections": ["血氧包和度"], "category": "vital-sign"}, + {"id": "medical-infusion", "term": "静脉滴注", "aliases": [], "corrections": ["静脉低注"], "category": "medication"}, + {"id": "medical-im", "term": "肌内注射", "aliases": [], "corrections": ["肌内住射"], "category": "medication"}, + {"id": "medical-cpr", "term": "心肺复苏", "aliases": ["CPR"], "corrections": ["心肺腹苏"], "category": "procedure"}, + {"id": "medical-contraindication", "term": "禁忌证", "aliases": [], "corrections": ["禁忌症"], "category": "safety"}, + {"id": "thuocl-medical-c4710024e9546610", "term": "精神", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1f6835c0d878fa0e", "term": "医院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-978e275133d14c1c", "term": "检查", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-82d3130fa58281ea", "term": "死亡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e0534b8a4e46a0cb", "term": "恢复", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ccf3069d398a6bac", "term": "意识", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f1b9fd6d8812c715", "term": "医疗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c81995fafdc22cd7", "term": "治疗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1156fe3779e4a447", "term": "卫生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9db4a3b37ed687cd", "term": "患者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-071089398bfdb584", "term": "检测", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1f1e05d9a8022843", "term": "接触", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6cd7a57b246a00a4", "term": "监测", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0d779638c69dffc7", "term": "应急", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9c08901d2e23de5e", "term": "缓解", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-81f425ddce6a8530", "term": "预防", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-43dea694a10ab370", "term": "损害", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9d0a7dbee0119f68", "term": "疾病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5d0de80ea74c7765", "term": "手术", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3b604ece83447ba0", "term": "病人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-797b694189cd0502", "term": "人体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a7b3fd7507984276", "term": "感染", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7e6f41473ceaf75a", "term": "症状", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8cff79bb4f07ca8c", "term": "医学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4687f0397ffa3998", "term": "一次性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-40ff6300f9817deb", "term": "诊断", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fa48bf823b71e304", "term": "医药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-934d8e2617a47938", "term": "防治", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2a3a119f9460befe", "term": "辐射", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-61aacd674a2c7586", "term": "生物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f402f9ba8a70020c", "term": "吸收", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e5e554e36899ed50", "term": "敏感", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9ba3e843206cd7bb", "term": "药物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6101a3e5da89cd62", "term": "人民医院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c4322846fc0283a7", "term": "部位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7443fd3337729478", "term": "康复", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-58fcfccb0ddfbd75", "term": "自杀", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fd8f627cc18eb716", "term": "营养", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2f4106afcd28bdcf", "term": "流行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0fc569e9beca46cc", "term": "高压", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cb677d60fdf6751e", "term": "医疗机构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b0eeb40230ca3aeb", "term": "急救", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fffe60acb8d0cb60", "term": "残疾人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-88baf66ab387129a", "term": "婴儿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b339de8acaf45c1a", "term": "血液", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fc0d7cf23b548352", "term": "皮肤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ab25950268cf5a83", "term": "复苏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-33a9d9b25ea11b32", "term": "应急预案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f4381033a76316ad", "term": "临床", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-58d9feb27a837c35", "term": "扩张", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b79b61e17decced2", "term": "保健", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-463a22a1c7cbae5c", "term": "残疾", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-63d2ebeaf5547155", "term": "救护车", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4811f45d40530853", "term": "抑制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-209c47b5910f631d", "term": "视觉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-704090ab774860c9", "term": "良性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6661c42b523f5e23", "term": "样本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c9d565ffdbd06ae9", "term": "不适", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-25d5d3280ff3a822", "term": "疫情", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2763b73dd129f286", "term": "身高", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7946fc539047185e", "term": "多发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b7a90a7612bfbc0f", "term": "中医", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a5f72f47a4221b85", "term": "重组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-340a87081ae7ca70", "term": "体内", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bd6d698aa9ca8872", "term": "损伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-27e6553a66a02212", "term": "消化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-603e6bfbdbbe3589", "term": "怀孕", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f1f1fb89b5ee226e", "term": "积水", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-29edd066d17f045b", "term": "病毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dad5013ab82865b3", "term": "诊疗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0a5d424378fccf96", "term": "心脏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-191a30e0490e1776", "term": "计划生育", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-38f7c7e22faf477b", "term": "体重", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-89c3e9d8bd813948", "term": "视角", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-05d7b781c45aa57a", "term": "恶性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-79cf3c0dc4244cdc", "term": "神经", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b3c76c10f4973ed7", "term": "癌症", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3cf171b6b8924228", "term": "骨折", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a533159c1a838e1c", "term": "致死", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c11af6e7553d509b", "term": "消毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9211f0637f2eb233", "term": "疲劳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-280e12a8d2af2414", "term": "呼吸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-11ab3cfe7ef7e704", "term": "公共卫生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a65e2f92bc8757e8", "term": "疼痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ecca493029c13d19", "term": "孕妇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3304479da800bd49", "term": "基因", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ebb3e6613fe65526", "term": "瘫痪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8d8aa6cbc22da6ce", "term": "昏迷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-20d60d72ffdcfecf", "term": "伤口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-30a40f2191585e38", "term": "检疫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7b346e7da2929485", "term": "糖尿病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-537ae0c395f86ead", "term": "外科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4f96060347050c86", "term": "心脏病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6d89a0d2e974900f", "term": "卫生局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-896a64b38877ac8a", "term": "样品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3af01c498fe41db0", "term": "中毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5982581e1a8a4a1d", "term": "肢体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-01324e540d059cfc", "term": "睡眠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-25d3b518a7481dd7", "term": "生命力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5241a8960648140d", "term": "世界卫生组织", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f8d5c090d9bfe871", "term": "中药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-97ed5db272e0f453", "term": "生理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4af8f4c6dd2e233e", "term": "大脑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b8b646607908cc7b", "term": "肿瘤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b6aa86109868a232", "term": "发育", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4b834145b28a06e6", "term": "按摩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4da1fa8bdfbf9231", "term": "乏力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1c5fd81e36a0c6dd", "term": "呼吸道", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1288ce47bb788270", "term": "萎缩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-90dc2839013c5fc0", "term": "弹性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b9869870868f981e", "term": "肌肉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4c8ce55a0f83ce65", "term": "体质", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2c85c90da1c09da7", "term": "器官", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d25e1490afd4cf2d", "term": "再生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-85385f4a812bbf2a", "term": "发热", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-85618f8e38029dfe", "term": "呕吐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ed9b4d79d0034974", "term": "治愈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-497b79c69b412e93", "term": "出血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dd05a455a629d14c", "term": "咳嗽", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4400d957d0a19a68", "term": "发作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ce26a2e9fea7a453", "term": "急诊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-286592e54a04f3a8", "term": "血压", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-27f1ebdaa0ae0601", "term": "轮椅", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c003cb2f88b424e4", "term": "发烧", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e676c6caed484ed0", "term": "传染病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b2ac3c986db16b77", "term": "头痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-463145e8af4fb9f2", "term": "移植", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e6a70667914d72f4", "term": "细菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9d3f1a7df53ba0b8", "term": "注射", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-85c0115a9223b7e3", "term": "疫苗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6cae3fe5b4c7215c", "term": "负荷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-289eb0b9336fca60", "term": "慢性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fe2d033b7f6bdb5f", "term": "急性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5589bde05a60d1cd", "term": "矫正", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-64fb190fb7b6e665", "term": "血管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-16a569a44d76d9ea", "term": "颈部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0aa9eaf50f3211f6", "term": "视力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0049abdb88b13abc", "term": "植入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dbc236ebc685791a", "term": "诊治", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-139e570a5f7c6ffa", "term": "二氧化碳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-10dde3dd123a4243", "term": "监护", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6d4676b04672ef4c", "term": "维生素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1ad366f4b2803747", "term": "烧伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b6c2a4b82297d763", "term": "急救车", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dbaa96f169829254", "term": "创伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-db5716a338e6b7c9", "term": "分化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-93fa687cbcc91378", "term": "细胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4f3dc9db2a45bb66", "term": "发病率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fcc2d997f8590280", "term": "头晕", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-561f5a3310cf5e9e", "term": "恶心", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-50ab418a80faeedf", "term": "白血病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1b180bb14de7873e", "term": "外伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-88dc246353565e37", "term": "医疗保障", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-74384d8933483543", "term": "死亡率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-eedc670246fd5a5b", "term": "新生儿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1c55a04d8e26d2e1", "term": "艾滋病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c71861762dcaf0bf", "term": "大腿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1ffb4b1f3d2c19ac", "term": "背部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f410e0fdcef48d15", "term": "流泪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b5fc02053e8cf9a1", "term": "腹泻", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f4ddd25eec31ceb1", "term": "抽样", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fb814c8575c7982b", "term": "水污染", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c7e29fa25b0f0480", "term": "医疗器械", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-74e0bf878cafaa63", "term": "内科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2731dc14d53cf68e", "term": "大拇指", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-988c43adbd5f7e86", "term": "精神病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d1cb6ec4c8f09de2", "term": "脂肪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a17aa7bab6c717dd", "term": "激光", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ed6badc68539f58d", "term": "化验", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3027cc75e4ae0afb", "term": "儿科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d448bce22a54678e", "term": "根治", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d5443f905d643fe0", "term": "生命体征", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f379a1f801231108", "term": "防疫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c1e11ae174a3f731", "term": "传染", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-619d41398762d008", "term": "窒息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c716b68427683b5f", "term": "并发症", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f0aabb2881d4d5b5", "term": "体温", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5e8c0cfc5180fca5", "term": "畸形", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3e3874543e66b944", "term": "硬化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-da08de83f6268aad", "term": "蛋白质", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3ca3c3637d8979e0", "term": "骨头", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d8dbfa0982c85373", "term": "标本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ac25e51b02c4647c", "term": "口腔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1394938c01615b26", "term": "饱和", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9b62188b5500935a", "term": "晚期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8a04a560ac86c973", "term": "错位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f80c2e3489f08e1e", "term": "四肢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-641a36af870db2e5", "term": "肝脏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-10adadf925c33fde", "term": "主任医师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-84abd3ac43ebf762", "term": "确诊病例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-120f606606f7d844", "term": "阳性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4aa71c5705662feb", "term": "高危", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-91a0f5f65fa7a75a", "term": "献血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-da958627565f2c6f", "term": "后遗症", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-75eb9bae8a2f9584", "term": "处方", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-954185cdb0a071c4", "term": "免疫力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-713eacad6de5caf1", "term": "鉴别", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-87e3b9950f2859de", "term": "胎儿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-370cdcbf196b1f56", "term": "急诊科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d598dda3e2c255bc", "term": "低位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2239f6619131b48a", "term": "骨科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cd74d3954385ad1b", "term": "复发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fd0a13a682d6ea54", "term": "遗传", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-22011561fe192d7d", "term": "输血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e8c5f87ad98c104d", "term": "慢性病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e6657b4c48eaf223", "term": "中风", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6ba177ab19c4f803", "term": "失眠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-def7b14fe1af8cd7", "term": "疾病预防控制中心", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9a76dac51d79e561", "term": "病因", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bc6ee64e049ec947", "term": "舌尖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-94f4ad4aba87c57b", "term": "脉络", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-45ef32f0ce723b56", "term": "微生物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d7684338b2c4bf53", "term": "抗生素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bcb34d2b7453ac6a", "term": "开裂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7ee332de3fe0afc9", "term": "竞争性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0c394c63e16f683a", "term": "副主任医师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8020eb78bb206bd6", "term": "急救中心", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a37e871663985f82", "term": "过敏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e2d1b42e7079a2bc", "term": "病变", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a4f7cbe44e925942", "term": "传感器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4348c33c76f558ea", "term": "包扎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-eeedc67116c53035", "term": "猝死", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-630e5531ed0ec1db", "term": "关节", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0d06dc26204765ea", "term": "心痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4d2ce08179d04a55", "term": "衰竭", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-12cb8e085c83f88b", "term": "失明", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e565e26b815f502c", "term": "疗法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0497ea51c08c6831", "term": "剂量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7bd848c590b9a6e3", "term": "肾脏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-24a68fe7e7eb1991", "term": "紧急救援", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-123fbf1763bb4ac5", "term": "擦伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-30947ade28361d5c", "term": "低压", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-55c7f0f250893900", "term": "血糖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c0860a1da28531b2", "term": "基本药物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6506861bfc6a77bb", "term": "分娩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-10e8993c88da3986", "term": "缺氧", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d50f171ad89e9e86", "term": "诱因", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-86a84df6f0e9783e", "term": "眼科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b00bb85fc68b362a", "term": "眼眶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4f56e9aae57cc9f9", "term": "担架", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-636da3315d9f4fde", "term": "精神疾病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9203ddfef26d150b", "term": "挫伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-49d376c680d37fdc", "term": "取样", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7c05fd03c07f4b63", "term": "肠胃", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2450f71d89fa9461", "term": "意外伤害", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e09822e61214bb5f", "term": "安全防护", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a7a690751fb88395", "term": "胶囊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-da818fcd8c6bf64d", "term": "接种", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-733309b8021ec3a4", "term": "应急办", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-303615b5ec2b22c5", "term": "支架", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f896913afcc4abe1", "term": "妇产科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-30f34eb78ea3d231", "term": "综合征", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6c221131d06a6787", "term": "流产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1e3199d1c07368e6", "term": "刺伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-677516e93d35fa1f", "term": "防风", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9e752603bed9d192", "term": "肺癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-52ceb042f136fe2a", "term": "麻木", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cf2d8d4ad85afd18", "term": "解剖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ab8052bf3d980d10", "term": "纱布", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-16df55f3d205456a", "term": "抵抗力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-534fda1966870fc1", "term": "肺炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7a1b7d12a093388d", "term": "放射性物质", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-015564cd04b172a2", "term": "心血管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-920685ec650c669a", "term": "免疫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2429fd777393ff3c", "term": "超负荷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f66614a9fb8b0fe2", "term": "隐性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-54bb3f905487e4a7", "term": "妇科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-93c141a38451fba4", "term": "无害化处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-72bb85d865ce189a", "term": "不良反应", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-83b8f3165f86f7f3", "term": "食物中毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bb63171194f830c6", "term": "抑郁症", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b836fc4b6344d3e6", "term": "消退", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ee856dc37c2f902a", "term": "抽样调查", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ae2da75926062d04", "term": "麻醉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-43b1f93c0b388882", "term": "感染者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e5f769828b7341b8", "term": "红肿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-09ff312bf5f944eb", "term": "激素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-22bf9b9f99ce8e99", "term": "分泌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-49c138108c80d3d8", "term": "苍白", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-eb0b1175d3484553", "term": "炎症", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-721e78165b1456fb", "term": "卫生行政部门", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-02551f2939ad0928", "term": "乳腺癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cac5c02e97014ef2", "term": "乡镇卫生院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0062ba54ed55f54c", "term": "咬伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4b677ce01790f4d9", "term": "残障", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dcd63aa606f2a10d", "term": "异物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0d1f51b61267de26", "term": "烫伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2a5b1e8cfdfb1bb8", "term": "腹痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7fbaf824780274db", "term": "骨骼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-085e0c511d1214ef", "term": "疫病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5ec3ea17c16d7e03", "term": "胸闷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e3094ccafe046ca1", "term": "甲醛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9923a04b62c93c38", "term": "新型农村合作医疗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2cfe7d392b02e32f", "term": "指甲", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2a203810c0f434a2", "term": "紊乱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3603012359c68acc", "term": "呼吸系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7e81763b5e1d0c50", "term": "下肢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bbda9092710cf4e9", "term": "咽喉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ede7e43f96041ef1", "term": "卫生监督", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-da470e759a6b4c93", "term": "内分泌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-868fb6c18028a42a", "term": "疗程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d36f7aed72c7ba69", "term": "休克", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4fab86194e318dbb", "term": "住院部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f1f2444001a0c537", "term": "软组织", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-16bd60d07c2f5cc7", "term": "主治医师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b1a4f698bc4e8843", "term": "机能", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d45f36347bbc5753", "term": "产后", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c60f92d4f5808177", "term": "产科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2638abf21d9f1fb1", "term": "生物技术", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5deb2cab4e507de0", "term": "复活", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c76e0b87c9b95fb4", "term": "大动脉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f26bb50e482fa71a", "term": "月经", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ed264def2570643c", "term": "截肢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-99b5c92f046a33c1", "term": "无偿献血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e1a5f8eba0b4f3ac", "term": "性行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0ce7da0dec1a97a7", "term": "变异", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1598c6dda08f3b63", "term": "共生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c067474b7be5f99b", "term": "肤色", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2f7be00d496c8ab0", "term": "针灸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8912cbb1dd7be1f7", "term": "禽流感病毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f134a47149af6b44", "term": "药物治疗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2eff70bc9a7127e6", "term": "预防措施", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a587b8694ff9eb77", "term": "生殖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0951b030f1f19ff2", "term": "密切接触者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-be1cefa73d2510e4", "term": "抽搐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2cb9b3357bd52cf0", "term": "水灾", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f6f37d69c0574cc0", "term": "麻痹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b856c45f49732a16", "term": "肠道", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-13d199c79d705e82", "term": "游离", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4c72b07a2db13377", "term": "紫外线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8a8f1a0cf7cf089a", "term": "反射", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d25dc53fea2d23a4", "term": "血流", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-276a5b88ca087b0b", "term": "先天性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8933b8ff8cca7980", "term": "直接接触", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c374051c07a73ded", "term": "撕裂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-57aa41911b324470", "term": "骨髓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8e53758681946826", "term": "专科医院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-455203c96f344d4b", "term": "肝癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6e18ce734c9125f4", "term": "毒素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-591237591acc2d71", "term": "凹陷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f84eecf8b0c5e4ce", "term": "金门", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fcfe91186875c3e2", "term": "先天性心脏病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e81a2891faac6c17", "term": "阴性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e27149c71bdbcb0b", "term": "病理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dd55a2e1ad91f8ed", "term": "白内障", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b713626c882c1d62", "term": "伤疤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-637d6b81544b0246", "term": "脱水", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a6565ff15ddafa98", "term": "刺痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5c0b6750b4b2bc32", "term": "职业病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-03ae13957a6a662a", "term": "药剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ebc8af1629d2314c", "term": "拇指", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e48feccac32a7caf", "term": "缝合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-895df78b5463c316", "term": "呼吸机", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-05b09b88bdac617e", "term": "一致性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9c5de345b55472c5", "term": "制剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4a1cebed325e3de3", "term": "县医院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ba912129fd87e072", "term": "神经系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-47df8ef657eebf94", "term": "敏感性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0f0f6a06e319c8da", "term": "心脑血管疾病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-06912989576a749c", "term": "妊娠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6dee8e47e0502abf", "term": "放射", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a4aac1abaa3c352e", "term": "止血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9b333799bf3f4302", "term": "协和医院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9c85e6c2dac4531a", "term": "动脉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5003fedd4d171101", "term": "幻觉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5ce1714b2ef493cd", "term": "便秘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-db81c8147e3cc8e3", "term": "光滑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d22a8b6492efeb05", "term": "生长发育", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-40380a271cf9a9e2", "term": "黏膜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f710733c372b5df8", "term": "尿液", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f2501eb124a358ac", "term": "微量元素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d2f45253549cf05c", "term": "失调", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f30f970ecb2d46d7", "term": "高危人群", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d2767a7f398e69b2", "term": "医学观察", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-321bb31931f6aa58", "term": "知觉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-77b36d4bfd398b4d", "term": "流行病学调查", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-addaee8e296fe88d", "term": "颈椎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-af1cf29414e05389", "term": "医德", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bfc6f4f18ca06607", "term": "疑似病例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c31b800d972de900", "term": "贫血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-be29869d438c9b34", "term": "气囊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-064f028be04f90dd", "term": "食指", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f9d622beecd035f7", "term": "坏死", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-401332f31f89d08d", "term": "嗅觉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-865473874ea9468a", "term": "生物学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-398cd8866bb5587b", "term": "突变", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b215dcbc78bb0f44", "term": "营养不良", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7dd6a5dbb6c8de4e", "term": "神经外科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1f0ee5ca0169ddac", "term": "气管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f42d12fd3ecc2d55", "term": "皮肤病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f127f74f7c8618ee", "term": "肋骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-066e829be0a9a5cb", "term": "村卫生室", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cff9e686c80672a9", "term": "中枢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8ab5557ee85e3b94", "term": "疫区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-32b2ff04a78c5b09", "term": "血脂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fc8935c0737ffeaa", "term": "重症监护", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-783bbb250c8de4ec", "term": "社区医院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-aa53ae895172ae2a", "term": "人参", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3d5a990bdd9907da", "term": "近视", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ecb18cb366108305", "term": "口服", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6168a0e1e6059a78", "term": "精神障碍", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4e78beaeebae658a", "term": "医疗事故", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6c9c918ea52f2899", "term": "埃博拉病毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3d17baa5f560a077", "term": "挥发性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-53b9b02546588ba7", "term": "摄取", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-479a8918a3c9091a", "term": "流行病学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5b61ebe0e299ff9d", "term": "子宫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-14193a3f0556e763", "term": "早产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-73d6418deddec87d", "term": "灼伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-063a505e190c9f70", "term": "临床表现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4f03322b2bc1801f", "term": "愈合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d77a674ada9d21ad", "term": "颅脑损伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a9345a3c7b75ec99", "term": "软化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b74e259cce401f9d", "term": "闭环", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-895e0ce1354e6c42", "term": "腰椎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bf8ebe7c04ca7011", "term": "超生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3ac4b2cb8614e93a", "term": "乙醇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ee90b42ea290c856", "term": "皮肤科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0f17ebcf89f44a14", "term": "临床医学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-12ff933e7c0fb1d2", "term": "生物科技", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-864cce37d488487b", "term": "肺结核", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8bdd30d837ea610e", "term": "中草药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8ef784deb09f6a1f", "term": "血型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-52036779863ada69", "term": "核酸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-33c0faf197c96a94", "term": "粉碎性骨折", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-db60b2f69eee401d", "term": "降压", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-94ff88b6135c2e40", "term": "矫治", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c3d9943497f029ba", "term": "咀嚼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d0fb6d27a56cea28", "term": "采血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-94b7d217fabdfa0f", "term": "健康档案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2ae83a81ed4e650e", "term": "体征", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f2b860f18637a259", "term": "胃癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c38ff641f8ab8ba9", "term": "预防为主", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a30d17d733fe51ab", "term": "胆固醇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-53452f2799d49b53", "term": "推拿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8237464e297cc2a2", "term": "传染性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-623f270d860ac157", "term": "听觉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f28e99cf93229934", "term": "接种疫苗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-37d2bd8888067bb6", "term": "微循环", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-67df8005ce11d1cb", "term": "造血干细胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bf35b505bf219e3b", "term": "难产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bd53e085ba73d58c", "term": "器官移植", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5e0e4d6781e382e9", "term": "病毒感染", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-917c990a11206d2c", "term": "中指", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-62b250ce7b5039fd", "term": "静脉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f24ff819b7bc699f", "term": "临界点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7144d01dd825b085", "term": "薄膜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6d91bb3ad312eea7", "term": "干细胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-73eed6e42ee815e9", "term": "理疗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8f11270e75bc3df5", "term": "临床试验", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7ec19c6b268c3df9", "term": "透析", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e2697fa7fc6e30a8", "term": "乡村医生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4ca6d37fe6a3518f", "term": "间歇性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-706fff850d82e66e", "term": "免疫系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-88b4656a0a439a4e", "term": "喷雾", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3d401999f3e15e5d", "term": "烧死", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c3b4bc47dfe7d5b5", "term": "神经内科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5f1e61a642db8afd", "term": "心率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-af56ce19010b58a3", "term": "水肿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6f4fc143ee7fd2dc", "term": "土壤污染", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d1268a699e95b1c4", "term": "县级医院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ab13976bf4b2e4a7", "term": "淋浴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d3aac3bf4a6c7c93", "term": "头皮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ab5d487757fb25d5", "term": "失能", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-eb88ae999b3f92dd", "term": "伸展", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4beb7ba92a7a69d5", "term": "变性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-497e328afbbef5b4", "term": "抗体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-afcb55ffe6333615", "term": "流感疫苗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3cca27cf8811aee1", "term": "癫痫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f3c4b8a58426d9fe", "term": "亚健康", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6743bd96fb2dc0d3", "term": "猕猴桃", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-57fad8c78ef29fdc", "term": "胃肠道", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9cc613136447fdc2", "term": "溃疡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-eb891c28e746272d", "term": "塑化剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3a47a0f7bf33fd9d", "term": "血站", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-268f83084a1f14ca", "term": "乳房", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-32680cdfebc45602", "term": "性病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d44d093f86204629", "term": "潜意识", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-66bb011d5aade8b2", "term": "避孕", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-65aa864b49421410", "term": "精子", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dcf023993763444b", "term": "面罩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5b7ceaba55d9debf", "term": "安眠药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-af819a559b889e3d", "term": "控制措施", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-aa29b771bcf73d95", "term": "绷带", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-694044d39e9df2c5", "term": "同源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-03dff65cd7fc0ffb", "term": "神志不清", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a6a6595fd93bd1ef", "term": "优生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1c9a2d02946a395e", "term": "海豹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c0305bcf2e6fc77c", "term": "兴奋剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f232b27fd7609509", "term": "体外", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7875872e56b14902", "term": "脑出血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-828c5600cfb3f432", "term": "精神科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-345ec59d3b39a6f3", "term": "眩晕", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c3d23c1dd874c396", "term": "四强", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-920e24966ae5d021", "term": "氨基酸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b35d73ecff37da64", "term": "突发公共卫生事件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4f7e8d89b8b478e9", "term": "挂号费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dcb8087ee346964a", "term": "心脑血管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4a8624f2c731c4e1", "term": "疫苗接种", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-44e4709392b66fd9", "term": "复诊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-669a27e5f305e282", "term": "植物人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-279bfd9201a54691", "term": "聋哑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-45c77b4e9b74cd83", "term": "精神分裂症", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e799997ba2cfc18b", "term": "酸痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cb86607e838a9069", "term": "处方药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3ac4d2ccc1f1fd83", "term": "偶发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7d3c335903e8c010", "term": "潜伏期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-021c2534c56aba64", "term": "解毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-830b5ee4b6b65230", "term": "传播途径", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cd020b32108ace89", "term": "毛发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3a1cf614a1faf6b6", "term": "消化系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6c78c0014749c4b4", "term": "肾病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7fa200ade4bac42b", "term": "浸润", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-936cee5f6583c4cb", "term": "外科手术", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cff8895a0c19b977", "term": "肺病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e55b2fe6ae03410b", "term": "筋骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c5e8f9c7220b16a5", "term": "肩部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-85f7a299d3225e65", "term": "表皮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-248183e4fc2db1f0", "term": "二氧化氮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2aa23d9b2397f650", "term": "鼻涕", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-984064ae3f9f804c", "term": "血小板", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fdb5c1e19402684f", "term": "胃病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d41ff9f7c7fefe7a", "term": "角膜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ccfc3aeed1ee572e", "term": "骨髓移植", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2efd75c561f492b0", "term": "肝病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c385aca944324a42", "term": "裂纹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e5ac64f3cdb880b4", "term": "喘息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ba56f6cb15e15171", "term": "鼻腔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2e4d7858b79fa83d", "term": "二级医院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8b16e20f599278fd", "term": "哺乳期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bc723a7abcdee6fc", "term": "变态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1ed834f6123ff537", "term": "产前", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d6687f5fb1290d1f", "term": "胸腔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-77637eeb2ac0ce1a", "term": "功能障碍", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d942e1cfeb80df6b", "term": "登革热", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6971a3d40683051e", "term": "绝症", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-85755d8b4f8c7c16", "term": "口渴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-eed5c78621e017cd", "term": "疼痛难忍", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3e58732d68ec7484", "term": "无意识", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ac349392a96a72a4", "term": "消炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5bd49f1db23bce60", "term": "颜面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6e2dd3fdf5c1fecb", "term": "宫颈癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0ca54f8fae1b6ada", "term": "瘙痒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7b4e329af2913eac", "term": "排泄", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-56d377b6d17cc8ff", "term": "胰岛素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c17cb58d023671a2", "term": "泌尿外科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ff3a8bd20d096a6c", "term": "心理治疗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-521be5b43815590f", "term": "出生率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dd9b18fe1607bcd0", "term": "关节炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-880303e2267f19e4", "term": "综合防治", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-093b6b9d06069458", "term": "鼻梁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2c4cc8e89dc65425", "term": "乳腺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b2026ef494f9145a", "term": "肝硬化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ac7dd43cfd4c53e6", "term": "执业医师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0a373ab3b99f7609", "term": "空腹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7b6e8a20ac3e06ec", "term": "韩启德", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2e7a5c16e7836ebc", "term": "换气", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c8bbbf854f83d61e", "term": "鼻炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-694404d13f78d039", "term": "成活", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2248b77af11714dd", "term": "扭伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9ed0ed0ddd88bf29", "term": "排泄物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d4934d8ce2dee848", "term": "腹腔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-44ef7baf398828fc", "term": "脾胃", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-445ca5a6c90df235", "term": "综合症", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4b0fd3c3f07b2e66", "term": "颈椎病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2946fd15e092bf13", "term": "肝炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8e57206a6349f9f9", "term": "中西医结合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2d7b92b9bbd5a80a", "term": "学名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5cc54238de6e9b99", "term": "昏厥", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8cadbdd0ec37697f", "term": "携带者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f60dad26ec7ac4df", "term": "结核病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3ed6f39c7cb472bf", "term": "移位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-afa5d75c7f6cadd7", "term": "温度计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f80813e5c4f439d3", "term": "菌落总数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0f74934610f4e36b", "term": "梗阻", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bfafffa0d393788b", "term": "失血性休克", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8230ca22a56add73", "term": "疾患", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-20cdeb6eb9665796", "term": "痉挛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-92bc2da116c0b8d1", "term": "手足口病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cab1fdbfaeee992e", "term": "海马", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-871a58bdcfc323cf", "term": "用药安全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-12b7234a6d582a37", "term": "毁容", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dce200159e652e4b", "term": "临床经验", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-09986fb8ef7f98ce", "term": "试剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ce62f4e4d5312a2e", "term": "脑震荡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-04f2dab00062169f", "term": "流行病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-44faf94b7ca8c7b9", "term": "经络", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ea138c7335d39437", "term": "鼻孔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-560873228fce6df6", "term": "骨质疏松", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-eacc8c506ea549b9", "term": "生育率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fa41258d6980665e", "term": "无菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cf32980381492906", "term": "不规则", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-288e6acbd956e03f", "term": "健脾", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1b2a2aa2011417b2", "term": "肋骨骨折", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-963823732668a279", "term": "疗养院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c4a2ddfde26770f3", "term": "甲醇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-40be8d4ccba52b67", "term": "显微镜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a2def53374cafa02", "term": "甲状腺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-887ae70b2f37b340", "term": "肺部感染", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cfbd1d260edb1b74", "term": "味蕾", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9d9a2d54f6770230", "term": "疟疾", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-db97314dd1f73f90", "term": "缺血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4af596e0fbf8d939", "term": "寄生虫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5926d7ae5fbb4e3c", "term": "窗口期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b2b64efb4d201f85", "term": "呼气", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-edcbd0c2ef23bfd1", "term": "药学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-167bb1f9cddf62f7", "term": "湿热", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-63744dbfb17976fc", "term": "成熟期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0e2bcca5fddfaaed", "term": "葡萄糖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-49a574579144e7a5", "term": "止痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1f8a615a570f0639", "term": "阴道", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d4b1f15f322b8874", "term": "盲道", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0d199b3bb3364081", "term": "味觉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2575fa79575c693b", "term": "卫生许可证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0162d5431a90cfee", "term": "显性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d4b53b52d6182727", "term": "亲子关系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bb037f41dca9f797", "term": "斑点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-32a674caaef088b9", "term": "血性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3bf143bc42aea4a2", "term": "脐带", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3feff5d6275676d0", "term": "血栓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-438877b9f5ae5527", "term": "健康证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-492a59db77f09022", "term": "排便", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-df1f2bbe776d40c3", "term": "预防接种", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-add76a98c79ef6b9", "term": "张璐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6a0ef2229437cb97", "term": "充血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b9bcdd438c82513c", "term": "皮疹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-38be4adef6158818", "term": "腹胀", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b4b35dae92ac2997", "term": "气泡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c8ae0ce2d675063f", "term": "婚姻状况", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a37bc65ca0369595", "term": "膝关节", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-33927804de61cbce", "term": "假肢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-69fb536869700073", "term": "橄榄油", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3b7c90d54134f586", "term": "润滑油", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cf0a284af2c29e08", "term": "退烧", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-623b4dc5e28c5547", "term": "偏瘫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6c7d55201b699f20", "term": "血量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bc8ecfe2f670befb", "term": "真皮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4931f71a0365337a", "term": "中医科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0437c524e26e9636", "term": "交叉感染", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bfb6b841d972ff60", "term": "前列腺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4c0db5708de5eb30", "term": "卫生保健", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-554ca534b0bedd87", "term": "肝功能", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cc8622e4af491e9d", "term": "食欲不振", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0b3afc34d46e2a2a", "term": "脑血管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8746f21efa6a599c", "term": "毛细血管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6fcc585a7323efb2", "term": "过敏反应", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-31af4866948fdef4", "term": "免疫功能", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f49a89eb1446d651", "term": "血浆", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ccc1b51f07c0c78c", "term": "肌腱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1f3d9315bcbdaa0b", "term": "大肠杆菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-eaab4ba0c914dc40", "term": "耳鸣", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-829d69b90cd6bd5d", "term": "高血压患者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-52a717c76b254ff9", "term": "抗菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c29494381adf78dd", "term": "药箱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-51d97955ca79bd4a", "term": "告知义务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c50a09f2b30a79f6", "term": "对症治疗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dde11e0a50b0f03b", "term": "肾功能", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9e3d5f12d9151adf", "term": "检定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-22477fe8400b93e6", "term": "增生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-def5ae27f4c53f62", "term": "口腔科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-80a0025858064e11", "term": "肿块", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e7c8eb5b19e81738", "term": "放射线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2e9c2bc873b1cc01", "term": "雌激素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b5d375496259a719", "term": "可卡因", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fd2689e76c1edef9", "term": "补肾", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0290ae5131ec7c77", "term": "肛门", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-43febdc206ba6b54", "term": "亲子鉴定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-056426bda85b9059", "term": "细菌感染", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9c5b87780f9678c0", "term": "疫情监测", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0630c12ec6e828d1", "term": "优生优育", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-de483d80e05ae3e5", "term": "结石", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c1122c8d2a8348a8", "term": "头骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f21c451ab05186d8", "term": "血库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7e5c845dbfa79693", "term": "支气管炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5930550962e9f5dd", "term": "健康促进", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7101e3a78d0a3c2b", "term": "合作医疗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5720cdb3eb3d5ab2", "term": "基因组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dd04ed8ff1759e5f", "term": "后脑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-05a32fc48eef4876", "term": "冻伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-de81165d12dd4006", "term": "医疗设施", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-70e29b48ed795499", "term": "并指", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-401acab9c5b77481", "term": "生殖器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c1e598713fc4d889", "term": "病程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0b65ba549ce4faf1", "term": "正常值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-100622757b1f2102", "term": "血清", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-be9aba9fe162fef7", "term": "唾液", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d337e735c04cf9e5", "term": "烧伤面积", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a572471a39b2000f", "term": "缓冲区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f7c4ee5628c5902a", "term": "颅骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4d56980c52b087ad", "term": "不孕不育", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-06f8042c97bb17e9", "term": "淋巴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4dbf144e8db1f215", "term": "颅内出血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9eb3aab25bb338d5", "term": "脑死亡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-20e36d297d84a4f2", "term": "消化内科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cc4d8ec67475ec55", "term": "病死率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-87f2f82a708f9d02", "term": "梅毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f1f3a010052402db", "term": "生理学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-926afeef642386dc", "term": "狂犬病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c947dff6ab597474", "term": "体液", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9c7455bafb52d3cd", "term": "抗衰老", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-25d342ce56439d89", "term": "动脉硬化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ef7729fd78ebb939", "term": "气短", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f286071ea8361d37", "term": "清热解毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b9e2a0ef07e66129", "term": "高原反应", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c1e26e2e36f29f7e", "term": "脑梗塞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a039a166c1ef5be7", "term": "性功能", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5de38f42f1479f0c", "term": "中西医结合医院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7ad104825572eae7", "term": "五脏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a133956ab2075b40", "term": "转角", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-26a565fe1d1a9815", "term": "致病菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4fdf438f047426c4", "term": "吞咽", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6d0ac33949a04193", "term": "卵巢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-16394e66a91ff377", "term": "鼻塞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2c28061cb0d8637e", "term": "淤血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9703a1b4e10867a0", "term": "霉菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-254f8c60d2fba6cb", "term": "霍乱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-631f8aeeb5d8a322", "term": "传染源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e6c7a9f449c0c03a", "term": "乙肝疫苗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-99b6d7e6c3979ed6", "term": "卵子", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8b5cf890bf7c5b1d", "term": "补血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-348741b0805d16dc", "term": "注射器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7b97c2d1e9cb0979", "term": "视网膜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7e892b0da495e673", "term": "癌变", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-40401f58a4d1e75d", "term": "避孕套", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-59b5ea104ca632a9", "term": "大肠菌群", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-384a9a120f70d942", "term": "整形手术", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4cb3ac4a490c333a", "term": "太阳穴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-34011c5e45ad53ca", "term": "暴饮暴食", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-55c4bce3899ffa7f", "term": "耳聋", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0443b746286d5d6b", "term": "整形外科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-de849e28770fe221", "term": "触觉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f8324590889a7303", "term": "慢病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cc0bea0001ef51d5", "term": "耐药性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d8ee2c23a0917961", "term": "盆腔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3443df76e149652c", "term": "膀胱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3ae181443b490a0f", "term": "活血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c1013ba1e6523eb0", "term": "胎盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b131d0b2206b3b44", "term": "医风", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0c1b88adaec50c5d", "term": "湿疹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-042b54bf2bd983ed", "term": "胸痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bd5ed2f570820a47", "term": "节育", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-03ec4311e350f46f", "term": "食道", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2a1f15da2f29a2e9", "term": "羊水", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8500e8d2efa6edaf", "term": "低血糖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dc804aca06bb7b96", "term": "心绞痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5c6b9053f70e2a75", "term": "生物医学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cba1f41b48d42124", "term": "主动脉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3b51a44519f181c4", "term": "检出率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-84b9845bc4f424aa", "term": "脂肪肝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9bb882c6229ac143", "term": "数据管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-509d2d59aed762bf", "term": "循环系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-29626e20c3e6f952", "term": "麻疹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-776c240216ed2b67", "term": "适应症", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-67f94558ccb37c35", "term": "中医学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-082de723d2b0a012", "term": "生物安全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-19b50e6e83a3c150", "term": "高位截瘫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dd17fc51087b9551", "term": "胃痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ffdb8a75a1b848ad", "term": "水生植物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c14293c2625fe209", "term": "肠梗阻", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6c244e136ad5aded", "term": "生长期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cdcae6c776efc46a", "term": "白细胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-468511416a1bb858", "term": "耐药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fbc7983c14f62429", "term": "社区医疗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-af45dc4f92c64c61", "term": "精液", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5aa176836e5f3252", "term": "软骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-757ae254dcf1741d", "term": "医院感染", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-57f91520f9f4db42", "term": "营养学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-098a3b819010484e", "term": "失语", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9b7eb6d1384f0752", "term": "迈步", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c7a5e6d9240cff82", "term": "心肺功能", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c3d7f7cf0f66513c", "term": "中枢神经系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c403e9d18baab996", "term": "真菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0a9e8462c8ff2f9a", "term": "大肠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-31722dfd1623e9fc", "term": "韧带", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e4ad40e3e4b4c922", "term": "三七", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d0a43fb3b682bcd6", "term": "剖宫产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a2518a9d2f5d96ba", "term": "小肠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5baa8c09e5a1c741", "term": "超声波", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cdbe53f7ca5819ad", "term": "尿素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-15765bedd7d785cf", "term": "消毒液", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b4e0319c573029b9", "term": "药膏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-08989b8504da6515", "term": "排尿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-33869d8ca30342c5", "term": "抗病毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2d2a027fac1da40a", "term": "青紫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-094fddf09549c65c", "term": "止痛药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6f16e8d1ebe274e0", "term": "灵芝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c9c2c2f037de73b1", "term": "结核", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-522fdf3a60c7d4e9", "term": "带状", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a51f8a438facfd4e", "term": "加温", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bc236402358a8be3", "term": "蒲公英", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a68e6def4ed7946b", "term": "盐酸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e3389cd27db5a88f", "term": "产卵", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5efde2ff8bb8e966", "term": "脾脏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f92f529fa994c71a", "term": "腰痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1893d8f660c5e7e4", "term": "痛风", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f96b0c460c385ce8", "term": "氯胺酮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a09c5675eebb38f2", "term": "前列腺癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cd4bf59218d6e01a", "term": "腰围", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-95ac0ce3b08bf57c", "term": "复位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a3c0fa601fa0c500", "term": "抗病毒药物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ea39c9c29966bada", "term": "枝条", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-88d89d65ef916740", "term": "精神失常", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-049a6b72bc0f8161", "term": "当归", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7268f30a5ab9e53b", "term": "狂躁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f8cc35eb6a83f0d9", "term": "冬虫夏草", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e2188fbeabd2d20f", "term": "粘膜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f2d8e71a4d1d4dfb", "term": "受体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e3869a5ab4bd5696", "term": "消毒剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dd355323a1918f58", "term": "易感人群", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c5925a386e4f7075", "term": "肌肉萎缩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0a8261ae2c4612d8", "term": "肾结石", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a684ba49051c7b11", "term": "光谱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6c7906179ce0070c", "term": "纤维素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1d938db8963ab1c8", "term": "板蓝根", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cfcf0f8e9b97b275", "term": "流涕", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a41235aa4c545ce4", "term": "结肠癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-908c77cb9f6e0eea", "term": "皮炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dc999a4775b0580a", "term": "神曲", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f35690605c7f4783", "term": "肾移植", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-201191087b030afa", "term": "瞳孔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-61b61ff29c459bf6", "term": "中心卫生院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8eb41020975b19e1", "term": "骨盆", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0c29008c4830220f", "term": "风湿病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3ff96231449ecc17", "term": "胃酸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0b2aba14defcfa7a", "term": "心肌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a8436cac21b04ffc", "term": "染色体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cfb0801cbd3ba76b", "term": "致命伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9734aee9a7758f8a", "term": "虚脱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d08cddfc8569311d", "term": "脑卒中", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a05421f53a0ad8ca", "term": "碘盐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fcd9c6682ef5faee", "term": "神经病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-db0069d9ed1b65c0", "term": "胃溃疡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3842417fcb3c589e", "term": "前臂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e3643a8f0e54dfe3", "term": "免疫规划", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e233dc2af34a1eb8", "term": "气喘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4bcbf031849bc77f", "term": "引子", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-10302ed820620d27", "term": "白加黑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8d0cbdbb9d018b62", "term": "虎口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c106599d8c6e21b6", "term": "血液透析", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bb75d109691cf65f", "term": "牙龈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ede9431f6d2e3c73", "term": "黄芪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a5845ba966a73a91", "term": "过度疲劳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0d85ddbfb3ac8052", "term": "遗传学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0cac98386f08bee5", "term": "营养液", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9a6dae0770c5e5fe", "term": "市立医院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e54d1a148ae86d13", "term": "再生障碍性贫血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-934bcfb0e4823c47", "term": "抗菌药物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f77c4ea6ada02dc2", "term": "避孕药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d0bd3adbcbd3c525", "term": "拉塞尔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bc010245652e1fee", "term": "基因突变", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fd3b04309270b015", "term": "供体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2d9d7c4a23eaa929", "term": "条件反射", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6eefcc086cb0da9f", "term": "狂犬疫苗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bd59519e528c4f9c", "term": "脱发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c1c0014dcfb06143", "term": "内伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1ffa66901d9e00fc", "term": "血肿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4bc1497d3d9f41e7", "term": "安乐死", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0b3ec07a820aeea5", "term": "性状", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b48076de3c73aa52", "term": "肺气肿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c40dd2be7aaedc6b", "term": "灭菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-af06ee2ab982afa7", "term": "五行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-531204dacbefbe8f", "term": "酵母", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-42acfe6c39d24eba", "term": "肿瘤科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8deeeb5ba8ea4639", "term": "高血糖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5d84158246f60503", "term": "社区康复", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0c0098f4f2b3c1e0", "term": "神经衰弱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-732557d194eecb3a", "term": "腹腔镜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-83923b23c9b80b82", "term": "枇杷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5b30b7dbe0f91840", "term": "红细胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ca0bebeb3febe6b8", "term": "药丸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-73e625e885e32d84", "term": "肿痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-94cad3c1e47c0f42", "term": "陈冯富珍", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4f722bd0602911b3", "term": "痛经", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5630bfc1c79b8a0c", "term": "眼睑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4f15d7cfc71e768b", "term": "过敏体质", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ffb74f8378879a7c", "term": "结扎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-852f9355af95cf38", "term": "软组织损伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-265dc20a3db398c0", "term": "脱皮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f930885d0d3717fe", "term": "糜烂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ee677ab007fd4c4f", "term": "野花", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a5ebc3ddca5f47ce", "term": "感染率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b716634beba53e63", "term": "沉积物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5e5d2a50a161a445", "term": "叶酸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e009df4262a124d8", "term": "安神", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b8a2f7e2e4991dc7", "term": "青光眼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3d3e83e563a40699", "term": "创可贴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a31dca5efc2d4196", "term": "桑国卫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c7308135035bab73", "term": "口干", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-df1a3adc8d8d4078", "term": "传播媒介", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4aaccba26873ebc2", "term": "过滤器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8b8a08af45c7f4b5", "term": "胶原蛋白", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c8e568744cb23a2a", "term": "心律失常", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4d1df0407f719eda", "term": "远程会诊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-619f16227e1a63f5", "term": "截面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-59b0c54444118039", "term": "生存率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-61f6743e7463d2a6", "term": "血友病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-efba0bf63abef7f9", "term": "放射科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2991bf64abc220f7", "term": "败血症", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-95053f977abc5a6f", "term": "健忘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ee24b096a7324bc1", "term": "不育", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0f6c5e06456e7e52", "term": "青霉素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3a9ebfb525c6ba47", "term": "胆囊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ad2059ef21138515", "term": "临床诊断", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d7c5e37f1ba788ae", "term": "眼药水", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-800442b4da3383c4", "term": "生殖系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6b94e9fa03dd4d72", "term": "心理科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e30a60efc5bdab0a", "term": "心血管内科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d541a72140beab73", "term": "痢疾", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e635ee574f35b63f", "term": "脑膜炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2d2e9fbce3a04e32", "term": "白求恩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d20c8976038e8a7b", "term": "食源性疾病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8d2cf315ff53c41c", "term": "支气管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6dfba4712f16f369", "term": "黄疸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-42a2caaf9e4df3ac", "term": "憋气", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5c867859e17dbdfa", "term": "王卫平", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cbf8566ea0596b34", "term": "产前检查", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c808484c8d5f673a", "term": "天花", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-877fe04234a94c77", "term": "高致病性禽流感", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-586b34dd9b9645e2", "term": "尿频", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5dbe5ac33c852de9", "term": "不明原因肺炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-649c021d91c858d3", "term": "脑病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4d5a675c3ddcc4f8", "term": "传统医学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c3df2b4b4c4aa732", "term": "尿急", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-201942a5f5c184e6", "term": "接触者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5dfe12f8e49e79ad", "term": "泌尿系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8666be5b6a7f8a32", "term": "早期诊断", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-998ea3c9deb38eaa", "term": "骨伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-868bb4fc2f80a860", "term": "基因库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5846a29a8b4dc792", "term": "阿胶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b2f716d1ff4d7456", "term": "食管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a3ac3e1ab7a9974e", "term": "特异性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ab137b0fb341fc11", "term": "脊柱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-89b2a81a80e88e18", "term": "内环境", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-15f3fe52991e090a", "term": "尿道", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f53c8dc7e75f7dcc", "term": "脱氧核糖核酸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c6623bfd99e72192", "term": "黑芝麻", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-717a1458bd970709", "term": "催眠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-aea9a5b5fb09fb99", "term": "子宫肌瘤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-49ba1dd0b6f237a9", "term": "归口管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7aa4db1e77837594", "term": "关节疼痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dc30558b373ba4ce", "term": "混浊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-437ab6216aa6f2df", "term": "金黄色葡萄球菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1ac0f5df73d78b5f", "term": "宫颈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4ac82afc63411cfb", "term": "非处方药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-97e236a14bc9f36e", "term": "原发性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-965caff1f55d692a", "term": "海龙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4bb5cd9335962524", "term": "糖浆", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9ab0f47353a76c9f", "term": "耐性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-165e53c91a35d61e", "term": "葛兰素史克", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-236e3ca7c526723e", "term": "喷嚏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e136344d69116653", "term": "后放", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fb315763f8c358ed", "term": "脊髓灰质炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a6e792b5c4735897", "term": "皮质", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9519d6c182468754", "term": "病原学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-49e6ca63190724b4", "term": "医学美容", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cc2b92c4a2f16a5e", "term": "骨质", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0eed6dd7bb73188e", "term": "排卵", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8636d9dfc5a8d026", "term": "脏腑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-37aa93060f04fe70", "term": "红斑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-83e02080c1c64d6e", "term": "冠状动脉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7a74578cbfeae64c", "term": "感染性疾病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ea8a855d8348f3dc", "term": "放射性核素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9ea854a224dbc45a", "term": "定神", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-976de002b7f90d83", "term": "输卵管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6b93a25f1dd1184d", "term": "消化科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-69ab8558490f7c47", "term": "口蹄疫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b68aaaf34eaa6492", "term": "震颤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-36e177145c0eeeba", "term": "陈皮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b54e7757106b4469", "term": "遗传性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e58b3b35ece12202", "term": "注射剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b64d25e0125c1369", "term": "血压计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e9ebc740f07702ec", "term": "高永文", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e8db9faefec62f60", "term": "夹板", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0ceb2f2a4326a21b", "term": "洗胃", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c64360a6e1689066", "term": "紫外线照射", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-88922891e4ce38e9", "term": "改水", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fcfd247e26bd0161", "term": "沉香", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fd1f47039dcf8a91", "term": "法医学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b37fb04dea23f3ed", "term": "溺死", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9b7abb409e625592", "term": "风油精", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-740576e5c48ea72d", "term": "起病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-63b911cf63f49655", "term": "二甲苯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-16ff049bb2ea8e3d", "term": "直肠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1b6392638903b654", "term": "厌食", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b285563aaccbd862", "term": "化脓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-379b2e7c43389b0f", "term": "水解", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f28e9b8da69f04f5", "term": "烦躁不安", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-87ac3330c7fb1980", "term": "纹身", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-aea45ba3a70a2f44", "term": "甲苯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6d7ce78c10ba0cb5", "term": "胃镜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8c6d78c2b54d7227", "term": "肾功能衰竭", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-11942b703b2d826e", "term": "西京医院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fd9dcf516e400fba", "term": "安全范围", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3f6c8cf28a4d72bc", "term": "乳头", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ba2e15cf0ea05efa", "term": "胰腺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fede5e4dacd1bb83", "term": "嘉德", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9829a30dbfbe10a3", "term": "心血管系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-78126e388fc14523", "term": "防疫站", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-059f41c8f56ceec3", "term": "股骨头", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cbb8b5c4eb0568ca", "term": "遗传病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-11f5f2e4fcf121c8", "term": "肾内科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-23fd788db3bbbc89", "term": "流行性感冒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f3f86350528d193b", "term": "鼻咽癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-936047e280b1c3eb", "term": "党参", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2343d857a5b09ae2", "term": "介入治疗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-86fed35004c22d83", "term": "治疗措施", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f679a1ed42d8fc8b", "term": "不饱和脂肪酸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2ebe42e0d10cd068", "term": "锁骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f86a17a7c94f2a39", "term": "抑制剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6f8e6ed5a6cbd27d", "term": "埃博拉出血热", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bb93dce9bfc03876", "term": "防护用品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4e641cd44cb207f2", "term": "肉毒杆菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-55923db8a347b6b3", "term": "机械性窒息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b160a3a854d36e75", "term": "婴儿死亡率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-38106e4279f92f41", "term": "肺活量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bf740be67ea2a6c2", "term": "沙门氏菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-17be4685621fdeba", "term": "妊娠期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7423442e87ee64fd", "term": "肩周炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f1f1751c8943bb34", "term": "酒精中毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d348ac42c81c94e8", "term": "胃炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-82aa80ff779fb615", "term": "预处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3d13b99baba51cce", "term": "前列腺炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a486e3bdf17597f2", "term": "硫化物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9a920678a84fb2bd", "term": "化痰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f836bcf55cc54ef8", "term": "院前急救", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-54540f7a017dac81", "term": "白痴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9d5256202deb2d93", "term": "母婴传播", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-287bb9965653f73d", "term": "阴茎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b955ca977c583234", "term": "咽拭子", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-36df203aec017188", "term": "康复护理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1e0b45cd832f42ed", "term": "气管炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b9dddb823b1794c9", "term": "甲状腺癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b35e92242f30908c", "term": "薄片", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dc90fe728e7eee73", "term": "人工授精", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6fb59c8cb7f4b2be", "term": "阿司匹林", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2fe02989fdf0fc00", "term": "急性白血病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-385bb89641072ac6", "term": "上吐下泻", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-40ed07c0bf135492", "term": "黑豆", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-18861b4662446e3b", "term": "肠道传染病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3ab7d48822ffdf76", "term": "根茎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a6b867beae3a27a2", "term": "病征", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cba6c727a9acc7bc", "term": "半身不遂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c21c64d120a2a216", "term": "颧骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e76013109fbecf80", "term": "结痂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8ee481b40b1d6cdc", "term": "吗啡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7135bf5efe81b3b7", "term": "龙骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7df398d342887927", "term": "黄曲霉毒素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-24e100b4990f58ac", "term": "胆汁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-10098e8e28eb2909", "term": "阑尾炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2ef0f3725d081a18", "term": "阳痿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7a74e4ea5be68175", "term": "病毒性肝炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4af43cb38473fdb7", "term": "肌肉酸痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f2612a5fed69cc13", "term": "颈动脉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-22cc04fc8add447f", "term": "鼠疫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1db267ea533d1e92", "term": "乙类传染病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-36e836aeecb490c5", "term": "脑神经", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-619110e9327fef1e", "term": "硫化氢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3b2ebcf71fd3fb2d", "term": "脑干", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d5f233b060056ace", "term": "特立尼达和多巴哥", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ed562af19bcc771c", "term": "咳痰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-34fd89f0313d2217", "term": "静脉注射", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b3ae6ed659f84a1f", "term": "血红蛋白", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-16c22e335d9f2b0a", "term": "五官科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9c21a92f38bfb135", "term": "致病性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6d003e6e800ae51b", "term": "自由基", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-32af0c6e9cbb5c50", "term": "睡眠障碍", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5bf47ed93c17a62a", "term": "神经末梢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6e501ead93941c87", "term": "医疗废物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cbd8e985d6d9c527", "term": "受精卵", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9c866d8f77da6cbb", "term": "神经细胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fa9c2595d31ab74e", "term": "生物化学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f2c5a20e13f546db", "term": "生殖器官", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-faf187276237b637", "term": "免疫力低下", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a30dc4eadeb07c97", "term": "肿瘤细胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-49577574a29c8bc7", "term": "医用耗材", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fca808500b1d7598", "term": "朱砂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f1066c8b0a9efb16", "term": "经脉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-13937f2f76eb9f81", "term": "伤寒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d830a8728a74082d", "term": "冠状病毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-00db244a465836ef", "term": "串珠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-66d3f4607a80fba1", "term": "人工流产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-db831b9f744cade9", "term": "高气压", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-114e4a52459af4b9", "term": "神经科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b75eede486f671f5", "term": "缝针", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-71ff270d8e490b3b", "term": "便血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cd7789971080d245", "term": "治疗室", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-abb89bfe5e3e2d02", "term": "鼻部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c28fe4147ffdb9a7", "term": "淋巴瘤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-90e4e58d454b4a78", "term": "茯苓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-044f99c56bf8c402", "term": "妇科检查", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-deb8429e79cb5ebf", "term": "颅骨骨折", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d018b62d2567f952", "term": "囊肿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7751ac2f30c295c2", "term": "血管收缩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-24cb3448deda7b13", "term": "腹肌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-84db4df52216625f", "term": "泌尿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-afc77a0f2004948e", "term": "基底", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f817dacd7659dcff", "term": "咽炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-735b85326aa81547", "term": "黏液", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-29a9358318a09473", "term": "先天性疾病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-01d3e28a19e3e51a", "term": "髋关节", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a1522894019d2dea", "term": "晒伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-198bad26ed4fd682", "term": "椎间盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-508691310da493c4", "term": "血液制品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cd585c39b040123d", "term": "青蒿素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ef64abdb1378e30a", "term": "阴虚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bb0915df30a03e51", "term": "尿酸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-87d7ad8cdf2e7e92", "term": "肾上腺素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-880cb83c0958cc8b", "term": "分子生物学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9af77353a2ca9eda", "term": "凝血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-37db25bd381f870d", "term": "尸体解剖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b6d70eb0e6ea87a2", "term": "感染性腹泻", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-59f8e36996f54b53", "term": "裂隙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-aa6cf5375f9d32e6", "term": "黄帝内经", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f1d9c48fc45d3141", "term": "云南白药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c3649f64977ce765", "term": "冻疮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3d4be1cc588577e7", "term": "黑头", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3155c0d9759fcbbd", "term": "肛肠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-02cad15e2df68478", "term": "反胃", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d8456739a2ed3668", "term": "宿主", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6390cf0b4798d023", "term": "劳损", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-675f5375f5c8e31d", "term": "梦游", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-65504d52be3868df", "term": "麻黄碱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5ae411b392182ecc", "term": "基因工程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9d374ac14d67986e", "term": "复方", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-32eb7ce285560e7e", "term": "膀胱癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-92e4c567b6fa18e5", "term": "拔牙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ecebc7f8c7e6458f", "term": "百部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d72c7591ee388534", "term": "伤风", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a3c019ad9a8b6cb8", "term": "荨麻疹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3b824f51af8b932f", "term": "钛合金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1115b3eb9fe8d1c0", "term": "刮痧", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e6ec0e32c1ccfff4", "term": "散光", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-71fa2406a882f756", "term": "血块", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b8eedef088f3dd5b", "term": "辅助生殖技术", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-74d3b91d6c5e733a", "term": "呼吸衰竭", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a3849e0db7004ce9", "term": "常山", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dc6d766cf685e814", "term": "物理治疗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dcda7faeb959eaa4", "term": "张琦", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4b96ffefa82ae61a", "term": "股骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4e7b5afdbce7c9d6", "term": "截瘫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3984d78a552f522c", "term": "结膜炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ee7f1ddd5294aab4", "term": "胆囊炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-db422641166fafa7", "term": "整形科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dbaad2c8f47b50a3", "term": "皮肤癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cb789a170f99e2a2", "term": "心肌炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1d38f07fbb01ff0b", "term": "骨关节", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a4e8e99c8a313995", "term": "骨病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2a19a9655634da2a", "term": "自律性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cffc1acf3c214505", "term": "五脏六腑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8d98fb79f1215ac4", "term": "动脉粥样硬化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-44dcb53369736084", "term": "冲剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c7584cef9643a819", "term": "气管插管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6a6239d345cba015", "term": "狂犬病疫苗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7319fd1004b8a5df", "term": "血尿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dbc66bbd106a5234", "term": "畏寒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c7fad4df4b1a2e8d", "term": "生理盐水", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-597dccd0db91b3ea", "term": "急性传染病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-993ba000d19e9617", "term": "祛斑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9628794b4569ed50", "term": "悬浮物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6187e0284b6e8907", "term": "铅中毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a2fc4d5dcf5a1eb0", "term": "大血管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f10fa3ce778517d4", "term": "支气管哮喘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0e48d118ffbdcc1f", "term": "脑炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b8a9960a96da17b5", "term": "内窥镜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-58c4684405a5b5bf", "term": "发育迟缓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9dc9d570534cde0e", "term": "脊椎动物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-35d719a026a2f279", "term": "上星", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fc826c70bb8f31dd", "term": "大钟", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-10f469362e5168e7", "term": "结肠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-400b832eca5e0533", "term": "听诊器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-475a2090973c56bd", "term": "医学检验", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b6276477ac26a797", "term": "口臭", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cac5c6b2d53b8ffb", "term": "急性淋巴细胞白血病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b7d40868d2ea639b", "term": "干咳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-20a42177dcc4e5f4", "term": "内分泌失调", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-17a81f214a1c7218", "term": "反渗透", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7e16f36a1c359519", "term": "物理化学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cd01031e508a1301", "term": "药酒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-39a74eaa762e0472", "term": "静脉曲张", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-abd13399afde7ffd", "term": "沃森", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-29c3768c381fb22c", "term": "命门", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cc3c8d793586edab", "term": "疱疹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-349df98b147d3c7c", "term": "体外循环", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e96cc03f077235d4", "term": "应激", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5df780a4c00323d1", "term": "地方病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4e63ec1b233a140c", "term": "斑块", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ab82254072c2a46f", "term": "保胎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c33f4152c8e69e70", "term": "血吸虫病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dd87a1e0c6c1bd30", "term": "雪莲", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3b27d0ff34ef2fda", "term": "淋巴结", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d5aada3b85c33bd9", "term": "肾炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d1bea8981a3a5f92", "term": "肺水肿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-66ff6670e8b86be2", "term": "质控", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-03b757ba61f3d0e3", "term": "医疗垃圾", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ccd647c358733a97", "term": "热敷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e0c16040b60b3750", "term": "椎体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5f66505b25c8b6a6", "term": "酸碱度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4abbd22963fe698d", "term": "穿山甲", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c90d2c6c46c632ba", "term": "栓塞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9a4d926b345a454a", "term": "诊断试剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-41dcaa0ce42f1d3f", "term": "破伤风", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0e1575cdaf7502a6", "term": "乳酸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-73f29bdb3285f283", "term": "李时珍", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bf7d9a7a9a7d1eca", "term": "鹿角", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7e59d14cc448ac49", "term": "腹股沟", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a76545fd9abd32e3", "term": "扇形", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e244baada6925927", "term": "肠炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2f1a0964ea4b2275", "term": "水禽", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ab2789a6c518fe28", "term": "牙痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a8e8b67480498fb7", "term": "扁豆", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c0fe4b8e70b0fc63", "term": "抗原", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e542a360bfaa7e42", "term": "保护膜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c2c322fc24588f61", "term": "腋窝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-95d564b603d2f6fe", "term": "麻醉药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-13a320e1155b339a", "term": "椎骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-89f418c095464c60", "term": "单发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-afc32b9292011608", "term": "膨大", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-029fd30cea3108ee", "term": "中耳炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-90c2e94b10924c20", "term": "性激素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-885293185efee61a", "term": "高度近视", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d616c8bcd232bcf6", "term": "白果", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0fc2bf0eddb73cad", "term": "牡蛎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-04c6f6135118b0ae", "term": "肺泡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e5a9404dd57952e6", "term": "补液", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-572bc316f3f5fdd5", "term": "肾脏病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f474440f911afbd7", "term": "造影", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-88cc338d1ab819a8", "term": "肠出血性大肠杆菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-353eda9c67e0cd52", "term": "外翻", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cc07a7e0dd5b2728", "term": "牙根", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d07a72cc214a5fb8", "term": "鼻尖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6e50914b75ce6ddc", "term": "原种", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3461931b58f7535c", "term": "自由组合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0d54d9888ea0b2bc", "term": "药盒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9591e8d9647d1fcf", "term": "热水袋", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-71f1ae44c380a416", "term": "样本量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f8c7337c622466fe", "term": "水痘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2d8788d53235cca9", "term": "活血化瘀", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8c27d6b216659a0b", "term": "麻醉剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-278b3ccc7566c3a6", "term": "人文地理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d5ad4cebdf9907cb", "term": "心肺复苏术", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-de02ee06f896cba6", "term": "蜈蚣", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-073c5ab1dc261f49", "term": "接触面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-004d28b1e009dcd8", "term": "海星", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-814c0f9ad7d2570d", "term": "生命质量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8666177dbad2b7f7", "term": "鼠药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5fbe3f204d77250f", "term": "腰腿痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-58121af6f9052df1", "term": "放射治疗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3868cc1eda7e1f27", "term": "早泄", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5f850ebd654461eb", "term": "病从口入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e8bdd1e94185c5bf", "term": "胸围", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-74f8cb795dc1806f", "term": "内出血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a3f25a24840cc0df", "term": "医案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7e7a7da13e743af9", "term": "痤疮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2203fc364bbeecf3", "term": "腰椎骨折", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-150eec95fdbdc6fc", "term": "精神萎靡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6a7fbe5a25f3d3f9", "term": "频谱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f32bda157ee57f00", "term": "极化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-59a334a57edaa2c8", "term": "速效救心丸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-38ef88be5739e306", "term": "合家欢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1e851a4f2c1a224e", "term": "现场研究", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1b7133a0c1eb149e", "term": "自我保健", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-41911c445422a444", "term": "再分", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b7b687d673e9e560", "term": "当阳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3e9a043667a801d7", "term": "麦芽", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f7a39ca66451000e", "term": "泌尿科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a9a7d7842bfc9ebe", "term": "装死", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8483c56cdb762c34", "term": "受精", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f15b4e28516d7ac6", "term": "声带", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-09d8bf7b8d60360a", "term": "生长激素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e6ea4c93bf70e9ff", "term": "帕金森病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4dfa917f0019e8bd", "term": "长生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3b85442db1ca90a1", "term": "心电监护", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-96a95a2ac239b121", "term": "扁桃体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7d7a75b9f871db85", "term": "体温计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f91625bf27012486", "term": "胎记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a1b2449f0d125694", "term": "免疫细胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3705c08f7fe5059d", "term": "凝胶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-84bdae10e780088e", "term": "周一岳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2c7b4e731e5e338a", "term": "慢性胃炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c8194f61b2c8b866", "term": "口服液", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8d568b1da9b83699", "term": "外展", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2bbd5b37a2413dc1", "term": "口腔疾病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-14c1eb255acc107c", "term": "节律", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-880ff984f18d9150", "term": "感染源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1853718819a8064f", "term": "流行性腮腺炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0040e7245e30fa9f", "term": "口腔医学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-db85422efd5abb0d", "term": "精神病学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b1279bc6d40cf833", "term": "过敏性休克", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d0cce7a77b853c50", "term": "麻风病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9a71e9b6ef6b506e", "term": "急性中毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5bd568f173a83c7d", "term": "免疫接种", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-397da31a4c06fd5c", "term": "退热", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-901d3f8b3efd0f9a", "term": "预防医学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a277cf93947edb75", "term": "假体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-48a362368199be05", "term": "显微", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f3f25878f9bb5b1d", "term": "祛风", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-910c593b4c46926b", "term": "胸骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3cc114b23cde6734", "term": "阉割", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7e76e7e3f0e653aa", "term": "抑菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2d590623a013f815", "term": "望闻问切", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d35480d7d7afc67e", "term": "阈值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3c73441e56405ea2", "term": "安睡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-55a4f12a4d384fe1", "term": "预防接种异常反应", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3b811f51172292f4", "term": "踝关节", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ff3ded2cc3c2adc0", "term": "数据整理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8e797ab50a2f0925", "term": "胰腺炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d95c0fd96e742126", "term": "艾叶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3539d5b86d60c201", "term": "风湿性关节炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5085c0b75cc8ed81", "term": "连翘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-600b3da572573f2b", "term": "半衰期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5f1d4bd0d79fe7a5", "term": "雄黄", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4e2e32dfa2ac139c", "term": "产前诊断", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0241504030fb2b3c", "term": "自卑感", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ab1cc23056f0cd50", "term": "骨质疏松症", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-41ee9c64fd22e6b5", "term": "交叉点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e60625e070d725c0", "term": "遗传性疾病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-deaa17ae47be257c", "term": "打鼾", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d6ecdeaf192f2406", "term": "低血压", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b0d6ab0263445eed", "term": "盗汗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-93ea892c2a55955b", "term": "苯甲酸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-110a79e1d8caa6da", "term": "天麻", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7ac05483fb7c9b23", "term": "亲缘关系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c4d1829df3789d08", "term": "内分泌系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f99fa35fb881102f", "term": "脱毛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0017a3d218944a48", "term": "安眠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e90aa1bf35714458", "term": "淋病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-61f195ab215e0f57", "term": "神威", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-269014e9c21d786e", "term": "毒液", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e7a81ebf490c3674", "term": "麻疹疫苗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a70d463eee2dae4b", "term": "基质", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8369e7e619b91e18", "term": "疝气", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c8f2dfe91ee06634", "term": "阳虚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c92825e67f099bce", "term": "活检", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-039aa3fae9765241", "term": "碳酸钙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-db193fd5933f2a6c", "term": "罂粟壳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9fa8cc8d8baae53d", "term": "喷雾剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b631fe6da844d328", "term": "手杖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d142a8452bf09331", "term": "瘢痕", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6ba133941d4ce265", "term": "西洋参", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-be9f87dbb23366f9", "term": "鹿茸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f090a22027ed2f8b", "term": "枸杞子", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-04403e92182be15c", "term": "毕业设计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ac5ca1d6df435828", "term": "麦冬", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-88137d5b3fc86fa3", "term": "脱出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-72d240a8057cd57a", "term": "撕裂伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-20768c14d06b2966", "term": "丙类传染病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-975a484d9604d841", "term": "藏药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d70ed38b09e50f67", "term": "死胎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7c14ed5d443fc6ab", "term": "哨点医院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-62efc3f769f5f72e", "term": "磁石", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6a0396ff160b9213", "term": "脑梗死", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ce4c7218e037ff6f", "term": "桑叶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-95c1512a06cd90bd", "term": "偏头痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b2874c951208ea59", "term": "协同作用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c045d31c16d9ce4f", "term": "咽喉炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c762a3b14553ec70", "term": "放血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d7582290390333af", "term": "茴香", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c407c483f4fc28e3", "term": "体虚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-35eaab3d5e31a41b", "term": "免疫球蛋白", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6117c7a255d2114a", "term": "钙化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-72749b82ad5e0c28", "term": "急性期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6fcab611eab2b805", "term": "胫骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0b9824bfde4b50f9", "term": "顶盖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c3d40decf0bd6fb6", "term": "果糖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4d28a7caa0da991d", "term": "低热", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0a9c97694038217c", "term": "檀香", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-98b34d6ccb0ccbba", "term": "硫酸盐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1d50e93cd11d7ab8", "term": "牙槽骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a7af5c82c77cc5ea", "term": "灌肠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7c72636d4ce8999e", "term": "总氮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-996bbd1e69e4f758", "term": "蔷薇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-26eb93fe0d184598", "term": "转氨酶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ea273b8500182a37", "term": "多器官功能衰竭", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-62d4d1fc53336fe4", "term": "气胸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-33c51b549bd33093", "term": "口腔卫生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d120e14f62ed0534", "term": "酒窝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f9c9f3ec4aff41df", "term": "丹参", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d00bd7c7df9d144a", "term": "耳鼻咽喉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-42648c373a9b2682", "term": "黄连", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5112ef0567c13b9c", "term": "病毒病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d8a69ad6aeff438c", "term": "过冷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-86d346c779a53c71", "term": "会阴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f991b7b00d900166", "term": "泻药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9dc97a35a66a284a", "term": "食管癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-669899a1c455cfc0", "term": "柠檬酸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2a3f796a6756a4e7", "term": "水疱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3fff209575c5c5ce", "term": "沙丁鱼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b9c965c6e73669c3", "term": "被动吸烟", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-084a5bb9b1c31804", "term": "华佗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5455979cfc7e88d6", "term": "菌株", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0bfada45ac64d5ad", "term": "发情", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-27228901e300283c", "term": "多糖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7e584ea41edaeef8", "term": "佩兰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c8f3014ce72c1cb0", "term": "头盖骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4288b02c723308cd", "term": "外阴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-46ce54968b56d4a6", "term": "脑积水", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e6c746ecee491587", "term": "抗菌素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-81803c5330658668", "term": "白喉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6c4a6334928b890a", "term": "血管瘤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e665d12e6030b643", "term": "动物学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f06243cdb92f3bd6", "term": "牙周病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4b9483f648ac0361", "term": "前列腺增生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-30c0d8391661456d", "term": "毛囊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b83ebed199cd6841", "term": "感染性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3fc0c7b42f614836", "term": "粒细胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-97382f25ff637dbe", "term": "蠕虫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-caec629a0ea01521", "term": "女贞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a9738afe0d2dc5bf", "term": "汗腺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-61cb93f48dad7b28", "term": "瓣膜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-03ba8445817e095c", "term": "神经系统疾病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dedabc43f872581a", "term": "腹水", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-09661fa07df87d23", "term": "肝细胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-91c62e7809c89ae7", "term": "虚汗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b3fcf5f6069c743d", "term": "人口学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-62d4fd17751b1f06", "term": "神道", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-82aa6acccacf40dd", "term": "笑靥", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8162b815f0072051", "term": "脐带血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fd64b60639cb4725", "term": "油彩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d79753365f454c1e", "term": "脱敏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-39b9fa76d22a9921", "term": "中间体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-23fe57f44f54871b", "term": "脑水肿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7ffb93529a5500a6", "term": "苔藓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-23f14a0ed198f2db", "term": "硼砂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5c9ba5efce97e27d", "term": "静脉输液", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-48ce41ad2dc8b9a9", "term": "尖头", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c5fa4f24494cca83", "term": "雀斑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-28708d38ac50f529", "term": "鼻翼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-264ebc7f1cdf830e", "term": "心电", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dcc9095dbb4f98dc", "term": "白带", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-88f8eca1e1cfeea0", "term": "衍生物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-084333c3b61fe008", "term": "步态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0595e6f82087fa63", "term": "疾病控制中心", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-882bc9cf21f81982", "term": "视神经", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ca2004bdf5cf53ed", "term": "石蜡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-88f3e8c6869e1ce6", "term": "脱位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ef7d2f05fb3c51d7", "term": "脾胃虚寒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a24e8c0ada1b49cf", "term": "十二指肠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0993b4ad617cb39b", "term": "危害因素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-415fbe38e29ceefa", "term": "靶点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d644bca1c0b5cb2e", "term": "位点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-39f9f5087df14940", "term": "松脱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-81c13fc695eb9143", "term": "甲类传染病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ce8062e3388438e7", "term": "溶化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6cf1f5348c88c4f0", "term": "纤维化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-af6e908684665905", "term": "葛根", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b175e5ab0244c258", "term": "骨龄", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f26de0c96aa3f78d", "term": "虚寒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-880824227264f882", "term": "红眼病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-04489f8c8c424505", "term": "光点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c65cf507f0004070", "term": "护理学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2ca66f98a20d4d5e", "term": "健康评估", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c35e61c5780ecdf7", "term": "应激反应", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e30154f67024b0f9", "term": "胸椎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f16000150733d359", "term": "自发行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-77223036184796ba", "term": "脑萎缩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9631d37e3023dc3e", "term": "高脂血症", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bb526a3f11d34dfe", "term": "病状", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-52b93562c642deb7", "term": "拔火罐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a6a8b4b54832f6ca", "term": "腰肌劳损", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-22df6525cafc7cae", "term": "免疫学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8253e378155fa513", "term": "心脏移植", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1f6883074b3e165a", "term": "血小板减少", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e8df13d597888217", "term": "不育症", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8823888daa7194f5", "term": "肝火", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-86089187d177a9ae", "term": "全身乏力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-62ae823eb3fc0deb", "term": "前庭", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-57a4bb12bf01d4cc", "term": "美沙酮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1993ac651e8fd178", "term": "发情期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-efcc5e91d638a072", "term": "空心胶囊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1ad7becf1a8f7dfc", "term": "射精", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dafea662b69125b8", "term": "母婴护理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-435f5897b3588978", "term": "蛋白粉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3da6f23e89875e03", "term": "智力低下", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2deedf51fe98bc7c", "term": "软胶囊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9bffcfd8cfe0f9a2", "term": "伊蚊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f17eb7d87cd3d2bc", "term": "脾胃虚弱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3b11d50e6df3df22", "term": "交感神经", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6c775ae63bb5fbdc", "term": "关节点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-58587ae69fa90fb7", "term": "风疹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5ce5966db52459f5", "term": "乳腺增生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-810b7d8dcbd6680b", "term": "继发性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-727a3a5a791beae5", "term": "阻遏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1cdbd7b396e47cba", "term": "疯牛病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7ee2769651279d85", "term": "血细胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-63b2a12c9ed3bde9", "term": "绞痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f85a0aba2332a6ba", "term": "尿路感染", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1426de986c623cb7", "term": "慢性非传染性疾病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a65ffa1c5ed72dea", "term": "吞咽困难", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-52e6238e38784e3e", "term": "小卫星", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-71d479e589bcfd34", "term": "计划免疫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1fd09c6c70a2e377", "term": "基因变异", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1d9539d2b8db9926", "term": "肩胛骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-67fbbfa8bd524df2", "term": "触手", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-11b21557f32bef6c", "term": "阴囊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-88891c86b6f55b33", "term": "杆菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f0978dc82d8f6702", "term": "毒理学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-44b7f00b2ccb8804", "term": "麝香", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2122a92bcd15757d", "term": "银翘片", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-088202bab971cac2", "term": "漂白粉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-facfc09f42c6ab78", "term": "急性胃肠炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d28bc2dc898fdefb", "term": "阴道炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-eb3b0b785aec0d75", "term": "乙肝表面抗原", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4c482845967eb6dd", "term": "克伦特罗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-00088d3d22bb4561", "term": "喉癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2679bd17893c2450", "term": "眼窝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-940efe10da92c217", "term": "静脉血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8c64f59dd63f4d08", "term": "遗传疾病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ba23df2303b36b80", "term": "耳垂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-daffd4a2fee4595a", "term": "胰岛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6f26a83f5ba471c3", "term": "过敏性疾病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-449e44ad9f13dd3b", "term": "乳牙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-42ce064cb0ec4cd6", "term": "王冰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e14f92d545fc1c0f", "term": "乌鸡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-386c838249b65054", "term": "生地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7b179158ab718260", "term": "舌苔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2ab77f9cc90a316b", "term": "黄芩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4f53d9871741873c", "term": "中间层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-330daecafa9a3013", "term": "上段", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bf2320882a512dfc", "term": "锁骨骨折", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fb8a8f86b70dd831", "term": "寄生虫病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4fd98655ea1c94cf", "term": "防伪标志", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-94d754508a207062", "term": "鱼油", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-20c8e0b7df16f4e9", "term": "心律", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-807dc4b9a0b3aac3", "term": "心律不齐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b544184260519b33", "term": "聚氯乙烯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8e0a04af0ace7966", "term": "肾癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-eb06ca43112754ca", "term": "侏儒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8effcd81417bce00", "term": "化学试剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e2a766d46f75de69", "term": "浊度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-247bedef7e5dbcc1", "term": "蜂胶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-111c0b80deb898ca", "term": "打哈欠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5544bbbb948a0f62", "term": "筛检", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a4dad84f3fb2d445", "term": "色盲", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-29e74bbdd7d2710c", "term": "体重减轻", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b759c737cae92a5e", "term": "硝酸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-568743c84e38acb4", "term": "输尿管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0848fce8adae6dc8", "term": "螨虫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2acce4e670449185", "term": "解剖学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ef339ab863417825", "term": "走行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4f0fdc3f033114bd", "term": "耐受性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-db598fb912ccef8d", "term": "贴面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-66f0fbb96b596cdb", "term": "氯霉素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-37b820e50875f6c4", "term": "胶囊剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-08c755f266cf2415", "term": "痱子", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a524eec5f9936dcc", "term": "解热", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dcdd4ad966d60e49", "term": "全身麻醉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-40f34833bc02d080", "term": "瓷牙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8cbc3317fa1f5526", "term": "螺钉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8323fc3b7401e98a", "term": "抓痕", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3c7b5ecfaa68263d", "term": "果胶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-165ef1ff9181781e", "term": "背板", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6f7386cf72e2b7ed", "term": "腹壁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d930108bf0f411dc", "term": "驱虫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-be0f6db84c7dbb1d", "term": "乳糖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ee3212b13e1332f6", "term": "感冒咳嗽", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-26bb48fce218eb5f", "term": "气孔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-94a410de795cbb5d", "term": "消化道出血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c1ef08a05bea70b3", "term": "血流量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ac04086d83bf5192", "term": "许强", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c9798959d9cb7e81", "term": "尿失禁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6067dac51a11d8b2", "term": "鼻咽", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b505d4b181bc1882", "term": "自身免疫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-06af8b3432efbd44", "term": "酒友", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5e0fffdf4f80c03a", "term": "上皮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-327437b3b4c42633", "term": "亚种", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1347e1f27fce448b", "term": "小脑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4d8eeb29922fdb43", "term": "药物过敏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8b6fde8aeb2bc9d2", "term": "桔梗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-67e1523dffe20af4", "term": "冷敷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-90b41d17ca615fac", "term": "肺叶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-24090f3d3624483e", "term": "银杏叶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-95c49f20f894ce6f", "term": "生物制剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c3e0d27616eb44fd", "term": "舒张", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9752e208dcc61aac", "term": "骨痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ce693a6bfce406d1", "term": "自然选择", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-014585949452a674", "term": "菌落", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ba9232a8ca7f9f36", "term": "黑色素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8e1eac8d32dc9c28", "term": "牙龈出血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-41e542f16315a85f", "term": "脾虚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d69ffbbaf0bd8d05", "term": "多指", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0cf44f27533dfd42", "term": "白术", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c963e1f234aadf22", "term": "对照组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2da5e77c5dc8c8f7", "term": "艾草", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8b3e576146b8ab8a", "term": "红斑狼疮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-289bd629bd018b9d", "term": "胡桃", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ceb3259e5f246df6", "term": "早孕", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-26454e2b58b920d8", "term": "包皮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c12ec699cb23c36b", "term": "地理学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-064ccb6e90b3619e", "term": "精神错乱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7f01f27c8b8701ac", "term": "肠胃病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e9c3049713c7d7b5", "term": "黄柏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-071aab6a34910091", "term": "黄飞鸿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-22bca9a48362c053", "term": "强化免疫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-72b5d553381def05", "term": "社会心理学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-997f1ca59e748ff7", "term": "三阳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-349b81ff0a21098a", "term": "疫苗注射", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-aeeb8a16b637b37c", "term": "闭锁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-569be328b6b87cd3", "term": "肾功能不全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6f2a069d65aba700", "term": "胃镜检查", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4d5bb3f3760de030", "term": "结节", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-10b394aaf02ef628", "term": "病理学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6d34d3631bf8f870", "term": "惊厥", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-117badbe786aae2a", "term": "阿莫西林", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1d6358c468d1b602", "term": "刀柄", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-951f0417e362437a", "term": "牙齿松动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8f66a10e8979fafa", "term": "月经周期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e90711d658c0aaf9", "term": "远视", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cf05da5d476d130e", "term": "丘疹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bc8c463345f7878d", "term": "大英雄", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2101cb5d6c93aca0", "term": "甘油三酯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0f1d5ed4d621175b", "term": "螺旋藻", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5c0cfb6cab5b6d45", "term": "盐度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9e7765a53e31ddc7", "term": "接种率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e2598cc15b0ad46e", "term": "胃胀", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-93fc8f8cbd406da1", "term": "郁结", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d10f751c618dd780", "term": "小海", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-543fe8c2b2e16877", "term": "祛痘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-180379d6abc6022b", "term": "方剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-201b75aea69d92f3", "term": "成瘾性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8f49106de5bd6ec5", "term": "相互交叉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4378bb2a59118b0d", "term": "运动强度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f1a9b662e97c665f", "term": "淮山", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c96a65580dfae0ca", "term": "致病微生物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b6c4231569d87f0e", "term": "莲蓬", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cacad1a7b6905f75", "term": "藏医", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3400a733806e5397", "term": "麻黄", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-76e69d5072c71ca4", "term": "氯化钠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a43ae62d01939a74", "term": "苯酚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-59db05a0f310632b", "term": "西布曲明", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4c8acd2f44d4be96", "term": "放射性同位素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ffee7381149adb9d", "term": "代谢紊乱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2beac25f5bf8db4f", "term": "创伤后应激障碍", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-86b0e03e30118c91", "term": "学校卫生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ded24785360def56", "term": "单眼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-875b8898646a74df", "term": "广谱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fd79bf065badd172", "term": "蒸馏水", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9e2ce9b322bbe9cc", "term": "息肉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d6604ca45dde71e0", "term": "牙周炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ffbe7d0a1ebcc261", "term": "角膜移植", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a7494ba21e730945", "term": "通透性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fdc406d3b78d9545", "term": "淋巴细胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a137f2e98483b3e5", "term": "基板", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a3296feb820ded68", "term": "心肌缺血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2990c87f477e1b68", "term": "梗塞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a278d6bc514b5da4", "term": "内衬", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-44b0e927e1e1944b", "term": "性腺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-290a526e4bd9e901", "term": "熟地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9553c06619d38333", "term": "黄金搭档", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-364d0f2f08a6d5b2", "term": "耳廓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8641eec99ff0ba12", "term": "鼻骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-48b9bee510a9a4e3", "term": "十滴水", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-28bb4ca3ebf8f7ea", "term": "小儿外科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0d1c4b2a6efdac3c", "term": "水平面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1b7b260014301c5e", "term": "适者生存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f923d89de796f9ed", "term": "免疫反应", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-62b66589cf6e705c", "term": "蟾蜍", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8b7ea941d49f4bac", "term": "虹膜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b0683c3a4a5bc3f7", "term": "闭经", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-03bae215208c01a4", "term": "冷藏车", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5a749c5aaab5f6de", "term": "安慰剂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a88b0af5acd8d6f7", "term": "心理评估", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-47ab4b6487d7b0e7", "term": "硬膜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ec5f3034c20df5a7", "term": "核子", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c275d5803b140efb", "term": "黄斑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9027a9f83c625e2e", "term": "全科医学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e95d98914136727a", "term": "卒中", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b1495f3624ef5ceb", "term": "遗传物质", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c64ff0e00efcd787", "term": "神经损伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-08a7548077605ef1", "term": "临床死亡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7b663a2fd61bbde1", "term": "均匀分布", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e428138fa2d26b3b", "term": "血液传播", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bb5f353d9d589793", "term": "髋部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-62faf249b0a9b2b8", "term": "临床检验", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f95e4e7f6e72d3ed", "term": "人际沟通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-be071b6efdb6fca1", "term": "尿量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-15496b1b7968326e", "term": "神经氨酸酶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1169746419534acc", "term": "血气胸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a6e215d9830649c3", "term": "二代病例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d965b5a6c98a0d25", "term": "白蛋白", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9e6fe9d918655036", "term": "出血点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-df20f11f0db1566b", "term": "色素沉着", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e182fa4ddf0ed6f4", "term": "应用心理学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-546aedcde29d998e", "term": "脓肿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7d837e9b9a4681fa", "term": "前瞻性研究", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-47b4d0eca8a0a384", "term": "眼压", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d5b37d361eb2a6fe", "term": "卵巢囊肿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-627e3df3827f50b8", "term": "夜尿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6ac95d9bae9d8e67", "term": "肉桂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b3248c431a8fc935", "term": "心室", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-84be7d0d2411c484", "term": "鱼肝油", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3c5b7ff38d3b5bf6", "term": "剪接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b62d6fd16f3dd2b4", "term": "肠道病毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-359938653824b686", "term": "杜仲", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-cfb710c21bf7d082", "term": "肛肠科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-64a7830fdc65213d", "term": "阑尾", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1f0c80a9e9680ce9", "term": "再循环", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-42814b5dfd2f72e3", "term": "急性胰腺炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c776c05464c3178a", "term": "孙思邈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d05c314ce2f0b887", "term": "视网膜病变", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c59fb5b9edee3b41", "term": "听诊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e9758bdd96889332", "term": "急性阑尾炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1d9b3775c270b8e3", "term": "情绪反应", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-12d022b133919f32", "term": "王台", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ffab344842a489aa", "term": "疾病监测", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bf467ac18ec02d72", "term": "佛手", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f91f3320f7bd4fde", "term": "子宫内膜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-19047b591311f9ad", "term": "松香", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3a6c186143f08439", "term": "平衡膳食", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-557c2ff0af40865c", "term": "发色", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-af04ba6d9b28d835", "term": "紧密连接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-144aac722023672d", "term": "食肉动物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b22e9133640ad56d", "term": "十二指肠溃疡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4e0a16a4e099c02b", "term": "发汗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9f96d22b56bdd8ec", "term": "毒蛇咬伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a1199425af1e05a3", "term": "多巴胺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-88b6dff41c5d5245", "term": "水解蛋白", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f268ce6d7ba541d4", "term": "出血热", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-075c196748785537", "term": "乌梅", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-409c1036805c29e9", "term": "病媒生物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6e45b64e810583af", "term": "李斯特", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7957eda6f592f144", "term": "代谢性疾病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ad72d3501d627625", "term": "雄性激素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2ead31b4d5b9e7b9", "term": "七匹狼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b384f08dd10fb138", "term": "雪线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-373e53ee2b408e86", "term": "鼻骨骨折", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e2c07850dfdc6cbd", "term": "扁桃体炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1ea5bfa680b63684", "term": "指缝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2c08e36a4e615b41", "term": "红唇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6f0f5b1174a14170", "term": "发育不全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b3580fa937532a97", "term": "肝衰竭", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4ee4e2a6fdb7e6d5", "term": "肉瘤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4b8f09e306182aeb", "term": "地理分布", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8509fd139129b683", "term": "腰膝酸软", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ffb22ab1e23fd0ff", "term": "实验室检查", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e3b4d3e1959b69dc", "term": "意识丧失", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bd5af13212a78b67", "term": "瘀血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-22b77792a1a8db7c", "term": "肺挫伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-05a7628fb678b81f", "term": "孕激素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2356a0d5fcb51113", "term": "探针", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-500400970a755412", "term": "激光手术", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-86b8c200f1750fce", "term": "白癜风", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7ab0b19cafa68d7a", "term": "基础医学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3a915b1cc9f2083b", "term": "药物滥用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-94dd20e42018a0b2", "term": "救护站", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-76d34ad0fd2f3b2c", "term": "末梢神经", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-eb18e5f44217ead5", "term": "结膜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-13bdb53b938328ca", "term": "遗精", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-474de247f7161f56", "term": "多普勒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-64ed6088eefa1395", "term": "槐花", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-114fdf71d2d972d2", "term": "汗毛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7e0f1309f730a8f1", "term": "矫形", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-38c2143af7bc2dad", "term": "过渡带", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1c9b632c72d01076", "term": "异型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f0b23ccba6fb9b17", "term": "意识障碍", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c82af094c282baa3", "term": "甲骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2a078a4aed15ffdc", "term": "组织培养", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0b32f566e7563dd1", "term": "电离辐射", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bb92256458528ee4", "term": "脑电图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f2b51a97e9ada829", "term": "真菌感染", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-46ba0ab5ba3cba08", "term": "类风湿关节炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9034cdd9534757db", "term": "执业助理医师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b75342b0c326978b", "term": "再生能力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8d7657fa38b48014", "term": "加碘盐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fd18de1fc960d497", "term": "嘌呤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e7f74130a9cf042b", "term": "胆管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6f588d2de49488cd", "term": "正畸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9ea835080560c984", "term": "湍流", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9a6e668e34531d9b", "term": "补中益气", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e7dac7db2872ce91", "term": "坐骨神经痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9cccee9c73ba2234", "term": "生命活动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-09d8d79710cd926f", "term": "异质", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-df322c5fcb98d63a", "term": "溶血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bec89caeefd5ce87", "term": "煤尘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-10812bee94e0a5ac", "term": "干扰素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4dd165f603a7ba20", "term": "氢氧化钠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-caa4e90518c368b0", "term": "滑石粉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-801e87a73f78949e", "term": "组织细胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4095d71e235bb8ca", "term": "骨外科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b367bcb806ecbdbe", "term": "疫点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-defaf928da63d648", "term": "粘附", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bcb2bb6ee32a06e6", "term": "蛇咬伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-10444f3057357866", "term": "铸件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b523bf8036bb5bb5", "term": "分蘖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7e47944cd13909a0", "term": "皮层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c274c260deeb4cbe", "term": "白芷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-af3aacfe485958a7", "term": "白纹伊蚊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a89c3d5f818a09f7", "term": "接触传播", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3013a6d2c41da104", "term": "青稞酒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-15a6b660b1269b58", "term": "前体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9a8f8a1d1f50e409", "term": "甘薯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ecd8c6fbd95d93f1", "term": "肿瘤学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-954839b13e41abe5", "term": "滑脱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2d4680c08c4dc770", "term": "热价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-60dc6dc722d7af01", "term": "银屑病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1d064f2e497a07a6", "term": "生活力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-662912bb9efe46f0", "term": "皮下组织", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b6993b750fa09d7a", "term": "共培养", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c566cc095849e718", "term": "肺栓塞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b6edfab991f83a45", "term": "开放性骨折", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e9a75581015224c1", "term": "搏动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1b8669cf9ef8d2f5", "term": "碘缺乏病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d89852f06790715c", "term": "川芎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-14d0520a21b042e1", "term": "有机化学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-33580584acf89c57", "term": "缺铁性贫血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6e44a929e629f2c1", "term": "肝损伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2284920328cd5f40", "term": "苯丙酮尿症", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9532df93c116bf1f", "term": "尿痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-88491379fbdb951d", "term": "氟化物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-37f8c2262e55470d", "term": "润肠通便", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dbc2dafcb336838f", "term": "系统性红斑狼疮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ccc2de84bfb2b829", "term": "荣枯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7b08c3fa298b6034", "term": "排尿困难", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-570c672885cac4e4", "term": "吸收剂量率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8aa499353f00afd6", "term": "良性肿瘤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6ac85987cddb4cbb", "term": "鉴真", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1d3ce6a046dc75bd", "term": "刘沅", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8510615fa92b1c91", "term": "何首乌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3301affef1aeb2a1", "term": "成熟阶段", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5cc272fc10435ea2", "term": "双性恋", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-724c888a25c89771", "term": "防护口罩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e18b1e97dcf8e5f6", "term": "兴奋性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-783d4ad2fdad94be", "term": "局部麻醉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-83293cd2fb573b9c", "term": "康复医学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4277e3fec978f1af", "term": "畸变", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8dd05f7e553f7637", "term": "腮腺炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5f41ac181f83b878", "term": "咳喘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-118c4d767308c48e", "term": "唇裂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7276cf93ae4e9941", "term": "内径", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b4e9a531cce25174", "term": "毒力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-34f9a64dcc1a9df7", "term": "濒死", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2ef647925f0e0872", "term": "运动区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-95e534a3d597a167", "term": "氧饱和度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4957754aa8dd717c", "term": "肿物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-12247f66b86c5baf", "term": "药理学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bc050b2be80efdcc", "term": "骨关节炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d6d6097de23db1a2", "term": "发际", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c5a1b55358398e62", "term": "淋巴结肿大", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fe097bd20fefb838", "term": "医学隔离", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-873fca08abd13afb", "term": "弯折", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-258157bde4bcdc02", "term": "拔管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d940198d4c5f1a77", "term": "参茸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5ba12d922278d6b8", "term": "类固醇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-903b3262f20dcb38", "term": "老死", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-391e8cbb3a5fe194", "term": "青蒿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f0fd9852a6bfbf8f", "term": "颌骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-240f5fdd28129426", "term": "乙型肝炎疫苗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b223db002cc99bb7", "term": "茎叶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8cd6fea47a1d5f7e", "term": "角膜炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-728193b614ef4614", "term": "上唇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-56052f457dfe8935", "term": "染色体异常", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-19723ce7e126957c", "term": "尿血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3ff91f205c6b1a0f", "term": "干尸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e6b577878ce76a33", "term": "角质层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-330fed666b6dada6", "term": "软膏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-429a76426c21bc7e", "term": "副产物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7a7197128a66ec90", "term": "吴孟超", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ceb074fa8075922f", "term": "病毒学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7732a0497629e629", "term": "药物不良反应", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-849df8f94b3b39fe", "term": "营养支持", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f0b7e060a51b57ee", "term": "心包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-13399e9afcd62586", "term": "热带鱼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8f265b0435d21ca4", "term": "神农氏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4d4d158b87fcffc3", "term": "依从性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-328dcb588f585a5d", "term": "初潮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f26a14901a382323", "term": "多肽", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-225e212ef47b0271", "term": "风湿性心脏病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8699d01c9f0bbe9d", "term": "布洛芬", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ac53c0bade7b9d88", "term": "拉丁语", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-437fb3a89c0472d5", "term": "肌肉注射", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-10c114a4e1e1fa7b", "term": "冷冻保存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7282f10932361b12", "term": "止点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5c15976c56a956df", "term": "血色素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-55da4198b7340a82", "term": "风蚀", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d582218ef7810d11", "term": "电解质紊乱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bd0c365227fb852e", "term": "牙冠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5f6fbb155c1e90e3", "term": "脊柱炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6f9fbea97d69f01e", "term": "风寒感冒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0dcc13064d321ff2", "term": "吴谦", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7685b896c1a7948a", "term": "热带农业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-32c1defb7a737ae6", "term": "过氧化氢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e9044690b03105e3", "term": "培养基", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ac984bce06dbe26d", "term": "慢性肝炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8f3d819b861d6798", "term": "百日咳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-97a7dc5ecd5ebd4e", "term": "热射病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fece114ecd01333f", "term": "肾衰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-30622a52916ed0ac", "term": "乳清蛋白粉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-36ee6f842183f8f2", "term": "张仲景", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-60e052b48ab8dad6", "term": "芡实", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5a2f22daaf8d9d39", "term": "思想道德修养", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-165a2a60eca31acb", "term": "脑疝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-350f5730033cedad", "term": "重大传染病疫情", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4eb2d3f2acf60107", "term": "上皮细胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f6b5df31561a37bd", "term": "下颌骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6e3d5b913f24031c", "term": "教育部重点实验室", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5ab05186ecd563f7", "term": "横断面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8fc7f2d9a48cdcbd", "term": "链球菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c29b6afd5257d2a2", "term": "细丝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-56c512a4aa972cbf", "term": "麦芽糖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f435d5eb2276d66d", "term": "骨性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a810c0ae2c3d3a2f", "term": "柴胡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7ed6cc9a33be0002", "term": "癌前病变", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ecd545e84478d4de", "term": "碘缺乏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2c66927a40766890", "term": "脑干出血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fec882dd75d82320", "term": "感染性休克", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8636cc16b688d557", "term": "胸腔积液", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d2d946785c0ba79c", "term": "药品标准", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-710ef11f65f8873c", "term": "安胎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8fea004afc4b9809", "term": "肺动脉高压", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b39e70b84da13fe2", "term": "骨盆骨折", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6b3e4f402ca71f0d", "term": "决明子", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-eeed14fad8af23d2", "term": "神经网络", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-964a1b1454631bfe", "term": "灼痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-83247251a64dc377", "term": "胸肌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bda2a385ef6f34a7", "term": "皮肤感染", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7862cb5a8ba8a1e0", "term": "临床护理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e9c76d4a4585b25f", "term": "人工晶体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-06879790a981f984", "term": "偏航", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ae315115f603981f", "term": "卵磷脂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-dd5733b7f93bc635", "term": "复合体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-aaf641c130d125d1", "term": "狂犬病毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c8ed7df3372c645f", "term": "循证医学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c4c502597a3057fc", "term": "肺动脉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ae20b2a4a4880b66", "term": "试剂盒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-83904edad2a249c1", "term": "封口机", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-22121ef347983443", "term": "带状疱疹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8db4821e80d84e06", "term": "煎药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-308ff8035bc52037", "term": "肾上腺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7ddb549f97c80cef", "term": "酸败", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-73d15c24f106bbe5", "term": "颈椎骨折", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a9ed68a9037dd179", "term": "麻风", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a6661268be39d26c", "term": "减脂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6c54977f0fc5a4f1", "term": "厚朴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-551cfe8430244509", "term": "曲美", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d879cd09a6922f85", "term": "乙醚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c2a4b02f7c20439d", "term": "五味子", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7cb255143be9dffa", "term": "心肌病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ccd3459ed0a3137f", "term": "黄皮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c3885f6022cd6863", "term": "失禁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-7d4337957301ba19", "term": "放射性活度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-aa72dc6026b73282", "term": "炎症反应", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-feab3edabe92f220", "term": "重症肌无力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-3eda4e1e2c86f3f5", "term": "抽样误差", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-db7aba6d5b86448a", "term": "显微外科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-17a6566b883b4b97", "term": "蛇毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1b50cf1b64691d86", "term": "亚硝酸盐中毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-34346052b427e6b2", "term": "过氧化苯甲酰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fca5d8da92ec099a", "term": "子宫癌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6bb452b2fabc012c", "term": "吸入性损伤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e122f06a41e58c89", "term": "复壮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-31adf98088480afc", "term": "动脉瘤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-42ea8b34990c02e0", "term": "肌无力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6d532aa08a58c107", "term": "大长今", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-877a9b268333eece", "term": "猩红热", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-43e534f3823e6a71", "term": "飞沫传播", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b43436668a745ab3", "term": "病毒携带者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-4dcefc48af1180b3", "term": "天然食品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9f2426891c86cfe5", "term": "八段锦", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-fb61925476ed17eb", "term": "新康泰克", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9d1ab1f4b0caf495", "term": "组织学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f29ea233ae80ce0b", "term": "胎位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a12efbdc86b49618", "term": "半月板", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b35168f09a05afc2", "term": "吐温", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-530a9ffda5ece3d3", "term": "性冲动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-20f965a1711cf442", "term": "艾滋病防治条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8e516565c82a6d92", "term": "皮脂腺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a2b760446caf5d6b", "term": "肝功能异常", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f651d03746d006da", "term": "脂肪组织", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b74f649da56584a8", "term": "致癌作用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c10493e941627434", "term": "室间隔缺损", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-77f41268c76b7fc5", "term": "幽门螺杆菌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5bb81c99c0cc4555", "term": "肩关节", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-01177d7e47bc4116", "term": "黄褐斑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-36436b2be0fb38e2", "term": "层流", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-e6be25002f5052a3", "term": "玉竹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c85ca82c657ca2cd", "term": "神仙水", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-8076f05d2ab82392", "term": "股骨骨折", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-a4458bcb0820f235", "term": "西藏高原", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0a6203a8ccf9e121", "term": "转子", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6611db182bdd2d5f", "term": "造血系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-306bd281e2e0753d", "term": "鱼腥草", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-db447dc338507f14", "term": "中医药学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-20cc29173070167b", "term": "乳腺外科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-640121abbb934173", "term": "步幅", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-81c54e259b5270d8", "term": "人事不省", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0b3c9b53d11d57cc", "term": "响应时间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-6c5424db931fdc3e", "term": "外感", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-d43f9813076f7ddf", "term": "血清学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-f19d1214b135cb97", "term": "上呼吸道", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-9e96864207f6f90c", "term": "高锰酸钾", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-bded1dc98ecd8d63", "term": "眼疲劳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-ae7f3f992600a454", "term": "可待因", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-c569c7bab05ba70d", "term": "桡骨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-5b8ae0fe591b63c1", "term": "药物中毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-224f40568217d070", "term": "压痛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-821be11aec0e1cab", "term": "心脏破裂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-131a58d4965f335e", "term": "接触性皮炎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-1efb084ac8417708", "term": "吸盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-0c83e3de7e413952", "term": "沙眼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-2468ea82ba0ea358", "term": "健康行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-medical-b07a768e839692cf", "term": "填塞", "aliases": [], "corrections": [], "category": "thuocl-common"} ] }, { "id": "legal", - "version": "legal-zh-v1", + "version": "2026.09.24-v2", "locale": "zh-CN", - "reviewStatus": "project-seed-needs-domain-review", + "reviewStatus": "curated-and-imported-needs-domain-review", "sourceIDs": [ "china-civil-code", "china-criminal-law", @@ -162,121 +2194,6128 @@ "china-civil-procedure", "china-administrative-reconsideration", "china-administrative-litigation", - "china-arbitration-law" + "china-arbitration-law", + "thuocl-legal" ], "terms": [ - {"id":"legal-civil-act","term":"民事法律行为","aliases":[],"corrections":[],"category":"civil-law"}, - {"id":"legal-expression-intent","term":"意思表示","aliases":[],"corrections":["意思表式"],"category":"civil-law"}, - {"id":"legal-limitation","term":"诉讼时效","aliases":[],"corrections":["诉讼实效"],"category":"procedure"}, - {"id":"legal-burden-proof","term":"举证责任","aliases":[],"corrections":["举证责认"],"category":"procedure"}, - {"id":"legal-contract-performance","term":"合同履行","aliases":[],"corrections":[],"category":"contract"}, - {"id":"legal-standard-terms","term":"格式条款","aliases":[],"corrections":["格式条宽"],"category":"contract"}, - {"id":"legal-force-majeure","term":"不可抗力","aliases":[],"corrections":["不可抗利"],"category":"contract"}, - {"id":"legal-breach","term":"违约责任","aliases":[],"corrections":["违约责认"],"category":"contract"}, - {"id":"legal-culpa","term":"缔约过失责任","aliases":[],"corrections":["缔约过时责任"],"category":"contract"}, - {"id":"legal-simultaneous-defense","term":"同时履行抗辩权","aliases":[],"corrections":[],"category":"contract"}, - {"id":"legal-insecurity-defense","term":"不安抗辩权","aliases":[],"corrections":["不安抗辨权"],"category":"contract"}, - {"id":"legal-subrogation","term":"代位权","aliases":[],"corrections":["代为权"],"category":"contract"}, - {"id":"legal-revocation","term":"撤销权","aliases":[],"corrections":[],"category":"contract"}, - {"id":"legal-good-faith","term":"善意取得","aliases":[],"corrections":["善意取的"],"category":"property"}, - {"id":"legal-unjust-enrichment","term":"不当得利","aliases":[],"corrections":["不当的利"],"category":"obligation"}, - {"id":"legal-negotiorum","term":"无因管理","aliases":[],"corrections":["无音管理"],"category":"obligation"}, - {"id":"legal-tort","term":"侵权责任","aliases":[],"corrections":[],"category":"tort"}, - {"id":"legal-presumed-fault","term":"过错推定","aliases":[],"corrections":[],"category":"tort"}, - {"id":"legal-joint-liability","term":"连带责任","aliases":[],"corrections":["连带责认"],"category":"liability"}, - {"id":"legal-self-defense","term":"正当防卫","aliases":[],"corrections":["正当防位"],"category":"criminal-law"}, - {"id":"legal-emergency","term":"紧急避险","aliases":[],"corrections":[],"category":"criminal-law"}, - {"id":"legal-bail","term":"取保候审","aliases":[],"corrections":["取保后审"],"category":"criminal-procedure"}, - {"id":"legal-plea","term":"认罪认罚","aliases":[],"corrections":[],"category":"criminal-procedure"}, - {"id":"legal-reconsideration","term":"行政复议","aliases":[],"corrections":["行政富议"],"category":"administrative-law"}, - {"id":"legal-administrative-litigation","term":"行政诉讼","aliases":[],"corrections":[],"category":"administrative-law"}, - {"id":"legal-arbitration-clause","term":"仲裁条款","aliases":[],"corrections":["仲裁条宽"],"category":"dispute-resolution"}, - {"id":"legal-jurisdiction-objection","term":"管辖权异议","aliases":[],"corrections":["管辖权意议"],"category":"procedure"}, - {"id":"legal-evidence-preservation","term":"证据保全","aliases":[],"corrections":[],"category":"procedure"}, - {"id":"legal-property-preservation","term":"财产保全","aliases":[],"corrections":[],"category":"procedure"}, - {"id":"legal-enforcement","term":"强制执行","aliases":[],"corrections":[],"category":"procedure"} + {"id": "legal-civil-act", "term": "民事法律行为", "aliases": [], "corrections": [], "category": "civil-law"}, + {"id": "legal-expression-intent", "term": "意思表示", "aliases": [], "corrections": ["意思表式"], "category": "civil-law"}, + {"id": "legal-limitation", "term": "诉讼时效", "aliases": [], "corrections": ["诉讼实效"], "category": "procedure"}, + {"id": "legal-burden-proof", "term": "举证责任", "aliases": [], "corrections": ["举证责认"], "category": "procedure"}, + {"id": "legal-contract-performance", "term": "合同履行", "aliases": [], "corrections": [], "category": "contract"}, + {"id": "legal-standard-terms", "term": "格式条款", "aliases": [], "corrections": ["格式条宽"], "category": "contract"}, + {"id": "legal-force-majeure", "term": "不可抗力", "aliases": [], "corrections": ["不可抗利"], "category": "contract"}, + {"id": "legal-breach", "term": "违约责任", "aliases": [], "corrections": ["违约责认"], "category": "contract"}, + {"id": "legal-culpa", "term": "缔约过失责任", "aliases": [], "corrections": ["缔约过时责任"], "category": "contract"}, + {"id": "legal-simultaneous-defense", "term": "同时履行抗辩权", "aliases": [], "corrections": [], "category": "contract"}, + {"id": "legal-insecurity-defense", "term": "不安抗辩权", "aliases": [], "corrections": ["不安抗辨权"], "category": "contract"}, + {"id": "legal-subrogation", "term": "代位权", "aliases": [], "corrections": ["代为权"], "category": "contract"}, + {"id": "legal-revocation", "term": "撤销权", "aliases": [], "corrections": [], "category": "contract"}, + {"id": "legal-good-faith", "term": "善意取得", "aliases": [], "corrections": ["善意取的"], "category": "property"}, + {"id": "legal-unjust-enrichment", "term": "不当得利", "aliases": [], "corrections": ["不当的利"], "category": "obligation"}, + {"id": "legal-negotiorum", "term": "无因管理", "aliases": [], "corrections": ["无音管理"], "category": "obligation"}, + {"id": "legal-tort", "term": "侵权责任", "aliases": [], "corrections": [], "category": "tort"}, + {"id": "legal-presumed-fault", "term": "过错推定", "aliases": [], "corrections": [], "category": "tort"}, + {"id": "legal-joint-liability", "term": "连带责任", "aliases": [], "corrections": ["连带责认"], "category": "liability"}, + {"id": "legal-self-defense", "term": "正当防卫", "aliases": [], "corrections": ["正当防位"], "category": "criminal-law"}, + {"id": "legal-emergency", "term": "紧急避险", "aliases": [], "corrections": [], "category": "criminal-law"}, + {"id": "legal-bail", "term": "取保候审", "aliases": [], "corrections": ["取保后审"], "category": "criminal-procedure"}, + {"id": "legal-plea", "term": "认罪认罚", "aliases": [], "corrections": [], "category": "criminal-procedure"}, + {"id": "legal-reconsideration", "term": "行政复议", "aliases": [], "corrections": ["行政富议"], "category": "administrative-law"}, + {"id": "legal-administrative-litigation", "term": "行政诉讼", "aliases": [], "corrections": [], "category": "administrative-law"}, + {"id": "legal-arbitration-clause", "term": "仲裁条款", "aliases": [], "corrections": ["仲裁条宽"], "category": "dispute-resolution"}, + {"id": "legal-jurisdiction-objection", "term": "管辖权异议", "aliases": [], "corrections": ["管辖权意议"], "category": "procedure"}, + {"id": "legal-evidence-preservation", "term": "证据保全", "aliases": [], "corrections": [], "category": "procedure"}, + {"id": "legal-property-preservation", "term": "财产保全", "aliases": [], "corrections": [], "category": "procedure"}, + {"id": "legal-enforcement", "term": "强制执行", "aliases": [], "corrections": [], "category": "procedure"}, + {"id": "thuocl-legal-8a5c7a0c197e6f49", "term": "版权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-822e82318b51e45d", "term": "证券", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0a973ef2c9ef4d9e", "term": "房地产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6722f3d77d325eb4", "term": "制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-47a270081ab2892f", "term": "模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1a36529523b06901", "term": "改革", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ade3eaf52c1dc40e", "term": "权利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e66641b86572a498", "term": "监督", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-77da74c121840525", "term": "规范", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a84ff97b7811af20", "term": "守法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bd2c5a28c5eff193", "term": "法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-349f57465790fd1d", "term": "侵犯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-36b3764d702dc059", "term": "收购", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-313bcb3ad3f24927", "term": "非法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8c37738b8bcb1b1c", "term": "上市公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2bb6310f200f8cdf", "term": "违法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2d2025b92ac47e42", "term": "执法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-abc9966d5e4e75a2", "term": "有关部门", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9dc4139eaedd31c5", "term": "债券", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5cf1b15d05de0ae4", "term": "披露", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ea180ca05579f91e", "term": "专利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3c2fe589fbfd59af", "term": "董事长", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ef83c16632551d8f", "term": "招标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-83aa8186e118b518", "term": "签约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c473128076244948", "term": "欺诈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-87e408f23b4fe810", "term": "冷静", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bec4f43b2c8dda86", "term": "院长", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-982577afeb810212", "term": "协商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5a5d6ff245c56f7f", "term": "全国人大常委会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-acaa2c47addc2ca5", "term": "省委", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-085e7a9bd86178ea", "term": "有限责任公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7f42bab86d8429f0", "term": "门户网站", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-095b45ce7df514df", "term": "债务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8ad924324aac23a9", "term": "保险公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f08dda24dab36108", "term": "判决", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-06bb3f4914e52c0c", "term": "汇报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8911099b06978cb8", "term": "新股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-218dccb4ef77ec1f", "term": "承包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c997444643299f36", "term": "生效", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a1b7df06c7aeb83f", "term": "市场经济", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2489016f79676a63", "term": "拆迁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b9ce3678ae87d3ce", "term": "查处", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9875b1f82509fec8", "term": "标注", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4e08fa79c9164507", "term": "章程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bb8840b5bc9af7ee", "term": "缺陷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-844b8cc8dff7c1d8", "term": "默认", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4f2f221467cd0263", "term": "宏观调控", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1bec629ef825dee4", "term": "遗产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3aa8acda90a24beb", "term": "跨越", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d66fd405c0113bfd", "term": "承担责任", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6f65546867afc1d0", "term": "阴谋", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-08ba402afccc9e50", "term": "证券交易所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3e8d0ff0d13deb3a", "term": "回避", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-87809878bddd9ccd", "term": "强奸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8c57a9b6e3f7b1f1", "term": "债权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b28996b8a6865153", "term": "国家安全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-41e2d8e21e178e95", "term": "佣金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-81c21e2da31ec145", "term": "承接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-17b3b01f0cb048c9", "term": "责任感", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1822ba17b297d5f6", "term": "权利人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-08b21ca48c967baa", "term": "国家法律", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-88a998a101b42d12", "term": "分割", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c3654f6f06f30f94", "term": "侵权行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e9c2823a79dfbc83", "term": "电站", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3273f97899537247", "term": "证券市场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-24f8b0135eb70ea1", "term": "营业执照", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cf4b3a69084877da", "term": "违约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e5cb8eed45cb15cc", "term": "全球化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e6b3bdf53d4afba6", "term": "市盈率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b64c86d96d362885", "term": "推迟", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a8dc1117d2a3f11d", "term": "虐待", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-082d3a8223bf6ce4", "term": "增值税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d643b443817232c7", "term": "违法行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ca846d4033c4c106", "term": "未成年人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eade53fbaa8c9f31", "term": "公司董事会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c83c2d54a44d8b2b", "term": "没收", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4e47b44aae059b01", "term": "有车", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9c2a28e8f98fb5df", "term": "有效期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a08d5f234fe72cab", "term": "维权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-df83206f68a12480", "term": "信息披露", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8d0d70cb8b1808cb", "term": "对价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1d696ee9b195283a", "term": "执法人员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0f454f08c01f9633", "term": "建设部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2ae987967a948870", "term": "直辖市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-45d556d5233a2b23", "term": "印花税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f580b759e30a4d22", "term": "医疗保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0457b21ceb740199", "term": "辩护", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0e9cdd90055e9cec", "term": "从业人员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1b81bc055a22e92f", "term": "谋杀", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a84ad9594a372a4a", "term": "信访", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-81fde5298f6a877a", "term": "抵触", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7fd41158599cc9c8", "term": "一审", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-530cfb353d74e3a0", "term": "人事部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-046959dab00fea1d", "term": "扶贫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d34a6b899b5f2097", "term": "战时", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-96a25327cd90b24b", "term": "侵犯版权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ee0567e180bedc84", "term": "市场占有率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d24b32c0afb96217", "term": "贿赂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cc442256b6b15589", "term": "建设工程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2b5e57f1d8963996", "term": "争执", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ff700614bb3861c9", "term": "职权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-536dcd54ef1707cb", "term": "年度报告", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bba608a234399275", "term": "注册商标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d0a41f62d2abf603", "term": "发展规划", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-544756ecd0a4f13b", "term": "经营范围", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fc7415e186e39dca", "term": "裁决", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4a75dfe2756bff1a", "term": "保全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3104407352edb47e", "term": "裁定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d9bca267a652a7c6", "term": "涉案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a48fa6108b579f91", "term": "注销", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3d07ec21e20d0555", "term": "伪造", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4adcf6309c11c1f3", "term": "缺席", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7ba8fc0d57b0378c", "term": "仿冒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3ac4e15ebbf51c48", "term": "中级人民法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a79dad48b416c9f0", "term": "医疗费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d94f1d858c940e66", "term": "归还", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4d639bbcff99807e", "term": "队伍建设", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e469c76c05b455d6", "term": "注册会计师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-98cbd8860de60d24", "term": "债权人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8bd09c6f0913477f", "term": "挪用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-577af3998f4f760f", "term": "道路交通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ea878d5d090510da", "term": "接管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0fd6889156f2fc06", "term": "配偶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d39b010c5ba65b60", "term": "信息产业部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-24bbfa170e82d464", "term": "建设用地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eac7473dc9ccbf95", "term": "殴打", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-06421b1f1a628545", "term": "人民检察院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7e2941c09f7e6198", "term": "乙方", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0d22b4962367daa0", "term": "兼并", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-68585c196da38cce", "term": "家产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6ccd7ac70ee82caf", "term": "印章", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b185ee7edb1f5671", "term": "推翻", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c0ee1e31903c04b4", "term": "法学院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e3ba8c3c644424a8", "term": "上海证券交易所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a61475708907e54d", "term": "经营权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1d607bf095cca225", "term": "新材料", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4a96e98e0bcb7f38", "term": "要约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d9b8febcce39ecb0", "term": "母公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6e2e8c5bd43242f5", "term": "公司债", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eb137f2745e7829b", "term": "破案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7e00ebccd34fae89", "term": "药品监督管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0c939c5d6200fcea", "term": "船员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1a7882243d0f9b8f", "term": "手按", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3c4a3754662c149c", "term": "反垄断", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-867dfc6cad3d2a83", "term": "社会治安", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ff037d769c08a6a8", "term": "中央军委", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-93fd8e42724db4cb", "term": "政治部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0ab7c5e5eaeba29c", "term": "法医", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6cdbb4c544ba1e21", "term": "农业银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-83b26d717ffe06bb", "term": "调查报告", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-74592665f61727f1", "term": "对冲", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d7539fa6ced55da0", "term": "债务人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-df58280037356b27", "term": "最高人民法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5287bbe069cdd922", "term": "首席执行官", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9ac3f5a1e2ed6e22", "term": "麻醉药品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-964eb16670bc7903", "term": "国有股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4e7871ecfb83c0d3", "term": "文化部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f1465e3e74652752", "term": "合同约定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c1f4ab4e03239f46", "term": "清偿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c6fcd55a6c1398c5", "term": "分居", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-96e34bbaacb77e3b", "term": "违约金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-43c8285ab0a9019c", "term": "国土资源部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6cb206efa9ba0033", "term": "私营企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bcc2f211eea25524", "term": "规范性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0d973ec11c9c222d", "term": "国家主席", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fce539bba8d6e9f9", "term": "经济法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2b2a1d180bc9c90a", "term": "典当", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0cee2eb696873886", "term": "国家公务员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-581f7f1e9b5b9446", "term": "药品监督管理局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4b05046af75c86e9", "term": "专利权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b3064b56c68bf857", "term": "和谐发展", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-890e0d58781d3d5a", "term": "备忘录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a30b820d86a55c93", "term": "授权委托书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-65b58afca4f00b2d", "term": "展期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-66ea00731c0c0adf", "term": "废除", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5155d6232df81fc9", "term": "经营许可证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5bbc77bedada18bc", "term": "医药费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-78cf9bfbfa73e8d2", "term": "商业贿赂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b0f5dfe14322e380", "term": "房地产开发企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b18c723e7bf15d5f", "term": "按揭贷款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8d70f9ee1970a924", "term": "用词", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a35b2720120e7339", "term": "业主委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-96f610eb30cb2a7a", "term": "下毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bcce43044c460ab1", "term": "全文检索", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9ac5870dd587212f", "term": "反垄断法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c6ed692aa9982472", "term": "证券法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ac992a1b0fe51a6a", "term": "笔录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1f16eba37526f6c7", "term": "国家旅游局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aaf63661ec64dfd3", "term": "弄虚作假", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4390104968f23739", "term": "公司债券", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1aaf5d8c339cc79b", "term": "资产负债表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-55f22ed45e4db492", "term": "最终解释权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-22a45b51649871f2", "term": "古希腊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-89b5ce00ccbe65fa", "term": "列席", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-78cffeae38ed2b03", "term": "个体工商户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1b6e90f2ddac191f", "term": "加工贸易", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9a70c0faba956304", "term": "判决书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0f51376d9429bd2c", "term": "控股公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0cea6a51bb01c299", "term": "企业制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3a574c6edb9b6506", "term": "中签", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-17393d2a50029528", "term": "委托代理人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2e20db98b3df28c9", "term": "控告", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8f283e04d7c5ce61", "term": "法律文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-691a834129f104c8", "term": "泄密", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9e33f12992cab994", "term": "中国农业银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-da0bd3347bf2f406", "term": "变更登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2cbdbdcd23d74fd7", "term": "年终奖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-64ed6a83f2030791", "term": "胁迫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-585ff5ccf8b9f8b8", "term": "垫付", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f5ef1e6011a6ce59", "term": "规范性文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cfcf3af732aa7b69", "term": "排放标准", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5ae82336ba33c33e", "term": "废止", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-30d86eff91c9a11d", "term": "暂行规定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fa3014e7e1a4117a", "term": "劳动和社会保障部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1f5c703a6f4bf3d3", "term": "牟利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e2f460b96c51db89", "term": "中国社会科学院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8f22c26cca8a383e", "term": "联营", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-55f1af66b8778106", "term": "要件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ed1d3bd27a829e0b", "term": "婚约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0fe4d4fc364d3c99", "term": "保险合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f263475e60b2ff0e", "term": "执行董事", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b2c42d7b5cca0a46", "term": "嫖客", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8aea4a575d534cac", "term": "驻外", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ac62b5018b6355dd", "term": "划转", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-380d74f4f03588cf", "term": "农村信用社", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-12f3e80fceb8211e", "term": "行为规范", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a02192500aaa1bc9", "term": "房屋拆迁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fa5fd9850bf3d76f", "term": "承兑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-91d31df6f271f616", "term": "发展研究中心", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dc2ebe4e88dd2181", "term": "娱乐活动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eefca5d7436ce86b", "term": "轮奸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aab434b8cf9af425", "term": "宅基地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0f6c5e06456e7e52", "term": "青霉素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dfc9cba9581d5759", "term": "小产权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e43725e655b1a80d", "term": "执业证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4e78beaeebae658a", "term": "医疗事故", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c06901a348819577", "term": "集体经济", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c4645d9c0501b1c2", "term": "未遂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a39a8eac03d47447", "term": "挂靠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-169b5c738a90dbdf", "term": "现代企业制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c7cb6bf0567af75a", "term": "土地出让金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d41ed0640de3f457", "term": "中国政法大学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eefb50c875ff6a04", "term": "中央党校", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a937a6af9aa31103", "term": "安全局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-948fd8083430c112", "term": "前提条件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d3afb20ffeeb9f86", "term": "承包经营", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6c115fb27c83a10b", "term": "股份制企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cccfce7f8b266434", "term": "迎刃而解", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-451c6f32023feb2b", "term": "市纪委", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0801ab5c5a92215d", "term": "非机动车", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-22d78417d1660071", "term": "股息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0f242099d5c99ab3", "term": "商业企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c398f9bd996a9cc0", "term": "感化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7adeb488fa7b6dee", "term": "改革试点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9a9f7919ee3d225b", "term": "优惠价格", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8b9501775032f9c5", "term": "拘捕", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f307627c5a3ce8e9", "term": "基本养老保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ba6910eb718e4aeb", "term": "特别规定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cd63c1887992e615", "term": "懈怠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6255a85bdbb767b4", "term": "滥用职权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a9c99c05b0c356bc", "term": "农业税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d04d60f834d17f60", "term": "专利产品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1c9f791210cc3df4", "term": "拆迁人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-db238820c446b116", "term": "一级市场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a6d0a04c137c3efd", "term": "名胜古迹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-00481b8d85b50d51", "term": "刑事辩护", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-473b559c306f7821", "term": "仓单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a5e5be1a6bf7236a", "term": "香港特别行政区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1e75010f9e084bab", "term": "犯罪团伙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6c74d1ea292eca8b", "term": "虚假广告", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-22c96e5d4b508e4f", "term": "工业产品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1fecb504f0f62c19", "term": "内幕交易", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8aee746501398e2d", "term": "中国工程院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-438ce5f7e2d0e47e", "term": "剥夺政治权利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2217b8843c9f1ef4", "term": "应诉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9329147489a6dde5", "term": "个体户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0a38c76a8eab05fd", "term": "被执行人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f55624e7ba31affb", "term": "招标投标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9d39807d9c8e742d", "term": "假药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ace5817c70731bde", "term": "赔礼道歉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4b4be59fe4005975", "term": "稳步增长", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dfed58372bfdab78", "term": "地方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3683fe1a1e5f19b7", "term": "法制办", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-555a2191e29d035b", "term": "小产权房", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-636667a09cfb4478", "term": "要约收购", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dfdf032f67c74681", "term": "社会公德", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-57b1dad87b0dddc6", "term": "统战部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8d299d7ecb5dd31c", "term": "依法治国", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4b967b0b28ce9cc1", "term": "履行合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-39fcfdbfb6991b93", "term": "责任保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c51abd654995f2bf", "term": "自告", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7bc662f4320e7d05", "term": "经国务院批准", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-35d24fd5d2338491", "term": "吸收合并", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-feab091bc779f446", "term": "促进社会和谐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f934086a52b89ea9", "term": "诈骗罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-737f27066ae7f200", "term": "专门委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-58c6394a8a947d0d", "term": "房地产开发公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0f7d069b0faf7819", "term": "国务院发展研究中心", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-89d1d63e0f3d3962", "term": "强制措施", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1b7f675319764c97", "term": "经研究", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c74bfba26570a16f", "term": "有价证券", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6a626e651c699931", "term": "挪用公款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7467607919166583", "term": "区别对待", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5d8eb5211c113a2e", "term": "非法经营", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e2f49ff0845aedf4", "term": "价值判断", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-893ac7cb780fc378", "term": "袭警", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fd053799c9f2e7b3", "term": "国家工作人员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ff012177d2f34df3", "term": "质量技术监督局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d7e9e7f9a2f32f8d", "term": "区公安分局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1952494955a35a34", "term": "资源税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-79cd6eb23651f3c3", "term": "伪劣产品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-12d639884246afc4", "term": "存单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-79400ba56cf719a2", "term": "结构优化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f07ba22a22bbc71d", "term": "新闻办公室", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-23cff246ae2c42f5", "term": "垄断行业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f7e00df501172f24", "term": "致残", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d768712a8c364a07", "term": "民事行为能力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6507e26bc4c51b30", "term": "赝品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e5af5d1383590e0d", "term": "债权债务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7cfaff09f022d43e", "term": "村民委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dfc50d47ef3b4c86", "term": "保险单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3d473a779143d1dd", "term": "基本农田", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c1c7f99ee16a4a60", "term": "产权制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6d50d969bf808c2d", "term": "经济价值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2adaa4dd9868faec", "term": "议定书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-61d2ed739ab9917a", "term": "男女平等", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4ff26aac9a408eac", "term": "前手", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-420882daa9aa7fd8", "term": "商业保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-982a8bdb6c9254b0", "term": "保险代理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0b4d4a5002937183", "term": "错漏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3204b57b4bff1c16", "term": "监督权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-224c6405fd192876", "term": "公司合并", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e03f49f6450d910d", "term": "中级法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-04e990b7802188ee", "term": "税收优惠政策", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b722d184cc820938", "term": "国家产业政策", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-27bb2a8e36d00593", "term": "国家开发银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2a84dcfeba985376", "term": "慰问金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-024147d957e1f0f4", "term": "没收违法所得", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1fd68c11d80dfa48", "term": "保险金额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8c00e8c677c93524", "term": "约瑟夫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2fdb1d665afda164", "term": "扭亏为盈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-53e1ce2977a509fb", "term": "个体经营", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-956b690c37aae5ab", "term": "劳务派遣", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3780b48f232aa2ef", "term": "社会治安综合治理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-03978a3e7968b40d", "term": "遣返", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a3fc5bb102d37287", "term": "道路交通安全法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c7082a53b04bd180", "term": "签章", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-efb257e050bcc4c8", "term": "地方性法规", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3e82fbe89fe29b05", "term": "经济犯罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4ecb8b11b74aa377", "term": "贸易壁垒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f7e34a54ced345be", "term": "转包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d9e030acabe9c894", "term": "肖像权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9a3d93ef6e4f8276", "term": "安全监督", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0b01a8f120abac74", "term": "公务员法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cbc3aa35cadc9a20", "term": "股权转让协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e537399548505b19", "term": "违章建筑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5e94a988fe414577", "term": "常任理事国", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-779fa1a2ae3152d7", "term": "涉案金额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3b51c5a3dca34a65", "term": "审判长", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ad5c1137245ac33e", "term": "工商注册", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cb2c47087c8c52a0", "term": "企业效益", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3fb25b1dd92f7575", "term": "批准文号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-395f16c295bbea36", "term": "裁定书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-55b4fd17d6edf830", "term": "严重程度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f050def62cb316b5", "term": "民事案件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-24ecd04830259e2f", "term": "土地利用总体规划", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-168887110b55fd30", "term": "企业债券", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-09ce8f297edff788", "term": "仲裁机构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-edc3efb149a25b96", "term": "参考文献", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cee9ac77c93f647b", "term": "保险法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3d75c86bd2d8c479", "term": "建设用地使用权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b544184260519b33", "term": "聚氯乙烯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b2bd85cdb2cfdc52", "term": "专利法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d27738e90a0b8051", "term": "新华通讯社", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-679f5f65c99eeacb", "term": "被拆迁人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ff87fb61cf008c5f", "term": "小企业融资", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-082dd8858affccb7", "term": "路德", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cc34d414d212ae23", "term": "漏税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-08bae5a216388afc", "term": "承包经营权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eb2b4cbb94f046e4", "term": "职工代表大会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d5f255e5276f92b2", "term": "会计法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-54ba1e097863dce6", "term": "不称职", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7f7b89537af1ede1", "term": "下岗工人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-46a34be4a040b268", "term": "规划许可证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cdaace8b066b4317", "term": "依法查处", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-adf0aefe37a7514a", "term": "全国人民代表大会常务委员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5ceece1f08f23db8", "term": "仲裁裁决", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-66c1fd7840eb21cd", "term": "公务员录用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-06f9bf624877e0ed", "term": "转让合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fed017e73fb0a1ae", "term": "公职人员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2b69c1dacc26062e", "term": "产品质量监督", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9c1c1f85cb7e3997", "term": "用工单位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fe87d36dfa7de39c", "term": "机关单位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8dd0493bc812196c", "term": "出口加工区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c375ab5d64b03472", "term": "苏格拉底", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-418663dc113dcd08", "term": "亲生父母", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ba779f05e25d484c", "term": "专款专用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8edb46c79f98ee6c", "term": "假冒伪劣产品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ad69788a6486faef", "term": "牟取暴利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-128a8fe6584e4e92", "term": "国家股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4e21f36aa44f918a", "term": "模棱两可", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c8944acc1273a0c8", "term": "保险经纪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f6619381b9bc27e0", "term": "国家机关工作人员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8270b7ce20715286", "term": "执行公务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3395641b911df2a3", "term": "一审法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f8b85856047a8538", "term": "中国注册会计师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f5bdd35e4e3c47e4", "term": "工会工作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4b2d0599879a1fd8", "term": "法律监督", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-85357346c2169ff7", "term": "登记制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-db6c6f4cd660db99", "term": "产权登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d68f1d6400e52c1a", "term": "承担连带责任", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-570177e39b9ce90a", "term": "维持原判", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-afc385ad97fba759", "term": "代扣代缴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d4e23d5ca6275b8f", "term": "保险事故", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-501428b940c784d2", "term": "软着陆", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2cc19a43c8f3e597", "term": "执法行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-23f447f4cba7cc76", "term": "土地管理法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e06c7f11c862cc88", "term": "可转换债券", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2bd03b501624ebd4", "term": "规模效益", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0a6d93aa7f2126ef", "term": "土地承包经营权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ec6561fcf5421c72", "term": "转让方", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-31b890730bf9905f", "term": "证券投资基金法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f7bb118240f195c3", "term": "注销登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bf9caba01d166857", "term": "权利要求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3b3a6e9e1d09623a", "term": "法律地位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-113c19e37633ab76", "term": "国有股减持", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9de679794ce95fb6", "term": "中央军事委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-597bc8b2d8734854", "term": "市场参与者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-29b3025cbf4afdec", "term": "行纪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aa08a10d78a61253", "term": "执行程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d64e6e22b197905a", "term": "行为模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a0e06a519277d083", "term": "广播影视", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cfd7a291acdec44f", "term": "法律职业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-788c966a252cbae1", "term": "违法经营", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8f53634569160bd1", "term": "房屋权属", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e347fe0c9d61910a", "term": "经济贸易委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-11ffb008ab076ffe", "term": "恪尽职守", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-28e4e6b5a5692977", "term": "利用职务之便", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0bd80c783033beac", "term": "廉租住房制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d48168fea5e349e4", "term": "常住户口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b774d10d7ea760b9", "term": "土地登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-53ffa4b13be5e3a2", "term": "违法乱纪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3e3d648ef9408ed9", "term": "职业安全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f9c0147d55cdca6e", "term": "代理协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-646b7b263718f4c9", "term": "工业增加值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9f450fa419b3160e", "term": "国务院法制办", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-757de04986b1e3c8", "term": "审判员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a6c0ae2dac7967de", "term": "人民政治协商会议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bb7fb74592fa12be", "term": "发生法律效力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3ce1ea23428974ed", "term": "国家版权局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-18a5ca2ca74980e4", "term": "证券业协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-db1369d840a3981e", "term": "先占", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-25d0ac0ea30754f2", "term": "学位委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1ffe37278a773b42", "term": "中国人民政治协商会议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-364964d5e51de685", "term": "实用新型专利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-501f48fab42dd572", "term": "中医医院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5f7e6ca9ccd16948", "term": "非法拘禁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8eb45e9349ee5e87", "term": "引咎辞职", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-caac51c8d96f007e", "term": "安全生产法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-969be8106e2194d1", "term": "专有技术", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b4646788ed1c8d9b", "term": "房地产法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9f7251d5321ce916", "term": "抵偿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-73a3158739204bc3", "term": "违法广告", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a8c735846ccb605e", "term": "制空权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5a034b84e749aa82", "term": "占道经营", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-401150b4d2df6f28", "term": "赢利能力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b0d89cd73a54d03b", "term": "自负盈亏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-28aa30a69e6ddf45", "term": "判决生效", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-86671a7ecda828ea", "term": "专利权人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a2ea3368c8774156", "term": "披露制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-262d6f6f567e3981", "term": "民事裁定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dd033edaa350383b", "term": "企业合并", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5367c1da2a7c48fe", "term": "中医药管理局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-579fef8e0aa91695", "term": "国务院新闻办公室", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6c3e5e24e9106184", "term": "收购兼并", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dc130f49be36174d", "term": "法治国家", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8e40e2feca766320", "term": "银行承兑汇票", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-afef6a429eedb0cd", "term": "新开工项目", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-336668548eb4dd8e", "term": "卢梭", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-65ce06098ebea4cc", "term": "操纵市场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f4c77fcc1cd06115", "term": "全部到位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-971957cc1d5a4587", "term": "保险条款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ea2fce78b4ec0e39", "term": "中介人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1b9b0597438c486b", "term": "编委会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-350e0d9d8b254187", "term": "占用资金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8a04d1f4ea056c44", "term": "民事纠纷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-db9856e664da20ac", "term": "非法行医", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4adef4200eb2aa6c", "term": "欠缴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-09f2498bb74e2d85", "term": "工商营业执照", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-776c268e39fe6e91", "term": "首席运营官", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4a31a1613a241e1f", "term": "矿业权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cc808d61b71002b7", "term": "植物检疫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-145f8261f8d8fa08", "term": "保险代理人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-866391f6245b6b9f", "term": "价格法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0db77ec032d5bc81", "term": "法院强制执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b41ce9642aae7f24", "term": "第一审", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a1f798121f0740be", "term": "违约行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e1f6c907e1bebaf6", "term": "企业家协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5036b5a3edf2ac30", "term": "劳动用工", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0abadb6324228c58", "term": "一上班", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8ca2e6ff04f29fa1", "term": "非专业人士", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d1d7547ff46f9e9d", "term": "从重处罚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c99a9fabe8d4ba69", "term": "治安管理处罚法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e0ecaa9d9a4c23af", "term": "制定法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bcae617b205cdc3b", "term": "法律文化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-561289a7a538707c", "term": "遗产税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b854ba76d39dd86f", "term": "特别法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8cf7ae07221a738c", "term": "诉前", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-96e6c36beea673cc", "term": "协议转让", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7e10916b47407144", "term": "案值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-42ba54491074eb25", "term": "农民集体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a29e689568308dd4", "term": "大陆法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aba934ad7515100f", "term": "妇女权益", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5eef16424c149532", "term": "股东大会议事规则", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4ef3f22936515b7e", "term": "认证标志", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-51915a14ccf41ba7", "term": "特别授权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-22ff8e40903c5590", "term": "窃电", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b58c451d76bf13d7", "term": "旅游合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-206c7ec62c816947", "term": "国家中医药管理局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6f2a7ff359094433", "term": "泡沫经济", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-858b81af6f6a7be6", "term": "入室盗窃", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f5513a3e685cbf8a", "term": "从犯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5fcb71d76eeb6797", "term": "主任科员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6960845af9e9c5b2", "term": "连带责任保证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-744db32e8f4602c4", "term": "增值税发票", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ecd61b045128dbcb", "term": "监视居住", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ba8cadf6a989eae2", "term": "项目融资", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-422b5c0894344059", "term": "没收财产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-483a954946a00761", "term": "一夫一妻制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f3e4d0d2479764f0", "term": "野生植物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6abb84188a699fc0", "term": "信用保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d62da57c20c907b6", "term": "国际条约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-52aa313e22e22e47", "term": "非法行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dacc0addd328ec2d", "term": "侵权产品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0e53c69c2cba16d7", "term": "完全民事行为能力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-443998308dd340bb", "term": "国务院学位委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0e2f8dce219cf0a3", "term": "郑州日产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1447b4d868d29278", "term": "危险源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8d1c0f6b33baffbc", "term": "二审法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fc405cb644831d3e", "term": "物业服务企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e68a8f1b7df50d12", "term": "网络传播权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2e72ee87da05ad94", "term": "木石", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-02f14eac23f46d8d", "term": "消除影响", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-54558e4782fa584a", "term": "房地产抵押", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-10c4bf13e5be39e9", "term": "占住", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c0e34db681d66613", "term": "产权制度改革", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1de65be0b6124eb7", "term": "公共航空运输企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-232813eae9e4dbd4", "term": "管制刀具", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6b88b6a036bccb56", "term": "债务承担", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-475fd948e14a04f6", "term": "优化资源配置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3be6082fbfc98b5b", "term": "保险费率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d33ce457f22a18e9", "term": "无性婚姻", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ed28448c64cb9172", "term": "国家经济贸易委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-27ad5cfb2a2b3675", "term": "中国证券业协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-adcbc18b1e17fd4b", "term": "可行性报告", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9b549e07c6eb4b08", "term": "合同诈骗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-edc2b3dbd747f29c", "term": "农村土地承包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f25822f1009e0c8e", "term": "进出口经营权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-397ea8f4999d3c65", "term": "舒伯特", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eb7fea813998e94e", "term": "委托合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1371dceb499e6f24", "term": "优惠待遇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9106baaf53b65c38", "term": "国家机构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3c9032f39049477b", "term": "上市公司收购", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-454b20d48f1c564f", "term": "保险监管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-63627e892716b38e", "term": "军队转业干部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2d0f412a043b80dc", "term": "国家工商行政管理局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e78e2443b14c5bb7", "term": "医疗改革", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-37cf3c3b531310d5", "term": "财产分割", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a934dde4de1d65b3", "term": "居住权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b35b9450b852f4e7", "term": "资产保值增值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bd4cb6183bef631e", "term": "执法为民", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-140b03184b1b69cf", "term": "民办非企业单位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8f6b3301bb9eca89", "term": "国有独资公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-75004cd67f188eb8", "term": "价格欺诈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-035e9a04ea5503ea", "term": "中华全国总工会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5f0a9eed7382ee46", "term": "注册会计师协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b94c324d1011febb", "term": "交通事故责任强制保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-127ab8f7c4ee58d1", "term": "保险标的", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-347a0b6392cd1e55", "term": "拖欠工程款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4fbdcddd73e5a801", "term": "离婚协议书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-96b43d172f34e7b9", "term": "公债", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4b742b7df221f945", "term": "扭送", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-db997e1f2267c307", "term": "改过自新", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-24b5657551b82c09", "term": "贿赂案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a88673b47e42a7d5", "term": "新颖性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3d1bbdf3fad00347", "term": "制度规范", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c95c4bae5c29d71b", "term": "断头台", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e558448816786075", "term": "信访办", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-94361adc5c0b3f2c", "term": "机动车交通事故责任强制保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0c955c4fd5743ee9", "term": "监督体系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b7ecca2572a85211", "term": "临时价格干预", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2431048c4b873357", "term": "规范行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-62707063d26f4b28", "term": "专利侵权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d272c376035a5c51", "term": "大陆法系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7739689d9da6ef8d", "term": "公费医疗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2e67aa493396e424", "term": "市场法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6dacc62afb344271", "term": "城市居民最低生活保障", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-09ed4d6a51eb2fdd", "term": "项目执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-63c7eb8b72292909", "term": "遗产继承", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d7ce1217e173300a", "term": "未成年子女", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-80c3f7dbdfb725bb", "term": "中法网学校", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1b86e64cb15acd1a", "term": "战争罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1c1af75f6a21a095", "term": "价格形成机制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-45430f7190c9df47", "term": "药品管理法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fdfadb8d09d41266", "term": "中国人民保险公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-07a46803a36de11c", "term": "港澳台同胞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bd60815652ba2842", "term": "平衡发展", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c33c4c7bc66144ca", "term": "少管所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fbbdd5b9ed3803c3", "term": "土地使用权出让合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8f4aa887eae3b0b9", "term": "共青团工作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ab66e2b05d10621f", "term": "未成年人保护法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5a136ef4f2839b81", "term": "职务侵占", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7c6bef3efff2e9d8", "term": "社会危害性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-113da2dc6ca906c3", "term": "洽商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b9415586cebe2ac6", "term": "授权经营", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4dc026b9e665d9bd", "term": "中华全国律师协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-17120ea3294ea487", "term": "价格违法行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2a7d3e13846a04e5", "term": "市场准入制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e791162c978376b6", "term": "挪用公款罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-abd9deef33b67832", "term": "垄断行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2205732fe10035fd", "term": "婚前财产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0eb91db711e22689", "term": "非银行金融机构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9977740f21ce3d7a", "term": "强制性规定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-383438c89f977164", "term": "农转非", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fea86b3fec3789b6", "term": "乘人之危", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-87db1b2bfcd1b31e", "term": "年薪制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-613e3216792e43d9", "term": "国家烟草专卖局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bc65ced6d29df770", "term": "部门法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1008865d6d571499", "term": "人民币升值压力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-891672cf315dd02d", "term": "地方法规", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fd1f47039dcf8a91", "term": "法医学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7364a6a28c2344aa", "term": "审判监督", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-308bf11f1cd29df6", "term": "治安处罚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-97f432ae096be563", "term": "治安管理处罚条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6c52e24ed2ec517f", "term": "网络犯罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-940ec3813ab982fc", "term": "现金价值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-84bf8340a9043e61", "term": "企业兼并", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6d72ce4a5e7d3b1b", "term": "国家安全部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4ce6419d1eda0c08", "term": "诱奸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-601a50d9369a865e", "term": "司法改革", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3af2621aaee8f8fc", "term": "国库券", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bb2305012b28f19b", "term": "性暴力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1713b2ccf4845f5b", "term": "注册商标专用权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d62301d84c848c1a", "term": "宽限期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5aa94c22245e17c8", "term": "贿赂犯罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4a23114251d8e116", "term": "国际经济法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d424c87dc79fd015", "term": "国有化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-075f7332caf45061", "term": "议付", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-035bb35783c8a9fb", "term": "国家药品监督管理局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e9b2b8230f9d69ac", "term": "强制拆迁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-efa84b0e966993ba", "term": "三来一补", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5a04933490f74486", "term": "危害公共安全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cd7b01d2b578fc24", "term": "某甲", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-32bac94cbc0b6f14", "term": "不合常理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-16627663512b3551", "term": "新闻出版署", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e7c71ba211a15957", "term": "继承法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-927cd66f73e0e0bc", "term": "转口贸易", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-143abc8c9d132ebc", "term": "急要", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5421e63e465792e9", "term": "敲诈勒索罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5cea1af07f29c3dc", "term": "行贿罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b8e771c3a4817f3f", "term": "台规", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8bd826e732cd0983", "term": "聚众斗殴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-97586be51fe39b31", "term": "股改承诺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e40a67e283d453ff", "term": "耕地占用税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4555a1a771999583", "term": "企业国有产权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f3a9efaacb1277c0", "term": "抵押品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4572c64b3817f638", "term": "工伤保险待遇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-82dd64eb4a0b9bc3", "term": "执行通知书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dddf1c6dc9df0d4f", "term": "第一产业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fc49a2c40d0734a2", "term": "实体法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f04ccee8b3e0e4db", "term": "保险监督管理委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-19fc02dca6d149c9", "term": "招标投标法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-23baa5b0e2b96455", "term": "涨跌停板", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0baf2117dc14ff21", "term": "国家海洋局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-65e9d9ac06f2abc0", "term": "工业产权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f98663777e170aab", "term": "追加对价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c77382d7cf6c68c1", "term": "夫妻分居", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c47fb3726b854ac9", "term": "翻译人员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8f399b06470e5aac", "term": "外资保险公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b67b0ef2949b5f78", "term": "安置补助费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0a9f2e7b8036a667", "term": "外事办", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-09bed5b4cbba49d0", "term": "制度变迁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-06e1a1f93384ad7c", "term": "一般法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-793fed3bf6509089", "term": "内部职工股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a8d4de956ed58134", "term": "国有产权转让", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5103065505ee38a1", "term": "国家经济安全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9bab145973c67b16", "term": "深层次矛盾", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-86d88b034b2d1104", "term": "经济承受能力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0194a36ebcdd19c2", "term": "反分裂国家法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b798255e6417f31d", "term": "商业欺诈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6a6f30c2bf8ec65a", "term": "实施强制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3e41c2b24c1eb7ef", "term": "连接点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-468607c4b1b9c1a3", "term": "小规模纳税人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-666501ee4cfd45c6", "term": "违禁物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a42d052161201ffe", "term": "许可证制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d4f82b1747a147a0", "term": "黄赌毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0692be650286579f", "term": "国家电力公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-33259ec783477e4f", "term": "非法经营罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6f7e8815ff709818", "term": "各级地方政府", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b1648190708d6825", "term": "性贿赂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d4f43b69c971970a", "term": "社会主义法治国家", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-84aeab12336d0994", "term": "妇女权益保障", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-27c0cb31b2864fdc", "term": "经济法专业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1f17c0a5a9403b07", "term": "连锁经营协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f66a8284c04fdf35", "term": "犯罪构成", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-981d300fbd0e6469", "term": "无民事行为能力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9a4335b8e79cabad", "term": "母婴保健", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6cf788a4bdafb716", "term": "转业军人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ea41ccbbdc7876c0", "term": "发展权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eb338b6d11db6d70", "term": "保外就医", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5fffae4afdf4ab67", "term": "中华人民共和国主席", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2093e5be33fb3184", "term": "中华人民共和国证券法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c0b3e1a7776b4ac9", "term": "债权转让", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c661b528113d7cbe", "term": "人均国内生产总值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0591a3b8307fff61", "term": "转移登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6bc93fc2facb6cc3", "term": "中华人民共和国道路交通安全法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f94cb738f909829f", "term": "国际贸易促进委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-264784b0c7a6aa2a", "term": "经济担保", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9291d3daebbb5dbd", "term": "宅基地使用权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-748e4cdf97408feb", "term": "复员军人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bf3c10f7e8731a08", "term": "城市房地产管理法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8b1a58c572978968", "term": "双面打印", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a6f79ce403f462eb", "term": "督查工作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ecba857abfbe7387", "term": "拆迁范围", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-156feb549407e4f2", "term": "秉公执法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1a42fd133c020c05", "term": "股权转让款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d7f4cb9fc2c12014", "term": "失业登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bec14947aa89c730", "term": "童养媳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5b8246d63291cd11", "term": "累犯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d9b5c5c9eb135232", "term": "专利复审委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9ee92c26c81189bc", "term": "限制民事行为能力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aae407baf08ec48c", "term": "发展计划委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4d04afcdf7378a72", "term": "潜在投标人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a85b331019c43eac", "term": "设备利用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-926d87c8a9e4af46", "term": "交通事故处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-764ca0071948d39e", "term": "政府信息公开条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-712314439726a86e", "term": "分业经营", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-722e366848ad46ff", "term": "边防检查站", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b5f2d857b5db8f3e", "term": "妇女联合会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6d4b2e27e237cbfb", "term": "成文法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2e0f326b57310976", "term": "暗娼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ead05f0c5a9c2e87", "term": "恢复名誉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a60c34bff29fd090", "term": "中国知识产权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-36570a018822111f", "term": "归化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4599c56b75ffb435", "term": "广播电影电视总局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-507e1e09275411ed", "term": "英美法系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c438cdcbd4860e43", "term": "自治机关", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6acc6bf698856f84", "term": "盈余公积金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bbd51167ca39c946", "term": "非法转让", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5c5fc89fce46310f", "term": "产品标识", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-82d880cc05c6cc39", "term": "台湾事务办公室", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-275177b6b974ad4b", "term": "医疗事故鉴定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3463797782b2b63d", "term": "瓶颈制约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d6bf142a2545a9ca", "term": "事务性工作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8f0d18dfdfc2a413", "term": "海事法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4ca113050f47c88e", "term": "重大责任事故", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-98e6f7d33605a3fe", "term": "妇女权益保障法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6f019edca08c5bed", "term": "国家监督", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d9c31c95318c4e06", "term": "施行后", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eeecd6f238924666", "term": "精神抚慰金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f05becd286403cad", "term": "董事会授权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c72e9f9ce6abcd35", "term": "非法证券活动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e9464e917a82c06a", "term": "中央军事委员会主席", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3df90c4f289f1a66", "term": "合同示范文本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1ca7f0cf50fdf021", "term": "市场支配地位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-057d07fbed915515", "term": "重新鉴定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-94d1b6d9c94f7cc8", "term": "刑复", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cfbc09267f09d52e", "term": "劳动争议处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4b7e17ba2cd91c94", "term": "婚前协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-66b31da37542df6d", "term": "占有人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7d6e310645cf33be", "term": "治国方略", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3100c63657323a7a", "term": "执行机关", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-56e0b6c48b12f4f7", "term": "全权代理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e88ac567404e6b96", "term": "对外贸易经济合作部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-512a9c4d2fd6dd3c", "term": "法律面前人人平等", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5a91a96e194909b7", "term": "行政复议法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7aa90d83b64f613f", "term": "交投清淡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-285707bd07ad9658", "term": "死刑复核", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8ce4ee6503ced327", "term": "非专利技术", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-331aa62eca342c39", "term": "停薪留职", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1fb9221b5bffb278", "term": "用工制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3da91f39bd0b1f05", "term": "保险经纪人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-713a3a8e8bb7f0c7", "term": "商业银行法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a0d26107940029b5", "term": "行政强制措施", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-25d758f02eeffb84", "term": "继承遗产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3be02498d5bd5bde", "term": "电视作品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a95e95244a4c047e", "term": "往来港澳通行证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aa47f5a31254b89f", "term": "铁路运输安全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d84bd54d633312e9", "term": "国有独资企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8de0179b1369a103", "term": "重置成本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2b8de89c4120d900", "term": "捉拿归案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0af9e13581917f1f", "term": "标的额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9eb6bd0f65eecd0b", "term": "支农惠农政策", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-49451e94985ef994", "term": "职务行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c8484b2ea08d3df7", "term": "道路交通管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ed74d9f324762aa2", "term": "竞业禁止", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-70c66879c7e3d037", "term": "该公司总经理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fa31b67709447e5e", "term": "国家广播电影电视总局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0d6b5dba5b197715", "term": "自我检讨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d59c5422f1973959", "term": "滥用职权罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e54246095507dd7d", "term": "保税仓库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ff3ef9134c214d2b", "term": "烟草专卖法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1b8b7b36fbc39e45", "term": "产品质量标准", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ee120ac5c2a7d0d0", "term": "奥斯曼帝国", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1e4576f0df79f455", "term": "无源之水", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c5870a1ec1213c1f", "term": "授权文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b1c72c55e6863dee", "term": "中国连锁经营协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-02490b22ce4ac2fe", "term": "收市价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-769dd6bc286f968f", "term": "商业贿赂行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fabe70855125b8ca", "term": "信托贷款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5ed13dee870b0a11", "term": "交投活跃", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f3e5de2bf52bb403", "term": "未有效", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-263ae78367c2a75a", "term": "国家环境保护总局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e5d1176eb7220327", "term": "再保险公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6cc1eaff6df0eec7", "term": "出让国有土地使用权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3c642d3d5897c1ca", "term": "反洗钱法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9ad85aeb010dbb74", "term": "中国注册会计师协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-adb62c58493cc65d", "term": "上位法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-92f12fbbda83d503", "term": "挤占挪用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5ded655065f0b0cb", "term": "回避制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ab26198f61f62052", "term": "寄递", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b487baee986dea7c", "term": "专业计算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1baed32ffc23c7bf", "term": "房地产转让", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-12e5f1c8733272f1", "term": "权力结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4b639d7af88f8520", "term": "传染病防治法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e558349213b38713", "term": "公司债券发行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d92484490564c447", "term": "职务侵占罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d497e590145a9bfa", "term": "拘传", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ce2bbddf0ed426cc", "term": "非法用工", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f81ae6c87db9c1a5", "term": "收当", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f1ef0e14569ff2bc", "term": "诉讼标的", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0508df6f81d3f5f3", "term": "中国残疾人联合会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-742d4707d736c178", "term": "中华人民共和国国务院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3e1c5f32668c15b8", "term": "合伙企业法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b47ff3d8dfda9920", "term": "商业承兑汇票", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-25d410256c6d69e5", "term": "具有法律约束力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-95ace7fe44a4ba9d", "term": "国务院台湾事务办公室", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1d0497513dba321e", "term": "保险范围", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dc8a1bb5e51d4357", "term": "老龄委", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5994b92c9c29f891", "term": "国家测绘局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-16252605eb25795f", "term": "不履行合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f06e16952918e10c", "term": "节约能源法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a4891c08c9675f5f", "term": "母女关系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c32cb18d22a5ca20", "term": "价值目标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1e929e2ca63ec236", "term": "税收征收管理法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3b52a8254368e39a", "term": "改编权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-13bee7361e5d739b", "term": "世界知识产权组织", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-04b2d336108901e9", "term": "法律网站", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c09c3420c800c09e", "term": "定向募集", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6c0a6cbe85b24e81", "term": "工资制度改革", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0750d526d3666c4e", "term": "个人经营", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6209d44d5acdd8f9", "term": "价格监督检查", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dff63f0ec782b7d6", "term": "土地复垦", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-246852fc77e2d902", "term": "非法拘禁罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-54cc9722a9001aca", "term": "出版发行事业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-271711d7460fe756", "term": "医疗待遇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8351d9b70871cd2d", "term": "贪污案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3e7edde1581aa0cb", "term": "执行逮捕", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a146b7058238122d", "term": "风险抵押金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-35554f9296986ac5", "term": "逻辑结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-622d94d22c2520fe", "term": "一夫多妻制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8e8d20433914fceb", "term": "携款潜逃", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-88d267bdf9daba3c", "term": "权利和利益", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-93b307383cc27335", "term": "房地产登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-00a3548a5aff6bb2", "term": "次要责任", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c8e4244ffc15fda8", "term": "习惯法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2e37fe303b7d6eb2", "term": "土地产权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4f0e630037bec75a", "term": "审判监督程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-691f8d19ed2863b5", "term": "国债回购", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e90df21c09ec8ac7", "term": "调查部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-35a1980eab160acf", "term": "两全保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8e1c885c33e60b74", "term": "案情重大", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b9a13d112bfc6984", "term": "外贸易经营者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d9f98b9c264ba236", "term": "履行地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-963617aa30ea8bde", "term": "网络赌博", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b3335628d51f88e5", "term": "保护现场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7b8b3dc0bdf4c6cb", "term": "中华人民共和国土地管理法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1ed1cf12b37af25d", "term": "可再生能源法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9ee58cb369931951", "term": "经营信息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a54bfac9effb80a4", "term": "婚生子女", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fb8b6b0e945bd6c7", "term": "履行法定职责", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a4a23bd5d69912bd", "term": "武警总部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-022a5eb1c65763d5", "term": "赔偿范围", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-375bd9948656bf47", "term": "赌博罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e1be4537a39e0d34", "term": "食品安全法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8871238a2ed34bf2", "term": "中国古代史", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3dbd7e20730a78ae", "term": "网络警察", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-48cb2e647ed25b35", "term": "外商投资产业指导目录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-91d32e90f664c6bc", "term": "裁定驳回", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0337d4409e5d8a94", "term": "售定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cf886ccf9bfb0979", "term": "新闻工作者协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3465fd7fc00835ca", "term": "谋取暴利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-76d195677c76053e", "term": "中外合作经营企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4c379b7e1377fcb8", "term": "煤炭工业局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9c9457da997c9357", "term": "侵权行为法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-891a00cdf4a1bfb5", "term": "公民道德建设实施纲要", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-355ba17eb4a6b76c", "term": "警械", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-615a1f673a84e728", "term": "行政诉讼案件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3a6569e4f2f97a79", "term": "有奖销售", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-77f7d10ec1e4c3df", "term": "案情复杂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c9d7718dbc14757b", "term": "产权界定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-18cd31732944a467", "term": "广告经营者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-34a8e8e745845400", "term": "证券承销", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f394ed92b798feea", "term": "犯罪手段", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-08adddecc1b9a7be", "term": "中国现代史", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e4e0074bc0c703f4", "term": "项目谈判", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-664764bb179a37ab", "term": "经营自主权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2ae729ced685642c", "term": "企业章程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7bb11014dcafcc83", "term": "民商事案件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6c5e7d4bed627891", "term": "平仓价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2e3544535ca4625d", "term": "职业病防治法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-334e56c87902e59a", "term": "供应合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8da8101f4da49b2c", "term": "委托下单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-efcfadf78eea86f9", "term": "限制民事行为能力人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3eacde6357dfca8b", "term": "有法必依", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d6ac87d3833dfd06", "term": "诉讼保全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-97cb4bfd0e86b6ec", "term": "科学技术工业委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ef87f8eca2ab8be2", "term": "农村宅基地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-58cfc07562af8ad3", "term": "国防科学技术工业委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5a893461f1d144bc", "term": "挪用资金罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ef5053042deba982", "term": "中华人民共和国民法通则", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-71b9273e7cf2223e", "term": "无本之木", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-acdd0f691134fc61", "term": "前期物业管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f2508ec2d780d494", "term": "家长制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fdcb76b3890800db", "term": "倾斜政策", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f927eea2fb35683a", "term": "翘尾因素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1b2b81ccc51124fd", "term": "收回土地使用权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fd8e28149c71f419", "term": "无民事行为能力人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c61f8d29dd21426f", "term": "首席律师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5aeec3e17c4f839f", "term": "委托授权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-78ec537ccc9efd48", "term": "食品工业协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6066472b83c7570f", "term": "补偿贸易", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-39ed0920bd8d2295", "term": "中华女", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aad08ac4459b2885", "term": "突发事件应对法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-537a5a4a3896950e", "term": "缺陷产品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1a74eda5556272d0", "term": "诉讼参与人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f1a502817fc3592b", "term": "尊重和保障人权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3fdd4313bc8922fa", "term": "中小板指数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-312360cd41ac01b6", "term": "反商业贿赂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5c431ee7c7fb9b9f", "term": "广告发布者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8b110a0151272295", "term": "维护社会公平正义", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eeafd7fb2926ae74", "term": "平等自愿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-992db64c938249f6", "term": "党员权利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-57bf0049135368e0", "term": "刑事附带民事诉讼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cda0ae8ad74981e1", "term": "保险责任范围", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6bf69aedfebc17d6", "term": "日内瓦公约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-221daf025c30ad8a", "term": "投资银行家", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a60e1c93ded92973", "term": "不良行为记录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-307efb35cf73974a", "term": "国家质量技术监督局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c84b1df1d0d0b5c5", "term": "反渎职侵权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ec5ea0bf02e7aed7", "term": "执行刑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c6393ca42db08ec8", "term": "失职行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9a6a12c8b922eab2", "term": "土地承包法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0997597d45db4ac5", "term": "中华人民共和国企业所得税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f48f1b428dc4ab74", "term": "经济犯罪案件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b1193ef91dc35ddb", "term": "下级法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-05a3b03f3443a103", "term": "中华人民共和国公务员法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-465ad06fed582028", "term": "唯一代表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c7b8c44cf46be728", "term": "在职法律硕士", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1b03bf882723e43b", "term": "房地产中介机构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8f6ecfdd20821540", "term": "非全日制用工", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8b87d81709a3d9f6", "term": "残疾赔偿金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ba38a7bc7160590e", "term": "房地产权属", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-58bd262c55f35cd0", "term": "特殊利益集团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e09bd945319e4c6c", "term": "协议无效", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8201d2429fa78604", "term": "委托开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d63709fae8b0d3b9", "term": "城乡规划法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ce9b09b130879cdc", "term": "国家教育委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0b06254c6e311afa", "term": "非关税壁垒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-253cdd7d1937b2b2", "term": "执行和解", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5d3cdd47de504e76", "term": "承付", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-75c8d5f84e8b17e2", "term": "空壳公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c70e875ce7df0cb4", "term": "业主权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-17e2d5e7d6fe302d", "term": "产销衔接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1bc7a751ead52b98", "term": "媒体监督", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3c7b80c9399fcc1c", "term": "泄密事件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e8ab6b5ee9a9610b", "term": "缺席判决", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c8d4525b09b60c8b", "term": "家庭联产承包责任制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5faba6ae5d082de3", "term": "电视转播权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1ada1a7bc0bbf52b", "term": "医师法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6e2620e4d1fc2701", "term": "主观恶性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-20afe5454a576506", "term": "专利信息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f84ed23e01ea7931", "term": "风险承担", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f5ddd3569bee75ad", "term": "非法占地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2a2683f70d61812f", "term": "法人委托书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4c06744973a01cd4", "term": "外国专家局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1022e59a6b734a9d", "term": "法制科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-10c7a8ef979a4e08", "term": "国有独资商业银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-febabea7f80bfd69", "term": "合作社法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-55aeee6a4f091787", "term": "辩护与代理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-40042b3a14206706", "term": "城市规划法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2bb859063cf3a3aa", "term": "保守国家秘密", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2a8e41e8058b7ad9", "term": "权利要求书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4c11457f2aec8285", "term": "国家干预", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3eed2ab03f3345fe", "term": "法学博士学位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f603cd87f2f73ce8", "term": "专营权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3c800ba1798e9816", "term": "指定管辖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-98822351cd2fb4fc", "term": "收款凭证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2db72fee5479a7f1", "term": "罚没收入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1da4366a074e2a2a", "term": "社会主义公有制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b82559a6602e42e0", "term": "客观标准", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d69107a0896bc66e", "term": "副主任科员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f960118e454b1ed7", "term": "扰乱公共秩序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-865737d19041cd0d", "term": "中国企业家协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f541ded8c6a018cd", "term": "巨灾风险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b3e4f834777133a9", "term": "与国际惯例接轨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c9b2b0b7067cfbe1", "term": "录音制品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c56a56b7eb25c724", "term": "下级人民法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6f9c227aca74229e", "term": "劳动争议调解仲裁法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cc38bae65a7918c0", "term": "程序违法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5a9d55fcafff22e2", "term": "绿色食品认证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4d4d964e0293780a", "term": "国际工程承包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-67808707c5330c37", "term": "受委托人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-239ff5c2f1b8512c", "term": "单位住房", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3ceb05d1ab88fb19", "term": "侵犯商标权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6f619f99500bbac8", "term": "中止执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3d14fb92c57bc73a", "term": "立法宗旨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5616c00fc614801e", "term": "中华人民共和国治安管理处罚条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2187fe03b7569ef5", "term": "背书转让", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ef2d4037de4ab549", "term": "司法工作人员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1491e3df21516ac5", "term": "司法体制改革", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7211f424687fd80d", "term": "交通事故损害赔偿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4a5dad223d036f72", "term": "建设工程合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-44695f95bda28743", "term": "虚构事实", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7527aa7bc0402fd9", "term": "物业管理单位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-079af69d3930c8a5", "term": "著作权侵权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8f9e929244f347b3", "term": "借腹生子", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7df9b61a5dd68149", "term": "现场勘验", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-765ca9feb0ac4e9c", "term": "占有权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-622dd2542ef0d1be", "term": "法院经审理查明", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6a2ca785b6a67f1e", "term": "建筑业协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1542fa9d8ffef6f2", "term": "国家发展计划委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e02376e4b071ac82", "term": "专利申请权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5a63920e3ba0d2a3", "term": "强奸未遂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e13b26f807453139", "term": "企业产权制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b2380d5f6c7bf51f", "term": "中华人民共和国治安管理处罚法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-14ff2ee01a72a777", "term": "被告住所地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-76842a0f25570d84", "term": "股票交易印花税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6b8720c86559691e", "term": "中国民用航空总局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7b560876f9c684ae", "term": "国家统一司法考试", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dd8cd27cdb4bfdb6", "term": "股票回购", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1d5f5be226f7dce4", "term": "侵犯专利权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-88da41a5ebbd8457", "term": "合同煤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3169cb46522950dc", "term": "委托物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-97b00d57417ebe35", "term": "中国法制史", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-65785a4fa6e0d041", "term": "执业医师法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-efb479a17905724f", "term": "执行判决", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ad0ae99c11c2d03f", "term": "披露文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4c6fc21834bdd2df", "term": "执行员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-26c4b4bc48bd20cb", "term": "流氓罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-218ad5a192ebb7df", "term": "国家新闻出版署", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a23e658a066b68ed", "term": "优抚安置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2a82a23e74e70ba8", "term": "判决执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d4fcb2bddcb92e74", "term": "专利制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bd9819ca40b727b6", "term": "钢铁产业发展", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-45a3a02c18e1dad3", "term": "假冒商品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7f4868d86ebef699", "term": "全国人大常委会法制工作委员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4fd5ac1082acc1d0", "term": "食品安全标准", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e9331034967ed0b2", "term": "国际刑事法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-19be3812a861bf7a", "term": "控告人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-81b614dbbe810954", "term": "农村土地承包法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ebc64bb1f5e0511b", "term": "网络文化经营许可证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1c408000b26b3056", "term": "考试法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-20f57c44c476b913", "term": "发明专利权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-801f598d01868623", "term": "列席人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9da34be0c0c61358", "term": "非金融机构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2cbba6ed38bb0883", "term": "中华全国工商业联合会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-354ed54a7ccd1e25", "term": "旅游法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-81c8968903d59c36", "term": "滥用市场支配地位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-29f0ecaab05339dc", "term": "全产权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d2b84e4a68d0bd59", "term": "生效时间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1e62d2442f953c3f", "term": "保险保障基金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-534232f972885005", "term": "收案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-59e724e9d1aa25d0", "term": "绩效考核制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c1d6719ff772e7c9", "term": "共同债务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2ad0685d31bcaeb6", "term": "农产品质量安全法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b7d49ff20af37cf6", "term": "农民专业合作社法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9f0cff0332a32d78", "term": "贩卖毒品罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8ee362a9c9431911", "term": "中国科学技术协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bd7967fe7cfac174", "term": "形成权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-87867b29bcc053b2", "term": "党政领导干部选拔任用工作条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f36251139e687a5d", "term": "中国食品工业协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-56c6de7ab2d0f088", "term": "执行监督", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-75d67a9e28f7ef49", "term": "医疗事故处理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b682a412ea40979a", "term": "重大责任事故罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-095606d9e47d03df", "term": "职业安全卫生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4cf9b40e2483d8f7", "term": "申请回避", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4bfdbea176068ca4", "term": "强制执行措施", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2a8ca9c7246b49fc", "term": "违章操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-39d1b425e2f62057", "term": "村民委员会组织法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5850e6a7d19db410", "term": "社会在职人员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1e5e646d91c5f998", "term": "殴打他人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-145d4a19741c7a25", "term": "对外贸易法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-30a87249e9868016", "term": "事业单位法人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8b8f87949178810d", "term": "危害公共安全罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2e729904708173a5", "term": "经济合同法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4b6c2e7cdecb5cb7", "term": "情感障碍", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1638c9a7a7f0df2a", "term": "五定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ef68587685730d05", "term": "手钩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1628a81b7d929e22", "term": "价格放开", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ff24d81b1d08e035", "term": "产品税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1d083219698c3b55", "term": "非婚生子女", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-263c24794de76660", "term": "特种设备安全监察", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9dd4bf7cd0a0ea38", "term": "皮下出血", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-075070080d8763b3", "term": "工农联盟", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-81c1cce907725ec9", "term": "资源有偿使用制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-def2854e59294c9e", "term": "烟草总公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9a8a6a376817a838", "term": "由拥有", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5b609f6c0b01fcde", "term": "有奖征集活动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1ae299c411740352", "term": "债务转移", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a6e8dee8473f930b", "term": "个体经济组织", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e7810e37d082ea51", "term": "回购协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a877519945c060cd", "term": "产权变更", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c1a9b31337629ed8", "term": "拆迁补偿安置协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-071d2bf2553b32b5", "term": "民族区域自治法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-77a8aa79c33ca0dd", "term": "国家档案局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7539f50d83dada22", "term": "中共中央统战部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-efd779df14fad48e", "term": "参照公务员法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b2bb69575271fe94", "term": "出口信贷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ae2771badb30a591", "term": "负直接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eaf4359f355a812f", "term": "交通事故认定书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-09b20e08c0b733e2", "term": "价格承诺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ba6a8b8084deac70", "term": "公司登记管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-741a9adf915e788c", "term": "维权成本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-54cf12b14bad068f", "term": "重大误解", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cd706777d9e8279a", "term": "经济体制改革委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c2dbe337dcc6c00d", "term": "技术转让合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2fc2bedbd6224c06", "term": "品牌诉求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8cf2805f06ae6940", "term": "结构性矛盾突出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c62fec2d60ee89cd", "term": "现代产权制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3543b5c19d8df712", "term": "协议收购", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3ad144b35f96592a", "term": "募集设立", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cd44715595e7d8e2", "term": "企业转让", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-92da74d961b69cc2", "term": "缔约过失", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e544c64beff17957", "term": "城市房地产税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4d21ce648399ad4c", "term": "港澳办", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d90afd1328342bee", "term": "兵役法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c672fa954cf9271f", "term": "刑事科学技术", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0fb862e6b4bbc2a1", "term": "宏观调控目标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-617604bf54d22ccc", "term": "非法吸收公众存款罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0c06792943046187", "term": "抽象行政行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3904be005791ccd0", "term": "沉默权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6e0d820ae8fdae25", "term": "医疗器械注册证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bec1898b88e173b0", "term": "业主大会议事规则", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-db04972b11c001a9", "term": "流氓行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d5e21d98f6af958e", "term": "不完全履行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-20c4871e5bcc25db", "term": "野生动物保护法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-df8d1d01515d0b7c", "term": "进行审计监督", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-473f019d4e7e8ad2", "term": "城乡医疗救助", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a1f9fb11852e4d3a", "term": "产品缺陷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e16e80d01aa06318", "term": "中华人民共和国物权法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7b98174706fc6666", "term": "非法侵占", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d86aa0334b9475c7", "term": "行纪人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2c2cc88011f9a2ca", "term": "涉法涉诉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-667c8eb044f7c415", "term": "铁路运输法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9aa0cdc904e86d40", "term": "部门管辖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1706a80ec00bf1de", "term": "母婴保健法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cbbdd14a191ada55", "term": "道路交通事故处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aa2bb80540ae6736", "term": "到岸价格", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aa043fc21b594410", "term": "犯罪未遂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b391f0d45954d946", "term": "代理收付款项", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f45b6b7d901563d0", "term": "全面推进依法行政实施纲要", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1b392c1f976e1d11", "term": "泄露国家机密", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1594bc4f70c7dac7", "term": "中国烟草总公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3bbfceed60ccc3ac", "term": "继子女", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-48c714f42ab5c6a3", "term": "加工合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-498496a4f257221a", "term": "应用法学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b9239f8a400ca1c4", "term": "放火罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-702ae33076df8436", "term": "财团法人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-889f6ef0f65d92d4", "term": "首席大法官", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4b06c5619dfe6675", "term": "正式谈判", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cef1a3dc5633f42d", "term": "建设工程质量管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-942909b6e95f7946", "term": "期末存货", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e8901dab329ec0c2", "term": "气候变化框架公约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d7aeb1ece4dfba5e", "term": "市场分割", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1f7a15f4c461fd59", "term": "增值税暂行条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7d611da92c1695d9", "term": "住房公积金管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-44dfe0f2cda4e25f", "term": "妇女就业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-51ab036a1dfa1741", "term": "假冒商标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d5d7a0a0ddfb1026", "term": "国际服务贸易", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d011adc40afdfa7d", "term": "抽逃出资", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-07fa0cd7cd4ecf99", "term": "特定物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f7b8ed5531db1551", "term": "通话录音", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-81ce9123bbfbbc3c", "term": "信息权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-97983c19b27bdb84", "term": "行为障碍", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a4200df49c6ea2c4", "term": "私有财产权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a3c0ab3d902ca786", "term": "对外经济贸易部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-add7559b52b300e2", "term": "专利使用费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-61eabc86ec5dd95c", "term": "杠杆收购", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-71a84f8966efbb24", "term": "指定人员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1f19c431d350f70d", "term": "私闯民宅", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ae1a3c4347245ffe", "term": "根本扭转", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9a270e7b744b7a47", "term": "未利用地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eb8af507e5ce94ca", "term": "国家外国专家局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3e6bc20f771ee2b3", "term": "姘居", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-149318c3de1e30ef", "term": "陪审员制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4123d0a92e9dae88", "term": "联合国海洋法公约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-413063c4ff3332fb", "term": "侵夺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-62cf23306b22942d", "term": "赌棍", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0ab5e6de686dfde2", "term": "国家计划委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e0bc899cb74fde7a", "term": "交通拥堵费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-475d7c3aef728e1c", "term": "危险作业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c32e9c0267daf061", "term": "相对集中行政处罚权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bf47c7eb66401328", "term": "证券公司监督管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-39b1e64285da07ee", "term": "新闻发布制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8512611c8e5270ee", "term": "禁止传销条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5cfffbd6144c7cd6", "term": "无行为能力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-67d6c99536387eb0", "term": "前父母", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a464c22aff41d177", "term": "中国专利局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a75ae8d87d059574", "term": "委托关系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8b9e48c9f1d348b5", "term": "五讲四美", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d415519e8eb3f517", "term": "收购土地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-42c879e7ac7f983e", "term": "人类精子库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-347596a2132adb62", "term": "中华人民共和国价格法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-73677e5711a90208", "term": "侮辱妇女", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-448da550e9b4be0c", "term": "虚报注册资本罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-62732830c422d32b", "term": "市场经济法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f7df55a1c6cd5c0e", "term": "法台", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3f484538abf1f38c", "term": "商品房销售管理办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eba765f50bbe24c2", "term": "爆炸罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-42d08183af36e4be", "term": "业瑜伽", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cc6b031ff2330ed9", "term": "受让股权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-da68b787ed265218", "term": "风险暴露", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-19995c473e38b46f", "term": "重大立功表现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f8acfa274a952dea", "term": "司法考试大纲", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3476856a3ec955f5", "term": "首席法律顾问", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9a6181be8abad307", "term": "先天性缺陷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-67053c9216cf893b", "term": "外资银行管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-112fd80bc3018fef", "term": "非居民企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-23af38c5642aa066", "term": "重大嫌疑人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-be3a71cf68ec49dd", "term": "议付行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-608d9d72219fd6be", "term": "合同履行地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c15d39e42a58f769", "term": "风险敞口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6df5768cd2d526be", "term": "直接法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a5cd281155ea256a", "term": "经营权转让", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bda8d29ab364dd42", "term": "农业生产者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-acc13e81ddf97bf5", "term": "不具有法律效力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bf39340765fce682", "term": "国有资本经营预算制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-063a78ff412a2b2b", "term": "纤维检验", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fa52f13c6588bc4d", "term": "次代理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-56b8c24a7b188168", "term": "保守国家秘密法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d301ab183979581a", "term": "专利权利要求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c483561e25a1ad37", "term": "人员监督", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a0ef9b6fffa409be", "term": "人民解放军总政治部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2984d2cc51858105", "term": "中华人民共和国安全生产法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d7ee29dddca41b10", "term": "货物运输保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5b8f8a8012c665fb", "term": "道路运输经营许可证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fa97fabd17077b70", "term": "田野调查", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f06bf1d32b016b6b", "term": "合并审理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dff68ee0d7a3c247", "term": "约定违约金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9a0129dcc98b3fa5", "term": "无形财产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f4a621b06b60402d", "term": "先进先出法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-470d51106ab6819e", "term": "终止权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b86cf93f86419c8a", "term": "中国华能集团公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7efd378c4a8b6c76", "term": "中国人民银行法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1eec956fe2f60051", "term": "委托辩护", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-14a8287315b5e650", "term": "房屋产权登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-049104fa54c97181", "term": "排除妨碍", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-600163ed18715dfe", "term": "中华人民共和国个人所得税法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6cc2741249e72daf", "term": "特大刑事案件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-87e65afc84305fba", "term": "一般保证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e43a7270698ac0cf", "term": "借新还旧", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1e59dc5312fe4079", "term": "中外合资经营企业法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4594cb8607a5fa85", "term": "农业委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4133fced6dd16697", "term": "亿霖木业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-585d830de5d4abe6", "term": "企业治理结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-da5b299b95e587c3", "term": "抵押物登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0356c3492a551ffa", "term": "人行横道线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cef00389df6c7249", "term": "娱乐场所管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f569ce272ae8858e", "term": "卖出回购证券", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8a573ba369476686", "term": "女职工劳动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2cf55381fb0d654c", "term": "播映权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-acebebafaaffbca8", "term": "形式要件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-db10cc7bcc7933ee", "term": "超越职权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d0fb5eca9ab4dd34", "term": "法院组织法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-17bc773468d8caa1", "term": "司法局局长", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-424e9dd3d5ac2efc", "term": "经济管理权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-daf0cb8a8737efc5", "term": "业主临时公约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-77da413d0f06c3d7", "term": "专利实施许可合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-db7c6f3989e41a38", "term": "讯问笔录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-50d1a102d1a647d8", "term": "间歇性精神病", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2bf05b87ad43e1a5", "term": "前期物业服务合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2acc38034c3f240e", "term": "婚姻继承纠纷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2a3c28947716a758", "term": "实用新型专利权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-51318d7971856914", "term": "中华人民共和国海关法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c687936c5f2ff237", "term": "国务院关税税则委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-beb9ca6be46d447f", "term": "注册会计师法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c5c9b7f0e7d37d4f", "term": "停工留薪期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-533ddc4ccea38b08", "term": "住房产权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b69b12ed1b6057bf", "term": "完善宏观调控", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0459c316d28fae5a", "term": "自愿行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6ce3a61695387fec", "term": "国家基本药物制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-641c26e77205f853", "term": "奥本海", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5ab0202f3997ffa5", "term": "辩护词", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8f483b1b9487de28", "term": "环境影响评价法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2f6eac56997f2473", "term": "中华人民共和国财政部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e05417be898e0634", "term": "权利冲突", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7d636446744a5802", "term": "对抗第三人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7dad23a385790840", "term": "人民陪审员制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b6f38845d5daf50d", "term": "银行保函", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-18792ab17175ba1e", "term": "经济帮助", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d920c4c49e1303b6", "term": "中国未成年人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dbbafba935286c71", "term": "入市交易", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b10574343529c766", "term": "四个坚定不移", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9772796b67a0f43c", "term": "登记过户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ce12b19b6cf520da", "term": "国家公务员暂行条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7b4010bf5cbf0c6e", "term": "法律思维", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4403b3a962cf7dba", "term": "事业单位养老保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4331895fcc3abdae", "term": "人民解放军总后勤部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7cc1b24afda6be8e", "term": "机动车交通事故责任强制保险条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-849408ff2c0e2f9e", "term": "社会互助", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fba00df6135ed659", "term": "语言文字工作委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eb1fa62a020fa307", "term": "信息公开制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7539d5862e9f1e8e", "term": "偿还欠款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0f54162109191625", "term": "不安全食品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e819e4d396143301", "term": "学校令", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-59baf6b1c37e488f", "term": "抵缴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0b4aaa332506d2b3", "term": "非法占用土地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c9afc9230bf0d832", "term": "委托辩护人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dd37deaf1c327602", "term": "土地承包合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a9a64998f6ce0c80", "term": "平台架", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-be35f984a660440a", "term": "萨维尼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fc66585826a022ed", "term": "证券公司风险处置条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1ffc6bfdf68b1dde", "term": "刑事诉讼程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9636c795d13ba70e", "term": "信用卡诈骗罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-24bb9fe84d215aa6", "term": "诏狱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9ca7523b1aba1ffd", "term": "专利权无效", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e9ae580235373dd9", "term": "残疾人福利基金会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2b8fa61afda5ebef", "term": "私有产权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4c76ff0046783c4e", "term": "住院伙食补助费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7d1136ddabc22163", "term": "法律监督机关", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-37ce5abe14f737ca", "term": "非法音像制品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cea171e5c842326f", "term": "林地使用权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7393f6ad5f01ed69", "term": "特许权使用费所得", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aa6a8df4fee1c559", "term": "人民监督员制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b180566cd0d081e9", "term": "中华人民共和国传染病防治法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e719217e80e3e316", "term": "参加黑社会性质组织罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bb63d8f7f5cf5a57", "term": "法医检验", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-636b868285f6fbd9", "term": "劳资矛盾", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d3bbc76e2c16782b", "term": "继父母", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d6046d7ae5aeca69", "term": "企业经营决策", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9d4ead053e091fb5", "term": "软件著作权登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a9545155e45a1fb7", "term": "法律英语", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-09f7129e99eebad4", "term": "港英政府", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1d57b55a16532e42", "term": "执业范围", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e83962b9544f3c1e", "term": "辩护权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-66d8de131ffb4d7b", "term": "药品经营质量管理规范", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1c4bb46c478f0113", "term": "清华大学法学院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-442e483430685119", "term": "一切必要措施", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-61799e865085a39e", "term": "承包金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a061f795366313d7", "term": "回归价值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fab4f1b98b878a0c", "term": "机动车登记规定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fe55a37ee5063955", "term": "道路交通事故处理办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-80a79b8a3fcad583", "term": "仲裁地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-69fd3c8dcfbeda80", "term": "假冒他人专利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3971bcd7783b9281", "term": "直接代理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-339723dd7c051d1d", "term": "操纵证券市场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a19640ae0a6b56aa", "term": "拐卖妇女儿童", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ba2875aa486e551f", "term": "中华人民共和国建设部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-48a8486cb1a51036", "term": "婚姻登记档案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e79fea748b5e46ac", "term": "北京住房公积金管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1bdbd12832829616", "term": "武汉大学法学院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d11cdb5ee5d153bf", "term": "犯罪中止", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d97c33f4a09d0bc8", "term": "私营独资企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1b8eca37ad0a6434", "term": "外贸代理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5d860e9122a6c9ec", "term": "法律价值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-19a4e6fa030c9b58", "term": "预防未成年人犯罪法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8b189be56e70b87e", "term": "人性化执法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-51c6e60d6be0f611", "term": "受益方", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-39b3994d6cabd2d3", "term": "女职工劳动保护", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-76bf0fa58591acba", "term": "和谐奥运", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ff58371745667a2e", "term": "复制发行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fbbade3ddc898c9d", "term": "专利法实施细则", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9afaf71e0c2cbfb8", "term": "建设工程工程量清单计价规范", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a0cddd61134c4943", "term": "协议工", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1c6b957dbc1f5060", "term": "发展与稳定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e939322cad7c0820", "term": "应予维持", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7ddfa695e3ae48c8", "term": "武凯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3809d9612bc744ce", "term": "应对机制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ac21f4500c0b51ce", "term": "自动投案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2bf75abaceba6aeb", "term": "全国妇女联合会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ab62da9c9fe8c377", "term": "对比文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7133ae70f14a8b22", "term": "直接故意", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6a0059ff67d8de19", "term": "指定辩护", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-06e57f04e90a52f5", "term": "实质性改变", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-39b8bd96e7323e6a", "term": "托收承付", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-73a290d6b874c4e1", "term": "金融风波", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f336266f9cb2f68c", "term": "单位行贿罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-641f0fdb912383ae", "term": "小组委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-039e2482c989c08e", "term": "非法转让土地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3735dd8ca1d8355f", "term": "委托调查", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-92858b022e810736", "term": "植物新品种保护", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-55a8b798eb719548", "term": "必要技术特征", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f4752ad53d643bb4", "term": "指供", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8dd4f04798daa81e", "term": "转委托", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-803be117b5e457f6", "term": "履行抗辩权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2e3954598eb9f4b6", "term": "合同战术", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ff53dacd6014b840", "term": "实体公正", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9da59214494c9be4", "term": "土地荒漠化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b9a0770946fd3951", "term": "挂靠经营", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c212d9d8a2823cb8", "term": "持股公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-86a132ab775d5d4a", "term": "直接因果关系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2d316b8539ba5d25", "term": "伪证罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e970c67b417ae3c4", "term": "退货责任规定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e5ab543cc5cfc4f1", "term": "国务院港澳办", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ad1e69001f30975c", "term": "发行货币", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c0fe62cf29794d5f", "term": "一审判决书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3dcb62e871a29892", "term": "住房货币化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-16e7b55706cc8846", "term": "专利转让", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d0620263e7398d0e", "term": "新闻监督", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7691cba0faac63dd", "term": "终结执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-86e855a3ad226708", "term": "责任分担", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1ef13169cec72721", "term": "拆迁补偿协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-32d3151585d0d0f2", "term": "诉前财产保全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1b64f59e751e8026", "term": "菲迪克", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3cba394b2ac7291b", "term": "政策性关闭破产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-62c2e88d65459ff6", "term": "不可抗力事件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ad2813150048e4ec", "term": "前置程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c28d6b65193a88c4", "term": "对外友协", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5f2a3b44139e54e8", "term": "不安全行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f7cface73bc47029", "term": "死刑复核权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a27372c0c57c70c9", "term": "审判程序合法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-84561630efbb898f", "term": "第一顺序继承人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2cb539408ef9fb7e", "term": "犯罪构成要件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-29a8c9ecfba6c6e4", "term": "德沃金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d9c801c39a218d26", "term": "财产保全费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aa8032613111cafe", "term": "执行罚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f1e88fad168747df", "term": "信访制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8cbc46763b98c377", "term": "信息化工作领导小组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4da3a2c63720b41d", "term": "改编作品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-be44fa765e73b1bb", "term": "指导性计划", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c9ae3bcd42541658", "term": "直接承认", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1b1a6ca77e8a6797", "term": "多式联运经营人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-82d60d34650b3a75", "term": "依法登记成立", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-23c8bf39096d3b63", "term": "人民法院组织法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fc81a42770650d7a", "term": "摩尔根", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-778eaefc01edf603", "term": "沈家本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-791c16fc9eff7976", "term": "欠息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-93285a0ec8421f45", "term": "产品质量监督管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-13fa1afb0c8b2b5a", "term": "基层公安机关", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e87dd29eafeaf57f", "term": "能源委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-019e00c7b0abf4d8", "term": "配偶权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c802e061829c1a83", "term": "伪造文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-be7049aefd7ca288", "term": "虚开增值税发票", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2c67dc3504f1724c", "term": "委付", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6fbf9226d26c7e4c", "term": "经济监督", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8a04a377e81c979a", "term": "时效中断", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c6990ea5270848e9", "term": "路政执法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eb1791a77434a599", "term": "房地产权利人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-219f0bc7a942745e", "term": "企业兼并重组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f857db6d07f260fd", "term": "权利范围", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d464ad81006fb103", "term": "强制法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e6ca9f39a3a33226", "term": "国家司法考试大纲", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ad279daba60cbc62", "term": "自己代理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-74d62698a23ed550", "term": "证券委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a97d1b6c37c55312", "term": "死刑缓期执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-82a70cf213581eeb", "term": "非法经营数额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b338f0999e18c625", "term": "理论法学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-baff9ce80334eda0", "term": "中华人民共和国保险法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1437a741f1652290", "term": "职务作品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e75d837094aa09a7", "term": "法律文书写作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b1395be054ad2f25", "term": "第一代独生子女", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0db8aa54cb4efe54", "term": "无责任底薪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cb778af654682738", "term": "河南陆达律师事务所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5bf21b2e008b4514", "term": "国家土地督察制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9884e88ba6579077", "term": "受人民监督", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1a5dee8f7e8fd48f", "term": "父母子女关系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-36c83a8e8dc980a9", "term": "独占权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3ff94620b37bedb5", "term": "刑事被告人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-db4387f56d11eeeb", "term": "权利本位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-94940b4d93baffa2", "term": "完善现代企业制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1f3d0aa06417a17e", "term": "道奇凯领", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d09ccaa70b421944", "term": "中转服务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a0446cba2230234c", "term": "集体合同规定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d09acccf7dbb9a3c", "term": "非法提供", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1da7ad3a9bfe6288", "term": "瑕疵担保", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b7e45227180d1d16", "term": "广播电视设施", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cf114a469e24ad15", "term": "廉租住房保障办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-209260d69716c9c2", "term": "招标拍卖挂牌出让国有土地使用权规定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-485c45c99924462d", "term": "党指挥枪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a2008353f7ca8531", "term": "律师收费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-90e45c108887d8cd", "term": "税收保全措施", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-20f965a1711cf442", "term": "艾滋病防治条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8813b6f90ddfc39c", "term": "各委员会主任", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-373a3c35fcd1e898", "term": "完全知识产权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0869a9e512455538", "term": "土地交易价格", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-be9fcf36a20686a3", "term": "开膛手杰克", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f4b30e06b56ad549", "term": "聚众斗殴罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b08b0cae6ba56b17", "term": "行政强制执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fa12a5cb36dd0401", "term": "犯罪目的", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a471eb550fbc915b", "term": "煤炭法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2f0fa6af4d5d5e34", "term": "夫妻共同债务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-29f6eb3f7a0527d8", "term": "收费公路管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a7b5375511fd0dcb", "term": "规范权力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aa8cb1c7b12c79ab", "term": "保险监管机构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-395a8d4ef6fdd5fd", "term": "中华人民共和国审计法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-53e0766da7e01a79", "term": "伤残就业补助金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0feeb77c56a10e6a", "term": "城建监察", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9dbe66a394be3f33", "term": "渎职侵权犯罪案件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cd20b9b4bcbbfc52", "term": "会计基础工作规范", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-20c0ed3a889283c5", "term": "互相印证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-56dc2c36c6c27141", "term": "复合氨基酸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-44187ac5e1354019", "term": "牵连犯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-595b10074634e5a0", "term": "港口作业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3e700c0864b10022", "term": "生效要件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eab57bc150f45e10", "term": "代位求偿权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0f7790a11963f50f", "term": "世界动物卫生组织", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0df8592be07bbd0c", "term": "医疗广告管理办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4f95a7f85a709c16", "term": "专利权转让", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b8bdc2a02a223f7d", "term": "银行业监督管理法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8c97877eb6e90d9d", "term": "资金汇划", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c0a01dce80de73aa", "term": "教育附加费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ad2752bad882aaef", "term": "法律事件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4aec24b5ba52c1cd", "term": "违章处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4176ad73be8b40ad", "term": "铁路交通事故", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e771f72777682961", "term": "注册公用设备工程师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-964b6207ac85ba0a", "term": "毒品原植物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-93c91f6b6d118a69", "term": "波普尔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7a647f3b72ba2bc9", "term": "欧洲法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bef6262515e24181", "term": "缺席审判", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-29ae81810cbc04d4", "term": "项目可行性报告", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-69c5260d159a053f", "term": "远期信用证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-adcfff822baae66e", "term": "邮政普遍服务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d912d4fb6f6351e2", "term": "偶犯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-54e2af0b740a65fa", "term": "房屋登记办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6fccd0fd62f8553d", "term": "国营公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-03b69446a31811c4", "term": "化学危险物品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2cbb7f20bc9b69be", "term": "中国妇女发展基金会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6d303c241dde4ab7", "term": "遗产分割", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d6aac05435686baa", "term": "尊重社会公德", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-028327a34fea2674", "term": "离婚财产分割", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e75cc5943999bc14", "term": "集体所有制单位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-744e033fe72bb00b", "term": "具体犯罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-95a59c666c9b4235", "term": "止赎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f9ca1e55089072fa", "term": "委托人民法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e14dd577d7a9932c", "term": "经验法则", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-20bd93ec4bddec7c", "term": "土地国有", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a728fe0d3806a4cb", "term": "信息结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1e8c1f1aa1d082e6", "term": "特别权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-af28dc02e6ae1c52", "term": "国家补偿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-751e6dc6b831d7f3", "term": "国家土地管理局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d5ff378b021d41c0", "term": "汶川地震灾后恢复重建条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-da6dae83dddf085f", "term": "商标抢注", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b5a1a7644ee290c8", "term": "违背妇女意志", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f7fa45f9a534341e", "term": "委托代理合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2a37bb7b69e10359", "term": "文件清单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7a08b149b284b19c", "term": "冲突规范", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0a5b43df60d9a32f", "term": "破坏电力设备", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0032b7d3dae5a016", "term": "人民解放军总参谋部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a0f0b3f2c879c683", "term": "招摇撞骗罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-92c9748856a3115a", "term": "间接法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4a865895485b9d74", "term": "企业法人登记管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7f538c581311059e", "term": "供用电合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a2a8127f4a729e58", "term": "退一赔一", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fa560c81a2892db4", "term": "国家经济政策", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-64fca34e3a40812f", "term": "一级谋杀", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6798083b76ed3309", "term": "行政规范性文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-668922c47aa727f2", "term": "业务分类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9fda7d4c3e7404b8", "term": "反渎职侵权局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b7c698691dfc11b9", "term": "安徽华普会计师事务所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0c3f76a6d1f2b1a8", "term": "感谢法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-402557a4c4ff1525", "term": "古埃及法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-76ce828805371aad", "term": "论法律", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a5433a6cae2c4f4f", "term": "新经济增长点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-34e46b5845c27834", "term": "贷款展期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3861b278c6f4a2f2", "term": "加工承揽合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4f68e29c5edc9cce", "term": "转折关头", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2fb2bbb1463b2497", "term": "企业登记代理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e778022a5db4fe41", "term": "轻工业局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7a6332298aefd770", "term": "军事检察院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f646a07e0a3109be", "term": "测绘法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-378c0c21c7839455", "term": "助理审判员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-18f0d7a094aee0d8", "term": "时效制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d4575a73e367f390", "term": "诉前保全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f763ed0322524891", "term": "身故保险金受益人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1a7b0a971b9a6fd1", "term": "国家民族事务委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-04e379384ac80592", "term": "非职务发明", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6f841b26eed40e01", "term": "社会团体登记管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-885089a801c77cd4", "term": "终局裁决", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-037aff845393abe3", "term": "分承包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5ac372ddb11ff268", "term": "典当物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c6a1d98c2cdad0b8", "term": "利息金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e70c0dcaa2602746", "term": "自费出版", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7025936157b1f712", "term": "加大结构调整力度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ae0d137bda54e904", "term": "法院改革", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c29cc7bdcbde0c51", "term": "火灾保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aee194a847b07367", "term": "超越代理权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-19d4f29b906533bd", "term": "性违法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-38d225a35327aa29", "term": "抄袭剽窃", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0b8de746bec1257b", "term": "构建和谐劳动关系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c3832887180352d6", "term": "航空货运代理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aedf4b8fa6b8b354", "term": "价格保护", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ff418ba8274305f9", "term": "商业欺诈行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bc3a4aaf2e4be1fa", "term": "虐待罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-45b39ce2cd366a08", "term": "委托执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5efd5bd4556e4146", "term": "专利文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9ad7cb2f921d326b", "term": "法制日报社", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-083d714eb6109739", "term": "电话计费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-da508436fdcb9378", "term": "乱集资", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-27f28998712fd311", "term": "母法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ec07db84a86d9b21", "term": "风险保证金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6229e09b59065f47", "term": "保护作品完整权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0e544df5739ccf8f", "term": "有效文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1b50cf1b64691d86", "term": "亚硝酸盐中毒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-249be2b93f0c4ec3", "term": "为权利而斗争", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d9b4aba3cca5f134", "term": "重复保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d05134eecb689b69", "term": "国防动员委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b325b3ff87375722", "term": "国家通用语言文字法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a987e84b575f81d2", "term": "承包经营合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-defac6d626e15815", "term": "约定解除", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d6decc67ee87b871", "term": "营业税暂行条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1d8217782ab2abd9", "term": "斯宾诺莎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-df3c88b600266cd0", "term": "专有出版权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fc4655ec951869cf", "term": "时效中止", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e3b9a7857e11a41c", "term": "根本违约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a7c4273dac3d3d7a", "term": "一裁终局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-11d126479575ce62", "term": "加权平均值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-74f83c7ee685adea", "term": "中华人民共和国商业银行法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2b15be39cdd85bf0", "term": "破坏计算机信息系统罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-216802c2aa5210f4", "term": "贷款诈骗罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-60131bdeb57c2551", "term": "品牌安全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d50f60748ec2ced7", "term": "非法同居关系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e8cf7ea5236a1b5e", "term": "市价总值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7aa56ddfd5509145", "term": "行政强制法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6871eb0a9964822c", "term": "提篮桥监狱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-14e2c10fbaabaaa1", "term": "有条件录取", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a3f38e2c2c1b4f4e", "term": "第一审程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b3903ddec31ce44c", "term": "非法行医罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1e3fdb3893e7aa17", "term": "越权行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-672f0f9661bf5abb", "term": "获得报酬权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-62299b1a3e4421f7", "term": "恢复行使主权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-01d9c3f6ac6883a2", "term": "美国红十字会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0496f5d9b2885897", "term": "死刑缓期二年执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d43b1b14eea9d08a", "term": "集成电路布图设计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7d2fded9ad9657da", "term": "事急从权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fd7f32199faa4170", "term": "国家计划生育委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6fc26566b52c6746", "term": "执业登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-096da0ba011ffbbd", "term": "原裁定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-92a92274b5fcca59", "term": "人民币管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-90fe2c68cf2ad842", "term": "国家货币政策", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4676d65ae7158090", "term": "无效行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d26866cd55bbfc5a", "term": "结构调整政策", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eba9578c9630075b", "term": "药品管理法实施条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fa62ec52283487ec", "term": "中华人民共和国水法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-18f20525f527219e", "term": "全部保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ecbb900f2b714857", "term": "司法局副局长", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-871c9c9ebf060b8d", "term": "产供销一体化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0dc5b379a8614b46", "term": "各级人民代表大会和地方各级人民政府组织法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0e1c0723c000a21f", "term": "民用航空法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e31af09ca3990330", "term": "挂失止付", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7a64270078a8a7db", "term": "委托授权书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-50a62e8fbb966b47", "term": "农村合作基金会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e7072dea7d6ccd22", "term": "法官职业化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-428d105dea15101d", "term": "中华人民共和国反垄断法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-08314dd6b8e84392", "term": "国家安全工作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0034caf55a7d6c6d", "term": "危险犯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7333be78df8ef311", "term": "进出口商品检验法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d4b88eeb4f0b4405", "term": "反对官僚主义", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-dc829cc0908c26dd", "term": "告诉才处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3fd70063d5713819", "term": "护肤护发品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5705460ced03b898", "term": "统一会计制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2ccb09d1c32ccd55", "term": "契约型基金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b6bc71fe08d97eaf", "term": "处理恰当", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7784f1bcf83d0bed", "term": "国家结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c79a290cb98297ef", "term": "实行国民待遇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aeaaf6b3a70c0b9e", "term": "强制执行效力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bf12ae695233f203", "term": "国家执业医师资格考试", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c7f717d9e05c462b", "term": "跟单信用证统一惯例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-68d8615e08a529c8", "term": "江西惟民律师事务所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f2429286e0daf751", "term": "体制改革办公室", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fafdc116676b07e9", "term": "服务贸易总协定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-91f9165634724955", "term": "儿童权利公约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3d598a3535191498", "term": "全国绿化委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-51867607df823da0", "term": "共同危险行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c0f8d0fc4f1f8b6e", "term": "产权登记面积", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d7cbd7e67ecc6bf4", "term": "拨改贷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-54c893e983d2c741", "term": "地产权属登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-be40fd943b085d4e", "term": "潜在资源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2c7a1070ce727f08", "term": "全民所有制工业企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1ea224ec6d9bf637", "term": "焦点网谈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4dbeac172eb103d5", "term": "靳如超", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4179bc4c1746214f", "term": "空间权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a512a970173fb11e", "term": "取得后", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-01288614eef9e7b3", "term": "许诺销售", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a41e06c96a047cc6", "term": "职能转换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-98bbfd6961ab66b6", "term": "未成年罪犯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cff8217f2d61bd56", "term": "国家法官学院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-50cecd9d70d7892c", "term": "兼职收入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-50f6383f64ea12b9", "term": "土地管理法实施条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4db95a8248965c63", "term": "中华人民共和国民办教育促进法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d5bc31fe3e1640c3", "term": "完全行为能力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-84200e286c6f0b86", "term": "奥林匹克标志保护条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5fdefa046699ba57", "term": "漂流物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-21400ce8d40ffff0", "term": "信息披露规则", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aa2cda78383edfa3", "term": "价值理性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3a932f32ff56f781", "term": "无行为能力人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4e53364b8ec941dc", "term": "工业产权巴黎公约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f32a795a67cc5167", "term": "物权效力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1ec8aa7bf07e3ea9", "term": "农村承包经营户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-676e592938bc7cce", "term": "保护工业产权巴黎公约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e579459766a89e07", "term": "个人独资企业法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-11a16c11e87d3ef8", "term": "全进全出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-96a1d0dd0257eaf4", "term": "风暴眼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bef43963feb56e10", "term": "粮食流通监督检查", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8bf6beca8f08470f", "term": "自救行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1a4397b6452f417e", "term": "烟草专卖法律法规", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4e942e0c21157e54", "term": "永久居住权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-85b2566f78f9df1b", "term": "专项应急预案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-15f45c1f7269d5ce", "term": "应当从重处罚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3ea9c04ef5b3895b", "term": "有限责任合伙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-afa7d56a2f5adf18", "term": "社会保险费征缴暂行条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0ea5392c91606fdd", "term": "违法行政行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c1b4204708395cce", "term": "成员权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ed40291a88e4529a", "term": "机动车第三者责任保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2b9c7943d0519469", "term": "法律移植", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cae4e8977e6c2573", "term": "中国残疾人福利基金会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b7c388d98c3496ad", "term": "治安联防队员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-df757408066f2f74", "term": "澳门特别行政区基本法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c3e8fa61a2733913", "term": "直接调控", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b9b0905ceae12ab5", "term": "扣船", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b9ecbaaf83501f6d", "term": "沿海运输", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b9d193962ac62f4c", "term": "指定代理人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5d438d3768a20353", "term": "版权转让", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-094caae6dc6d1544", "term": "个人代理人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-481df67196b5c74b", "term": "代位权诉讼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7749d7b39ef62be4", "term": "国家核安全局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0cafdd873bc9658a", "term": "瑕疵担保责任", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-df62e30f6ec18b44", "term": "信号失真", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aaed299979a9c5fe", "term": "不告不理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-003e9bec95c2d100", "term": "一般违法行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-83e01eedbee3f88a", "term": "航空货运单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2e18ca61978920d6", "term": "遗嘱执行人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-306f67bd1bfdce18", "term": "债权行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-220ccf52102b6cea", "term": "诉讼费用交纳办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e5b76dff9ad46eb2", "term": "边复习", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f16ad419ab6f6249", "term": "陈光中", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-783c74cea336c9fd", "term": "权利瑕疵", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f40a52035015fa4b", "term": "人大代表议案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-53a87c385cff232e", "term": "机械工业局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1a63ba48d2103936", "term": "房地产权登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3fdc45565c1cfceb", "term": "一致表决", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-88e8b84fc6e541b6", "term": "社保政策", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e138318297aeb842", "term": "现场笔录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-de655039ac446643", "term": "医疗服务合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fb08dd760814c261", "term": "轻工总会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6885e5ff1759f047", "term": "财产保险合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-005a30bac6d8e173", "term": "事业单位法人证书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-562d8ad6936ba66b", "term": "自愿辞职", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0e9daf3a79a01034", "term": "巨灾保险制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d7ef941bb23977d5", "term": "法院地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c53a785e2ce628d1", "term": "土地增值税暂行条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-88e4c99ec4eddb86", "term": "现收现付制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-971c62b530390807", "term": "不作为犯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f62a6f23de4f1c48", "term": "同时履行抗辩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9e34f300c3105293", "term": "非法持有毒品罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4e4c0219cb093501", "term": "特种设备安全监察条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f193f3867c72cb9b", "term": "专利合作条约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1d031ea1d868e924", "term": "医疗器械监督管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9979a90e5593c46c", "term": "国家出入境检验检疫局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5f1b2eec829f55dc", "term": "比较法研究", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e714fc94b13b7d6b", "term": "保单现金价值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f2b3671ad2e05f61", "term": "全员聘用制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-03e1a23f853c69ea", "term": "铁路运输中级法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f0d85a21c9722c69", "term": "假冒注册商标罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-85483397dbf3fce3", "term": "文化全球化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bddeb0781405d81b", "term": "会计法律制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3b28accc354361c6", "term": "中华人民共和国森林法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ba0ada9146ef22a0", "term": "法定孳息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0067b0fd10b63ef4", "term": "中华人民共和国妇女权益保障法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-34f5171fe5d54d7c", "term": "综合管理类职位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4c79aaa2dd81dc30", "term": "股份合作企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-680924462501eda0", "term": "超越法定职权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8168cf3bbab372f4", "term": "事业单位工资制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f637e5118defe6b1", "term": "刑法志", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cb42a0cc2cc30754", "term": "陆岩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b1849a143599f891", "term": "收购单位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-447101bef2a23a2d", "term": "四个一批", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-09ce2429d0df7f48", "term": "委托招标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bb0ccd1749fdf671", "term": "第一顺位继承人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a301b708039dd842", "term": "杀婴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-546a6355cfcf91ee", "term": "日落复审", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7e5a8c4ca4544efe", "term": "农业承包合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4da8b2dd2973642b", "term": "刑事裁定书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f7b78e1fe49c0805", "term": "女职工劳动保护规定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-315c8aee3e803c78", "term": "高速公路通行费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f63ef772e50de904", "term": "民用建筑节能条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7bf851c5d0413c88", "term": "增加农业投入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-965e4db68fb704f6", "term": "洛迦诺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aa4139359adf2543", "term": "现货交割", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b24db56d132d0b15", "term": "国家基本药物目录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ef514225cd4ae05e", "term": "一审裁定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1d0b3b1589e088a5", "term": "教育收费公示制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-36d3163eb1aa3e67", "term": "医疗过失行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c8cb0c1036f68bd8", "term": "代为清偿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-372cebad1890c31b", "term": "伪造现场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a60b5a61fc969bc0", "term": "总登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8f45cfc97f6c25f7", "term": "渎职案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7f1e14d11b43cfb2", "term": "佘祥林案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c403fd063a4cb862", "term": "沃尔芬森", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ce13b8d613699a9c", "term": "签订日期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9ea867e22317b1f3", "term": "被裁定为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5e5b6a5091c07dbb", "term": "双方自愿离婚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-439f77da2fc0cf48", "term": "执行费用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-05266ef7dbb888fd", "term": "特许经营管理办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b6dd3032719cc77b", "term": "缘坐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6df6f08b8d4e783f", "term": "权责统一", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1dc68a4991ac14cb", "term": "注册商标权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bc731e0d5fcb75f0", "term": "国家能源委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b7941abc6d0a20d8", "term": "临时存储粮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-306223dcbd7b213c", "term": "空防安全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b23de7a8e4a52852", "term": "城市合作银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-410c787295fdf0a5", "term": "免予处分", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f1f599492724dd8f", "term": "农村发展研究中心", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-462d7004830bc827", "term": "营利目的", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-14d86bfd8729e57e", "term": "土地产权制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9c387b6fac1c2677", "term": "农药残留物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8c499a988e4ebf69", "term": "叶波", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c4f480875acb5dd3", "term": "人民代表大会主席团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c54ef39c8c091292", "term": "复员费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7158f5ae58578604", "term": "公司债券发行试点办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b0d62656102316ba", "term": "涉枪犯罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f776e4dca57d916e", "term": "编辑权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f28d015f4e452434", "term": "经营保险业务许可证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-01d15655be69f8db", "term": "中国刑事警察", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-da632e66e6888225", "term": "产权登记证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b5d0e7bc84440972", "term": "国家公证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ec6df988be378c29", "term": "行为犯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-941ed4037f5f454c", "term": "影子价格", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-96f99d9842a5dc15", "term": "枪支管理法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aee830f96a139ea7", "term": "企业名称权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a6dd40e452951c2b", "term": "保险公估人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d95a29db9df11cdf", "term": "赵秉志", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-15b429ef339b239d", "term": "军人抚恤优待条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f5dc293295348b0f", "term": "抵押权登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c77b03a8e29a5c08", "term": "营业性演出管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d8325dd64a78a7b1", "term": "企业债券管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7b126f1cede54148", "term": "中国发明协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f33f7c91b174c097", "term": "虚开增值税专用发票罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-87bcb4fc30caabfd", "term": "产品责任保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-02109fe91ad08166", "term": "作品登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-930e21753eeb9f04", "term": "同住人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3d4057d9ca33bd8b", "term": "执行死刑命令", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-227c7a5a75694f59", "term": "标书翻译", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-968cc400c3136d31", "term": "奸淫幼女罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-50f8da1d0b2c95a8", "term": "建筑业企业资质证书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-021cc81c4f29fdef", "term": "预算级次", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-34383dd1afb276c6", "term": "铁路法院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-aa1df2a084ef343e", "term": "行政诉讼受案范围", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-587b26a1427fe931", "term": "安全生产许可证条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-82f5569a6807bd5b", "term": "新台州律师事务所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5a60def5b50b8cb0", "term": "铁路运输检察院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ca50fa2d89be18c0", "term": "全要素生产率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1327590a636da2fd", "term": "产品设计图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d268b64851a27e62", "term": "国家恐怖主义", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-67a64f29c9ad8844", "term": "仓单持有人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6cbfc0719e22d111", "term": "平等就业权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e9299b0980cbbf07", "term": "诉讼标的额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d20ffc281bfd16bc", "term": "中华人民共和国农业部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5d5d037e82bbef3b", "term": "兽药管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b66e7a1f73ee177c", "term": "中华法系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6aac0bef43a688bc", "term": "企业维持", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a34a09032cc88f97", "term": "厦门大学法学院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1cfecc62e028003c", "term": "国家突发公共事件总体应急预案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0fda1b0794d24cc1", "term": "反贪污贿赂局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-06614df1ac216fa4", "term": "指定仲裁员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f6de7118ebd46208", "term": "缺乏后劲", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-07e872ba26129c70", "term": "中华人民共和国地方各级人民代表大会和地方各级人民政府组织法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-acc5074d2f18e910", "term": "经济技术合作协定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-02961030daee482f", "term": "无权占有", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7d4d1275bf60fbc5", "term": "诈伪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a4efac08e0a332e0", "term": "彩票发行与销售管理暂行规定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-76908b932d7cd165", "term": "农村新型合作医疗制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0405e1b6d5496efb", "term": "恶意占有", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-27701a3d820802f5", "term": "全员劳动合同制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9833345cd652f976", "term": "为政以德", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-16398db61dd54a0b", "term": "没收非法财物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bb5622d42934c06b", "term": "金钱赔偿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4f7f2fdb6f28f019", "term": "污水综合排放标准", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e8963de37d92fe70", "term": "专利保护范围", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4404eed2cfc42f75", "term": "独占许可", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c40e2793ca8b58f1", "term": "转业费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-58265f55d8e778b7", "term": "非法猎捕", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4a5371d67754b318", "term": "兴安证券投资基金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a02d2f1cb0776cc6", "term": "办理存款业务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9e64ab95af00b7ec", "term": "法官职业道德", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-66cce133ac50a7e8", "term": "仓储合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f28b4c31f749c73e", "term": "加强劳动保护", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ff3d2a73b393e8f7", "term": "收监执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a3f6a4ef2b1d377d", "term": "风景名胜区条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9666e4ef6049c0ce", "term": "委托创作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c8537d90972354f0", "term": "中国普法网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-f5a3d3e36b488dd9", "term": "死亡营", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fc93dcab1fd417be", "term": "网络安全法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6d13450f75145336", "term": "无效民事行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6a0e8de753980b5e", "term": "医疗事故赔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7961fa1166dd1d0f", "term": "从属权利要求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4a4a759a2b050d7c", "term": "短期融资券管理办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3a86a954163a48da", "term": "中华人民共和国进出口商品检验法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7e95b776c40c6fc3", "term": "委托拆迁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6218d155b5afeda9", "term": "私营工商业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-01e800ef221a7794", "term": "司法院校", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a47325b1170b726d", "term": "土地储备管理办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ad5d386d144f13dd", "term": "药品广告审查办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1cafe5c5a18f462e", "term": "中英联合声明", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e497cba0086fafb5", "term": "药事管理与法规", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2d76ee54c3e49ddd", "term": "雅尔塔协定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7ce4b526c89fcd98", "term": "泄露内幕信息罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cbbad8ef9daf6f27", "term": "价格指标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2c23d778ab2bf2d1", "term": "审查案件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eefde8033195c17d", "term": "安全检查员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d4e0c5fa3204bacd", "term": "中华人民共和国人口与计划生育法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2787c3f87c643da4", "term": "工业企业法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1ddb658a94e0f9d0", "term": "诉讼参加人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d2a0dcb3570d9b80", "term": "金融机构反洗钱规定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0ea7536dfffb0f52", "term": "联合兼并", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-33da204ae2f69f27", "term": "兵器工业总公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b5caae84b96411e2", "term": "福利分房制度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6dd427e3b326d379", "term": "军委总政治部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-120460c676669915", "term": "审计案例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0489d2323f728f2a", "term": "证券交易清算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-44d4f883f09c80b1", "term": "中华人民共和国道路运输条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7c99310e4ebb89e9", "term": "效力终止", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1bdb70efe32bde77", "term": "中华人民共和国公司登记管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6c407f1246ceb024", "term": "政治协商会议章程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d52809628a6db6a6", "term": "产权分割", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cb61ad98211f9dd2", "term": "身份证重号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-71895ab6c2c65c78", "term": "实体法律", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5f0d7204222c50df", "term": "森林砍伐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-859f329d0cb0a1a9", "term": "结构失调", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9c96d37d5e0c3ba6", "term": "国家自然灾害救助应急预案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-b8d638418c803749", "term": "人体器官移植条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-339c2311b342b1fe", "term": "诉讼时效中止", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-653960b79cdf230f", "term": "中华人民共和国兵役法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-068caa775f0e00e3", "term": "侵占行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5c900cef4ac8f8e1", "term": "中国人民政治协商会议章程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-3d05427b053fc43d", "term": "恢复性司法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-539d4340816265da", "term": "事业单位收入分配制度改革", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-cb496a871985d3d9", "term": "许可证协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-8e51e52730fadd04", "term": "医院评审", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e94774253b2749d1", "term": "红十字会法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bb775dc52a1af610", "term": "权利质权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-060f87989e74fb13", "term": "送达回执", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-6d220417a0063ec7", "term": "遗产管理人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-e16d3f97dedbfb86", "term": "商事代理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-760bb967e9b020cc", "term": "交叉补贴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-78907e0c660d4caf", "term": "发遣", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-79fa3571a5c38213", "term": "最高人民法院公报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-97f6e0ef6c948777", "term": "增值税纳税人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bf80389c03e43083", "term": "乡村规划", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2a1b94492e1e00f7", "term": "侵犯财产罪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7ff6ad27d16745a6", "term": "履行不能", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ba8967096fe2e591", "term": "盲人协会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-23d858e876cf3e25", "term": "授信合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ec30ca5687f9264b", "term": "机要文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5f5cfdc4814e883c", "term": "科研不端行为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-951018044620f052", "term": "遗产继承权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-874508d616ccd1c8", "term": "证券监督委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d322113add637827", "term": "以出顶进", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4d7dd112a825e326", "term": "行为地法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-942ce24964d1fd6a", "term": "环境与资源保护法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fcca85e5fbb83710", "term": "退回补充侦查", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-7c81cb4790b91101", "term": "魔鬼岛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5630cf161015bd13", "term": "直接占有", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5e22938890080fbb", "term": "同业竞争关系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-97f00fbf1388211c", "term": "委员制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fea75973e574922c", "term": "指定辩护人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-89c2d4b0daa489fb", "term": "志愿兵役制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4bb23dbba0e58550", "term": "国有股东转让所持上市公司股份管理暂行办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-566ca3c3df70d4c1", "term": "联合国国际货物销售合同公约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-a460512cf2b26cab", "term": "空床费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-64cdcfdb333e61ae", "term": "对偶婚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c90c823c54baf802", "term": "专业技术职务聘任制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4c2b930b5edc18ba", "term": "达鲁花赤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-db50539d108eebef", "term": "委托拍卖合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d6a2498625e7eaa5", "term": "登记国", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-c3b81e7db5aea3e5", "term": "危险单位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ebe5b7bffae70756", "term": "归侨侨眷权益保护法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-ef6bb5c1d9b0f487", "term": "城北派出所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-bf1aab56364e675f", "term": "中华人民共和国经济合同法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0ecb0e550cd32c12", "term": "前南斯拉夫问题国际刑事法庭", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-fa3e8b49e57da013", "term": "中华人民共和国固体废物污染环境防治法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-004e9e07c37c0c5c", "term": "企业劳动争议处理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-154f1c33e7e2c55d", "term": "房屋产权单位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-74f787b419f71065", "term": "激情犯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1961dd02688636fb", "term": "录音制作者权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1e118214559c6a1d", "term": "推定全损", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4c21fa322a034fb0", "term": "导游人员管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-515235eb5e3679ae", "term": "诈保", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-9429f81ae6c84afd", "term": "公室告", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-0602a45ce4def6dc", "term": "技术密集型产品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-26dca0eca8b28828", "term": "创新发展之路", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-12a9979afe2104f3", "term": "他项权利登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1d29fdeb64d882b4", "term": "宏观调控法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-2981bdd158625180", "term": "对外承包工程商会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-1fa9d5103e66c10a", "term": "争论点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d4228574a0bce4c1", "term": "名优标志", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-d76f492e4cd08e59", "term": "国家科学技术委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-eb2dfcbdbfb2462a", "term": "保险公司治理结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-4f12503587fe854c", "term": "中华人民共和国可再生能源法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-legal-5efc7f42f87e53c0", "term": "城旦", "aliases": [], "corrections": [], "category": "thuocl-common"} ] }, { "id": "finance", - "version": "finance-zh-v1", + "version": "2026.09.24-v2", "locale": "zh-CN", - "reviewStatus": "project-seed-needs-domain-review", + "reviewStatus": "curated-and-imported-needs-domain-review", "sourceIDs": [ "mof-accounting-standard-22", "mof-accounting-standard-37", - "mof-accounting-standard-39" + "mof-accounting-standard-39", + "thuocl-finance" ], "terms": [ - {"id":"finance-balance-sheet","term":"资产负债表","aliases":[],"corrections":["资产付债表"],"category":"accounting"}, - {"id":"finance-income-statement","term":"利润表","aliases":[],"corrections":[],"category":"accounting"}, - {"id":"finance-cash-flow","term":"现金流量表","aliases":[],"corrections":["现金刘量表"],"category":"accounting"}, - {"id":"finance-equity","term":"所有者权益","aliases":[],"corrections":[],"category":"accounting"}, - {"id":"finance-receivables","term":"应收账款","aliases":[],"corrections":["应收帐款"],"category":"accounting"}, - {"id":"finance-bad-debt","term":"坏账准备","aliases":[],"corrections":["怀账准备"],"category":"accounting"}, - {"id":"finance-fair-value","term":"公允价值","aliases":[],"corrections":["公允许价"],"category":"valuation"}, - {"id":"finance-amortized-cost","term":"摊余成本","aliases":[],"corrections":["滩余成本"],"category":"valuation"}, - {"id":"finance-effective-interest","term":"实际利率法","aliases":[],"corrections":[],"category":"accounting"}, - {"id":"finance-impairment","term":"资产减值","aliases":[],"corrections":[],"category":"accounting"}, - {"id":"finance-deferred-tax","term":"递延所得税","aliases":[],"corrections":["递延所的税"],"category":"tax"}, - {"id":"finance-wacc","term":"加权平均资本成本","aliases":["WACC"],"corrections":["加权平军资本成本"],"category":"corporate-finance"}, - {"id":"finance-irr","term":"内部收益率","aliases":["IRR"],"corrections":["内部收意率"],"category":"corporate-finance"}, - {"id":"finance-npv","term":"净现值","aliases":["NPV"],"corrections":[],"category":"corporate-finance"}, - {"id":"finance-pe","term":"市盈率","aliases":["P/E"],"corrections":[],"category":"valuation"}, - {"id":"finance-pb","term":"市净率","aliases":["P/B"],"corrections":[],"category":"valuation"}, - {"id":"finance-capital-adequacy","term":"资本充足率","aliases":[],"corrections":[],"category":"banking"}, - {"id":"finance-npl","term":"不良贷款率","aliases":[],"corrections":[],"category":"banking"}, - {"id":"finance-lcr","term":"流动性覆盖率","aliases":["LCR"],"corrections":["流动性复盖率"],"category":"banking"}, - {"id":"finance-leverage","term":"杠杆率","aliases":[],"corrections":[],"category":"risk"}, - {"id":"finance-qe","term":"量化宽松","aliases":[],"corrections":[],"category":"monetary-policy"}, - {"id":"finance-open-market","term":"公开市场操作","aliases":[],"corrections":[],"category":"monetary-policy"}, - {"id":"finance-reverse-repo","term":"逆回购","aliases":[],"corrections":["逆回够"],"category":"money-market"}, - {"id":"finance-repo","term":"回购协议","aliases":[],"corrections":[],"category":"money-market"}, - {"id":"finance-credit-spread","term":"信用利差","aliases":[],"corrections":["信用力差"],"category":"fixed-income"}, - {"id":"finance-duration","term":"久期","aliases":[],"corrections":[],"category":"fixed-income"}, - {"id":"finance-convexity","term":"凸性","aliases":[],"corrections":[],"category":"fixed-income"}, - {"id":"finance-hedging","term":"套期保值","aliases":[],"corrections":["套期保直"],"category":"risk"}, - {"id":"finance-fv-change","term":"公允价值变动损益","aliases":[],"corrections":[],"category":"accounting"}, - {"id":"finance-oci","term":"其他综合收益","aliases":[],"corrections":[],"category":"accounting"} + {"id": "finance-balance-sheet", "term": "资产负债表", "aliases": [], "corrections": ["资产付债表"], "category": "accounting"}, + {"id": "finance-income-statement", "term": "利润表", "aliases": [], "corrections": [], "category": "accounting"}, + {"id": "finance-cash-flow", "term": "现金流量表", "aliases": [], "corrections": ["现金刘量表"], "category": "accounting"}, + {"id": "finance-equity", "term": "所有者权益", "aliases": [], "corrections": [], "category": "accounting"}, + {"id": "finance-receivables", "term": "应收账款", "aliases": [], "corrections": ["应收帐款"], "category": "accounting"}, + {"id": "finance-bad-debt", "term": "坏账准备", "aliases": [], "corrections": ["怀账准备"], "category": "accounting"}, + {"id": "finance-fair-value", "term": "公允价值", "aliases": [], "corrections": ["公允许价"], "category": "valuation"}, + {"id": "finance-amortized-cost", "term": "摊余成本", "aliases": [], "corrections": ["滩余成本"], "category": "valuation"}, + {"id": "finance-effective-interest", "term": "实际利率法", "aliases": [], "corrections": [], "category": "accounting"}, + {"id": "finance-impairment", "term": "资产减值", "aliases": [], "corrections": [], "category": "accounting"}, + {"id": "finance-deferred-tax", "term": "递延所得税", "aliases": [], "corrections": ["递延所的税"], "category": "tax"}, + {"id": "finance-wacc", "term": "加权平均资本成本", "aliases": ["WACC"], "corrections": ["加权平军资本成本"], "category": "corporate-finance"}, + {"id": "finance-irr", "term": "内部收益率", "aliases": ["IRR"], "corrections": ["内部收意率"], "category": "corporate-finance"}, + {"id": "finance-npv", "term": "净现值", "aliases": ["NPV"], "corrections": [], "category": "corporate-finance"}, + {"id": "finance-pe", "term": "市盈率", "aliases": ["P/E"], "corrections": [], "category": "valuation"}, + {"id": "finance-pb", "term": "市净率", "aliases": ["P/B"], "corrections": [], "category": "valuation"}, + {"id": "finance-capital-adequacy", "term": "资本充足率", "aliases": [], "corrections": [], "category": "banking"}, + {"id": "finance-npl", "term": "不良贷款率", "aliases": [], "corrections": [], "category": "banking"}, + {"id": "finance-lcr", "term": "流动性覆盖率", "aliases": ["LCR"], "corrections": ["流动性复盖率"], "category": "banking"}, + {"id": "finance-leverage", "term": "杠杆率", "aliases": [], "corrections": [], "category": "risk"}, + {"id": "finance-qe", "term": "量化宽松", "aliases": [], "corrections": [], "category": "monetary-policy"}, + {"id": "finance-open-market", "term": "公开市场操作", "aliases": [], "corrections": [], "category": "monetary-policy"}, + {"id": "finance-reverse-repo", "term": "逆回购", "aliases": [], "corrections": ["逆回够"], "category": "money-market"}, + {"id": "finance-repo", "term": "回购协议", "aliases": [], "corrections": [], "category": "money-market"}, + {"id": "finance-credit-spread", "term": "信用利差", "aliases": [], "corrections": ["信用力差"], "category": "fixed-income"}, + {"id": "finance-duration", "term": "久期", "aliases": [], "corrections": [], "category": "fixed-income"}, + {"id": "finance-convexity", "term": "凸性", "aliases": [], "corrections": [], "category": "fixed-income"}, + {"id": "finance-hedging", "term": "套期保值", "aliases": [], "corrections": ["套期保直"], "category": "risk"}, + {"id": "finance-fv-change", "term": "公允价值变动损益", "aliases": [], "corrections": [], "category": "accounting"}, + {"id": "finance-oci", "term": "其他综合收益", "aliases": [], "corrections": [], "category": "accounting"}, + {"id": "thuocl-finance-1f4d721b63588760", "term": "发展", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f128cdf1dae21223", "term": "部门", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c492716d7fe4e4eb", "term": "政府", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6ccc7bdbacf94018", "term": "经济", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ec309ab207ef7fa3", "term": "服务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e06ff957ed48e868", "term": "公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-11dd7ef8a80d512f", "term": "实现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9c1e8bd22488de3b", "term": "市场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6849b8254d20c4ab", "term": "评论", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d93373f81363e3cc", "term": "支持", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4b8c5d61d15566c0", "term": "机构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5c5374dd958bcb79", "term": "能力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-daa6d02a55bc3de9", "term": "资源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0f6b1949b093e352", "term": "计划", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5b50d7c4b5950dc5", "term": "系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7e564575eb7d5eb2", "term": "分享", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aea82737cc01867d", "term": "产品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-97b31b5d63f57e51", "term": "网络", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8c51a6bcd64b3071", "term": "提升", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1e8ddd10bafe5127", "term": "报告", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f9c774b8606ffc18", "term": "产业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-32c8d373afe08328", "term": "执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-20333b8655f19dee", "term": "行业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-128a7a03668b3cb1", "term": "需求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f65c42a2540befe5", "term": "调整", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6f949ac3522d3ba5", "term": "方案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-43c835c56a280f27", "term": "委员会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-08c91ea0c0b231e2", "term": "集团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a6782b9cf3b662f0", "term": "利益", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f2e4a94a43e9d26c", "term": "主席", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-115ebd08743330a9", "term": "经营", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-89abe8c6ac131464", "term": "统计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cc729807c422ea8b", "term": "时代", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-905ff5c46dd1448a", "term": "力度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-117d8f914d8e21a1", "term": "收入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-75bbd0d1d3ba4827", "term": "生态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cc6f86bd41a680f6", "term": "购买", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-558d9951283ea1e2", "term": "机会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1c8b6dc646229946", "term": "近年来", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-42639e47c4118ae9", "term": "推出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-77da74c121840525", "term": "规范", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-93b7b18837aa58f5", "term": "价值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a22144d42e68f71b", "term": "国务院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-143ba66c30fd247c", "term": "有限公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a42315e416fa2550", "term": "金融", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-328ae9a994c5535b", "term": "出台", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5e29d121dda011c5", "term": "数量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-920e88c5a602df57", "term": "银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1af7dfd65c353cfc", "term": "民生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7fe8603c084eb991", "term": "费用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-73b90324bcab9f5a", "term": "近期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-af75e78cac28095f", "term": "风险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8584d87ed23331df", "term": "设立", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0c04098e48aba497", "term": "通道", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ab2f31f30acf7fda", "term": "协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e2795d0547cb684e", "term": "创造", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dfd9daf043cf6645", "term": "强化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ed31fbb483ee1b0a", "term": "操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-94996ca6223321c1", "term": "升级", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-80716311485ac4f9", "term": "消费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-57ec946e84bf8753", "term": "救援", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b1c05328552e878a", "term": "商业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f69c325544a29bfe", "term": "财政", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dcdd3b5c450b3787", "term": "美元", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-26bf74014a4f5fa6", "term": "损失", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8b9a36a968cd1890", "term": "律师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-58aa6825b704d328", "term": "优惠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1452deafc6d96546", "term": "推荐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-61191b616cdbf6e3", "term": "突破", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8497b8b554e83310", "term": "年度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-96c7394bcf3d577a", "term": "治理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c4fb62202bad55cf", "term": "注册", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1d0fd5f9336d9103", "term": "标签", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8cbe697b157364a5", "term": "批准", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0e97960761827eb4", "term": "开通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-13a33ae5bd1ea1b3", "term": "上升", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c35ffb529d5d4bac", "term": "渠道", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bcd6771e08ec7cc7", "term": "查询", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-919ddbbd91c0c5c9", "term": "交易", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5d3ba34cc66cea45", "term": "支付", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f7dae40499467b34", "term": "达成", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a2335f3879b766e8", "term": "承诺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-da14d8f7500f7e61", "term": "淘宝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9774e4f590d19ee2", "term": "环保", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3cf1e4dc9adcb858", "term": "登记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7855e5e9727ea5b7", "term": "博客", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9b59e637c83810ab", "term": "趋势", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-148d195e21b05db5", "term": "配置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-909f281e0537b0d8", "term": "论坛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1d6890d8609e0836", "term": "违规", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ffc624300de8f2e1", "term": "金额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2dbc8f1d738a0308", "term": "调研", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6a5347ac5f65e5be", "term": "机场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e57d3dc19d8344d4", "term": "低于", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-58fdb0941f368f2b", "term": "商品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-26a59f85b3eb5fc4", "term": "贸易", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-11547412b4531891", "term": "工资", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9196f0338a8d16d7", "term": "能源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b87e67c7dae03991", "term": "指标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1d091c1fefbadaf4", "term": "评估", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f0ca6e47a6af96bb", "term": "保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7016090059bdfab9", "term": "出口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-498e1d59b4d787ee", "term": "退出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-afe3d9dc7f20e8d0", "term": "财产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-395f735c3a5da934", "term": "专题", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2fb98c4cc43436e4", "term": "总经理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3149099fb52994c5", "term": "环球", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-06c891807ee3feec", "term": "合同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cb086d66cd715fa8", "term": "研发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7ce207856799903f", "term": "财经", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5304a679d7a0df04", "term": "上涨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aed206432c88e560", "term": "超标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3c2fe589fbfd59af", "term": "董事长", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bdbf6d05f7bae9ab", "term": "考核", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fc2d24d318e13d1a", "term": "补贴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e44976409a5d2b75", "term": "计算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-118f18e6840546c1", "term": "现金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0a973ef2c9ef4d9e", "term": "房地产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-64f04e9b1dbad452", "term": "上市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-59831fc48b368a54", "term": "资本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f87e87c10ad84beb", "term": "贷款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5f45bb826b168fde", "term": "资产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dbd38c6621249800", "term": "行情", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fc135337a267b9fd", "term": "分配", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a995da46b49b41ad", "term": "理财", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-819ed55cb7159b1c", "term": "投诉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c8cdcb6926a83554", "term": "预期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f9ef695d7706e079", "term": "信号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9093b5730cc89242", "term": "委托", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-710d79db01265954", "term": "红包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b3de7a4ce9118098", "term": "鉴定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8159441337783e38", "term": "当事人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d2c8576739e011e1", "term": "经理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6603e144bd1eded2", "term": "案例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bd8dbd5724735390", "term": "预算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-62e6c7d15711e6fb", "term": "起诉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eae0efe236c3fe68", "term": "客服", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-177e014218da9b97", "term": "特权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cd32c125ff018bf8", "term": "预测", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a34855b6f68e8d1f", "term": "差距", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eb21048d1ac543c3", "term": "态势", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-86f3454f9939c574", "term": "高层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-514e5df21b748fda", "term": "进口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f319bfb3372aa61e", "term": "浮动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-62cf3dd71c9a7a8a", "term": "前景", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-12b0c8b376b8375e", "term": "微软", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ac90919071a74a7c", "term": "总额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5cf1b15d05de0ae4", "term": "披露", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-09e3fe44735f55de", "term": "座谈会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-86df9b5b13baec22", "term": "利润", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-de2ea81ac37ef588", "term": "竞价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e679096865859f36", "term": "支出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-704eff7cacf2140e", "term": "竞争力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bac9adc1df9582bf", "term": "融资", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b28c4dbf42951064", "term": "繁荣", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-948c5c16d8fec64d", "term": "审核", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-60ab628d1ccd74dc", "term": "股份", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-168fe36e36bda031", "term": "收取", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0d98ffa2cf7ba5d5", "term": "初始", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-754cd05217e9a89c", "term": "指数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c1b8b7b0f5f9c3f5", "term": "效应", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-205cab965d5e561a", "term": "福利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f2286fa997d3e4e1", "term": "补偿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3b84c6d3fe51b83f", "term": "潜力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1bb101294fbd852f", "term": "短期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4f1c54f507c95009", "term": "季度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1c3ce1a2ff9d3677", "term": "品种", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3d9d02e83d396eb7", "term": "级别", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ec01a9a0dc0406e6", "term": "幅度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-75c59b86251bed2b", "term": "出售", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bbb72f61f1175160", "term": "黄金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f4267b1d4e33736b", "term": "产权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-59f0bf47752294f4", "term": "期限", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2c79f934233fce83", "term": "收益", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9da987f91dddbdd0", "term": "营销", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9dc4e73ea671c241", "term": "商务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8610e9b28806423c", "term": "财富", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-262019ede6939980", "term": "顾客", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a2a41a1d7535ba10", "term": "发行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-506c068a2a1eb95a", "term": "财务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-061246bd31e084a7", "term": "账户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-524d46392b24b0b7", "term": "投资者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cefe31e5adf35613", "term": "受损", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7da95c1b97bba03f", "term": "缴纳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-653e331c54b9563e", "term": "税收", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f1f9df275ef1a9a6", "term": "主管部门", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-04ee13cd1dc5602b", "term": "货币", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fb2f4efd84e7f43c", "term": "研究员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f80725d74a1996bf", "term": "基金会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-29aa77a437e737b6", "term": "百分点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-80db8b4017916cbc", "term": "物业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f3e96840c16be008", "term": "特区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3377171738070045", "term": "等级", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-70d0c1b33626ba4b", "term": "日期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-88fc297c9636b8b3", "term": "企业家", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-095b45ce7df514df", "term": "债务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e183d02bcb547838", "term": "比重", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-581fd5c1e7cd8394", "term": "崛起", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5e84ea61e8386af7", "term": "代理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c22b7bf2bf6a7600", "term": "调控", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8ae30d2e01b7541a", "term": "协同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c438ecc16d115890", "term": "业绩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-610569f8ad5808d4", "term": "本土", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e32f993f32b9fbf7", "term": "农产品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6fc82cbf96fbc47b", "term": "数额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-36b3764d702dc059", "term": "收购", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c0176fd0855a8880", "term": "租赁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7bb6e8ad442f9046", "term": "储备", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7c50a97b07a1ae0b", "term": "查获", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ce3df931927bd92f", "term": "组合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e9bf2c2feae418ae", "term": "周期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-be20cdbca6a26d17", "term": "着手", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8d48a4ba3f56f374", "term": "通讯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-822e82318b51e45d", "term": "证券", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-610ddd300b7933ca", "term": "恶化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-edc4eb15573c056e", "term": "友谊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-756122ee6296b544", "term": "责任人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0bffc4f4f5671585", "term": "正规", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8e838a4f9733c99f", "term": "国际化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4f50e4a166eb0faf", "term": "流通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c322068b7b5c3815", "term": "奖金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2382f6251a01598e", "term": "供给", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-88199b8640dfd2c5", "term": "财政部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e385e5596087b810", "term": "信用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-71942f7519d589a1", "term": "备案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-47bdb78b94e439f4", "term": "捐款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5be5e24a05937b55", "term": "挂牌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-346a1da338897f8c", "term": "筹备", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fb8054e349c19198", "term": "下滑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-692c48b73e2df69a", "term": "上月", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-03b29af78a651224", "term": "开发区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-302b2fd08c97fcb1", "term": "赚钱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d300aabfc84d1617", "term": "个体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f0342554f119d53d", "term": "市场化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-37e7edd15ff69fbc", "term": "板块", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-36658778a1be0cb7", "term": "成交", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ab57dd92eac8aea4", "term": "中介", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7bede945da28916a", "term": "下跌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5a6dd7d66ceaa47b", "term": "涨幅", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a8f7601a1dce9996", "term": "太平洋", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5e3a500d57c05a9a", "term": "受贿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e6b216034606f43b", "term": "初期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-98ffa761fbbeacd4", "term": "中小企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-09dfac88c71a8d31", "term": "达标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ad7e8b52525b699b", "term": "产量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3d5436ea23d2e9a2", "term": "订单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2588b5b9bacc1df6", "term": "均衡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-759472586f5c20b5", "term": "存款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-15dfe2afdea09eaf", "term": "经营者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1e3c8bea5ad27c3b", "term": "波动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2719bc4bd70d6d6a", "term": "招商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-82f4b908f9c1389c", "term": "华侨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e73d84773a078bbb", "term": "审计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dda2f979076534e3", "term": "电子商务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b8315088e32a1f1a", "term": "股票", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a81ca4bf0f3d9803", "term": "份额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1bec629ef825dee4", "term": "遗产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0e4062a72843c486", "term": "结算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-50de072ca459b60a", "term": "隔离", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5760e64618100b97", "term": "业界", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c9cf1d9b3cffae03", "term": "国企", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e008fed0fa3a23df", "term": "促销", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c2cd6d78203cb757", "term": "签字", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-74efe605b7c8d40b", "term": "垄断", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-84c2f9831a57535d", "term": "利率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bb9282d5dcbe79c1", "term": "社保", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ef83c16632551d8f", "term": "招标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-32ce9f06589cdc48", "term": "额度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-354b1b3273db1bc7", "term": "月薪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-54a41d84849fbf25", "term": "租金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b07ece27010021a8", "term": "合并", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-76ffb61d71f3fa42", "term": "定价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ff7d8ec24621b8d9", "term": "低价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b999ee00be17ceb4", "term": "进出口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6d9c8c96bedf328b", "term": "发改委", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b285b8e0c035d915", "term": "反弹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-383c900abf8a83d7", "term": "欧元", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8a90b484a131b181", "term": "控股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-45dc30d06d33ba9b", "term": "转让", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e3cbb08ed95fdf6f", "term": "担保", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3b0840a00fef8cc9", "term": "外资", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3d07ec21e20d0555", "term": "伪造", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c8f93399d2c7cadf", "term": "指引", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-35cf6bb108a602a4", "term": "瓶颈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-64deee0379c491e1", "term": "定点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ee52bb04dd6d03f4", "term": "开办", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9f8101832b3119ad", "term": "股东", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a9ab292ea9feecdc", "term": "上游", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ef33b1c0eb825d6c", "term": "法人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ea180ca05579f91e", "term": "专利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6923cef57f2519c8", "term": "收回", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2416be4c248a9d5e", "term": "央行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b81375e09f2415af", "term": "形态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9672af06623afb3c", "term": "筹集", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0b0d6cb3b2edb2df", "term": "转换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-334ec29216cfefb9", "term": "信贷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-063b78481d2eab5f", "term": "银行卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e7c6acfc6be4d261", "term": "被盗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eeb166ca7b60aff2", "term": "网点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-501f8aa5256065a4", "term": "走势", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-be2cbde28f184a37", "term": "攀升", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-89b2ecbe1f09ad70", "term": "仓库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c856652d15c8de6a", "term": "工商局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4773263a2168f07a", "term": "厂房", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1bc118dfed80f351", "term": "结构性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-658c536de6446fc0", "term": "缴费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1f29b74ad60c3ae1", "term": "到期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1b76c104f489615a", "term": "混合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-90c4fda0444ffad8", "term": "招商引资", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4ec7d4554df93e74", "term": "步骤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-43f35430a46c80fb", "term": "区间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-de2045141aacec21", "term": "参与者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-613085ac894606d3", "term": "商会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-245cdcd5fad22442", "term": "缺口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4689ea2f3ad1fc5c", "term": "国际上", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1010c56e70caa705", "term": "产值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-67059dbb074de0a6", "term": "宣告", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-db1032ea6e8102bd", "term": "下调", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2731ff0531543b21", "term": "款项", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3dd1b22caa554e06", "term": "利息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7d41f0c494710c5e", "term": "国民经济", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-388fd711140d1252", "term": "获利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c1920ea23cdcbefb", "term": "安全性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bd9bfedcc925bba3", "term": "亏损", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-429de6fe8430eb97", "term": "存放", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4914d31e3881abb3", "term": "低迷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c4e672538f11d84f", "term": "巨头", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-780c5fd5b10533dc", "term": "库存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8e5553c0352ae99c", "term": "吸纳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-08f9706b2ebc850c", "term": "恐慌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-95feb4759b5dded1", "term": "电网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c7b43e142d51e45e", "term": "上调", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0d12cbd6562bfbff", "term": "类别", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0bcfe03f296428e9", "term": "原告", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b5f15473fdc0fefe", "term": "筛选", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3e363bca69d1cbdf", "term": "华商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e5f8b305aef8a1b0", "term": "四大", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fa17ec42039b9853", "term": "亚太", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f89eff6c5919dca1", "term": "多样化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4d290abe1e719595", "term": "合作社", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d932a684fd6175f5", "term": "考量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3479e0c88e7b8121", "term": "报酬", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-72b0ba4a4f2ff4bb", "term": "增值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d94f1d858c940e66", "term": "归还", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-49cda91dd6634486", "term": "流动性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a727be246567671d", "term": "索赔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3f2ec87fdb2b3a35", "term": "财力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c7d9b81a063e3a90", "term": "测量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9875b1f82509fec8", "term": "标注", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dc569f3d8dfd87f9", "term": "余额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-420421da52e472e5", "term": "红利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-90488b6b3e8fa954", "term": "经销商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-655d7d6c966f9ac1", "term": "赌博", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5f2ac6548b6c9668", "term": "构筑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c98e118e0a43f078", "term": "模型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ccc048d014ce7195", "term": "纳税人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4ee81fcb9d6634a9", "term": "兼职", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7f11b6ac0c220ebf", "term": "拨款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4db040ea6d5f5dfe", "term": "扣除", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5e313b3823d28a4f", "term": "返还", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bbf4082068bba473", "term": "首创", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6f0546de73d1c9b0", "term": "付款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5db276f707fbc047", "term": "偿还", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3359aca25dcb6855", "term": "集会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8985a9fddd9a13a9", "term": "内需", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3716d6c3d7580ab0", "term": "议案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8bd09c6f0913477f", "term": "挪用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1afd2699ed5f1599", "term": "惯例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-abb2aaa61f0adbe2", "term": "突破口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5280fc146c85779f", "term": "年会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-83f48f563e24a994", "term": "副主席", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4bd29b33903871e6", "term": "密度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ec89c8b89f78f0d8", "term": "均价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-223968d251413035", "term": "闲置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0bb0787ca52a6a07", "term": "区域性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0eafcb149bcdb501", "term": "冻结", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-263200d7d529b522", "term": "数据库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-588af91b3f75e30d", "term": "行长", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f5a5e87d7770e46f", "term": "核准", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9eb409694898c820", "term": "一季度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-34b1a3cc4cd0f5b0", "term": "楼盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9dc4139eaedd31c5", "term": "债券", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b47316c0087844a7", "term": "观测", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4af7d8f1553b6988", "term": "董事", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-058f672b877995c0", "term": "凭证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6da60efbcd7a2bb3", "term": "拖欠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fc14772145c2f2dc", "term": "编号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-61990afc7ac0eec3", "term": "团购", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7ca9107d16c7d812", "term": "欺骗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c3ea89cce1e96dc9", "term": "增长率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-596c04f600d1fe7c", "term": "博弈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-539c1114f49d0bb7", "term": "利好", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-80ed49d9841e5392", "term": "泡沫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-708ad6d330d7f81c", "term": "世博", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-355325277942f7fe", "term": "实战", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c372687528f9cc59", "term": "全国性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fb28ba14091d4ffa", "term": "卖出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d00c261077b8f2a8", "term": "募集", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-05f1293993aea38a", "term": "透明度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-57ef2c45ef260ee3", "term": "汇率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-752a14b3f6a7f3e9", "term": "稳健", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-58b4e54a417d17e9", "term": "购房者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bf4fe76a26686e0e", "term": "信用卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c655bfe877f5ffad", "term": "彩票", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3c0a71b6bac27052", "term": "薪酬", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0ef0021f967ca848", "term": "社会保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ec11d9abcf5ad16c", "term": "折扣", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ef90fd11dd549699", "term": "英镑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5b7db7391c26f662", "term": "投标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-075760c63a0522c9", "term": "进场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-616b9cc18a9335bf", "term": "落下", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d9795b147777e026", "term": "成交量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b650f21f60ced8e5", "term": "日元", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fbc85992f7abfc43", "term": "交易所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-528e5174c2d4e5c8", "term": "集合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ef1e2e5747545b78", "term": "核定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7fcbcf170e1013b0", "term": "基准", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fb3c3619bc31386c", "term": "参保", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e815ed5120c0bb44", "term": "总收入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cb34b164062284e1", "term": "破产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-178443f4b4cea807", "term": "稳定性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c714a732998261dd", "term": "规章", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a05e98af3a821b31", "term": "修正", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-74fd5a946965e8f1", "term": "津贴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bef6f3a02380e096", "term": "飙升", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b36e1053c44b02e5", "term": "免职", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0da46a7fbf4c7bd5", "term": "油价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-145f95b9b7a06883", "term": "查封", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ba9f1e35e70cc055", "term": "轮胎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-039cd4f653ade590", "term": "开盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-84b2abe2344e5389", "term": "走私", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-adf440f89137f0c9", "term": "外汇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dfcb9b85b28494d4", "term": "免除", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f618ad8512128788", "term": "报价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4546b3d41818bdbf", "term": "失业率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-de09154c7f908158", "term": "打折", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4c3be7e0b72ee604", "term": "转账", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-20618334758ac3da", "term": "崩溃", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8ad924324aac23a9", "term": "保险公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4f2f221467cd0263", "term": "宏观调控", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5aea7d747f96d867", "term": "代理人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b4c1d9685bfb114c", "term": "弊端", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dbf4e405163b6332", "term": "信誉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6343b90e9d639ea7", "term": "升值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-174ec5a4ab6a4cf5", "term": "黑名单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9c2a28e8f98fb5df", "term": "有效期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fcdfef63f80d411f", "term": "石化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2f95feba9eeed252", "term": "预留", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a777c9756c693153", "term": "操纵", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c9917b939d6974de", "term": "长城", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8cfec2d97162292d", "term": "股价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fc6b528ef03f3893", "term": "华夏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-03eb6cebb8ea143e", "term": "新京报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4d9faf97ca1c0d1c", "term": "天价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cf4b3a69084877da", "term": "违约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8bf1645f6a096f2c", "term": "持续性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-10a587a8a7b3f23c", "term": "环球时报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4cf32c077e30bef4", "term": "基调", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-82c06d74ab0c8c58", "term": "附加", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-faab828afd30d562", "term": "仲裁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-42683e64540fa80c", "term": "珠江", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-37b892d7c7fa3e37", "term": "写字楼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9fd77a5970018215", "term": "董事会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-414dea9cd0e4471f", "term": "激增", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cd47301be6ed06ef", "term": "杠杆", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3ede97245872e27c", "term": "投资人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-96792ff4ea7f493a", "term": "拨付", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-88a998a101b42d12", "term": "分割", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3cb9afbda71523d4", "term": "跌幅", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-336fe29b82bc96e6", "term": "席位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bf57f8a2bcc941a7", "term": "延期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aef90cd950650d37", "term": "央企", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0fe5707c2e041158", "term": "证监会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c39ef50e987cd8c2", "term": "兴业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5d2163ae424ab4fa", "term": "匮乏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aad67a958793526a", "term": "震荡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1808f24e18bfdbae", "term": "总价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-811fe0719f385336", "term": "买单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-082d3a8223bf6ce4", "term": "增值税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-26b31ccc80412818", "term": "所有权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a348ca4bfa8c2dc9", "term": "票据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5f734753ea707d27", "term": "期货", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2cb71a3de0dc98db", "term": "子公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f8a72aee21e5d833", "term": "金融业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bfe16f1bdae540f8", "term": "汇款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e34109da5e925ac6", "term": "投资额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6db96122449e9f26", "term": "多媒体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b12f7cd016963ec7", "term": "保证金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-95b3a78349b8c098", "term": "价位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-86b757dbd5aff64e", "term": "知情人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8458ad845664d328", "term": "筹资", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6e2d0b13916be59c", "term": "按计划", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-586f395db494ffb3", "term": "集装箱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1738e7a69e8e6890", "term": "机电", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4c6f65e9faed0c21", "term": "抛出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4c97f9db086dc1b9", "term": "产出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-92c63d5452b1360b", "term": "贬值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-db5716a338e6b7c9", "term": "分化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-66cc9c8a6331ebce", "term": "中标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ee24255c81117de1", "term": "差价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-71754b801c0d2924", "term": "同级", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eaf23baa28857af8", "term": "投机", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3b6dfbfbb982e08e", "term": "合伙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-399d4b28f96ed0c5", "term": "收盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0af44bda046dd9ad", "term": "抽奖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1394938c01615b26", "term": "饱和", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-47c1e53c427aafb4", "term": "阿里巴巴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5c551062c8a50836", "term": "解散", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9bdeb442047f7ae2", "term": "获准", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-12990466bff692a5", "term": "经济危机", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3b73afd9c950da7c", "term": "下落", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aef028e5169d52b8", "term": "停职", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0db6f4e3344f6825", "term": "赚取", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4715621e26b8a39a", "term": "审慎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-41e8760fd7176c0f", "term": "生产能力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c3165f608c447898", "term": "波音", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-080f0945955462e4", "term": "关税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a8c470dbab5b73b1", "term": "手续费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0b63ca3ad1859f56", "term": "充斥", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2d49b21c0975a7d2", "term": "封顶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ea323edc6d74fc35", "term": "储蓄", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4a0c2575242946b5", "term": "复核", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-18bd9a315f2134b1", "term": "监护人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-83effd567a3a5360", "term": "暴涨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-71d26ea97f4b769f", "term": "分红", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6e64cd46d94c6fd4", "term": "盘活", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a5677ee9040918bf", "term": "理赔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-315a167d997f6a0b", "term": "社会团体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-40a2e10bd40d4026", "term": "逆转", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-22f464557ec5afee", "term": "华尔街日报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7dc0b3b746b81556", "term": "市值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-94dc31d1cef898a9", "term": "港元", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b73b724a1bd67808", "term": "管理层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-97daa1e1885e23f3", "term": "停滞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ce4a26ff6e05265b", "term": "万达", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0cc6b0da2518fe6a", "term": "评级", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fa730f8b15324602", "term": "供不应求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2a5946bee7716fae", "term": "负债", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5955d38230019c89", "term": "扣留", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bc9968daac91d647", "term": "大盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7865b21012629320", "term": "赤字", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c68f7614cb5fb9ea", "term": "深层次", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4b2b9af4e2b4c696", "term": "欧元区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e2fff42df57473a9", "term": "薪水", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e053d8044d780bfc", "term": "中信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f0d9855a4c7532ca", "term": "明珠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9d3094fc2ad98318", "term": "手势", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-15ed3bbb2f58d2ae", "term": "不动产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-23c209a0843e1a06", "term": "网购", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6227eb6e804a1f0b", "term": "国债", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-33686477c811ce1f", "term": "托管", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bde198e86f4a1c07", "term": "不定期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fad5bc87058d6147", "term": "清算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6f268293effa1817", "term": "主业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-caf76992859b35e9", "term": "中国银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1b1d1b029efe8b78", "term": "远东", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-55f1afdd5dc5325f", "term": "欠款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-02763a1d3fb2a567", "term": "协议书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6b404fc422f9e4b5", "term": "偏离", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-86e7ba554eed12a0", "term": "港币", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8ab15443bb5a257c", "term": "白银", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4bd05af5eef14552", "term": "黄海", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-822c51653951eeda", "term": "年薪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8e63d55c3aff620e", "term": "暴利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6b58198955259066", "term": "撤回", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cf7d13aa22901ca7", "term": "经纪人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c04c9de1e2dbdbd5", "term": "收益率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-289f03a654a7de49", "term": "房地产业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cb0cb282cf7c3de4", "term": "宽带", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c2867aae3c067d31", "term": "购进", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2b4b6daa9b340a07", "term": "境内外", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-31ca5a76ec838963", "term": "计量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ed6badc68539f58d", "term": "化验", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7a34cf2881a7bd87", "term": "国际贸易", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5ae82336ba33c33e", "term": "废止", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1962065449b93355", "term": "圣地", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e7b09914070208ff", "term": "联谊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f7cd054bc6e1615b", "term": "赌场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fbe4b6e2ca3e591b", "term": "透支", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-07c8087580f56c62", "term": "发起人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ad9ff6994ed6ed77", "term": "保费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9043e17f4fbe67f4", "term": "上行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ecfbf34b9b775fef", "term": "保值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1870c83b5eae0693", "term": "股份制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-994d2e5bb6958100", "term": "中石化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-798568c9035a2832", "term": "发货", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5b2a293fff0b687d", "term": "南航", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e5063bd4e73c669b", "term": "中关村", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-15893a7312445f64", "term": "交易额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-31184517ad1e78b6", "term": "补办", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8a31af5ad8071922", "term": "差额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-526fb3f2013dc064", "term": "福彩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eb98cd053ef42b90", "term": "受惠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d59af2e8c7a513ac", "term": "中小型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fa9a7158328a8f5e", "term": "暴跌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3fe5ddde459d4900", "term": "信托", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-35bde1ab63c5f425", "term": "知情者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-099888dda29a47de", "term": "对外贸易", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fa7a7f038f5dd4be", "term": "会计师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c273e8832a71abb2", "term": "井喷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2fa66a53e4b6c3d8", "term": "本金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4a8f605b35c9b527", "term": "中欧", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e873b070265ff485", "term": "成因", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-766b90a3050e76d1", "term": "净利润", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6ec01c425bc2fc9c", "term": "精密", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f0ec314130cc5606", "term": "通货膨胀", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6e77536da30e4367", "term": "贴息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eae9b46883540d6b", "term": "万里", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-61fc9047516463d9", "term": "交易量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-040c1cc5302f92fa", "term": "券商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-25a47713a852008f", "term": "交易日", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8d34a6e616049fc8", "term": "跨国公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bca53fcb8d537a7c", "term": "银监会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b290cc7c47e2f489", "term": "下单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fb7ba29fe11e2d83", "term": "大西洋", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-428296a9ea5fe6b9", "term": "套取", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-07d02b48d9c9766a", "term": "特许", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9eb3e49a6e2a4eb9", "term": "金融时报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8c57a9b6e3f7b1f1", "term": "债权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bc4096660a6ecff0", "term": "开户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bed41d04958bda63", "term": "洗钱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-17995bdcd1251089", "term": "代理商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b9f82d479b137d8d", "term": "中海", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-34fd0abe3a421640", "term": "购买力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ce25524782a44a42", "term": "筹码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8f174a3cabf76ad1", "term": "财长", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0ed74da7c2219f6b", "term": "经济圈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-096a9b89a6ca0eca", "term": "资本市场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-26ac528977e50fcb", "term": "股民", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f87646f7d1c19b3b", "term": "孵化器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-769c2696a3ab4f9c", "term": "定金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-57f61717cc9bb279", "term": "单据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-68dfd6ad7d5a9df2", "term": "回扣", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ec9f46c719142bda", "term": "罢工", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dd1046950e3d82b3", "term": "年报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-80a7a99db6bed585", "term": "盘中", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-35ef6cd9369f7d3e", "term": "平价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8c8af90128271277", "term": "华尔街", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-902b4f14042a75f3", "term": "报表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f9d530ca3aa8f44b", "term": "上浮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-89e37145f8dcefdd", "term": "卖点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-723f3ab18ce715ea", "term": "变数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f4b48776f7bd978e", "term": "房贷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-578895532bb27188", "term": "专款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-834f526e1478a42b", "term": "建筑业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f0483f28c1756804", "term": "中西", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-66f398119c4bbd9d", "term": "互换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-77ca72d6faa8120f", "term": "变卖", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9f93c132900ea790", "term": "股指", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0a6d05981d5242fb", "term": "硅谷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5df0bcab3fa3c1fb", "term": "技术改造", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ec9021d68ae3182d", "term": "连云港", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c5d3157b18cbb396", "term": "杂志社", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9ef9e0dac468fdfa", "term": "挤出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3ad98c6147478448", "term": "采样", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-98cbd8860de60d24", "term": "债权人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f5a5be0e021640e5", "term": "加息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f3c5ca450f748423", "term": "保税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7c99779f836019e2", "term": "盗取", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e13825bdbfc5977d", "term": "消费税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2aaaf732fe1abd66", "term": "完整性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4048284798c04db3", "term": "沃尔玛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-42df2b647bee06ff", "term": "万科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ce6bdd090825f25c", "term": "市场部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2805cdf0df59a021", "term": "介于", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-51360b078ee6b0fd", "term": "美联储", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0934830b34cb2420", "term": "畅游", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-220a127452849f17", "term": "契约", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-619bdb27d5cd92b3", "term": "放贷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5dded3ff536bd0c8", "term": "麦当劳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-57049344db882287", "term": "面值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7e222e24e6935b84", "term": "税务局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5d7c80e9a8c838a2", "term": "赔钱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a8b2990f402f44ee", "term": "福特", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0a0264fccff98cde", "term": "共产主义", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a56f08938e1feb4c", "term": "按揭", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f973d3b03144dd74", "term": "持卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6a1cc8dcc55ab349", "term": "远期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9604743bcd0ba56c", "term": "基点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ca3c684d88c7922b", "term": "按月", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3a104a649b57c126", "term": "炒股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a5997a1549f6e36e", "term": "工行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f00e3a4376250ae4", "term": "竞标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-96e34bbaacb77e3b", "term": "违约金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dd0c1ddc7199575f", "term": "出局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0e6e48aba1669631", "term": "中兴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5287bbe069cdd922", "term": "首席执行官", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-509a1da38d31cdcb", "term": "独资", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b3a377cc4b4971f4", "term": "铁道", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e8031d14f2710fc5", "term": "硬币", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1b821bf3bed0c8b0", "term": "跌破", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b5d5860014f5302a", "term": "插队", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bc4d325b9c438245", "term": "高利贷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-acd17f6934873e0d", "term": "专营", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f9afcb8f7fd77c4e", "term": "估价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dd7268a4df533d28", "term": "益处", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d6675b1695a5c350", "term": "工钱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7c53ee90cee8aef4", "term": "推介会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-751f3659991287d2", "term": "回调", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-52f6f555189a1afd", "term": "超值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-43a7f4b4c5c88a2a", "term": "所有者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-366e452701f80aaf", "term": "抵消", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-46ac46a404b3470f", "term": "要价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b70325e185c133e5", "term": "黑手", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eb5324e2fd0148d6", "term": "短线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d252d63e6d5d4cf2", "term": "萧条", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1b5192ffbe74ccef", "term": "出逃", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f65e83e863f45ec2", "term": "经理人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-23068a5d80ce42a4", "term": "出货", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-41e2d8e21e178e95", "term": "佣金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-49945fff8d19df5b", "term": "体彩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ee0567e180bedc84", "term": "市场占有率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-648ac0860a36272a", "term": "海尔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-42953a3cd8ed3c64", "term": "东航", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2c8f7bc02f2242f7", "term": "压低", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-efb29527802551b2", "term": "损耗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d3425cdb5f87a645", "term": "图形", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bde032db2fb939ce", "term": "仪表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-796122bedd0ab5f2", "term": "后市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7abde41627dfd395", "term": "房款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-564891a67a5cc513", "term": "上证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5bc99e270d61d457", "term": "支票", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5319d99356892f7b", "term": "增资", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0a0c02821fc5c2c2", "term": "准备金率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-84dccfbf1300d7d8", "term": "顶峰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-db67678b7001a93e", "term": "发行量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-753afb5141e3d915", "term": "淡出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f24d697e58cc9a39", "term": "收款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-38924648e3b884b4", "term": "开门红", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1a700bfd41c45006", "term": "盗用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-49233b820253f8ef", "term": "携程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8cb443ab83797881", "term": "图表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-69a1f29590cb378a", "term": "古董", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-81fee07a1cba85bd", "term": "买方", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2730ff406e91ac3b", "term": "摇摆", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-afa4094291231def", "term": "资本金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-943cd94480ed0f59", "term": "申购", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-387bd61741f85d53", "term": "接洽", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7ccd9e0d19965926", "term": "大连港", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-33d3284f0372bc3c", "term": "新世界", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2584bc4d0f0bb6f9", "term": "主营业务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9d5992d3d0815e6e", "term": "现货", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a382f1dbe3a79341", "term": "回报率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6d32e6688396ba41", "term": "澳元", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e765efb503494991", "term": "资本主义", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d424c87dc79fd015", "term": "国有化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ab288e9519ad0519", "term": "批发商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4a825a8623a729e2", "term": "涨跌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0c8c71a8c428263d", "term": "主板", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2051831c1a77052a", "term": "预热", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a640aaed477d0ebe", "term": "补助金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7175bc46e4468dcf", "term": "顺差", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-accf304851de0ad2", "term": "诺基亚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7de9c2f96c7d20b5", "term": "可信度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ab924413546e3bdf", "term": "租借", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a394b166c57a2631", "term": "搜狐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f27478afb0bca023", "term": "锦江", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d9b8febcce39ecb0", "term": "母公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-38415887631f289f", "term": "周期性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0c3f1fd2377a7a35", "term": "新台阶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cb7e81d7e4c34c2c", "term": "外债", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bd4ae33db2858cd0", "term": "最高点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a0501785902805ff", "term": "公用事业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2c363db2eabcba80", "term": "充值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e79604345a6a0154", "term": "网银", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7f49a8537aabc251", "term": "王府井", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-af1adfbba06dc4fb", "term": "抛售", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0e5ef3177e8712eb", "term": "薪金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6d37feda49a46792", "term": "亚马逊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-def61445047a1b1b", "term": "卡号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ef37ad963740bd03", "term": "保险业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-31cc4b03294463b5", "term": "质押", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-35f2aec954a5bc6e", "term": "套现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6979d5d8513aa732", "term": "溢价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c17bd92c8c483733", "term": "补足", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-34db4c26e6f3c363", "term": "收储", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-15146c10579feb16", "term": "陆家嘴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9380dd619b0b6e87", "term": "可口可乐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4faa1820089c3258", "term": "九州", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bee79d9d7f00f887", "term": "徐家汇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-52ae2ccd2c444ef8", "term": "私企", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-699e86ceea7a10a8", "term": "年金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fe1b451306a31670", "term": "过热", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1e668fc4d7b97184", "term": "吃紧", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9085a620b6a61da4", "term": "本息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b6aaf4d58914bf5c", "term": "汇丰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ce971f6128caf523", "term": "倾销", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-53573a40c18d2ec5", "term": "净值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-353f1645131b0c33", "term": "遗嘱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c8baa0105604e0eb", "term": "遥遥领先", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a47a0d547ea1d301", "term": "不容乐观", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3f2549773b8aff5e", "term": "入主", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-79f5bd7ccc2c61ad", "term": "失守", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7926681df8a98584", "term": "财团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-37c8bc3557db01cc", "term": "逆势", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e69d7df930ca4e81", "term": "金牛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a14e1020775cb824", "term": "批文", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-323a246a6898f284", "term": "谷底", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c96c5dc8233f8a44", "term": "附加费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-70688fea0c3faf2b", "term": "增发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3193c42270b8d3ec", "term": "拒收", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1ca4acda0f802036", "term": "鄂尔多斯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9b91fbb679a50d5e", "term": "国安", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fa0b5f18e364746c", "term": "税金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3a2ff300482fa796", "term": "南洋", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9f54898b216d0ce9", "term": "总行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-95c9791afdea56c7", "term": "斩获", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2d7e730563828a09", "term": "财政赤字", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9a944501f9cdbc1d", "term": "背书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4c633b18245c6201", "term": "贵金属", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9b23bb607641cd89", "term": "市场体系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6b258f97fbeb6033", "term": "暴富", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-66c8402867e5adce", "term": "委托书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-01b4dcacebaffb8d", "term": "牛市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bfa8ad4d85f4266f", "term": "第一财经日报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-13ee0a33d53ea7a1", "term": "散户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f54ad40dca989d00", "term": "联通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-61048c7f6c67f15f", "term": "停牌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-af83128dcfdf25c5", "term": "海航", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2133cd88f383358b", "term": "翻一番", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-09b7d3b7253fbed0", "term": "中行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2396b73a8502317f", "term": "救市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4a90f96513108ff1", "term": "股本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-125fb3b8042d8b2d", "term": "白云机场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-277f21fe8d44374d", "term": "存货", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d7728c4965885598", "term": "时效性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5b170d61a1a0059d", "term": "逃税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1c4ec47c2a1c417c", "term": "静止", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-708835ecb67f9dcc", "term": "外币", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eb20bd20be26efce", "term": "网下", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6b764a13c668c92e", "term": "金矿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-892ab21928bb8eae", "term": "外销", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4ea8f47c0d68bfb5", "term": "金条", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-979e07d10c526ecb", "term": "保监会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6b2a52b535f42b8e", "term": "流动资金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8d7cbea5b5f50e7d", "term": "盈余", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-318f70f6e0197a02", "term": "比价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c74bfba26570a16f", "term": "有价证券", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7bbe5edc1bc7e6a6", "term": "天津港", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7dd01a480c055b28", "term": "保单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b9bb0a9346948709", "term": "结清", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4771c3308f2e0cec", "term": "首付款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-65b58afca4f00b2d", "term": "展期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c30b802a55f12baa", "term": "国民收入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4757917140163cf9", "term": "古玩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1c487acf180174a4", "term": "反转", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ffe883c8455d7a7c", "term": "联办", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f53651ee2a88196c", "term": "监事会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-298c082ebd178af7", "term": "回购", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d51580cc065bb0e3", "term": "一年期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4f171adba36601e7", "term": "意向书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f231387845a12f41", "term": "中小板", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d1980a611c60ea7b", "term": "面额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-63fc9d3d648d6990", "term": "银联", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f365fdf8b07861d0", "term": "国网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6148e7d7a32429f6", "term": "看涨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6be3f75131986bd7", "term": "经济参考报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-996c776764451308", "term": "借款人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7eb77f8187dadfdd", "term": "广发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-23892c8186593a64", "term": "承租人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cf8997a54775e234", "term": "百花", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-778f1e5a15fcf752", "term": "融通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a303f1bdde852401", "term": "放量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6657e4faf9330e19", "term": "出纳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-799d2678d99c7fbd", "term": "白云山", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-415e1f486e38daac", "term": "准备金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5fe46e6dede5da44", "term": "临界", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a2c55e903fab1c82", "term": "逆差", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-041d6a395228b3a4", "term": "偿债", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6fb686dc604e274a", "term": "非公经济", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b043df704af8fc4d", "term": "退场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-df63e66726b1d77e", "term": "日内", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a544348061835f0d", "term": "颓势", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6c152ff2b6d145d9", "term": "投票权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-98437d763c5a16a2", "term": "测验", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-759dee8fa93ad942", "term": "赎回", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7dada8da6f32e9f1", "term": "豁免", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-928a48720e1ec3ba", "term": "金融界", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-85a2101c7c2a627d", "term": "双开", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-466e6cf483ecdd20", "term": "深交所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2c22ad2eb86a60d9", "term": "通盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b067a1c0f99cbf13", "term": "金融街", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c1f4ab4e03239f46", "term": "清偿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-12d6d5a8fd845d7a", "term": "打转", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-daa0e755d325add8", "term": "钱币", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-334c869e24a471c0", "term": "高盛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-be2f841884cb268c", "term": "净资产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1940fc2f1519ff06", "term": "新经济", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-56783ba43d5d88e0", "term": "经济技术开发区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-afc59f1cfe0c203f", "term": "合金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bf563776524e47c9", "term": "炒房", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-633ce99a46adda2b", "term": "衍生品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cd78c1e988bf72de", "term": "波浪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f6abb27b2e1cdc2a", "term": "日照", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-291739cb45fc01be", "term": "宝钢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-68d2f677ffaa2f20", "term": "监事", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1d84983c39fbe107", "term": "一触即发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-37deec4d2d4808bd", "term": "金融办", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-893155ba2f7617ea", "term": "中远", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d5e8091b5fafc317", "term": "永安", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-501428b940c784d2", "term": "软着陆", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4b86c0958a7a6a22", "term": "利空", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-21e28c900d310f84", "term": "板材", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2c5650166e146716", "term": "金桥", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5293609bbc79bd92", "term": "电讯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c8b4d5d86c9bbf53", "term": "综述", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-63dfee0d9f5b8102", "term": "摩根", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4169c13b27c8a3d5", "term": "动因", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3ebda296f1a31c02", "term": "年审", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0078faf1fe668134", "term": "雅虎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2c371ee29759302c", "term": "退市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4a085fde70ce7dc7", "term": "人寿保险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-db2d1cb0ce554ba1", "term": "中南财经政法大学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3ecb2130838315af", "term": "三角形", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f2bcfbb4c9dce340", "term": "托盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a58eea83569c3baa", "term": "据传", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-244a244fae439d94", "term": "盎司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ad171eac6c7b93aa", "term": "出资人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a159788da72a4303", "term": "中国银监会", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fdb00a06c228ca2e", "term": "信贷资金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4b36f0120d87009b", "term": "花旗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0bc0c2011ec60920", "term": "政府采购", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-695b0e0632fc6559", "term": "假定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5dc3f12e8f87276e", "term": "富国", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a3416bb9757a484a", "term": "胜算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ef144393a7ca96cf", "term": "抵押物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6471bf250431a79c", "term": "国泰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8fc8df8269675a57", "term": "特困户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-92aa00d722acb80d", "term": "通胀率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f156401460754177", "term": "银行家", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-95e3bcf092592f56", "term": "上汽", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-91502c2f3113a9b0", "term": "避风港", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-830bfcdb0ee69ad1", "term": "证券化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a772fa4ebe36b63d", "term": "变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aa1dbc22cac00ed1", "term": "配售", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7367bcbf15189952", "term": "折旧", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-441652a3584e4535", "term": "新纪元", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4d62235d7396caeb", "term": "买进", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ae51148ea3a6405d", "term": "伊利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-96a38f1d2bd32ecc", "term": "经济日报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-30981bb9dbfe2fc9", "term": "低点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f5194535c584ec9f", "term": "浦发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1d489bf7c6a37f41", "term": "偿付", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d547044efed65798", "term": "探底", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ba29da57805cc04f", "term": "折价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b84507c67b90c90c", "term": "烽火", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d1e33bd426651eec", "term": "崩盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-93aed05ceb1d6b52", "term": "沪指", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f9e184bb96a9c580", "term": "银山", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5c306d04874f2926", "term": "寿险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-677b7178b6e1b8b7", "term": "上交所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f9fcd27a99d3db56", "term": "保额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4169a32ef5d202ba", "term": "蓝筹股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d89569e9550dac54", "term": "珠峰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-98fc86d7e39d1c8f", "term": "硬指标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ff9dd9aaf34039ad", "term": "金杯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-07806e48fa425f25", "term": "热炒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0611c7ecf512a79c", "term": "惠普", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a883d3ec17ef58ad", "term": "白金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b88020a1fba64dd1", "term": "天安", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-34f71a307db9ef0f", "term": "雷声", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e5999e1b791ce47c", "term": "招商局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-948d0c5592d2629a", "term": "交割", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-54b4743ed479ad39", "term": "买断", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a55f40b8af71450a", "term": "分期付款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1935f28282401401", "term": "招行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1a6ae97c537ec380", "term": "武钢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c88776e1ddd45d1c", "term": "避税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-124d314f46d1537a", "term": "趋同", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a517b1e8d2bf70a6", "term": "英特尔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-175f93318b332f63", "term": "期权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-80d7e3f5eb125ecf", "term": "评语", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d7539fa6ced55da0", "term": "债务人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1e2dbbfb0d76f145", "term": "无形资产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-512e0a1684f595bb", "term": "开拓进取", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f7091b113fcfd4a6", "term": "货币化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-70f4a20322b1051e", "term": "强生", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-74ebbc7a660d3cdc", "term": "获批", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-12fa26bd12ffdbe2", "term": "星巴克", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8644be9ea7094456", "term": "中国人民银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-32c4ec421b22b4c8", "term": "钱庄", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-160c32d53a8ce553", "term": "异动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4013a3be32815f24", "term": "进口商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3d02e802f717c533", "term": "预付款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-790018806f51361d", "term": "比索", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-441011cd114ef320", "term": "盗刷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-333e89382022311d", "term": "次月", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0e3a4d041760aa0f", "term": "财险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b8f948c8b53d8b06", "term": "金鹰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2423a290cd62f170", "term": "销售一空", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-387ccc9ce8f145f0", "term": "国家外汇管理局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-85ff4658ecf1b356", "term": "港股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-439c28a0cae9f80c", "term": "参保率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e5a778d745acdcce", "term": "中银", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a25fb95d98f54e7d", "term": "游资", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2b3d5e8a8e37e0bb", "term": "投资方", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cc97c5dd2b82a099", "term": "三联", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-45d556d5233a2b23", "term": "印花税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1a8f11388b00f121", "term": "交行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2f0f4465df6cb433", "term": "存贷款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-288e82a7038fd7aa", "term": "金城", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-def3a1083560bf23", "term": "中国经济周刊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-89c07894f37c4102", "term": "物价指数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a386d8abd1862347", "term": "担保人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7002f9776c7851ab", "term": "光华", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-63489faa89a7efb0", "term": "国泰君安", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e3d233a2dfb15b63", "term": "黑钱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f322c504c7e26e1e", "term": "出口商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e924ab24c8fc312b", "term": "风控", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-95a265fb81994097", "term": "仓位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bbb28cb42c37f163", "term": "国电", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0cfb45c97e5f427e", "term": "跨行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-12d639884246afc4", "term": "存单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8e9e1b9bfc1bc137", "term": "纪念章", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-43aadbe8f666779c", "term": "拒付", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a0ce4957faa2f37d", "term": "统计学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1b1694ac6d70bc27", "term": "京西", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f359e8587c46bb5a", "term": "邮政储蓄", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2884e50607b31361", "term": "调回", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2fdb1d665afda164", "term": "扭亏为盈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-48a41ffd4eba345d", "term": "卧龙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ea19b887e1c717cb", "term": "发行价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ac04d1248be88894", "term": "财务部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9ebe8d3abd61da25", "term": "大中型企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eb0ac24febbdb60f", "term": "消费类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2f5f675c2f42b51e", "term": "阿波罗", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7c0458a323a6733e", "term": "还本付息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cfa85db899e424cc", "term": "发行人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-55467af988d5096a", "term": "坏账", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9632e9cd18071840", "term": "中间商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-73330fb3d40ea91e", "term": "国药", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9733cec7facefa22", "term": "价差", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1502270a7cba337e", "term": "卖价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-25daf711b8a226ee", "term": "中文网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-63e16b6e74601b2a", "term": "商品市场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-73be8dbddc5dfd40", "term": "商品化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b2a8f3301d62e67e", "term": "双汇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c18c4cf201a9ec4b", "term": "优先权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d16115b9b4aeb9f1", "term": "大人物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-877be261eb735208", "term": "总需求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-92054f5e1966121d", "term": "下陷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b34aa8e97b2c2454", "term": "戴尔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c61542c844797a52", "term": "代销", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a5b23082751e23d2", "term": "摘牌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7a53a8f7731a8c2a", "term": "跌至", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f855a866b7e31d34", "term": "赌球", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2f799d7c4bea9944", "term": "利差", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6a6b2f17de514f65", "term": "灰色收入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c982b2663da6815a", "term": "汇票", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-471dba57ae443c36", "term": "金库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-90d84ceb1d994572", "term": "金卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-75fb0e9d94fa3417", "term": "净赚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-797f6f9c9ac852d0", "term": "月报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2b2a1d180bc9c90a", "term": "典当", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f341baef5011d3b6", "term": "风险投资", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8e810c9c75bfe29c", "term": "投机者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c63cdaa12a9ea183", "term": "跌势", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-302dda661ec9c9d5", "term": "公平交易", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fa5fd9850bf3d76f", "term": "承兑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-83c630cb3cc15f21", "term": "动产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b4ec6659fdb6154d", "term": "国货", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f6895534788c3c70", "term": "到账", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c0639697420ada42", "term": "当期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7fbee574e73757de", "term": "闲钱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aa7da49e415dc0c1", "term": "每日经济新闻", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bb16dac80260dbfa", "term": "清仓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eb167a3479025bb7", "term": "联华", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e80c57df1fe69416", "term": "纪念币", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9c346a297855386d", "term": "报税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-270e7586412164f0", "term": "股票市场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cd21862fba269146", "term": "创投", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-56103e4d73b9210c", "term": "按日", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-851184d99f50d28a", "term": "滚雪球", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5cc33aefba7188db", "term": "压价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1a186e6c711b76d3", "term": "外高桥", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8648fc3f46821264", "term": "牌价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4b20937a671a2820", "term": "熊市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b38cdb87398cc95e", "term": "长阳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-705200944796ec41", "term": "假钞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ae3f12e72256eaf7", "term": "领票", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-710d4fb97152ffa2", "term": "汇出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e2368be5bc20d075", "term": "另行通知", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ff8b95c15ef0a867", "term": "张裕", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dd82fee5ca265aaf", "term": "蓄势", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fc4bf779c97bbf38", "term": "缴款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d3c21af34ce67d4c", "term": "亚信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-605c88e563565be3", "term": "国信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-96a9fa7da2c31899", "term": "空头", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-198c05553a13ce7f", "term": "投资性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-24f8b0135eb70ea1", "term": "营业执照", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d20ead036b633b5e", "term": "核战争", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8015a003e7424dc0", "term": "四季度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ff3a2d93b90a5c4b", "term": "汇市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-994dc96c6c398c29", "term": "合资企业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eb7eb8f2a9c80b2a", "term": "催收", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6646cf30207515a7", "term": "广厦", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-76367853a4c99d4e", "term": "费率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2eb06ed59031cb5b", "term": "贷款人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-acb93ffe2b3fb103", "term": "普涨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7af897a2d9609a68", "term": "金融城", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-72613a99b57f5a1d", "term": "科学城", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0e96bf9b320db227", "term": "储蓄卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-22d78417d1660071", "term": "股息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4555b684cdf1073d", "term": "战略家", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ad4ca7a610f7162e", "term": "收市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b2a52fdd63beb31c", "term": "负债率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0cb642220d9d201e", "term": "汇兑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2daa200137210d67", "term": "币值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-27346e9ee257e7b9", "term": "账簿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-37fa9c6561fc3248", "term": "套牢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-080bddd57985cc8e", "term": "康佳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-27aeb4dcf978a316", "term": "盲目性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e889cc3991415853", "term": "中华网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-33b814cf5d5962de", "term": "出租人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-685b08782b5ef1e2", "term": "点数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d8f2eb25fcad0e54", "term": "债市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-299c0bd648561b01", "term": "停板", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-72f396c5f524e0b6", "term": "交易区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a712d1e366002e8f", "term": "克拉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-461716e23ac7772e", "term": "黑金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ea0f61a7d31f338b", "term": "买通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-30d7704c005c709e", "term": "承销", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-280ccc9be9e74953", "term": "华安", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-454ed9f387d492e1", "term": "操作员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c65c9c202c8d9afe", "term": "典当行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-54d560bd5c0df581", "term": "早盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6be61176c3d6e953", "term": "炎黄", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-348466e7816f00fe", "term": "网商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3bb98190007a9120", "term": "持卡人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9cea81793226b4b4", "term": "宝洁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-53cb0614307a39bd", "term": "信托公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8b12c4b25c0cb06e", "term": "取现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-52e8230b1f43c638", "term": "放高利贷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ec862df087cc23d8", "term": "凌云", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-53a65c6278b1823d", "term": "纯金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-96b43d172f34e7b9", "term": "公债", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-012a905ef195f2b8", "term": "祁连山", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-574dbff93f779079", "term": "变现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-40376c80528f467e", "term": "付息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-105181cf01350611", "term": "度量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d779e2966de35c37", "term": "外汇管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fa8c0be9706a9935", "term": "分销商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-561289a7a538707c", "term": "遗产税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-719d1c641ae2c06d", "term": "监事长", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-118e64ad861f19d3", "term": "融资额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b1361a92f2343b84", "term": "兼营", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-01ddf683dac7839e", "term": "金融市场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-632a5d8a277e99ea", "term": "最高价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-58ea250d5b8f6a1c", "term": "贴现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a05e199ed203d219", "term": "美国银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4b6372ce6f78606a", "term": "上海财经大学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dbf576f4fe4676f1", "term": "鞍钢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-519f9071f75ecab2", "term": "撤资", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2146d7865fc28eb6", "term": "接盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-93f442c41be30eee", "term": "救世主", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-52b766479492c9f5", "term": "开卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f656b2dd7fee6be0", "term": "后撤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5846a29a8b4dc792", "term": "阿胶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-06d9a3990ff5045d", "term": "金融股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b819fc4371df0abe", "term": "结汇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-95ef9a4de752bbf7", "term": "无息贷款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-666d4bdfcda8fe1c", "term": "税基", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-41a35130e698ecd3", "term": "营销部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-74592665f61727f1", "term": "对冲", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-965caff1f55d692a", "term": "海龙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8b217f5b46dcd190", "term": "安信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d8340a50768e51ab", "term": "萤火虫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b7f6aa9a1df29478", "term": "通联", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-da5391aaefee75fb", "term": "步步高", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bb71b0ba30e80b81", "term": "规划委", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3a574c6edb9b6506", "term": "中签", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f0414f880570e551", "term": "收盘价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1dacd888b6fde75c", "term": "国际大厦", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c9503dde6ca6e191", "term": "机制性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5dd09339eb41060d", "term": "挤兑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c14bfa3918958fea", "term": "比特", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-360833bb335825e3", "term": "开盘价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-df2520ff31c01a15", "term": "六合彩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c504039f1ffcbce3", "term": "存款人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f0e6ca779797df74", "term": "平仓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-13cbd422bf52f277", "term": "全聚德", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-85791a7ac7dce0a6", "term": "全面发力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-184902a3dbca9d56", "term": "公募", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-055f319cf3423c88", "term": "韵达", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-34d57c3d7cd9874b", "term": "鼎立", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f621802aa6fa6e94", "term": "银监局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7b88db3210925677", "term": "中国联通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9510b457121daade", "term": "乐视网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c4ecfe92be244a52", "term": "中国经营报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d8bcd8f966c75607", "term": "满堂红", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-859758a840c20d2e", "term": "国投", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-981565e256e1809f", "term": "选择权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8d0b6255d0552c52", "term": "金马", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4cc007b2f2251fef", "term": "出资额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c40f8581e063a24d", "term": "承销商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3c83b3d3903e1868", "term": "新卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d2a634e3ef385bd8", "term": "热钱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0a1834fce04b5df0", "term": "经济基本面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a96bfa51a1ef5430", "term": "通货紧缩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5414881253482170", "term": "特别关注", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9677f386bdcdd9c4", "term": "币种", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-644a5d8d90fa4194", "term": "银元", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4a8d973650cfce4f", "term": "通货", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a6a8e8254e926dc5", "term": "杀跌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f09bfe62e7f46821", "term": "股份有限公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e080af604ecc5d6c", "term": "自由竞争", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6b99a786a66a2f4b", "term": "新大陆", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a81d003ad509da00", "term": "资产负债率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-46548e4a62bcbd4b", "term": "暂行办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-64a18d936b32fa1d", "term": "分理处", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3b86257cea1412eb", "term": "涨跌幅", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b6858297916672f0", "term": "截止日", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-705d39954220f529", "term": "所有权证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-37b0e582d0495496", "term": "收进", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8c2857b870c7360e", "term": "债权国", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bc29e52523c04dda", "term": "华新", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ccc2a79cf6e611ee", "term": "天龙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f491bc01a0f8fdd1", "term": "百事可乐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d3b1fe8448c5279c", "term": "农林牧渔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2f34ccddf398d899", "term": "私募", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ee9791ac3777838d", "term": "华西村", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6e7c755fe7efdcff", "term": "商誉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8fa9a867d2aa60c9", "term": "奇虎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1c332701446786c1", "term": "银币", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9b21a13d0e27bd6e", "term": "抄底", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4253d62393257bd1", "term": "实施细则", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5f8b21ab698a875f", "term": "经济学界", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3611072f7ff5e598", "term": "减仓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e0f6bf725cee563c", "term": "信用证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-961df1bab3af52a8", "term": "购回", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6c8cbe0394fb7add", "term": "卖主", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-320b408e1b6f9ebd", "term": "管理办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eb73346dd61fa7f0", "term": "万事达", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fac5bc7a7f5188d7", "term": "交易商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9889f2c6de941226", "term": "行话", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a31adbd321c56fac", "term": "随行就市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-84e95101d6a283ed", "term": "领跌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a231c7505ad7a0a1", "term": "国华", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c65222db53454143", "term": "投资家", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d9b0b196b9f6ff7e", "term": "包钢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a8076a5ef01d06eb", "term": "信贷资产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9496df127f6eaf5a", "term": "汇源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b67657a7ce2153cc", "term": "中长线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b378fd80348bcffc", "term": "包销", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-92fa824475e61116", "term": "方兴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b69bace84f44ca73", "term": "公司制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-035ab2e2d760faf9", "term": "水仙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fe84c133b72cef5f", "term": "嘉实", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d1cd4e9440a49cf7", "term": "长岭", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c6ed692aa9982472", "term": "证券法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-151478d8c90992d5", "term": "新城市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-63c5e21e1b78bbb1", "term": "五环", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-20e1d4fb3172095a", "term": "尾盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-be3bbe0bab231cea", "term": "三农", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-372c7283637f2c46", "term": "布告", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1716495c4e64f660", "term": "中农", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0b2a09e35721ce76", "term": "组选", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-360c7430cfa04167", "term": "城投", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d1ab117217765035", "term": "跨年度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b457a84d9e842b0f", "term": "五道口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0c6264b2b98f6194", "term": "文峰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0a9ef3f4653990a4", "term": "翻两番", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-57b2dcdcb1e9a779", "term": "信贷员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-20f4747e664b9648", "term": "均线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-54cced86a797ac2d", "term": "还本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-49eaca2427b212f1", "term": "保护价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-097f9f9aaf0fd2bf", "term": "中国国航", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e9f97966477cc115", "term": "大东海", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-27e95593bb56f3fd", "term": "大盘股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a67907d9364c3052", "term": "商社", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d92e4d27f5791e49", "term": "北大荒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-453385d03235ae54", "term": "信达", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3906d0b404779b4e", "term": "总账", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-272f9a3fbf1ef4af", "term": "杜邦", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-32c9cfb50a578d77", "term": "重仓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-540aaaf5f9281f52", "term": "丹江", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9e82dca1b13413e1", "term": "普通股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c595ca497fd7f2af", "term": "香梨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0b8bc5c78a120e48", "term": "分散化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c4baa39abf44acd4", "term": "聚酯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-70e54f46e5a4b30d", "term": "汇通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6c1c74078fe1e5b3", "term": "老凤祥", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7f9dcf48842dc9f8", "term": "资产评估", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c284e19f8def68cd", "term": "磁卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9d8be5185694f073", "term": "个股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c017f3613ea30fa8", "term": "百大", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-61f956d75ca19c9a", "term": "投资界", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-89e327c2dee0b42a", "term": "低开", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-45eb4a325c1144c1", "term": "中北", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a50766c0683fd545", "term": "商业城", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0c2b56544bbd8158", "term": "气势如虹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-73bae75eda748ec6", "term": "中石油", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fde81afa46b60ecf", "term": "扣款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f7535a2144263e00", "term": "上证综指", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-94792f798f1f2870", "term": "仁和", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c938244dffaff175", "term": "原始积累", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cea75912b4145d2a", "term": "摩根大通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8b38145f4316dea7", "term": "验钞机", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2e1eb402761c7279", "term": "银行界", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-93a0fdbba821c7db", "term": "金融资产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b7b893aa8429914c", "term": "审计师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a7b5bd5fcfa6f5e8", "term": "广深铁路", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-db62dede8e282e3b", "term": "追涨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c5286ed8e20619de", "term": "储蓄率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-af24bfaba6511f79", "term": "波幅", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e29a66e938ee873b", "term": "流标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-18a5062166f32725", "term": "黑豹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bb6f2d9128608e06", "term": "日经指数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-008d26f05739db09", "term": "加仓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4b7cd4558c1de4ff", "term": "中化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5e557933a2abce21", "term": "寄放", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b6ce895fdfc846ee", "term": "南网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d62301d84c848c1a", "term": "宽限期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0de9576b2d6f0036", "term": "贵宾厅", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6d6714781239c257", "term": "估值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4a13cea8134a2692", "term": "合股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-95d8e5f1666433d0", "term": "商业周刊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4e6ede46515d70c9", "term": "售楼部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-88b51550e35dbb7a", "term": "金鼎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ca217164a907ccba", "term": "龙虎榜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aa019488db37f5bb", "term": "浦发银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4889b58091f12017", "term": "评估师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e4fc9aec4815a3e0", "term": "投资型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-72ca58b926799f2c", "term": "诡计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-37cb2214e8f99153", "term": "万华", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-15c94602ebcf45bb", "term": "天保", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-abf4047a9c51f75d", "term": "苏泊尔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-859c3a51a0c4e453", "term": "超跌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-19791ba4ea4ce920", "term": "银质", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e34c7bd4fedc7cd0", "term": "势态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d26ca9aea95b5b7e", "term": "净额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-87cae89c48d8d19f", "term": "当铺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f4fe48073a85c1a6", "term": "安永", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a22f0fe460d87255", "term": "天弘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-654f0b62e24d80ae", "term": "中国证券报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3d98469c9ddc0e81", "term": "古钱币", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2b8fa4a694835347", "term": "配股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-89c6fed34b89e82c", "term": "急升", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d103d0a7fa9b6087", "term": "爱立信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d1e0003faeedb5b7", "term": "金泰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9dd3b75366b2e7d4", "term": "狂跌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4345ff9f47f9b1e7", "term": "滞胀", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dc26092f271cb57d", "term": "复利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-188ad58db0d5bb27", "term": "抢单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-289d07e404c47581", "term": "信用度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d64df44c1e40bdc5", "term": "权证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-25d80dddd2fd9b62", "term": "白金卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-441228276c7470f3", "term": "流转税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5dc0e829708e29d3", "term": "重估", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-435cf38cea20f883", "term": "硬通货", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e504ecdc857ed903", "term": "长运", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b23911b7e2eaa139", "term": "华信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2de8ab7f2998ed9d", "term": "吴中", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4206d0372e4f53cd", "term": "华源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7ed8a6b413facf81", "term": "中铁二局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-51502ef71a560b5d", "term": "耐克", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d7b691ab353fb43b", "term": "产成品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-79d96474c368ef03", "term": "踏空", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-865c7ff8bf35da76", "term": "中集", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-93a3a89b31dc4e5a", "term": "中科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-39563895dfe52826", "term": "新鸿基", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-826b23f79d59f490", "term": "选股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8ca8f733f26c2970", "term": "担保费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b203231d83ae34c2", "term": "雅戈尔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-acf790ca28ab5e5d", "term": "群聚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2ca95127583b29bb", "term": "同城", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-18ab915a5dc5043a", "term": "开仓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-293956da6b8f0e81", "term": "出清", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d2e0d234ff32aa68", "term": "高点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-189395165405a38a", "term": "中信集团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c09a221b3d9e7b6a", "term": "波峰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fe4767864c78820a", "term": "风险系数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d6e09dc1be74119d", "term": "交银", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-32a46c10850b04dd", "term": "优先股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b14a2f06819b9bad", "term": "网通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-75004bfcc4331754", "term": "创智", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1fd645c04dd0cb27", "term": "新机制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eccd6e8e9f9c7907", "term": "基本点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-647588dd1e5ba52e", "term": "换汇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3a87009de7cb5b7b", "term": "中标者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-af41e6f50ce6f7c8", "term": "财智", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c613e26dcc4db0b5", "term": "实体经济", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2e17722eda52a59c", "term": "资助金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c331a755d01a3ce8", "term": "偏转", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-539eea86f1ec3dff", "term": "购汇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d5ba0ce3b488bd87", "term": "白猫", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-31a9ea1f384d0a75", "term": "凤凰卫视", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d1f96bbefa79b0ce", "term": "递延", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-21713f3d01f39e94", "term": "康达", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8a82b3496b403abe", "term": "证券日报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-87a38f9322245272", "term": "实得", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0db15f666a8da695", "term": "上海证券报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2c8bd8763fdd066a", "term": "三立", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fd4619e7716bd858", "term": "老千", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2adae4c804a7e22a", "term": "基民", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5f142d483c7060cb", "term": "控股有限公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d39ad2a80631a5e3", "term": "本票", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2bcc007c829a7e33", "term": "跳空", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d3227685a1844cd1", "term": "分界点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-df320a1e8a2f374b", "term": "引开", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-32fc3cd3691e44dc", "term": "大牛市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e27dc370ffa12af5", "term": "收藏品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-832e21a95e9015be", "term": "投标者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a92965bda0f4c2d3", "term": "民丰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0c493752205c6f1c", "term": "持仓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3f3f5ca6391c4977", "term": "四通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-29443e2196618da1", "term": "亏损面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c464ed164fce8827", "term": "昌河", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9ff3cc0909e51207", "term": "晨星", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-04c4c53c507daa8a", "term": "代理制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9665732de7e40e41", "term": "基价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fadf44d48de51a31", "term": "电汇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7ae1872412fae087", "term": "中小盘股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5c94b46b58266b82", "term": "虹桥机场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-33f6645910c7330b", "term": "资本密集型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c6029fdce04b14d6", "term": "中投公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-08ba61f77c19a1b7", "term": "有偿转让", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-61e8655bd5f9297d", "term": "满仓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-951dc30eaf891641", "term": "回收期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a3657cba77d25515", "term": "缩量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b0806c28d5e89d45", "term": "评估费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cf4fb0852748f59d", "term": "备付金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e892199420da1ca9", "term": "混业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-358f6064aa4e1b11", "term": "财付通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7b4194af66c082f4", "term": "银华", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-90e2c7cc6cabf8dd", "term": "三元", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bfaef8f824037795", "term": "华光", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c94ed220efb8d9ce", "term": "万家乐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4a82aa48aa26cfd7", "term": "优酷网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f91e59a0579cc81c", "term": "外汇管制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b61332870005a5e3", "term": "外汇资金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0dc4c2cf36d3ee51", "term": "空仓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6a7184d811b30a42", "term": "纸钞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f8553e8773c8b9f7", "term": "货币流通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2378eac397131352", "term": "流动资产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1f8e3ac51142dce8", "term": "外管局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-89228699dc269756", "term": "横盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-97d7424c2855b7c4", "term": "兴发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5331a0a346882eb1", "term": "止损", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8c520a078eee2aa2", "term": "九龙山", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0233e83541ccea10", "term": "艺龙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-164e3dd7877674ac", "term": "基期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7a6b614494ccaf91", "term": "中房", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fe1a877ead4a36a2", "term": "瑞士法郎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-32feb44148b6cfb5", "term": "晨鸣", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fa1031d1973b2ef5", "term": "建信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e965945ad6fcaebc", "term": "做空", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b03791c4a63ce4cf", "term": "商网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-84f9715cbd5192d0", "term": "长盛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-313cbb446a80e7a5", "term": "建仓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-215ad4c22d6b1d2a", "term": "鸿基", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1a44f288bb0d7a52", "term": "外盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-170052fbeca2e8e4", "term": "纯银", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-78bcff0a164a2e8e", "term": "山航", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fbecd03713358acc", "term": "持币", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9fdfa5c2c2e089f3", "term": "注册费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0cca049a6bea0627", "term": "办税厅", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c4e1a11c6b15da43", "term": "实盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3c50e8c6c82c5b9c", "term": "体制性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-17455309210864c1", "term": "大化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-87efa2f597d227e0", "term": "海纳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b01dfdee82577298", "term": "安联", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c6c8af0d349ee72e", "term": "金陵饭店", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-80650d981a283f4c", "term": "黑卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-416e1fe4f60e3622", "term": "摊销", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-36ca253a63148696", "term": "剩余价值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6f6f5aad3a767b03", "term": "半年报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2379c897f524b86c", "term": "天士力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dd308270d25e934f", "term": "抛盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-51c4825f95337426", "term": "绿景", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9bdfb92edaf37137", "term": "证券时报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e540b010178d985e", "term": "东阿阿胶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8563d231cf0be83a", "term": "耀华", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cd84f219281a91c4", "term": "龙卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7504ac9ac39b312f", "term": "补仓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b6584d86edaf171b", "term": "绩优股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-81088d55e149bd90", "term": "股利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2661644a7cfbdc9a", "term": "市场报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7a210474e8c4c611", "term": "提单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-13044e7a50f71a04", "term": "新材", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6d268e06098d8a12", "term": "春兰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-08e7230dab616f30", "term": "创投公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6a72612a3337a89b", "term": "汇款人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fbe5fe09cfaa0fca", "term": "缴足", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a20c2ee15fcc31a0", "term": "售汇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-26433635a6756606", "term": "分析师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-69ef0b9762e62be5", "term": "控股权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6580afb523ce5200", "term": "冲销", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3f1c282c69849b42", "term": "精算师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b51c834085159ff8", "term": "等价交换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0249e19d4270a57a", "term": "质押物", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a04bc9ffa57c2277", "term": "祥龙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ac691c5ba175cb65", "term": "赛迪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c8c01cc8376cc000", "term": "华讯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ac71fbe22f19d1c4", "term": "里拉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1cf8e8a20bd9fc7f", "term": "领军者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-107babf5e2cb574d", "term": "宁波港", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-beffb86d1e2042aa", "term": "交强险", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c7a02e78e9252679", "term": "邵氏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8dd3cd2846665a01", "term": "普跌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8b10c45fb1996f56", "term": "国际银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9561f995fb1b0cf7", "term": "北京银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-62092d8e9732e57a", "term": "定投", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-59feb536d6882eb0", "term": "银行部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-43bc6d3fcdf0ca21", "term": "中纺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d9096948e8cde74c", "term": "波音公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-830a5dee2d5c0ca3", "term": "莱钢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-15469bd9558fc2ff", "term": "狮头", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b54fcfe3df01ddc7", "term": "出超", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d4187dfd3b115334", "term": "华鼎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a51defd089de2cf0", "term": "星美", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e25b8f3fb58a34b8", "term": "丰华", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ec643aa1270bb206", "term": "对赌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0c9f4574345de5f2", "term": "易宝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-21b84f8453758504", "term": "日照港", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eaf4a24ed9e1e7bd", "term": "宏观经济学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b2bd2ee5fb35bd13", "term": "持有人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6503f342b91049e5", "term": "扛住", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d0383483ac76694b", "term": "尾市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c55eec8d7d6ad967", "term": "科达", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4010ae894219b567", "term": "东盛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f116cf8152adecad", "term": "具结", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0bb69dac06fc3326", "term": "法律部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-70926e205c46b412", "term": "东信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-641b3ecedafa8477", "term": "宏业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4507d7d251162e75", "term": "金银币", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4214b9af7ae0cdcc", "term": "单选", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fd8bdfade7284b22", "term": "武昌鱼", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5cbbe143411a89be", "term": "二季度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bb1cbcbb52441ca5", "term": "集资款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2ceb2b1d4314c805", "term": "天海", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-52b66a903d309030", "term": "担保法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-31cf8321f61a7f69", "term": "收汇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-25e1025e895826b4", "term": "股改", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3ac91a388d38e2b7", "term": "财经网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4de49956b334f06c", "term": "波谷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e40d2282b6c29e4a", "term": "发行额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8087d19db6c75ea2", "term": "英达", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9672fd549f6c17ff", "term": "氯碱", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-08e16f05294fe1a3", "term": "汽油机", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-11ff1872b6e3e5b9", "term": "担保金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fb180087bdb389f6", "term": "小阳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-28c0351e799a4120", "term": "泰格", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1b1d9a339d63180d", "term": "安全度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c2ee8c7e044b7367", "term": "雷伊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5eaaa4df66675814", "term": "湖山", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-809ca9ee823b704b", "term": "赊销", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-225fc0b6dc79bf1f", "term": "金融部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0c6275143832371f", "term": "受益人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6505891003fa11b6", "term": "花雕", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-db136012c719e704", "term": "入市", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-664711954a3e6b82", "term": "健民", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9a2fe562fe4ddd24", "term": "交易税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8fcd3e324c27718a", "term": "金瑞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a991c64dcb1a4bf5", "term": "国民银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e95aa85c2e1bcfa7", "term": "开户费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-473b559c306f7821", "term": "仓单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fb8aa65ca6b630b5", "term": "南化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4a242b0930c1ac3c", "term": "工作方案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6894a594287e7d6e", "term": "伪钞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7683ee4a7ffa07ed", "term": "华富", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a39090bd319e9bd6", "term": "外汇资产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f996aac953d72ba1", "term": "大元", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2e4eb1ac89a3d06f", "term": "中证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4695047dad46775e", "term": "淡马锡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c7856e2a3bc0521e", "term": "携程网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-33ac263036002177", "term": "古币", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4b54296482401c42", "term": "坏账率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3821e1ded9ee21cb", "term": "黄页", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fb8745255e03f69b", "term": "天鸿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-39e1a976770c25e1", "term": "三力", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-29791fb78c6ec281", "term": "诺安", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6d78add099c5608e", "term": "正常性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b267497b9241c3a6", "term": "港铁公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0b2ac68969c93c45", "term": "抬轿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-03eb9eb259945b59", "term": "侨汇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-973c723e4dbcf56a", "term": "新高点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-713a3a8e8bb7f0c7", "term": "商业银行法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7ad27fbee06fcc70", "term": "中国太保", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-77a7fc76c1892b49", "term": "热点话题", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-865fbfb3c59c2655", "term": "租购", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-91545945e6dea885", "term": "黄金储备", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f4026b40fd3ab396", "term": "大摩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e09ad08718d48a7f", "term": "百事", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e6105bf7567b70f9", "term": "记录员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8dc2d62646c9cba1", "term": "纪念钞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dc121db5a7d2fedf", "term": "研究报告", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-604818cab89b9172", "term": "冲高", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-96cc126abdb7e6e1", "term": "国际金融报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2094da51d8447281", "term": "出口业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5032b436f45ee5c6", "term": "卡特尔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5eb2ceb799298e5a", "term": "新天", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-776bda0db2280ba3", "term": "邮币卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c77cea3879f31f3f", "term": "亚星", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-31fe7637374a9c9f", "term": "地量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5d6fcd16e1058c67", "term": "秋林", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-03958a42c90f964f", "term": "追收", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c9cdd1dac64ee27f", "term": "金果", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a6a20e2ab6dc7301", "term": "至高点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5ae6b41bc4279a84", "term": "复权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3af2621aaee8f8fc", "term": "国库券", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-66adb64c3ee1fea7", "term": "总成交量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1d9fff4420e990d9", "term": "金融史", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9341fe6f5340b556", "term": "农行卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5e757c7fc575c41e", "term": "富国银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ed8d9010e832cbc6", "term": "发行期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0bebb8ad6d6430f5", "term": "摩根斯坦利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-73cf3b5b3043f61e", "term": "天香", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-538a738273ef91e7", "term": "厦华", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-65bf11f89d0700d6", "term": "煤气化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-39f2b54f238b7ced", "term": "国资局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-03edefa868e7186f", "term": "探路者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8d0d70cb8b1808cb", "term": "对价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9e1cd68ee62a8c70", "term": "抗跌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bd6207bbf01b7488", "term": "卡包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-06d8b5edc8650546", "term": "金帝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-63a785df17aa7f7d", "term": "中恒", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ebcf6c57327ce062", "term": "平均利润", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a8f5b66d38c3f1b0", "term": "天方", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7ca6f7a87240ad51", "term": "自然人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-34209e644b2243b2", "term": "法人股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-df8ac3cd9db5aa58", "term": "点位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-04bff3746d7bf117", "term": "簿册", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e8eec20463ba69ae", "term": "中国经济时报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-929fb5b4d016f2e5", "term": "国通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aaa53e1c293bfd34", "term": "看跌", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a2da2ec3ad370608", "term": "断点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2ea7d0237e592049", "term": "法币", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dbd082c688310172", "term": "普天", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-14fbf06588f13173", "term": "达标者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-02bf140923ec6d0f", "term": "中润", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-06d4f871757d3ac7", "term": "律师事务所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-467f6d4c4e8ecf4d", "term": "投资业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f5d2b66e44945cf6", "term": "金交所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ceb0fd888632ea00", "term": "银泰百货", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3d337d1af948b939", "term": "大降", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9fd9df3438d01940", "term": "概念股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9b6ea48b511ffd60", "term": "汇丰银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b465b098a20dc6d7", "term": "套利", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2cbaa700eb286eb6", "term": "中国企业家", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3e9aa9d03e0aad18", "term": "中联重科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bf6a393bb95a87b2", "term": "中恒集团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-53bb022465b58236", "term": "物物交换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-649372963f2c3cb8", "term": "货币战争", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a27711f00ded393e", "term": "东软集团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-24b4c104360a9873", "term": "削价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-147f1020323b2e25", "term": "国富论", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-81e1457d816ca975", "term": "新大洲", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1df3a119e3252ff3", "term": "景顺长城", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a31328a390342992", "term": "申赎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2c9d4cfb11180922", "term": "普卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1be1a9c4bfd5cf91", "term": "申报率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ee87de5594ade9d4", "term": "集资额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3872eefeae8b3c41", "term": "管理学家", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-93d56df55705d9ab", "term": "即期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e6d472dd0860ebdc", "term": "目标公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9fa77fcfb4eded48", "term": "零存整取", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5b6a15aba8ee6e3e", "term": "中华工商时报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b54f971ce77a3f71", "term": "重仓股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a2dfe697500ef962", "term": "百花村", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e74ed1524b7f1f75", "term": "合作协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0fc7b53238f9c75a", "term": "金岭", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-61e40c8575ce2f87", "term": "金盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cf9913a54291303d", "term": "加拿大元", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-77d73658c5ef6239", "term": "海泰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e06291a487bc406e", "term": "中小散户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-15df9e55adb60aea", "term": "建设银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1ab916f726a36f96", "term": "南京港", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a3927be888ec35d8", "term": "营口港", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5594ceb577d08f0a", "term": "融资性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c3651a9d267f05f9", "term": "折旧率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6e4a3be6ac6eef70", "term": "中青宝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c17cea7c55895a2f", "term": "华南城", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7d9105b50d71b13e", "term": "存定期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-95260aeaa6772bb7", "term": "日线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1346e1fdcb0fe92a", "term": "宏盛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-daad2442afe5c6b6", "term": "雅虎公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-88094ec8dd194a0a", "term": "联电", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-508de19021545b30", "term": "贝塔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6a7e5b326fa98dcf", "term": "展讯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-812d229f54f65fd3", "term": "封盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-09dc29e2bee13b37", "term": "承销团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7f3932c957ab33ca", "term": "保函", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2d915e424c2445ca", "term": "信诺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e90cd60308253e78", "term": "托收", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-887459ea3ccd4294", "term": "七乐彩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c63cbdd63e835cd3", "term": "全局观", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-187ea60bb22d0bee", "term": "云天化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e53c19100697d5f8", "term": "人头税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-237a18743d6dad23", "term": "微观经济学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0f0e967737111136", "term": "正兴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b06124db2ba69834", "term": "瑞银集团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-246de60e58569717", "term": "销卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f3b4f65e07952533", "term": "上海机场", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-07995d8844974d3e", "term": "伊泰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fcd0026a8a34f2d9", "term": "垃圾股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8522fa30b1750dae", "term": "惠天", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9ffdfadfd3517681", "term": "君子协定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-277e793ef5803fe6", "term": "补充协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2db072dfd66da0cb", "term": "定税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7b00647c1aecbceb", "term": "国瓷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3672efe13af265cf", "term": "掉期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1da908db115e11bb", "term": "海富通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-955c1cc958c45d1c", "term": "大通银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-29a4afd758a61a09", "term": "宜华", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-771d0006ff5ea944", "term": "小盘股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b81f639882d3c3b3", "term": "交易厅", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8a5f183ceec69588", "term": "海普瑞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aa0c22bf1452b18f", "term": "净收入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9b48d3e03dbf1303", "term": "国美电器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7213b004c3a7ca4d", "term": "首局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-74a64239f37b3fe1", "term": "卡种", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-acde6818662d50a1", "term": "投资量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2b6d23ed4e0a5cf4", "term": "万通地产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4ff379d07d47511a", "term": "新黄浦", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c234864286c35738", "term": "最低值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-01d99ed66651a103", "term": "六渡桥", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-46a9e0259575d215", "term": "唐山港", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8408aab284eb3903", "term": "双马", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-683bb52a354c1e50", "term": "国发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0038f868bc6f18aa", "term": "威达", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-28ca9fb7166d2e06", "term": "黄金宝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d19b8a3c5804daf3", "term": "中侨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6f2a7ff359094433", "term": "泡沫经济", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7222b3db7122bde2", "term": "南方公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1f2382ea264b4702", "term": "小肥羊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-85f1ea4b403936f8", "term": "限售股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-121da1bc56a59e36", "term": "同庆", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aad9fdebff908531", "term": "罗莱家纺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c921497d13173cf7", "term": "汇划", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a6b8ce9efef06c5c", "term": "超标者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-355cf92ff532ab9e", "term": "公股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-34a91234f310cadf", "term": "协调部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a961e58025588a71", "term": "张江高科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-acefafcf1a78706d", "term": "瑞龙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4a4ff53fd03f157d", "term": "赌马", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1ac554c079e98fd1", "term": "跨国银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9550507d68862144", "term": "产业资本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6291d72203ac2011", "term": "天富", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2022efee5c8af5d5", "term": "禁止令", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0c733e322f5fae22", "term": "重庆银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-285e85383af4a8f9", "term": "九州通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f3fbc4663f3ecf29", "term": "思达", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cde07736efcd2d89", "term": "揽存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-585f0891ebfab624", "term": "南控", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1b97e185df3ef5f4", "term": "新鸿基地产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cbc3aa35cadc9a20", "term": "股权转让协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-288dfe6a519a8d91", "term": "江钻", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4e19ae78861dcbc5", "term": "麦考林", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0ea9b4608ce949d0", "term": "固定资本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cd05a47f216d0301", "term": "三普", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-98c61ee5246e1ba8", "term": "卖空", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-59f38097bc63ca06", "term": "巴克莱银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-38f5c5b2b5924a3e", "term": "补进", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eb78b8f26ccbd9c2", "term": "双币", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aec5e7155c35ef60", "term": "光明乳业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bf9e16fdf05ecaaa", "term": "经手费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e0f8aebbf712178d", "term": "中国建设银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5ff39bf24b7e60f6", "term": "古越龙山", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-97b6e2e9e10a3bc4", "term": "建通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-72e4eec56dfffe91", "term": "投资品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-78d1e3ed5cf8b388", "term": "浦银安盛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dff700ce6de2fb4d", "term": "理财周报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bc4b94c06f4640ec", "term": "筑底", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-49a8410bf8e89cd3", "term": "煤炭股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-606b520a822ae72c", "term": "抵押率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1341acf0d08523e1", "term": "证券市场周刊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5fabc71918e42919", "term": "农化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-09583030dd1a6eda", "term": "涨停板", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-11e37c1fff67c6b0", "term": "税点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3ef287b768937a6e", "term": "美股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ccb8c855215e8600", "term": "零首付", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b0fb2fd9f8915a17", "term": "买价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1980df0d53239e23", "term": "中国石化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-05c6b393fb737984", "term": "中资银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4e9495186d40ca7f", "term": "利息率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f3770a0cf31876e5", "term": "套汇", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-097b4d861e8740ff", "term": "汇丰集团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-857aba0a83adabaa", "term": "飚升", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1b49293b3cf4d68c", "term": "企业集团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-987153f789c691b6", "term": "蒙牛乳业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-eba7d1fb922f6424", "term": "银建", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fc37ac64af7bd889", "term": "现值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b820b790797095e3", "term": "转押", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ab0c6b83220f6bfa", "term": "光亚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ffbe7162d726d59a", "term": "北新路桥", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-318746e181f6da2b", "term": "宝盈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cff190c48564581b", "term": "组织机构代码证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a35f57ca8bac8215", "term": "绩差", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-93c0c62722e30207", "term": "锦州港", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1b98b39cf85fe699", "term": "桐君阁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f50fffd2fa219954", "term": "海欣", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-07db82505f654e9c", "term": "金地集团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-964eb16670bc7903", "term": "国有股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-37d50645ef20476d", "term": "中国商报", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-195b30fdebf6fe9a", "term": "护盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ef433a499acb228f", "term": "铜城", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-daed30ebc138e319", "term": "颈圈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a5b094573e5db06d", "term": "旭光", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bbab642beb74e05e", "term": "托普", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-08cb6996e506d76b", "term": "发票管理办法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-89b36bafd27ffbad", "term": "芝加哥商品交易所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-33fae51fa0bd72d1", "term": "动力源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e324e4201796c269", "term": "南顺", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-89425c592fa84892", "term": "换股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-552c69005a2b470f", "term": "袁大头", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f91fc3327bd78607", "term": "高息揽存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9368c87f0f246a2a", "term": "三联商社", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3f11ddb5cc699443", "term": "公司章程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-17ea4d78d9dee597", "term": "浦银", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1d5a7aa298c27e69", "term": "瑞士银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fb87182a67d4a1b6", "term": "华天酒店", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f83c0d108b83df08", "term": "投资学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c6e9641c9a7e7c3e", "term": "永大", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f7dc16e222ef2299", "term": "附单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-82f73ab0cc58c1dc", "term": "上海金融学院", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dae7c8ecdef12e06", "term": "华润集团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9df4a20b52f46e3c", "term": "波段性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-fdfadb8d09d41266", "term": "中国人民保险公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-33dbfdc3b4b67b9d", "term": "博通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-57722892c190f9b5", "term": "川大智胜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-71e28e83bb091892", "term": "成都路桥", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2b126bebcf607945", "term": "新财富", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-404a026e4c12e403", "term": "汇丰晋信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-dbb7d9edbb883074", "term": "盘后", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-52c6d4f2b804c3b7", "term": "鲁泰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1ed74a6b746b49ce", "term": "平邮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b0965317a371659f", "term": "江苏舜天", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-89f362c1538869f5", "term": "恒立", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-29a62b20c606ba60", "term": "清华紫光", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-05cef08c7d92d05a", "term": "金健米业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1df7b49623798cb2", "term": "南京银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1e47b0633b3c9479", "term": "国中", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f69bc066a10d86c3", "term": "天宏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-484ffb39ecda6cf4", "term": "物贸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-492e1127b289f56d", "term": "拆伙", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3c30052b72e6a365", "term": "爱建", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1af656974597c996", "term": "多伦股份", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a3136121f1ae7bb8", "term": "宝信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-17cf571e2465be48", "term": "承诺费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-63b606b4f5bf416a", "term": "期货交易管理条例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f9dd8587bb2f69e1", "term": "收购人", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-62241793c4137de1", "term": "空开", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d4fa6cfd1d3ee7fd", "term": "维加", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e4ee44aa833b707b", "term": "国联安", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-14484b435e795791", "term": "福日", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a3cf3595fd0fb67e", "term": "记账员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-617372789a03e2eb", "term": "违约率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e38396f57b64b8db", "term": "金普", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-04602ae101dceacf", "term": "浮动汇率制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f28ac543020ec3b3", "term": "验旧", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ceebc594a0c3e5e3", "term": "斯达康", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b9fdf8d0bc258d3f", "term": "提货单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6bde3ac6c9c504ca", "term": "浪莎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-35cebed889562c0d", "term": "苏宁环球", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-443b913e2db5cf54", "term": "银率网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-332f51634cc43594", "term": "潮宏基", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1f93610ed5f5250c", "term": "泸州老窖股份有限公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e0283814cc4bd240", "term": "到期日", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2f561b08e8025c03", "term": "宝光", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-48122b76b5ab911a", "term": "罗克韦尔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-98a2f28c087e672c", "term": "雪莱特", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a86d9854697950d2", "term": "中国宝安", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-43fa5bc8485aae4b", "term": "成长性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ef3ad9766a53b5f7", "term": "中国信达资产管理公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-569c0214d3119d29", "term": "保增长", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6aca96e5b1d955b8", "term": "圣方", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2b5ae07a47478a97", "term": "大华银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-66efddb57041233f", "term": "融资款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c5bf35822d0da88a", "term": "保网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-af43d8b12fed02f0", "term": "质押品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e6e49fc1a9411f69", "term": "资本利得税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7e62b16486c44bc7", "term": "企业所得税法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-92bc1a0bee221320", "term": "创业网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b13582ef3d59b201", "term": "互联网周刊", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-edc6d5224a370d13", "term": "申购款", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-80bf6a04ff83c991", "term": "完税证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4bc7ff86b25d70b6", "term": "方大特钢", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7464b2b4de62c556", "term": "精伦", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9c8240ecd655418b", "term": "试点方案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a0b23a47b4ad1c19", "term": "下轨", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-80f224ab8a81e959", "term": "借记", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ab53d100b869f529", "term": "债务国", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-54b304e0b1fdb1c9", "term": "假账", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5d038920dd95292d", "term": "统计系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a05d6eb4682a205e", "term": "朝华", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8929c9798e94aef8", "term": "计量经济学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-96ad547e9d6c8fd1", "term": "业务线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aed30d4b475e4613", "term": "国家统计局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8dc8126b42465d2a", "term": "增资额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-06ea8bde5686ea0d", "term": "衍生产品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f401789d1521b80c", "term": "补价", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-754fb5c3000c045d", "term": "万邦达", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-12553f21ccdb0214", "term": "中国网通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-47633c5b4a68ff5e", "term": "划断", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e1f2d6c09346c642", "term": "同济堂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-97bddbabc08a8360", "term": "康达尔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c8ed8a45c09a726e", "term": "洗盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cf8bbe40d2b95cbc", "term": "九龙仓集团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4b0177186efb0379", "term": "信立泰", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f328318d61e18c58", "term": "华联商厦", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-78090c8c34392e6a", "term": "奖励金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3aef9da7a1ca50d3", "term": "广联达", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d6938e559e048d27", "term": "收购者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5261c19b18d14c5c", "term": "万利达", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b64f548879525bcb", "term": "借出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-700e25dbf5c1fd5a", "term": "合肥三洋", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f5fe9d705aa9a32c", "term": "暴升", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d1ce2ee9bf3ff19d", "term": "残余价值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aa3e43872250805f", "term": "澳优", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-76b89ed3608c0000", "term": "累进税", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3504732b81c53ec8", "term": "经贸大学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-54f5eddf1dec4c3a", "term": "超跌股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c510e1b094bc409e", "term": "新锦江", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6dbe99ad1967ac60", "term": "汇丽", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-231e40e2c395cf9a", "term": "方大集团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-cc38d9c9466a23ba", "term": "港股通", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c93c2ea0ef0601c8", "term": "宝姿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b0f60b640f53b37a", "term": "公用科技", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5533f08ae6dc81bd", "term": "拓尔思", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4ccac1e33312c8ea", "term": "新东方", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-03c1ca90f9c14a0c", "term": "昌源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b664b17a050c0e88", "term": "锌业", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b1eff676a20d24ea", "term": "银行学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-48a5893debc84eb9", "term": "信联", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6af5ce2228bb63c5", "term": "口令卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-95a791212b437abb", "term": "大北农", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a7a0be1535e13b93", "term": "封闭期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4ff26aac9a408eac", "term": "前手", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c28df6b8b547214f", "term": "南玻集团", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-b21395bd0841727e", "term": "双币卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2dfc28e1e9990d3a", "term": "存放处", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-6c06b399327ef697", "term": "提额", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a6662b6927ab6376", "term": "领购簿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-09fe9baba03b297e", "term": "共保", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-af4fbadf1afdc3ba", "term": "出千", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-94b91dacd92a8166", "term": "新秀丽", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aaf38a3c49856fd6", "term": "除净", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bb9c01acc7ea5e77", "term": "中彩网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5401ccfca3dab37a", "term": "和讯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7efa3049f6d2dec2", "term": "第一财经", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-385d5d8d9e1f7ec6", "term": "信达资产", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c06342863612ff85", "term": "泰达宏利基金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-1fb189c5060ad9bc", "term": "理财金", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8716cf5fc5d5181c", "term": "资本品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d63a731bf3a95e9e", "term": "轮换制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e5ea46ebc1c7fa36", "term": "中国工商银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-5d51f81da486c867", "term": "巨潮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4a20eb1ab81ec0db", "term": "股分", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f3d55ec54026ac6e", "term": "转换费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-977f9a9f9663eb60", "term": "回档", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-885023085c6f3580", "term": "芜湖港", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a0683b0217b46e1c", "term": "除息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-20e51a0b18041e7e", "term": "万年薪", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a0330e44e6f79e34", "term": "嘉瑞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c989a920e8963e25", "term": "斩仓", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c512685f56c71cd8", "term": "方源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-9572104176ce4055", "term": "金元宝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f3f33d967cb78233", "term": "中服", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0847925d5ab74eea", "term": "快公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0c6722593af21b89", "term": "美雅", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7de9454c931ab53a", "term": "验审", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a071a060fcb264ca", "term": "换手率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4a30d91f884713c5", "term": "冷却期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-d7a05d322b0b080f", "term": "广发银行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-58771f988379d5f5", "term": "贴现率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-145d7e342db609b9", "term": "银广夏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8ad6349b4b007847", "term": "香港交易所", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-2434add91e82346a", "term": "华昌达", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-a022199140ab48e6", "term": "聚友", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7fdfec5010d1aa74", "term": "贝因美", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-aeccdfc0f95220dc", "term": "龙建", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4735fe7071d711a2", "term": "买空卖空", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-e862162fe65a3cea", "term": "仪化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-462ee5d67e659fa9", "term": "屯积", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-8911099b06978cb8", "term": "新股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-c74745cd782b98c8", "term": "生意宝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-bedd43874e3380e9", "term": "皇台", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-3e8fc46e292e9ee2", "term": "下破", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-04c8173014c5b240", "term": "国祥", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-ed1151e9adec7569", "term": "奖励费", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-f49ab624038de424", "term": "招行卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0fab0f6f2e6adb21", "term": "豪盛", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-355a00104ad15dc8", "term": "运营部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-60c0ac05930f721e", "term": "小盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-98a7ebacbf8d5c33", "term": "康卡斯特", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-43b3746bd24138c4", "term": "德豪润达", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-84c86529ba0d9c74", "term": "总水平", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-83e9980279c82dd1", "term": "拒批", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-7d2bcecc270f31ba", "term": "指标体系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-adb05a0ce851e772", "term": "流通股", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-44f2794c18b81961", "term": "环球企业家", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-805e389454778c63", "term": "甘化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-749cae9a4482cdb8", "term": "负利率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-123ff5d7a55cf852", "term": "关联公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-0619d27376e84672", "term": "商通卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-449e70601f158fb6", "term": "宝瑞通典当行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-14a713d881ccc31e", "term": "宝诚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4df8985f2782bb31", "term": "源发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-finance-4ff6f57c03032fad", "term": "非现金", "aliases": [], "corrections": [], "category": "thuocl-common"} ] }, { "id": "technology", - "version": "technology-zh-v1", + "version": "2026.09.24-v2", "locale": "zh-CN", - "reviewStatus": "project-seed-needs-domain-review", - "sourceIDs": ["cncf-glossary", "nist-zero-trust", "spdx-spec"], + "reviewStatus": "curated-and-imported-needs-domain-review", + "sourceIDs": [ + "cncf-glossary", + "nist-zero-trust", + "spdx-spec", + "thuocl-technology" + ], "terms": [ - {"id":"technology-cloud-native","term":"云原生","aliases":[],"corrections":["云原声"],"category":"cloud"}, - {"id":"technology-orchestration","term":"容器编排","aliases":[],"corrections":[],"category":"cloud"}, - {"id":"technology-microservices","term":"微服务","aliases":[],"corrections":[],"category":"architecture"}, - {"id":"technology-service-mesh","term":"服务网格","aliases":[],"corrections":["服务网各"],"category":"cloud"}, - {"id":"technology-ci","term":"持续集成","aliases":["CI"],"corrections":["持续急成"],"category":"delivery"}, - {"id":"technology-cd","term":"持续交付","aliases":["CD"],"corrections":[],"category":"delivery"}, - {"id":"technology-iac","term":"基础设施即代码","aliases":["IaC"],"corrections":["基础设施即代马"],"category":"delivery"}, - {"id":"technology-observability","term":"可观测性","aliases":[],"corrections":["可观测行"],"category":"operations"}, - {"id":"technology-tracing","term":"分布式追踪","aliases":[],"corrections":["分布式追棕"],"category":"operations"}, - {"id":"technology-load-balancing","term":"负载均衡","aliases":[],"corrections":[],"category":"operations"}, - {"id":"technology-failover","term":"故障转移","aliases":[],"corrections":[],"category":"reliability"}, - {"id":"technology-idempotency","term":"幂等性","aliases":[],"corrections":["幂等幸"],"category":"distributed-systems"}, - {"id":"technology-eventual-consistency","term":"最终一致性","aliases":[],"corrections":["最终一至性"],"category":"distributed-systems"}, - {"id":"technology-strong-consistency","term":"强一致性","aliases":[],"corrections":[],"category":"distributed-systems"}, - {"id":"technology-event-driven","term":"事件驱动","aliases":[],"corrections":["事件区动"],"category":"architecture"}, - {"id":"technology-message-queue","term":"消息队列","aliases":[],"corrections":[],"category":"architecture"}, - {"id":"technology-ddd","term":"领域驱动设计","aliases":["DDD"],"corrections":[],"category":"architecture"}, - {"id":"technology-rag","term":"检索增强生成","aliases":["RAG"],"corrections":["检索增强生城"],"category":"ai"}, - {"id":"technology-llm","term":"大语言模型","aliases":["LLM"],"corrections":[],"category":"ai"}, - {"id":"technology-vector-database","term":"向量数据库","aliases":[],"corrections":["向量数聚库"],"category":"ai"}, - {"id":"technology-semantic-search","term":"语义检索","aliases":[],"corrections":[],"category":"ai"}, - {"id":"technology-prompt-injection","term":"提示词注入","aliases":[],"corrections":["提示词注人"],"category":"security"}, - {"id":"technology-zero-trust","term":"零信任","aliases":[],"corrections":["零性任"],"category":"security"}, - {"id":"technology-sbom","term":"软件物料清单","aliases":["SBOM"],"corrections":["软件物料青单"],"category":"security"}, - {"id":"technology-supply-chain","term":"供应链安全","aliases":[],"corrections":[],"category":"security"}, - {"id":"technology-dependency-injection","term":"依赖注入","aliases":[],"corrections":[],"category":"software"}, - {"id":"technology-reverse-proxy","term":"反向代理","aliases":[],"corrections":[],"category":"networking"}, - {"id":"technology-garbage-collection","term":"垃圾回收","aliases":[],"corrections":[],"category":"runtime"}, - {"id":"technology-concurrency-control","term":"并发控制","aliases":[],"corrections":[],"category":"distributed-systems"}, - {"id":"technology-version-control","term":"版本控制","aliases":[],"corrections":[],"category":"software"} + {"id": "technology-cloud-native", "term": "云原生", "aliases": [], "corrections": ["云原声"], "category": "cloud"}, + {"id": "technology-orchestration", "term": "容器编排", "aliases": [], "corrections": [], "category": "cloud"}, + {"id": "technology-microservices", "term": "微服务", "aliases": [], "corrections": [], "category": "architecture"}, + {"id": "technology-service-mesh", "term": "服务网格", "aliases": [], "corrections": ["服务网各"], "category": "cloud"}, + {"id": "technology-ci", "term": "持续集成", "aliases": ["CI"], "corrections": ["持续急成"], "category": "delivery"}, + {"id": "technology-cd", "term": "持续交付", "aliases": ["CD"], "corrections": [], "category": "delivery"}, + {"id": "technology-iac", "term": "基础设施即代码", "aliases": ["IaC"], "corrections": ["基础设施即代马"], "category": "delivery"}, + {"id": "technology-observability", "term": "可观测性", "aliases": [], "corrections": ["可观测行"], "category": "operations"}, + {"id": "technology-tracing", "term": "分布式追踪", "aliases": [], "corrections": ["分布式追棕"], "category": "operations"}, + {"id": "technology-load-balancing", "term": "负载均衡", "aliases": [], "corrections": [], "category": "operations"}, + {"id": "technology-failover", "term": "故障转移", "aliases": [], "corrections": [], "category": "reliability"}, + {"id": "technology-idempotency", "term": "幂等性", "aliases": [], "corrections": ["幂等幸"], "category": "distributed-systems"}, + {"id": "technology-eventual-consistency", "term": "最终一致性", "aliases": [], "corrections": ["最终一至性"], "category": "distributed-systems"}, + {"id": "technology-strong-consistency", "term": "强一致性", "aliases": [], "corrections": [], "category": "distributed-systems"}, + {"id": "technology-event-driven", "term": "事件驱动", "aliases": [], "corrections": ["事件区动"], "category": "architecture"}, + {"id": "technology-message-queue", "term": "消息队列", "aliases": [], "corrections": [], "category": "architecture"}, + {"id": "technology-ddd", "term": "领域驱动设计", "aliases": ["DDD"], "corrections": [], "category": "architecture"}, + {"id": "technology-rag", "term": "检索增强生成", "aliases": ["RAG"], "corrections": ["检索增强生城"], "category": "ai"}, + {"id": "technology-llm", "term": "大语言模型", "aliases": ["LLM"], "corrections": [], "category": "ai"}, + {"id": "technology-vector-database", "term": "向量数据库", "aliases": [], "corrections": ["向量数聚库"], "category": "ai"}, + {"id": "technology-semantic-search", "term": "语义检索", "aliases": [], "corrections": [], "category": "ai"}, + {"id": "technology-prompt-injection", "term": "提示词注入", "aliases": [], "corrections": ["提示词注人"], "category": "security"}, + {"id": "technology-zero-trust", "term": "零信任", "aliases": [], "corrections": ["零性任"], "category": "security"}, + {"id": "technology-sbom", "term": "软件物料清单", "aliases": ["SBOM"], "corrections": ["软件物料青单"], "category": "security"}, + {"id": "technology-supply-chain", "term": "供应链安全", "aliases": [], "corrections": [], "category": "security"}, + {"id": "technology-dependency-injection", "term": "依赖注入", "aliases": [], "corrections": [], "category": "software"}, + {"id": "technology-reverse-proxy", "term": "反向代理", "aliases": [], "corrections": [], "category": "networking"}, + {"id": "technology-garbage-collection", "term": "垃圾回收", "aliases": [], "corrections": [], "category": "runtime"}, + {"id": "technology-concurrency-control", "term": "并发控制", "aliases": [], "corrections": [], "category": "distributed-systems"}, + {"id": "technology-version-control", "term": "版本控制", "aliases": [], "corrections": [], "category": "software"}, + {"id": "thuocl-technology-6aaf0b1804f99cc5", "term": "字符串", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-65622e8ee9fb116b", "term": "初始化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-685bb17fdb2bcf71", "term": "数组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8f8f907784631b04", "term": "加载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-477581b84e505d10", "term": "客户端", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6a59400b83ffb70e", "term": "应用程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4eafa9e925b30bcd", "term": "自定义", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1d27f02ed278ebc9", "term": "配置文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-998280cadf362090", "term": "封装", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-49ecd0e342d6d23b", "term": "字段", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-27aa2247752d5aa0", "term": "解决方案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3cb6da3228424ff7", "term": "编译器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-562822892865b377", "term": "重启", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0e9879fd834542f0", "term": "控件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4fd6cf989743002f", "term": "子类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a6e48adc26d686d7", "term": "文件名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3c48d8ed41371f37", "term": "数据结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-df49776bfd52b0c1", "term": "数据类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e29f162af29a8ecf", "term": "构造函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-38084d301e3f1a31", "term": "开发者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9fd1fc2a1bea691a", "term": "解决方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1a3f0617d6de8e52", "term": "用户名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9292fac4fc65ddc0", "term": "头文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-71c7332027d8abb2", "term": "命令行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0893183cb7b8a8af", "term": "实例化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bd43000583115dfe", "term": "递归", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c2f8d9a340d36307", "term": "父类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cf71dfdbd43feb15", "term": "多线程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ae27b474ea4d6ee6", "term": "环境变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3ca47485aee8b3f0", "term": "右键", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-94cb2a803d43fb14", "term": "服务器端", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9ebe1ab0d17f69dd", "term": "生命周期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d8bfa5b1b990b914", "term": "类名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-565d64601d4d174f", "term": "优先级", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6a82677a633488ae", "term": "C语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-650738feecf79478", "term": "官网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9e07e3c0532d4976", "term": "上传", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5429467b747a246e", "term": "成员变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-eba15810a9cbd324", "term": "迭代", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c5c92f4e26ad5387", "term": "程序运行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b08fb1de7ff4107e", "term": "服务端", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-42ee2863b6d776ff", "term": "根目录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cb99d06aa246f674", "term": "链表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-47b6174788b64db5", "term": "文件系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-54115408e27b41b6", "term": "开发人员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-385dd2e1b0504cdb", "term": "嵌套", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bb78be76341a1110", "term": "32位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d1d2fb2df386c413", "term": "全局变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ffcb08523b947a2f", "term": "IP地址", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f680bc8aeb5c668b", "term": "内存空间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a98030a9974c6e0b", "term": "版本号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7b2e800cb995cee6", "term": "下载地址", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-006d3ffb11d24809", "term": "后缀", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-090cf711ea90702c", "term": "构造方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c508ce6059cfe8e9", "term": "结点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a417c2be484699ef", "term": "jar包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b93a17bd4bf1febd", "term": "源文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-15f4afd73228ce6f", "term": "局部变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f2aee4f7d003f2b6", "term": "函数调用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-58735af7f1eaf9c9", "term": "复杂度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-016207f60d75fe87", "term": "赋值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a6cccff529950c25", "term": "自动生成", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9d486d64e6aa62bb", "term": "时间复杂度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-01101c2d417631a9", "term": "实现类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-febcfbc22f89c5f8", "term": "堆栈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5b3ebc6601e7c497", "term": "基类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a2b3644fa075a959", "term": "整型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-57689310d4cd4e96", "term": "函数返回", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-62abf78cc507b4fd", "term": "表单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6a4b1a3683a34bf9", "term": "运算符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3b5ec3533b0e4485", "term": "只读", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0b9157354ab262ae", "term": "错误信息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-46bbb6e997d2f6b4", "term": "寄存器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-771f09507a704d2f", "term": "主线程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-186be2232e2c9bb0", "term": "数据源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-af33e62808ca6837", "term": "正则表达式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-352c16fc8131964d", "term": "操作符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b762aec769a35fff", "term": "缩放", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7474b3bd0a7a1587", "term": "抽象类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-56d74c448f685122", "term": "回调函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-50aaf5e043c57d58", "term": "静态方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1d0f87003fefac72", "term": "返回结果", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a879c89a7d3334a1", "term": "读取数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a938aea253e8d4c8", "term": "显式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-257f4442af73762d", "term": "当前目录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bd8ecd407a22ba42", "term": "64位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9d9d763731b4b95f", "term": "变量名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-94d82fe155ccd93a", "term": "大小写", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-040228846ead4a41", "term": "C#", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-91d422af707c61f4", "term": "作用域", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c9fdb97b6ead6797", "term": "布局文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6320380241cc6bb0", "term": "包名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-989eec2782ebedb4", "term": "创建对象", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d4abe3226384bef0", "term": "测试数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-68212e97180a35f5", "term": "SQL语句", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-82e7dbaa2604237d", "term": "Java代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7830f101b9acadf6", "term": "端口号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ecbe27b14014c4f9", "term": "复用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-26de3dd933ce00e3", "term": "存储空间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4c7c6cc2eb16ec30", "term": "重新启动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-874aff1373e26938", "term": "抛出异常", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1ebef46f09a71059", "term": "类库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2ff16be09ae50c1e", "term": "代码实现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fb0b33253ead6843", "term": "标识符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0e802798a74a4157", "term": "方法调用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-762cd9c2de69577b", "term": "直接访问", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6891efa1e4185db9", "term": "编程语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3e9bb6680b2b5b3e", "term": "业务逻辑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-289c64adabc48896", "term": "序列化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c81cfd55bcc6ab0a", "term": "成员函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fb587283ec59ce9f", "term": "数据存储", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7ab7815d503debc1", "term": "可执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ee2638183d3ea860", "term": "快捷键", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-42a1d9e5b037c210", "term": "字节数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1729148f3f834410", "term": "设计模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f421626bbe487208", "term": "重定向", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3a659f2dd69d104f", "term": "调用函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8db734884f7fdcd1", "term": "可执行文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ddb4a628815d1385", "term": "代码块", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1f595f0d46836a49", "term": "方法名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8224c4e89aed961d", "term": "参考资料", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-389995f290c35204", "term": "线程安全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ecfc9d2e0157e9da", "term": "主键", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-db772f3ff724a50b", "term": "命名空间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ad17f21a64872dc1", "term": "调用方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fdbb9e9144ab464d", "term": "执行过程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-acb3b9cd92264d0e", "term": "工具类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1508ef87c2e9dad5", "term": "for循环", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9bb765a7bd7a0ed9", "term": "数据传输", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-82aa80ff779fb615", "term": "预处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6b8ca1a82b189fb3", "term": "获取数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-791902cd3289e7e8", "term": "示例代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c71200b5952e3781", "term": "文件路径", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7af37338bb65cf9a", "term": "参数传递", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cb5d682bac3d1a2d", "term": "重置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-47ceaf502c5a05d6", "term": "新版本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6962484cdf55cb56", "term": "偏移量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-657812523d9c3d4e", "term": "#include", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0d0cbac2eee54113", "term": "重命名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e8dee0e1e379cafd", "term": "i++", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-350ea90abb9e5564", "term": "跨平台", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-de76493b9bc6bf31", "term": "文本文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-25222ca8affacc37", "term": "%d", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5573ba1feb1541a3", "term": "工作原理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-07e832d52d87e14b", "term": "开发环境", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-71a2c8607403c7b6", "term": "依赖关系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-401345c8ff51ad9b", "term": "子目录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c17e9bddcd764fc3", "term": "系统调用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bc51fb4e2e35bccf", "term": "数据集", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1c41c298d521ac19", "term": "类对象", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-008814832cf7026a", "term": "发送消息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f7dd6daa62e5d36a", "term": "句柄", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d3b4a22b47250c5e", "term": "下划线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a91f87ae6534aff1", "term": "浮点数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-94e9c3db911949b5", "term": "面向对象", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f88d392b86eaf179", "term": "日志文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-97ed1a68a74cf617", "term": "持久化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f6b575c9805fd271", "term": "二维", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7f69a86045802933", "term": "配置信息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e59a65d4513fb67b", "term": "参数类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2dcf9772d00f41b4", "term": "xml文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8db5553e289e63c9", "term": "资源文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3b5ed79ca7db443c", "term": "基本数据类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-da9bfdd96996d183", "term": "绝对路径", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4c8a4e3da39e5c2a", "term": "打开文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-998e9257fe92d988", "term": "内存管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4ef515abfdb8690d", "term": "安装包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2a4f22711d444ae9", "term": "静态变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-28f6b6e6456e777a", "term": "应用场景", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-63d0b9d6df71fc56", "term": "基本类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d8f02299ad8bf8e2", "term": "迭代器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4226c90bcc6f9769", "term": "软件开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4d73e3d9b33f86a1", "term": "类继承", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-07904b4d1abba34f", "term": "正常运行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-acca1437d2c4990e", "term": "存储数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9bcb382cdf6d91f4", "term": "点击事件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bb7725be3db448f3", "term": "程序代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d5b44828a907501e", "term": "目录结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-66b0fae05807a13a", "term": "类型转换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ce8f0c9fcdef43e7", "term": "构造器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8afe50e3ecf76c95", "term": "多态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-93f0f38887a80db3", "term": "访问权限", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e37a40dfa984013c", "term": "二叉树", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-66cef63783389e18", "term": "内存地址", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-031aa98caab12fb3", "term": "内部类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4399335d565b15b9", "term": "监听器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0415f31a96cd090c", "term": "分隔符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-837e4175f7700e45", "term": "数据库连接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-699c6d62a836727e", "term": "表名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-41299d9be86670e7", "term": "分页", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-17dd5a998b213301", "term": "冒号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c7ea10c948fefc40", "term": "十六进制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c6c6c1a78bfed552", "term": "网络连接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-93639cfe5b576704", "term": "#define", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-237ee5ab846e3a01", "term": "修饰符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dca14abb77a53481", "term": "重新编译", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-11f5f02e90177d12", "term": "开源项目", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4a87a604e7cb1fe8", "term": "大数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fce9fb18da8d464c", "term": "线程池", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-90dba12191b0a48a", "term": "时间戳", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-aeae1c799c943ce9", "term": "元数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-136a45936af91f8d", "term": "属性设置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fd6406141cf86cfd", "term": "输入流", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1c4e94d72f34de19", "term": "系统资源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8540b107e6e7ab7c", "term": "双引号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-154aecb811638797", "term": "main函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f8ba1bdfe863531b", "term": "内存分配", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0224c3f6672e2d85", "term": "主机名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ab247524a979205b", "term": "用户界面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-753a92a133ff4850", "term": "随机数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-10bc92e64134a303", "term": "结果集", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-39995cacb160f44e", "term": "数据文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d4b9fa1952b8b8e2", "term": "应用层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-618605b627574fdc", "term": "驱动程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f04ca18fd17ea6d7", "term": "开发过程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-423f51a286789ed3", "term": "运行环境", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cdced850e983ab8b", "term": "数据处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-db18831a04574887", "term": "权重", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-076fb2ab2580dd4c", "term": "泛型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b9bf6916437a77eb", "term": "文件大小", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-30d6c3821e09d994", "term": "输出流", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-65724f5a0806d3c9", "term": "Android系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a3302d32e9a9ab2e", "term": "子节点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8297468fd428c938", "term": "输入输出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ca715c0d8d839613", "term": "升序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9d46c23a583ae93d", "term": "字节码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-edc0132279730bc9", "term": "库文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0258c5e3f784db60", "term": "十进制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7252eb60307f1adb", "term": "数组元素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-be1b4f3c6c1cda1e", "term": "离线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7d9cf1a058def0c3", "term": "套接字", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7bbcef205ff55067", "term": "Linux系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a44781c1f2bd9bb5", "term": "时间间隔", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-794cf0df0164fa30", "term": "事件处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c757c9cc2dfaf9d5", "term": "推送", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ff25ca0d9a6eb4fe", "term": ".h", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-25325b1c3bbbed28", "term": "单线程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f5ac21a6896fd64d", "term": "代码段", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-da7465eeddeda3b4", "term": "存储过程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-750386b0a2cd12e3", "term": "Java语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-79d141e19959a705", "term": "类方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5ac65740937d30e7", "term": "加锁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8c19d7ba7981a61d", "term": "扩展名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-04a832f27f196d9d", "term": "插入数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a4d3b0708d382883", "term": "HTTP请求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-68892d3e752a9248", "term": "宏定义", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c0a31374c42cefc5", "term": "异常处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-496ffc1ee0eea2a1", "term": "函数指针", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-58872d8055045153", "term": "换行符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-381533073dee5aab", "term": "提高效率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f6fdf82e9a8999b7", "term": "流程图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9f592131529b5467", "term": "解压缩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-850917ff78b1edb2", "term": "函数参数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a064a6e578e285d6", "term": "单元测试", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-beade57a72f1ba6f", "term": "文本框", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0ad77174560a4297", "term": "进制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-45e03e436ed0f697", "term": "执行时间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fcffba9828157b10", "term": "3D", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5044a30643f2d853", "term": "传递参数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-373febf03109b098", "term": "开发工具", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-407dd16f938f21dc", "term": "读取文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dab2e380ee4500a5", "term": "子树", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2526ed72e8c0cea4", "term": "测试用例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6a45a1fc60f8d47c", "term": "参数设置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d26437c037bf4bdd", "term": "二维数组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a1e74addea841cda", "term": "处理方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f363b2d0853286f8", "term": "父节点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3725df1790e3459e", "term": "特殊字符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bf4cf67982079102", "term": "子串", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b6b86768e58f25dc", "term": "描述符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4e8c1baac23df745", "term": "二进制文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f1deb75fa21d3c47", "term": "C++", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a569c636d974551c", "term": "当前用户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-59bc834d2abf6d6f", "term": "实体类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7ea95d3b928c9945", "term": "拖拽", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8c7ec59497a23291", "term": "错误提示", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-80789e81543b99c6", "term": "嵌入式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7614f827b3b32ed3", "term": "析构函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2e9aeee69feacd14", "term": "内存泄露", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2b23433d17a02b74", "term": "用户登录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3374e52a4d90e883", "term": "主函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9b393d495f23a854", "term": "下载安装", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4572be37ee296a5a", "term": "目标文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bb5caa9c59767eb8", "term": "上传文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6518e21a8e5ff207", "term": "回滚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d1d1bedf66228659", "term": "动画效果", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0e582a5e3689ac01", "term": "基本操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0d577a3012db3452", "term": "删除操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5986e9d976e01bde", "term": "运行时间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-68d8540a97b0cb88", "term": "安装过程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-88e8ba269c5a4564", "term": "死锁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0689787c04ca47a9", "term": "实现原理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9997f39718559eea", "term": "宽高", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a9685dcacc612a0a", "term": "指定位置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-57bfe4b61c5af1cc", "term": "单例模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e7a40b63efffa0f4", "term": "不执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d1d5597337b36ff4", "term": "提示信息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2a8aa2abb615df5b", "term": "抽象方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c15a2bb0928f122d", "term": "地址空间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f3c3f006c5352165", "term": "root用户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ac29e57a46f41c30", "term": "最小化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f4d22a09f3af8dbc", "term": "体系结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-306da767a461a51e", "term": "默认值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-426c4548f68a553f", "term": "用户信息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9a8457b3dc844478", "term": "文件类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3a02e9d76fb8524c", "term": "单引号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3f764cb8dfe5089e", "term": "带参数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dc18aff4661b8098", "term": "首字母", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e0ab0981aba5c06d", "term": "机器学习", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6d2b296c1cd03af4", "term": "背景色", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cae04331b977969e", "term": "相对路径", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-05f954565f29b0b6", "term": "高亮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1132a0b2eb883c10", "term": "类定义", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-94a53c06c98f3198", "term": "引用类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3385da60e65d3653", "term": "唯一标识", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3aadf24931abf7a4", "term": "选择器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4b19f0fb13f74e63", "term": "操作数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7a7be7df88b5a9f6", "term": "函数定义", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8d803aa3805d604d", "term": "派生类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5eac64b49ae095cf", "term": "HTTP协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d6ea0a52f268f082", "term": "互斥", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4b103ec0cea1c74b", "term": "新特性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cd50f6a0eafa9fd3", "term": "继承关系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3679be62a597991b", "term": "入栈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-88c1e35617a9cb6c", "term": "get方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-97e728f608e78366", "term": "执行效率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8c71cf3004800527", "term": "测试类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8f10dc147500c017", "term": "压缩包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cd2e8707a7db3b3f", "term": "进度条", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d8ae2f85522d8ab8", "term": "字符数组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2410622c71b8aefc", "term": "可扩展性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-57e88a43ef2b00ba", "term": "本地文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-819962fc6d3cc0a9", "term": "模块化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-88f47860e77d1b7a", "term": "删除文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ac0ddf8d6eed2ea4", "term": "Android开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ab424327df7dbd05", "term": "子线程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ed9a41e594062b1d", "term": "数据库操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-674b5af7319d9902", "term": "死循环", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b6b4956a5d10e8cf", "term": "建模", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8a5dcce3a97056c6", "term": "输入框", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-70a48f191f002d3d", "term": "二分", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8917ca23c1be1e20", "term": "网络请求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ef81f8aa2461d058", "term": "文件目录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-be5bb4c168fe72b7", "term": "多重", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fbace3fa81730187", "term": "连接数据库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1e30d4bf88e4f57f", "term": "Web服务器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0b734e04c95c853e", "term": "编写代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c5979f7334102fc5", "term": "转义", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-96443b9d646c8050", "term": "对象类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1ab7c6ccc544b13d", "term": "创建数据库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6cd4eed508c5f7d3", "term": "数据块", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a08d928667244fe6", "term": "图形界面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fa4f6b516465277d", "term": "函数体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d2b99b460926972c", "term": "web应用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d3d6463fe1287844", "term": "创建文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-882fe2e842417cdd", "term": "背景颜色", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4d7b80c2ba6bbde4", "term": "出栈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-45c62346b515c6db", "term": "实例变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4ae9eb28741faa5f", "term": "不兼容", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-18b053a4c2b565cc", "term": "常用方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c1648179f912b434", "term": "内存区域", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6ada97bd115a0e6c", "term": "子进程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f88d89498b871603", "term": "动态规划", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9746d22c4d48e3f9", "term": "执行顺序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6abf01c011169e9d", "term": "位图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5a998b6ae492d922", "term": "层次结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c88ceeb74f020abe", "term": "类文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7ed80e44eaf9c51c", "term": "写入文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3166d8af51f15eb6", "term": "工具栏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-423512dcda02f128", "term": "数据库表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f3850056db33502b", "term": "保存数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ff3089d3a692c2dd", "term": "Java程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2da3906a24eee400", "term": "版本信息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-84726250a95e15ca", "term": "字符串转换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-81756e4ecdfb0828", "term": "线段树", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6073cf9126dab310", "term": "文件描述符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c8ec292f4048f214", "term": "查询语句", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-edc3efb149a25b96", "term": "参考文献", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bb0540c050c7b8d5", "term": "字节流", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fc04e292149b3b0a", "term": "用例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f6dc0e7a12d2edce", "term": "地址栏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c8f5a92865e9478e", "term": "非阻塞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e596ebfe11e21b8a", "term": "字符串长度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-78fa68e703f5bff1", "term": "堆内存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5811daa14e87deeb", "term": "强制转换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ddc00e6620a457aa", "term": "物理内存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ab9e76544a192410", "term": "移动设备", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2f8b003c7961d706", "term": "对象引用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cc346a14b74cd148", "term": "库函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bd6eb55a293655a4", "term": "16进制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a644c8148dafd874", "term": "表结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8874198bca43b11a", "term": "非静态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-26fcfeed40d83b34", "term": "set方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-88d9d024886f509c", "term": "内存泄漏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-15e3a74a6b8c8886", "term": "选项卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-070073c021794d10", "term": "标准输出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b207cfeda70e2961", "term": "代码示例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2ba10dda19bee351", "term": "未定义", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-44cc944cd32d0c20", "term": "无法访问", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0deac6e357d6cb64", "term": "写数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5d9085fccc2f2664", "term": "实际开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9587a840fb4e9299", "term": "浮点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c8592da567d69005", "term": "状态栏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3669d1a3f0a865e8", "term": "连接数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-66c740387e6b3827", "term": "缩进", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-af4a8ec8fe2059af", "term": "回调方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b2dcdcfabb6af2a8", "term": "最小值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-35ce0cf432e074a4", "term": "Linux内核", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b1cc9079e8ba5fbe", "term": "系统启动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-10e045a7b8879e2c", "term": "结构化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cdc931b12a561a6d", "term": "代码片段", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-26137d3b73ee3a5a", "term": "编码方式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3cffbf7eb3af974c", "term": "函数实现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8fe9ef3b35353577", "term": "参数说明", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1acea3030b9ef872", "term": "临时文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e1d1cafe6d8e7b92", "term": "创建表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-17da5eb22d21d651", "term": "原始数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-218c5d412376a71f", "term": "映射关系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-01bcd49f3386b25b", "term": "数据交换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-35a4e49d34672cb1", "term": "触发器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-37cc707d3e9e7277", "term": "引用计数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-95b71c73ac2c575d", "term": "解耦", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8c586f04725cde40", "term": "对象创建", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-07e02cf7e7a7b9ff", "term": "源程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e74aabd069e412b5", "term": "等待时间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-12a7adc3e18033a3", "term": "共享数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3926d1bb98be8401", "term": "下载文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-90c42e5adaddac65", "term": "文件拷贝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4f64a53f00b405f5", "term": "while循环", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4a63f752884096b5", "term": "超链接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2a06708ff6b14f10", "term": "解析器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-75b304aa94209920", "term": "正则", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-abad77feab441709", "term": "虚拟内存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3399c3c4bdf35e5a", "term": "串口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-22ea3f47fee80536", "term": "全屏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2f33473fc36fd655", "term": "空字符串", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e183436a802a97ec", "term": "虚函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8f1f75950e38b9be", "term": "自适应", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cb3ebe4cba00dfe6", "term": "释放资源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0b3c9b53d11d57cc", "term": "响应时间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dd32b560de08b2b1", "term": "Java类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4f56836803fb10b2", "term": "处理程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3f2b3ef4f465f3db", "term": "生产环境", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-275057e8b6141e5f", "term": "数据保存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5c50b75f20dc312b", "term": "共享内存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-aa08a10d78a61253", "term": "执行程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a7f8e0aa39ae4849", "term": "整除", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-517484e7f24726ef", "term": "后台运行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d9f2934c60265625", "term": "Android应用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-89ebc2c012f76707", "term": "指定目录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c4b503c90e0b6ed3", "term": "动态库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-61297710495434cd", "term": "管理工具", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bafc9a9acbd2e44d", "term": "模版", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c42f23fe05ae3ce6", "term": "文本编辑器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-db1ee48602f5bc7c", "term": "元组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dec8e6a8c1033b59", "term": "快速排序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ff8a51305bd461b4", "term": "用户空间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ffabffefc695f699", "term": "自动完成", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ea6cb7b0375e9ea8", "term": "连接池", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6a3f3fc5f21422db", "term": "自增", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4a2690ae7b9a64a2", "term": "大括号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e019a8f8bfc76cb6", "term": "一对多", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-50b3ce31646573c1", "term": "性能优化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9a2c135fbb792f6b", "term": "字符编码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d870a31beb89eb28", "term": "文件上传", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4aaa3f31af1c46fb", "term": "数据访问", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ac5415da4b18292c", "term": "寻址", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d92e920fb19c8d33", "term": "文件复制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bce8cb6f39cddb14", "term": "函数库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9fb4815ee566eb3f", "term": "函数声明", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-94854c89ae715c4d", "term": "序列号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bb77fa844bff14d6", "term": "配置项", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a304cb9cd6c523bb", "term": "菜单栏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2104388fa12b1dfc", "term": "TCP连接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bce64a047130d96d", "term": "管理系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-21cdb6aae9e0469a", "term": "网络传输", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-533f9a4f1d10fac9", "term": "修改文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0be647deb27efecc", "term": "新功能", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-77233278c6a11de7", "term": "删除数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ecd79f3880770f4e", "term": "占位符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-55c1ba717f30f563", "term": "传递数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f2be2c7e61f4e794", "term": "应用开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a104e04e7faf5e8e", "term": "标准输入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-04ddbe48b3158697", "term": "应用服务器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3c35074181fbef81", "term": "#pragma", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a6a7e454cf11a050", "term": "文件操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-48b5075906c15c77", "term": "复选框", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-205f1104af8e677c", "term": "空间复杂度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-24051bc0294dc89b", "term": "创建线程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2b018f9b1038b2b4", "term": "字段名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d40a0b9dae9d79d9", "term": "不同版本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6ee27bcb2070fae4", "term": "测试程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5432976a17821855", "term": "第三方库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-599abc8c577a9f38", "term": "初始状态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9af291a643f81f0f", "term": "时间段", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5d8ec6f62009eef7", "term": "数据分析", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-efb8cc5950eabff5", "term": "程序开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bc01dce813bd1768", "term": "脚本语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d0a673efa3589002", "term": "Java虚拟机", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-269de770b942ed95", "term": "2D", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2a593ab40130a28e", "term": "增删改查", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ab52c89c199db369", "term": "左移", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-25813f5afad2f8ab", "term": "数据模型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b8784c8dd5636ff2", "term": "重试", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-17258cb4a28bfc78", "term": "内存溢出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2c98462c114e82b8", "term": "删除元素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c9f7c41baa5818d5", "term": "批处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2e6793244bb3c4e4", "term": "指针变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-351aaf91cae5569f", "term": "外键", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9541ee3d4b1531ba", "term": "请求参数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2899011fe8b11fbd", "term": "信号量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-749b1b7204140b08", "term": "数据操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-038a576602d7bbb9", "term": "UI线程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c381f106f1e80197", "term": "数据转换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2c2cd22a76795a24", "term": "高并发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a952c3ce5086ec20", "term": "源码下载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-21c31b381a4a1cee", "term": "编译错误", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a514e55796fef828", "term": "后缀名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-18b7312022cd1840", "term": "启动服务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9573a1084e525e8d", "term": "main方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c8d4b97dae4ed776", "term": "系统性能", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f6a2faaac200e75d", "term": "普通用户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-36887d9b2ad35a12", "term": "背景图片", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0443e8a41bb9ccef", "term": "系统环境", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3c144e994855170e", "term": "一维数组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-21ba1f6852aee8b6", "term": "图像处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0cc998eed7dd3c52", "term": "一对一", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c33a65cabfc27c7c", "term": "数组长度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bf2c563da06cd0ad", "term": "空指针", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0326a778db0cc695", "term": "存储方式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9308e2c160040b52", "term": "拦截器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-556000791f952e4e", "term": "代理服务器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-487c74839106531f", "term": "维基百科", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-aef7db21e2033fa3", "term": "项目开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ee2b979c4c0b621e", "term": "iOS开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c5ccc1d6861eb80b", "term": "字节数组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d1992adbd9807804", "term": "测试环境", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4d8dc23ed6e1e690", "term": "保存文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d4c908b6f8a9c10d", "term": "错误处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d4f5f17e625d1f45", "term": "递归调用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2018233a8876e5e7", "term": "添加数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0dfeaf0de420ced6", "term": "线程同步", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-74da7a16c8fa830e", "term": "编译过程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c689ff2cdcd6cbc3", "term": "取值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-839fc842645ee473", "term": "属性值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-02a17ce859877331", "term": "冒泡排序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a462526b0fa19b25", "term": "动态分配", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-673bddc6599d5353", "term": "配置参数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-566abb097caeabb7", "term": "数据段", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6ab335864461b295", "term": "快捷方式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6bff6a717a8c4fe8", "term": "主目录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1f17a8e51782beeb", "term": "守护进程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-67d46702379bdb2f", "term": "DP", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ee713e2731d050bb", "term": "if语句", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0da5bdc8c992d994", "term": "操作方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8653ae1275c8ae24", "term": "工作流程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-df939a007e224225", "term": "枚举类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-664717aaf9ce9c02", "term": "二分查找", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-736cff237d7d9255", "term": "自动更新", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-62949cb817e27e25", "term": "递推", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-417caec06de956d2", "term": "父进程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-257d187a9d695de8", "term": "ASCII码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-51f90f865dde24cd", "term": "可执行程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-962923ed916c899d", "term": "内存不足", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cf4837be73a446d5", "term": "jar文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-19fb5855ae0cab1a", "term": "当前对象", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f96fae735fab56ae", "term": "状态转移", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6cd28ed32abf73d0", "term": "F5", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-06f7d73412128f50", "term": "状态码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4352648439a73113", "term": "类图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5886dcc18763f3c6", "term": "动态加载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6be8cfc7f4e555ac", "term": "浮点型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fecb99eb44f320a2", "term": "网络通信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c222fdf19e472b4c", "term": "使用场景", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0fb0c93eaa0423bd", "term": "文件保存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5a8fcc048b7e15f7", "term": "异或", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6dc7883bc3d06293", "term": "命令行参数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5a2541624f9a8e37", "term": "日志记录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2cba3fb4777be445", "term": "数据库服务器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b143506396094780", "term": "配置环境变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-73aed36acc1555c8", "term": "方法参数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8914957fc91d8750", "term": "帮助文档", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7def561abb2bc0f6", "term": "静态库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-29c7ae59c3aa6dac", "term": "消息发送", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e461e2c82e74624a", "term": "开发效率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2cb99490ee71ce39", "term": "字符串数组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a78acb14c8febce4", "term": "安全问题", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-782eb2d21c92b3d7", "term": "消息处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5512f1386bfe00b6", "term": "文件包含", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e33e7a88d1d46274", "term": "最优解", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-aa3a904604cb35cc", "term": "输入法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-375324013140abdf", "term": "请求数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2e3cb76003150cef", "term": "路径和", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9b11097d7bf63544", "term": "先进先出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6df6675c9a61db6e", "term": "排序算法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-94310581af116669", "term": "逆序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-68ea5dd4d7af20e6", "term": "系统设置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-70ae4c0cfe1623f2", "term": "更新数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8b512613643a34c7", "term": "压缩文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-761fc4d6cd1fe773", "term": "粒度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-68ac3b839c2ddcc6", "term": "语法错误", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cda56e89398fd69a", "term": "用户交互", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4c0ca18d3ab55d3c", "term": "传输层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bac510078ad9013e", "term": "实例方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-01c04016fbdf90fa", "term": "访问控制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-22c4db09d8dc73d3", "term": "圆角", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9e71bfa3736c16d7", "term": "系统变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-257bbcc44c839db4", "term": "修改时间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b1d19e90852f36b5", "term": "中间件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9e16ae6b975d559b", "term": "网络层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-db2abee54b105455", "term": "接口实现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-222b92a624d3be0b", "term": "动态链接库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e63a11f5dfe0e731", "term": "命名规则", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e1212496a07bf42a", "term": "TCP协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e3d0232a95dfa206", "term": "生成器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b4598b0dbeb4d541", "term": "静态成员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-98d89196564b03a5", "term": "可移植性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a7e9919c3a57c42e", "term": "事务处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a7785de71fa9be28", "term": "定义类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c7443e327deaaa5d", "term": "Windows系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8dc5be02a8d3c71f", "term": "顺时针", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-44e8adc07e1e2c8b", "term": "并查集", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-347276b6552f7b3f", "term": "错误代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-963ead08d78d597c", "term": "用户组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3393c1261d42611d", "term": "二级", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e7b09d35459d06c4", "term": "物理地址", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-74b08257254e5e9b", "term": "建表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ee9e9fd1b459907a", "term": "两个指针", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c78932b607959dce", "term": "八进制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-03717b6f10700f87", "term": "重做", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ed5d645ffe57b3c3", "term": "预编译", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-844f215900febbc9", "term": "Android平台", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f257c12387415899", "term": "显示图片", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2d8aed692687db77", "term": "新浪微博", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b9f48b62de322a49", "term": "反序列化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-984720d654dca7ee", "term": "加载图片", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-763807f750d585bb", "term": "网络协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-453ad482ccefc23e", "term": "重新安装", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3e3e82ee34f0eed9", "term": "root权限", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-281abfb4fef9402f", "term": "键盘输入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4698f781d92fa1ce", "term": "像素点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-110b4e49805c1a72", "term": "最佳实践", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a6bf6336ceb337fe", "term": "本地缓存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-320bc18d11ff6c1c", "term": "关系型数据库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5b037a66aa8e1a67", "term": "关系数据库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-435d13a839dc3e10", "term": "网络编程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6e2a5fa1ad06c645", "term": "伪代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7b847862bbe75bf9", "term": "动态生成", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5587edcd57172e6f", "term": "多进程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a6fc35fdab8d49e6", "term": "转义字符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fcbe414f0f1a2fe9", "term": "系统服务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1957e502d2d30984", "term": "初始化方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1cbb8f00f07db977", "term": "常用命令", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-77e3967b21f3e27c", "term": "多核", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0f94efd4497795c7", "term": "传输协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-319482c6b03da875", "term": "最短路径", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-65d39605c5427986", "term": "mysql数据库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ac02ca2702e2f200", "term": "新技术", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d4417f86000aecbd", "term": "取模", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-771f12a176983db4", "term": "图片资源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bd3deda4d195144b", "term": "成员方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6328962824039c37", "term": "强制类型转换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f56d491d657274c4", "term": "重绘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d846847cc6c4305b", "term": "文件列表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-817f2937c250d397", "term": "进程间通信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bbc778a2ae5ec3d8", "term": "访问量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-69043752a942bffd", "term": "java文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7c185a12004ed29d", "term": "性能测试", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f2926eb3bb7c6252", "term": "图层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-aabc5b9be484ef89", "term": "Java对象", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7e228d4688a260d3", "term": "可见性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-02c2cbf242430601", "term": "可维护性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5467922dce50a319", "term": "历史记录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d79c21d3598eed65", "term": "归并排序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-36d67213892b17b2", "term": "安装程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9beed95cb3cfacc9", "term": "远程服务器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-95861c4b5cd64436", "term": "移出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1cf9f090e0fee8e9", "term": "不区分大小写", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f7673e7e46b2e1aa", "term": "Object类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3bd008d0c96cd768", "term": "存储结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6c422a32fa7a07ab", "term": "身份验证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8119f4fe8be5854e", "term": "二进制数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8fcbb41c1c178dd7", "term": "jsp页面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2b06f90aa547484d", "term": "代理方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c54c15e8ed4acdce", "term": "导航栏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7785a5282f543671", "term": "功能模块", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-541ab19b0857aac6", "term": "移动端", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4eec502282020e43", "term": "子序列", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b14d62dee7095aa2", "term": "客户端程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-33ce773090fe5902", "term": "自动启动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0730cea2f22c65cf", "term": "依赖包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-00bb260260330252", "term": "文件下载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8f6943d916c6a403", "term": "系统时间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-93b738c66a169487", "term": "程序启动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-157b9ab49f3a8d95", "term": "数据安全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4858826d4f8c1d5b", "term": "集合类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b5d5e2c464fac2ee", "term": "图形化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2480be5c1d610b54", "term": "最短路", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d7e69a736107ff78", "term": "调试程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-eeed14fad8af23d2", "term": "神经网络", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a3074d7b9dc1d2e7", "term": "路径名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f4964357f24503a7", "term": "网络接口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cdc65d40899ab1dd", "term": "加载数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-95525a671b4d8679", "term": "异常信息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e383833989b828aa", "term": "可扩展", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-be0cc94f44c106d2", "term": "云计算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1b2b43d5d4953f6f", "term": "映射文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3e446a039fa9c09a", "term": "Java开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6e66e06c27e7c353", "term": "4G", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f74b6469c3b0755d", "term": "消息传递", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6ab7bea77de09b20", "term": "字符串常量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b0587aab60fbf547", "term": "数据丢失", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-727036c7fc2aac16", "term": "数据同步", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7bcb1603fe0d2198", "term": "析构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d8dfae26dd19cad3", "term": "编译程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d4cb61cc1d42cbc0", "term": "汇编语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3ba7ea0c06c5b502", "term": "SD卡", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-029845561bfbed13", "term": "软件系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cea1aafe9416de7b", "term": "请求头", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7279ef61ac97b0e5", "term": "String类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2d58b3364b00b7b9", "term": "测试方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fdc2e8ffaaa6b562", "term": "连线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-18901d910373456c", "term": "计算机系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0a2b8914495df7cd", "term": "超类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-75f62aa4789629ba", "term": "分布式系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a1f26635c29e13bc", "term": "提供数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4a47a7f883286d92", "term": "软件工程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-07c8be22466b50aa", "term": "类成员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-32c9dfd45151bbc3", "term": "数据挖掘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-db9cb8f77a36a8e4", "term": "算法实现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-afed9071061a2cec", "term": "原子操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e21dcec4249f4742", "term": "运营商", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9c09e447599c81c2", "term": "四舍五入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f235ebaeb4a7f047", "term": "调优", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-93724a4e64e3a0f3", "term": "企业级", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c6fb1e689ea296dc", "term": "创建目录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-64feb55f69560ed3", "term": "反编译", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-037d4ffe12497b52", "term": "Java应用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4a3a25806c72013a", "term": "目标对象", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a2ed7e370ca1bd6a", "term": "编译安装", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-91d906431c389501", "term": "安装配置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8e3df7def2a7ceab", "term": "多任务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-566c70b024e2f29e", "term": "插入排序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-033ea31bc343afd9", "term": "数据库查询", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2526898ad2236832", "term": "反射机制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-510811ffeb84b1f9", "term": "示例程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2a4fd51915736ac3", "term": "数据项", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-47a7bbfedc661f43", "term": "垃圾回收器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-26e37f3039042f68", "term": "面向对象编程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bf8e4239a3152c5a", "term": "对象模型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-be0e182bad2fa122", "term": "系统管理员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c37ed223bfb8c6dd", "term": "文件存储", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0e51cf7937a70181", "term": "shell脚本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ba2a277efd2f08b6", "term": "工厂方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-45320bb2fbab37b6", "term": "编译环境", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-22225d276a88b8c7", "term": "GET请求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8f91a008fd55ef25", "term": "标记语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bb015c60bafc8a96", "term": "验证码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c3cc36f628b16596", "term": "窗口大小", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3f2fcd323b6b6ab4", "term": "权值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-32642114495399e6", "term": "外网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-20197ab4726de2fc", "term": "自动加载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1b753a67bbadb695", "term": "自动转换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-96fe96d565a8421d", "term": "表空间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-20fe3f3e72ca01b8", "term": "调试器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c2735fa1470675d8", "term": "变量类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ff0e8d8c8df24c0c", "term": "操作过程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-668377856a522b5a", "term": "后台线程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2aca40789468d667", "term": "接收端", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dc95b70a598a6508", "term": "工厂模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c3224a9ddb6c1b0f", "term": "数据传递", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6e33e96fbca9333b", "term": "聚类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-88528903db8d7971", "term": "工厂类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-937622a3a3518ce6", "term": "功能实现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0c9262382e2e1a4a", "term": "条件判断", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-04318b47e533415e", "term": "浏览器缓存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-682de67c8041427c", "term": "数据库系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-37c825ff40e7e419", "term": "创建用户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1ab7161933f0ff72", "term": "用户权限", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dec19b9471668dee", "term": "系统使用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0ba8424e80f3a0b7", "term": "多用户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f6c5e4d7e8843d96", "term": "等待状态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-17c5691125e57a21", "term": "数学公式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ebf8b7b927ccd411", "term": "开源软件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a3dc8fc730b8827c", "term": "命令行工具", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-55e1cba51eb51bc8", "term": "分割线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-802d197e4baedeb6", "term": "回车键", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f6cda7323727567c", "term": "iOS培训", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e9244855f12cabb4", "term": "分块", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f2ce634f879dfa9a", "term": "类型变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-13b0333aecc4ecd1", "term": "弱引用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e5ac69fbcf8ec7b8", "term": "Android培训", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1bfefe0febb22747", "term": "知乎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c6c252ee223e7bf7", "term": "取整", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d48453f26f6f6e8f", "term": "POST请求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-179049b9f43f0362", "term": "Web开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1d30ca02f0ae5a25", "term": "菜单项", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ecd005e0b3f18d54", "term": "文件读取", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5cd98fa681cc65aa", "term": "开发板", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ee0cb00cfd4b177c", "term": "位运算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9b34d20225f4cfbd", "term": "应用软件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-807503e5d4740206", "term": "用户态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-94268a8268c4eb84", "term": "类加载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-074939b7a33fdeec", "term": "网络地址", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b6c0777148dcc01e", "term": "网络应用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9e18b31aa95d1991", "term": "树形结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-52cb6fe7542670bb", "term": "启动过程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c3ebe56c4633ef87", "term": "标题栏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2167f476150e6c7c", "term": "遍历数组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f790674682c010e5", "term": "方差", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-71b7f9dc68ea0a16", "term": "灰度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-aa8cdd1006954aba", "term": "字典序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4f8389a45d60d08a", "term": "内网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-473e16e24f0afbe2", "term": "数据区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dda15a818cc76eec", "term": "覆写", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-35554c8a3ef4b45c", "term": "iOS中", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-eb684203c97249e2", "term": "获取图片", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c00455239802e1d7", "term": "链路", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9ed306e2c8ad983d", "term": "web项目", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6d8627b2f68ea24c", "term": "存储位置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-931c41519691b1e1", "term": "下拉列表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9ca751153802398a", "term": "动态创建", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f4c3e8bb789f1829", "term": "设计思想", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cff2545df7297f3e", "term": "观察者模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-17abd349b511fafb", "term": "资源管理器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-59779314388f8bf0", "term": "安装方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3e973a71dac32438", "term": "网络设备", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1c38872ca00c35f1", "term": "归一化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-36855ea84a8b80b8", "term": "计算机科学", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-05467b896cdd6fe9", "term": "无限循环", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-43eb6424f4157a36", "term": "字符流", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7c4e06621fb0c3ee", "term": "IE浏览器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1334a944f1a75c62", "term": "代理类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f699cbdf1a2b2413", "term": "首部", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3ca52030bfab3b66", "term": "提交数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e0c5be3ea2ada1e6", "term": "反斜杠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c52d392ce7b3d03f", "term": "中序遍历", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fa5791764907f3ef", "term": "表数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ecf5c2cdb8e590c7", "term": "延迟加载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cc97ec0be9841f34", "term": "触摸事件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fd7bf73b0cf60d01", "term": "缓存机制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-18d3c37027c3741a", "term": "模式匹配", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b1076ea2a0f3342c", "term": "有向图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c268c1b1ce2336a7", "term": "发送邮件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ed08aed91ac89954", "term": "MAC地址", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-64299c5a67f0e2e1", "term": "前缀和", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a415ef09a65d50db", "term": "通信协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3eb621eb41cca699", "term": "系统配置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fe76e31d24ddf33c", "term": "显示文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7f94fa42d1624f66", "term": "存储单元", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e4b76edd446fe460", "term": "工作模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-38ab4e1a21ea2f88", "term": "三次握手", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ab0c29da09f0b35c", "term": "虚拟主机", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a0dfc9694a5d952a", "term": "双向链表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f5384c7c6e084cba", "term": "本地方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e4c371c0c4d8ff71", "term": "网络数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5374110e749fbfd3", "term": "监听事件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-eea73eba32d43473", "term": "子查询", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a049dca9d8f1e021", "term": "项目管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-23dd0768b61c20a2", "term": "外部类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c47dad725fc70832", "term": "源地址", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3e5e0a981f1a5bd0", "term": "引用变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-13de90700dd3d324", "term": "选择排序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9f26d67387964a7c", "term": "80端口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bc0f0a5c3509163b", "term": "Thread类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-76b1b5e05a5793df", "term": "中文字符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1169ec708cfd6f29", "term": "奇偶", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-50ce482955f276aa", "term": "头结点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9a816c6580eff8d7", "term": "清除缓存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6e1d963eb7e8f13a", "term": "表单提交", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-256d14073bd7097f", "term": "业务需求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-276a8bc458036a1a", "term": "支付宝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a0ef0bea48060e30", "term": "数组名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5996a699f3721cc7", "term": "移动互联网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a7e43c55c0f5a29b", "term": "系统设计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-01c08b272cc09585", "term": "图片加载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0b28fc7ccbd46908", "term": "复制文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4180bd45fd4a7b91", "term": "Runnable接口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0b993540755ebef2", "term": "约束条件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4891ed05858e0d11", "term": "程序崩溃", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ca0ed470f44d75ce", "term": "工程文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c5588a4a82353591", "term": "信号处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9b1cd3668052b24b", "term": "二维码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-04acbecb02019060", "term": "智能手机", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b75b3dab2dd69785", "term": "js代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-37979829426b0cdb", "term": "工作区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9a432bfd61125c27", "term": "健壮性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-213a141981cce051", "term": "类加载器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b8147afc6c856a5e", "term": "耦合度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0827bb6d51efc910", "term": "3G", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b441a4a25c35e878", "term": "服务程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a6a4761cfcca4484", "term": "当前路径", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c2a4dee702dfa892", "term": "关联关系", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9ed01878baceb4a7", "term": "压栈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-848b1b96e1e8429b", "term": "系统管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9fbd3b4f0eb2426f", "term": "代理模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-31a048a499dd1894", "term": "导入导出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d65e58b100fda1dc", "term": "基本语法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5469999792426c9c", "term": "自定义控件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-842b9f11cdd96bda", "term": "开机启动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-35fcfff5bfc9a30e", "term": "代码编写", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2f0bf1577a9256f7", "term": "环境搭建", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-aebcb32f7e8cf14b", "term": "无向图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9a2797f934b5c09d", "term": "C程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9412657eb85e25a1", "term": "开源框架", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9acead912f0cc576", "term": "处理事件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-89dc7730d3ecff20", "term": "优先队列", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f265f50854ce01bc", "term": "匿名内部类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2a0503c80fdf648e", "term": "相互转换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-59b2ef753d612c4f", "term": "加密算法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d8eb8ebcff2fdcc1", "term": "垃圾收集", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c2556ea6b259a8bf", "term": "游戏开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-622da04602774a4d", "term": "贴图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dc0ed8972ee7136d", "term": "double类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d545721cef25493c", "term": "删除表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-837bc95767211631", "term": "当前版本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8b736f47b5c5ee14", "term": "子视图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8f87e5f78f9555f9", "term": "虚拟地址", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-055a6b3a3de7a788", "term": "横屏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a1d816cfcabfdb8d", "term": "响应头", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-491a084f698e1f4e", "term": "请求处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3e7698c84512adbe", "term": "系统架构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-45036ea6a79de6eb", "term": "最小生成树", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-89a449317caa0f61", "term": "代码库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ae94a576a392d5ad", "term": "源码分析", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-49d5f730d0c6063b", "term": "用户程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c73c06ebe75b0939", "term": "TCP/IP协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c33843bb4acf396d", "term": "动态添加", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fcaea50f314c1baa", "term": "字体颜色", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e67502d40ff0859f", "term": "高效率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3eaf9aa3681a7efd", "term": "版本库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-79d058197c114a2d", "term": "可选参数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-81c4a34a39bd9607", "term": "引脚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2f0c9261b5da5244", "term": "海量数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-543225c178930fe4", "term": "访问网络", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f1c33c1df39b9695", "term": "退出程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3a289581a94d5762", "term": "对象方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-42bdbb2f93a2d496", "term": "基础设施", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-95bf8f9a69c8bc12", "term": "执行流程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d29a4134309acf63", "term": "重新运行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e0e704b3e86008be", "term": "发行版", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8b9503838676c909", "term": "位或", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c1c3432c559272f2", "term": "大数据量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-137901bc3ae11b3d", "term": "中文乱码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-894193edc4fa11e9", "term": "堆排序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-888d12333f6c5459", "term": "工作线程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9b75b23d63b34606", "term": "调试工具", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0da98dc0c32e9df7", "term": "依赖库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ac84a7ae065fafa8", "term": "提交表单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b72d1092302977ac", "term": "链接地址", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-08545f3586d796b4", "term": "数据更新", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7fd0cf65b630d3f1", "term": "倒序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-521571f8e32e5691", "term": "环境配置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b5f401ff7ef2ed1f", "term": "循环语句", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-df091a516c31a4f1", "term": "信息保存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-07c9f74c992601f9", "term": "图片上传", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-278141a56cb61419", "term": "垃圾回收机制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c8a8b2dee37e2c27", "term": "命令提示符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1e3f570121b7f4f4", "term": "红黑树", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a26572571152a5ca", "term": "安装步骤", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-882b26f7f45b48ec", "term": "存储引擎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bb5c2f9a172b54bc", "term": "Windows平台", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-753c32be387e2c52", "term": "提示框", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-17b21346515a7673", "term": "json数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6219e5c436206e75", "term": "页面加载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-14374edfa485398e", "term": "参考文档", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-56f4eaf754206ce3", "term": "变量声明", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ada7692392ae811f", "term": "数据共享", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-212a40c759d79022", "term": "嵌入式系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3bd66814528cf385", "term": "拟合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5c3e9a5341f3f0d8", "term": "基本知识", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c5a9c3666f87bb9d", "term": "架构师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0e1a7040390fb03e", "term": "新建项目", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7795013e812f632f", "term": "下拉框", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d4b3a369f09f2bdf", "term": "多继承", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1f1a28cb42577fd9", "term": "无连接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-43d7d2b51d75fa42", "term": "创建项目", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d09cbaa408437e70", "term": "代码生成", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6f397e1fc22386ce", "term": "U盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8ebbdb219835ce43", "term": "架构设计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2619a917d6109fec", "term": "多态性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c353778504229bdf", "term": "斜杠", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1b5d0965ca126a2a", "term": "问题分析", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a2349f9431b1b12e", "term": "最优化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4a1656bb546c3380", "term": "非递归", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7334887d92a42bde", "term": "事务管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9a83651e9a820ca3", "term": "双精度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-11888e7c9cd66fe3", "term": "项目经理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9e5afe9627902bca", "term": "Web应用程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3e7a599625668c47", "term": "易用性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5f75fc90504a67d7", "term": "十进制数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-40b1d8dd09a76506", "term": "补全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c90842648c951c65", "term": "下拉菜单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c84881224f10f02b", "term": "条件语句", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ca02ccbd4edd6d26", "term": "运行测试", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5e5d639e3587ea38", "term": "控制工程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2cb618e51834dc22", "term": "匿名函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-52561ba4a9370153", "term": "类型参数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9c7ff3321e0a46b9", "term": "错误码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c29939d99d546852", "term": "代码分析", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cc4e3c54a837a980", "term": "程序猿", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cd91f2559d8d40f7", "term": "shell命令", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8b644e8f715a9953", "term": "类变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7fd4fe5c9fea7786", "term": "更新UI", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-17deb7f5bcd3389e", "term": "动态代理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-50a939fe152bf877", "term": "对象名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-12c42728e6354c63", "term": "高速缓存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1232eb44296bb8cf", "term": "另存为", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f475878ca5958bc7", "term": "默认构造函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e33deca12cd268af", "term": "微信公众号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1673b3111f6555fb", "term": "等待队列", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-eeb76f892c1402cd", "term": "共享库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-852078ef1e20b2a3", "term": "包装类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c1bfe6598e9c4e9b", "term": "长连接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3764e165489d8594", "term": "级联", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-176fa50bc7073154", "term": "目的地址", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1b14f92d89438f07", "term": "持久性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5a03dd12bd1de59d", "term": "自定义View", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f3c32e652f6592d1", "term": "文件传输", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-81c383b86896299e", "term": "数据交互", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-26bca9d5d9ff824e", "term": "设备驱动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e87cd507a434a438", "term": "命令模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ae60ac1044031669", "term": "占用空间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-85b1deb0e084dfc3", "term": "强引用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b6120352865a1166", "term": "异步加载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3451266a5f65369c", "term": "SQL查询", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1d1ba37df71b1601", "term": "C代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-497b5070b97b1b55", "term": "键值对", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9377340f824f244d", "term": "IO操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-db815dc55b3776fa", "term": "数组类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6ac8b7718121c801", "term": "日期时间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-20d52a194af760d9", "term": "栈内存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f073cbefe6844eb6", "term": "无法启动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7924daee98da625d", "term": "高可用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c93385e088d4c515", "term": "当前日期", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5eec7ed28733e725", "term": "数据复制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0eb3f0cef2c19f18", "term": "性能提升", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-54aee54aa55832f3", "term": "树状数组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-149111b774434af7", "term": "复制粘贴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2571a67aaa16f67a", "term": "文件创建", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-76c2f5581fbbc92f", "term": "网络资源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c3e31ea55d76cdc5", "term": "垃圾收集器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-62fdb5304cf5cd9b", "term": "任务管理器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cfe49f6ad890b160", "term": "类的继承", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e4521604b47feecb", "term": "清单文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-efb149daf69cbf75", "term": "同步方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c5d657c5fbd8f0b1", "term": "中断处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c7a93f7b05489ee7", "term": "参数化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b172449ceccdc49c", "term": "类类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-20bd7a11d052444f", "term": "系统对", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3f31742f2600558e", "term": "抓包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-17b92a399a587586", "term": "线性表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-40e8c231c87f5ad8", "term": "添加用户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-037b8258b5f8f113", "term": "多项式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f998fe06afa0cfbe", "term": "h2", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-223b20022f14a148", "term": "高亮显示", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-22440217c21db328", "term": "最大连接数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ec7cf6752749555a", "term": "开发语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ede4af4b6e5ff5cf", "term": "子程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5e4f4df210dae4f8", "term": "安装软件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0c8200986697d985", "term": "硬编码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a2e2eae309e530c0", "term": "内核空间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c7b2b48ca79a69a2", "term": "软件设计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6b97014f46fdfad1", "term": "技术支持", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3e2ec2e8597795c8", "term": "重复元素", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-50200d910a246da7", "term": "单片机", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7a2bd8b6cb0ed3bf", "term": "加载器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-519efb833eecb1e0", "term": "提交事务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6115baf75e1c5b04", "term": "图片显示", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-820ff79e3b7e5b09", "term": "添加属性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0411342e470c7996", "term": "异步请求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-07e577ff8c0d7f78", "term": "项目文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-31278c26908888c6", "term": "无法识别", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-792e9510e178930d", "term": "处理速度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c38901a6175772fe", "term": "默认参数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-61365b18a4d3fafe", "term": "自定义函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f4ec7ae070bd821c", "term": "数据库连接池", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a5c1d1bbbfc2befa", "term": "静态文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-35d313a2d6423b1d", "term": "符号链接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d4263d7ba1fcc84c", "term": "后台进程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8cc9b8b06e344601", "term": "插入图片", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b869c7b06ce8fce6", "term": "多级", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cbd2be72d871d541", "term": "单继承", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f4337e5cc05279fe", "term": "事件触发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6c7db2787f933a2d", "term": "并集", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5d80ed027d75f359", "term": "全局函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2619ddf6f550035a", "term": "执行计划", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8dc9d6d1e78dda28", "term": "地理位置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a095fca0624ac000", "term": "数据绑定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7f345440f97ff218", "term": "性能瓶颈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2d5c6f0f29dbf68d", "term": "移动应用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-aafa3bc097509cb0", "term": "Oracle数据库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-22bd015b9ea3521d", "term": "方法区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-488bd96e491bc64e", "term": "Android项目", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-74773b6896766ba9", "term": "返回键", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ec66864ff59e05db", "term": "阻塞状态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a54f97b21775fffa", "term": "代码结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c85ea7a2afec80bb", "term": "互联网公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-847b42eb02f24577", "term": "自定义类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f9b69abac50f0940", "term": "细粒度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3fa4b23d8bce61c3", "term": "系统信息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2e177f3bc44d505e", "term": "API文档", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-74c926df41d425ed", "term": "系统版本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a2b33bcfbf2ffc57", "term": "资源管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c35bd83b94b433f4", "term": "竖屏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0548e589f51bd1e4", "term": "底层实现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c907ac41e59cad7a", "term": "源码包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3357be7812d84c29", "term": "开放源代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bf202e77b5e852aa", "term": "工作效率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-219896209e513dcb", "term": "程序退出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8900301213bdf8e7", "term": "编译选项", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-93a4f302f140f04d", "term": "高级语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bc9ccb06828fbf26", "term": "文件流", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e3511d8794293a0f", "term": "文件结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-65b76f82f648aae8", "term": "虚拟化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-995036b65cfd6e61", "term": "边距", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-51db253425817abf", "term": "ul", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-02512e532a04a16c", "term": "内存缓存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dcfdbe8c6ef51654", "term": "块设备", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1f11e335e165417c", "term": "自动安装", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6ad96d3059a5974c", "term": "switch语句", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-17b33c69948ffdc5", "term": "多重继承", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-60a5422d1d78a287", "term": "属性文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9c48e5c00dfba6fb", "term": "日志输出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-83d4d3e7f6b0391f", "term": "再启动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1e68e512f4447cd6", "term": "数据读取", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-72e7366090f74348", "term": "异步操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-872428a7210d5e0c", "term": "网络状态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-503055cf69a3fe1d", "term": "开发模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d5edfed2ce8ebf2e", "term": "需求分析", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-741ca68c9dda3a23", "term": "企业应用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0f49d9d9d628058e", "term": "同步机制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-deae31fc3f6ff6a7", "term": "网页内容", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-db060c315d5632ac", "term": "私有方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7918957c1655b9bb", "term": "错误日志", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-64836835f8f983fb", "term": "键值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c3e58fb2fff7c621", "term": "对象数组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c2f6ca9166d81336", "term": "跳出循环", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b15c42776a94beba", "term": "发邮件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-84a5571a1cc78c74", "term": "网络访问", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0a50fde06cf2eb1e", "term": "逻辑运算符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2e395e4774a29755", "term": "命名规范", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b50a3fb1df3a81dc", "term": "多对多", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-47be0139d7cd278a", "term": "特征向量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1d1a1f59cedb01db", "term": "访问者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-42ed0590b8cc2796", "term": "设计原则", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-08d00806241183c5", "term": "修改密码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ff14d8022dd0c1f1", "term": "大小写敏感", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5169878507f0ba47", "term": "线程创建", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0d51869570881d45", "term": "C函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b6dc73ad86ef0e73", "term": "文件权限", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d032b9ca256fd880", "term": "多列", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0f70b190a472b87e", "term": "API函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9d31fff7121a73ba", "term": "自定义属性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dc038b64ab1763a1", "term": "树结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e52264d9385e395f", "term": "时间片", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e76b5d52e313d076", "term": "测试工具", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2cc1062d7bcd24e0", "term": "重用性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9b246b88c2a81f97", "term": "视图控制器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-814063e854d5bec9", "term": "连接建立", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e0b6ce5e09cd4386", "term": "服务器配置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0f49461c9a253068", "term": "字符串处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-df304213889f2bb4", "term": "简单使用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1edfb644b4f3dfa8", "term": "测试人员", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-689f3dd1014a8c51", "term": "读文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7c7c02acb3cdbc0d", "term": "泛化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9be1518400463ba5", "term": "数据库访问", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0522c7a622784101", "term": "字符串操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e23c6fc8d2f91723", "term": "应用程序开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-862ec2fc36a492ca", "term": "高可用性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cb4ba40bf823511d", "term": "使用说明", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1f43d19d8f19de58", "term": "数据仓库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d3f2c6606b26c8a5", "term": "前端开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f740b1365df50818", "term": "数据查询", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4900dc1c24cb7f1e", "term": "多点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3a5040b68abf75f9", "term": "全选", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-63d341d4ec735abe", "term": "内存碎片", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8f16c17c6e8ddd2f", "term": "数据加载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-938e6ab4f4446cc4", "term": "逻辑与", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-37366144a1b6d1bb", "term": "卷积", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b2d12f9a433b3182", "term": "序列图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0ef4a2087491a6a8", "term": "#import", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cbbe21b23a9546e7", "term": "设计思路", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-19ca3df6c82f9da0", "term": "文件属性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-678b783fb578172b", "term": "远程连接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2bd74486069f0a3e", "term": "左对齐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2b2f35614bb1a670", "term": "远程仓库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e8527559e64d9c88", "term": "数据缓存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f20998bffc8af7c7", "term": "存储系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b3e6630b234bc830", "term": "参数配置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-eb4236fe6a926a5a", "term": "下拉刷新", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-66b3a20d38947258", "term": "后台执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2da16fc9a47981b5", "term": "高精度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-50c884e953ed4fc8", "term": "直方图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fa4adc817b956636", "term": "面向连接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9848b9f592ae6533", "term": "简单实现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e8ebf6e9da548ebd", "term": "Android手机", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2caed1794b3f4c56", "term": "对象存储", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-59595c7a162edb94", "term": "远程调用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-09c14fee57475762", "term": "指针数组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9bea2bda7ac5f70a", "term": "深度学习", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-416ab27a56de2192", "term": "坐标轴", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f32ff78bca9e58d1", "term": "UI界面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b1e9e13ef0a4010a", "term": "子网掩码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f2b9b164db4592e4", "term": "公众号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5e3c95b0b605a40c", "term": "浏览器兼容", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3a1ad55ec6533cf1", "term": "缓存文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-51fdfeaaee755309", "term": "查找文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4b68895a2028ec1d", "term": "屏幕尺寸", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1b9fb49015172ccf", "term": "协同工作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e86e1f9781a07bc6", "term": "静态资源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-35766609e4387812", "term": "参数信息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d3d69990f6b5c533", "term": "策略模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dc89a52833b28822", "term": "重定义", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0dba913873a02fb3", "term": "产品经理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-22d641cb5bf3fe7c", "term": "类型安全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-296ecf669ee6699f", "term": "实例代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-62d09c85d95d3594", "term": "系统文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-00d746d718faf9bd", "term": "点对点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3f710fd27d80fbef", "term": "可变参数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-168b218cb403a100", "term": "高优先级", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b434321f20ea9df2", "term": "权限控制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-05749eb8b5146288", "term": "html页面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-441caa6812c4d683", "term": "桥接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c2fcc0ac687c8345", "term": "代码注释", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-83afced1eb28d0d3", "term": "业务层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-04f7acfcd28c1d88", "term": "数据中心", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0aa8395d10b863a2", "term": "排序方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-40e52cc2af302e4f", "term": "离散化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8c10e2c1728ddf8e", "term": "剪贴板", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6a7db02d4bee93d6", "term": "盘符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-955e6f6be0d1b3c8", "term": "导入数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-089e3fc1f221b64a", "term": "事件监听", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9937e365aaf3a085", "term": "简体中文", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d25a85f112658069", "term": "计算机视觉", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-090ef8b37f9818e1", "term": "回调接口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-784334172e2d5828", "term": "标量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c60be646dcbd7474", "term": "异步任务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cd2c3b9d6c538d28", "term": "软件安装", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d383929940b3ba12", "term": "UDP协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-734724e671db07fa", "term": "特殊符号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f3f8bcf3f57de41f", "term": "群组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-694fdcccbdca1b29", "term": "文件句柄", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-672f56b46e921d48", "term": "系统属性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c4d822cd54415c7c", "term": "基本方法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c3a08700d383f494", "term": "静态函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-72ad0fb8363212da", "term": "拷贝构造函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a3beb35a06090bb8", "term": "默认编码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f203a7fab35cb6c3", "term": "校验和", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6e009dba1a6831d2", "term": "请求转发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-09620d6db6b3a64c", "term": "时间比较", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-34618c44fe7deac4", "term": "64位系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-20ef21579f807ed4", "term": "多路", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a92495d715317ae4", "term": "互斥锁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a13dda338d183fc1", "term": "方法类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4a3c1b332907a15b", "term": "回车符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0a059efb9a09914a", "term": "快速开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-50bcb8c479ea6de8", "term": "捕获异常", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e1725554fe237da3", "term": "分布式计算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6e9dbda9d936c90e", "term": "多语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-56fe7b11c8bb8aef", "term": "this指针", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-754c237d3b1b805d", "term": "动态链接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ba20ed64a3acc1ae", "term": "循环引用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8721150ae972a2e5", "term": "出队", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a44a2a49157115e4", "term": "软链接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1201132b937ffc5a", "term": "数据库设计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6d8cc4250d16ee08", "term": "记录日志", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-14b576166ea91471", "term": "状态机", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a21f41e63c8add73", "term": "重发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-86002e9bb5c55131", "term": "子字符串", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-221c3b7c0af8da15", "term": "最终用户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-89c4766afc85125f", "term": "连接失败", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a5a93047d1e9531f", "term": "弹出对话框", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5842fe2819265861", "term": "临界区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ad5cb31d98cb2aa9", "term": "多线程编程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9fbb4750bb391133", "term": "上传图片", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-35759fdd22c0ba16", "term": "上下文切换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3c39e9bde120ddb5", "term": "定时任务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6fed7e86016823f0", "term": "工作空间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-074b381466a787c5", "term": "核心技术", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5e7cb7f9d8653c72", "term": "堆区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0e1de167d7ba5d3a", "term": "用户需求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-376c798f138e6864", "term": "后序遍历", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c71a069dc59b7299", "term": "当前页", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b4e40350a4d0df4d", "term": "接受者", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f4a5153c72602975", "term": "重传", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-10f6c8db8a48e1da", "term": "隐藏文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4f9938b82da9649b", "term": "QQ群", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b14790b8ab254f86", "term": "自动补全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a461abfe48f2eef2", "term": "指令集", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ebbbbe8d73ad2e88", "term": "乱码问题", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1a1281a5e5c48811", "term": "新窗口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-13d071dec66598d8", "term": "兼容性问题", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ae5ead4d89074727", "term": "连接超时", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b75872bba6f159d8", "term": "删除用户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e187e04d0efcb8c8", "term": "数据字典", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3cdc1bccf79bce00", "term": "网络带宽", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-de9fe25fb454287c", "term": "执行环境", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-336e01cbf70a9229", "term": "最大公约数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-31e805aa382901e3", "term": "字符串连接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e729b08a60a1d4a5", "term": "项目结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-78b6c980adabf955", "term": "无法显示", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4ee13ec627d48ab7", "term": "并行执行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3086d5b295aa8fcc", "term": "启动脚本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f51521cfe82041b0", "term": "静态页面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9366e1784dec59b2", "term": "刷新页面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bbf9b6c87642a5c7", "term": "待排序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5c864e4bf62a6319", "term": "登录界面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f40afbd54e8ab551", "term": "网络配置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-95b1d8d9bf80ca34", "term": "资源分配", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-097b47ca1cd3373d", "term": "操作文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-11be6f71b16a42d7", "term": "登录页面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-764c53fbeb49eaa9", "term": "函数对象", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0c7008279c5f4cdf", "term": "运行机制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ea72129ef957abba", "term": "协议栈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-422e224971ab3a9e", "term": "业务流程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9eb4ed77634f0460", "term": "字段类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-561dd03fca322f62", "term": "路由表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f1e56d0fa48ee686", "term": "远程登录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-81ee764fa4dd60f6", "term": "样式表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cbb72e7c19578344", "term": "集成开发环境", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8894375c40143d49", "term": "下载图片", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4e2d461a6b458d01", "term": "创建文件夹", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ef68e19ee2559443", "term": "连接字符串", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-52481b58c229dfe0", "term": "备份文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-75bde8e3bba4a3cd", "term": "背景图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4d756a364bbaee5c", "term": "对象指针", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c5250d420c965648", "term": "动态数组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-020b4098bd9f89d5", "term": "数字字符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5609675cbc13e8e4", "term": "DNS服务器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cae990060fe20546", "term": "开发应用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-efc1da8eae0365c5", "term": "用户创建", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0a2cd1135c0837b5", "term": "视频教程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-082e04312a340fa9", "term": "决策树", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7fe0b8fb91241af0", "term": "查找字符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fdb9dd443cf61c71", "term": "鼠标移动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7d0bbbe4761b3b99", "term": "方向键", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b677b4b86c385775", "term": "失去焦点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-589b21710d81d354", "term": "压力测试", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-964af23b4459202e", "term": "xml配置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5c5e9c4002175163", "term": "编程思想", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b66118464840d2bc", "term": "消息循环", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ee9e3752b7edc9cc", "term": "功能类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-36797c3aba1ef6ae", "term": ".a", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-622c0684716ca2bd", "term": "静态类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ee0ef45169003f33", "term": "跨域", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b096842c67b23056", "term": "自动换行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-aa3776a4f058ab51", "term": "读写文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-eb4f24c3e1f43307", "term": "任务调度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f3f4b4546655bf28", "term": "自定义类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c96c74bc0cae411c", "term": "系统开销", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d82a3ef0c63a576a", "term": "图片缓存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8d03f79e6edef617", "term": "码农", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5bd015ac928d4cb2", "term": "数字签名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5c1d3611de1e4c61", "term": "分析工具", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f3cc673550e271e5", "term": "Web服务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-04f781f654e38c8e", "term": "测试过程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a4dde0a4bee8c3e1", "term": "字面量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f60736f5c8700724", "term": "模板类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-25390bb5b8e56817", "term": "活动状态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1724a1a1b4bc658e", "term": "锁屏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-df90fe17e4336b64", "term": "最短距离", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a85e7f6142f201da", "term": "数据链路层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9bd76b73081a3a54", "term": "系统安装", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-685e2d0bf82fc5f9", "term": "删除节点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-756c3418ca7c9aae", "term": "系统开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a07362902255c29b", "term": "封装性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fc3a424e60a4f1e8", "term": "引用传递", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5feffaf19ce6ce3c", "term": "网络流", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b48d4ea7805b4e79", "term": "Linux操作系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-82e664d0f3c64b65", "term": "弹出窗口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6a3d4b9f4a57608d", "term": "进栈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8d3d73a18affda8e", "term": "显示方式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ce52150fb488e88e", "term": "IP协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-92e83f4dd0c33889", "term": "缩放比例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b1883ac027ad0d6b", "term": "描述文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b5ccc4eae34d49d4", "term": "系统功能", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-032c11db56ffa9e2", "term": "C编译器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-283430bd61dad43a", "term": "锁机制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-723b8f8e0dc2dd69", "term": "临时对象", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2bd144c552c4a9f5", "term": "初值", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8cabe38d46d6a45d", "term": "软件工程师", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-72bc9387cdb6cb64", "term": "弹出菜单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-afc6f8dd877359c3", "term": "检查和", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8cbbf31c44ce3dba", "term": "右键菜单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-176440df2752c470", "term": "static变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6ff5f5c4d62d4de5", "term": "基本配置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-80af77ca2fdfe6f1", "term": "离线存储", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-41d0e52f0a912a44", "term": "输出格式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4fb3ea271d03c7e2", "term": "延迟时间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e32436da596e5e88", "term": "MVC框架", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-490a52fc611db0d3", "term": "硬件平台", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fbf413d429bd168a", "term": "用户管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-20d7443d0fd3386a", "term": "屏幕宽度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ab4a592d96e37ae5", "term": "二次开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c0f7443b70f90e58", "term": "整型变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0dec14c01ad353d8", "term": "网线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-968fc76adbcfcbe2", "term": "动态绑定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b4d8289c3333c7ef", "term": "并行计算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5f711e8eae915392", "term": "内存映射", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2c1c8b898d8a8afd", "term": "编辑器使用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f830684c231eea3e", "term": "线性代数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3baf49989e4edfc6", "term": "快排", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e8ffef95af6bb6ce", "term": "松耦合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f169d973a0932c34", "term": "手机端", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-29c2d7c8d836d18c", "term": "全局对象", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-53b1644ef41ede1d", "term": "界面显示", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7e762a5487a14a86", "term": "最大流", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6340b951ecd304a3", "term": "无法连接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-09facf3b463eda53", "term": "保留字", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9408f20347d3f0f4", "term": "多表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-64963af86ff1eb93", "term": "文件写入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f1bc9a8c4c38f2eb", "term": "内存回收", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-11565c3b0dd3ea11", "term": "自动化测试", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8381a73ce7eb56ca", "term": "JavaScript代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dd2b0ab544f2bf87", "term": "程序设计语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1622625bc4492419", "term": "打表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3820f0bcc71ac262", "term": "对象初始化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-398c466907a6dbf9", "term": "私有变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3cc2877cedd79fd3", "term": "提交代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dc7fdcea0074520e", "term": "域名解析", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-60b0f463d6017acb", "term": "字符设备", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-65d1c37c27e5e33e", "term": "文本编辑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-36dd6e23a9d58a77", "term": "先进后出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2c18ea6a5b6349a1", "term": "补码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cc32e410131d27d7", "term": "HTML标签", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-994039bec7faccec", "term": "算术运算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9bb882c6229ac143", "term": "数据管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-919ef5f1b2ebb6c7", "term": "自动下载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-30086b727eca9634", "term": "异构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d38024042f4c411f", "term": "hash表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0414b8d68a27eff6", "term": "并行处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-32319e81a4084748", "term": "滤镜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e1ca36aef7591580", "term": "设备驱动程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2ab54c2725d269b8", "term": "iOS应用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-43d4896da86937ee", "term": "多维数组", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-afcf3bf6d19b8617", "term": "原理图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5f8fc718797aca7f", "term": "开始菜单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-117793815845ed50", "term": "顺序存储", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-06ef628fcf9aca38", "term": "二级缓存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-925aae22bda96ee7", "term": "管理员权限", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7d78845c50ea84b9", "term": "后进先出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-40ec4f6bcf1a6e30", "term": "静态成员变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8f1cad565ff8cc7f", "term": "Java实现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b1b79315904f1f88", "term": "表示层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a626aad412b751f1", "term": "标签页", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-075ee68d5cf51408", "term": "父窗口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bfefa0ae5348ada7", "term": "交叉编译", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e887d0fdceed7a31", "term": "机器码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b83234b25460d989", "term": "野指针", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-768b98c2c7b168e5", "term": "Android程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fb8cf64c431d5946", "term": "第一次启动", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4545de5a0a02b220", "term": "流媒体", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-10a5d9215ee4d2a1", "term": "文件删除", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7ba795df59d87d68", "term": "解包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0954e6addea2fdba", "term": "服务进程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ce5a7298821d8644", "term": "远程访问", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ce07497d603cdaa9", "term": "屏幕分辨率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-221082fa8cfe37d8", "term": "cmd命令", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bc669335f525df97", "term": "线程阻塞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-32b932b117ae9220", "term": "内核态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cb187a67c7d5e782", "term": "程序语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3efd4df0293abcc9", "term": "身份认证", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b4ddd66c51361473", "term": "程序集", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-33409796120cb9d7", "term": "重载函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-680128f4ebc7802a", "term": "Windows操作系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3b85f7ea13856248", "term": "异步处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d686f5499813465a", "term": "逻辑运算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-68891ab35cab9663", "term": "重新连接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5b863d058e3592e4", "term": "匹配模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3493b26c9093d6ff", "term": "控制字符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1289aae6196992b7", "term": "分区表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f509a418d7ffa7e9", "term": "字符串替换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-15157c55c392d1e4", "term": "权限管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0ba38944ad73da02", "term": "递归函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-da21b765b36d3783", "term": "实用工具", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-75c29d41ee3828eb", "term": "内存操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7b663a2fd61bbde1", "term": "均匀分布", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ce6e4d88429ed417", "term": "web页面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a32f42cfc1511bf2", "term": "屏幕显示", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6b44b7ba432abf47", "term": "行高", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-226bc5aa0ab03c48", "term": "数据导入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c664ba579bd0a349", "term": "类属性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a82c961012e4afd3", "term": "视频流", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0cb04855fb49c511", "term": "编辑框", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-506001ffaa291238", "term": "比较器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a2b0ab91a0d187c5", "term": "函数重载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-97bfbeddf8d30aec", "term": "应用实例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-edc3f02843ff9f0a", "term": "安装插件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e92765299e9d4f29", "term": "txt文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b5162b27e970e924", "term": "程序结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-92379b07647d3ee7", "term": "字符串比较", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fea639475a1533bb", "term": "数据压缩", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3dac0de92967a617", "term": "开源代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-84c9546811cf74d5", "term": "反汇编", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1e92302121b1f3d8", "term": "权限问题", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-769a4ee2d337f802", "term": "符号表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ca1372bed6944ef9", "term": "文件读写", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-48a5638595709580", "term": "快速查找", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-35554f9296986ac5", "term": "逻辑结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-969ade5e927d0e3c", "term": "字节对齐", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0798f8c3dfbc56e9", "term": "旋转角度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-79d00b4a0cd7ea10", "term": "static关键字", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6a0c299482d05357", "term": "用户注册", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1fd5f03b5931ce01", "term": "设计理念", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fd2376a36c829d94", "term": "解决冲突", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-403be7671b635fac", "term": "开发平台", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-696799de98e5cc9b", "term": "适配器模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-75bed270922a0417", "term": "目录树", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c44aa61e7cd1453f", "term": "管理类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-56f70255aff6cc5e", "term": "SQLite数据库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f2093667f5be8f7e", "term": "串行化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-647bbe225724a0af", "term": "获取焦点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1821ae192b562792", "term": "锚点", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9b39b80060cea91c", "term": "特征提取", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-914e96b361fdbc1c", "term": "持久层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-95297fb86032e4ed", "term": "邻接矩阵", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4f8ff7950f10e762", "term": "多处理器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-af12f01fc79565bf", "term": "系统函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d3ace457036e9486", "term": "面向对象设计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-13dfb354039fa112", "term": "网络服务器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-63ab0da55ee2b5eb", "term": "低耦合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b62485f1eac59123", "term": "算法设计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d05c55bc5b9d134b", "term": "懒加载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-92e4486c231a8196", "term": "封装类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c51f06679e872303", "term": "属性列表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1b2c5942b57e73ea", "term": "文件指针", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3d86608fbb5098a5", "term": "删除目录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-14aedaac76f04851", "term": "启动时间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3410424c4c919e7d", "term": "完全二叉树", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7015255aa19be8d5", "term": "本地存储", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ad95d8af1a21ea45", "term": "子网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-eb3355268f3bdb28", "term": "操作确认", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c3e1fced36590735", "term": "性能分析", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d9f1d66dec3507e6", "term": "强类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-60ed265346273d74", "term": "编辑文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a9903aa1b0fe4fff", "term": "命令窗口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d8c9c6038eb309b6", "term": "编码器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f558463f1f3f85af", "term": "可编辑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-350e080c4458904d", "term": "安全机制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b6ed5f46c1be9168", "term": "信息系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-52ba8999a5b3f036", "term": "List集合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d8a3f6d0800599f5", "term": "深搜", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d7edee3f40cec853", "term": "任务队列", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-011fdba1ddda4d57", "term": "无线网络", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4b9085243a62a0da", "term": "MVC模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-08a6de31e1065297", "term": "语法规则", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8c2405895659f441", "term": "分布式应用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-841dda20ea826b6c", "term": "机器学习算法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dc4ef50b71f369e6", "term": "触摸屏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7b09515423f87a38", "term": "数据恢复", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ae50730c81219dd1", "term": "UI控件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7f334965198dca77", "term": "统计分析", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-db590c959e039eaa", "term": "字符转换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4214b9af7ae0cdcc", "term": "单选", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-42e40f432b6da0e0", "term": "版本更新", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d26e78eb9351e125", "term": "本地代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0e8525cdb11a977d", "term": "静态属性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bd2a4e79b3d0bc01", "term": "内核模块", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c536f150039736cb", "term": "比较运算符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5fe88c9641c85872", "term": "编解码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cc3bd66428261c48", "term": "死机", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-662fab3b7e318a02", "term": "控制文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b7b70d8427f30bb4", "term": "运行库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e3ff555c2d6ffbf1", "term": "静态存储", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-694638fbd20d10a2", "term": "数据通信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e3bbd8663b680de0", "term": "数据一致性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-79b622b8f8f24c80", "term": "版本管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a8a711374fab1957", "term": "隐式转换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f2f85c42cadb187d", "term": "多字节", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8baecf5c1dac4752", "term": "数据连接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b3d0b57da7024fc7", "term": "丢包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ac9972a750d20fde", "term": "代码质量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a981c51cd86afd77", "term": "固件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f9404bf335bc14cf", "term": "帧率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1a4f368d07e96ab3", "term": "单例类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-90e4a2a6f1949fae", "term": "多对一", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a29abf24b1aabef2", "term": "全排列", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-902d495e2f50a291", "term": "编程实现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cb1ac4e2a982d651", "term": "启动应用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1df9d7d843f7dd6f", "term": "调用顺序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e1e09f78dadc9b30", "term": "有序集合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0ebf210677d1719c", "term": "图论", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cda60587c25cf6f6", "term": "邻接表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8448b7ce4904831c", "term": "二分法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7316ae0a19406284", "term": "内存模型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3563f4227d792175", "term": "分治", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c310ad4d6d6d2d4e", "term": "常量池", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-35032c901b421c16", "term": "程序计数器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-25f39c8b84118808", "term": "数据持久化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d8654040edf6df80", "term": "转置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9cd4acd50c3c5e09", "term": "语法分析", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f8e18d135ca3ea19", "term": "页面跳转", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ce2a1b0e2e2e3cec", "term": "内部函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-134891399b36311a", "term": "配置管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f3c98be29f82e0a7", "term": "面向对象语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d949c3be23cc1d12", "term": "移动开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8cbf42d1b455a50d", "term": "运行时异常", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4d7aa5c98efa290a", "term": "无符号整数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-93adb45458dd9613", "term": "UI组件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1ae6b0a0f8266382", "term": "关闭窗口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dce39fc181f37ceb", "term": "系统内核", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7151e1165592047a", "term": "开发框架", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-341d0de16a102cc3", "term": "容器类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ad9c8bc74c158f8b", "term": "应用进程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7fa85e188d3eef18", "term": "消息机制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7081baf7c4ddc665", "term": "设备号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4e433caefff525ac", "term": "流程控制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2029d56b366b53b7", "term": "编译系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-839bc859bd56a5a5", "term": "希尔排序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-366ada1d2fcfc4b3", "term": "系统日志", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-032d854fecafadd3", "term": "内存释放", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cada027120f11896", "term": "实线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0fe80a8d821f98b3", "term": "递归算法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c228a1e21ad994f1", "term": "编译工具", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-402ab53020e979c4", "term": "组织结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4c46c904395c2935", "term": "后台任务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-80dc6943cf9714e3", "term": "版本控制系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7fd93d7db7fa0f5c", "term": "编码转换", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7aa87027a47bbda8", "term": "单精度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-58b00ebcdee27b2d", "term": "网络图片", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-777314999f748f26", "term": "平板电脑", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fc405798dcb7e708", "term": "云服务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b5438a186eaeae63", "term": "限定符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3fa304aacf35ec64", "term": "读写分离", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f4515394b936c81b", "term": "概率分布", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0750c665574fc2af", "term": "百度地图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c976b625cbc0d581", "term": "空指针异常", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c44cd7331f472ed8", "term": "类的加载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-25c38ee89c41fde6", "term": "二分图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ffb67bdea79c2776", "term": "增删改", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-36c3ca51b182d69d", "term": "新建工程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f2db3712a685913a", "term": "自动保存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8cab1a199134c901", "term": "抽象工厂", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-83665b4aedf9996f", "term": "多播", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d15f716860e2b492", "term": "软引用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-202e80e0d86f74be", "term": "函数式编程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6afd0ae3a8118ca9", "term": "启动方式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3a562b108dc9b295", "term": "测试框架", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d843ea4d68cea304", "term": "数据分布", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7c7f799600aebc3b", "term": "内置函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-55769cf4ba2208c3", "term": "读取配置文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dcb635e7b8223103", "term": "子窗口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cd6a6637ecbcc6d3", "term": "散列表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a639dd9be3d2fe19", "term": "绝对定位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b3bd5ac7cc4d668b", "term": "文件管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0c08519a81174973", "term": "弹出框", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7ee6afad1a489fdd", "term": "递归实现", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5b4f27fc9e6abbb9", "term": "多路复用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1098a2e21517503e", "term": "恢复数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-22155e99586bf2ec", "term": "外部调用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2fbf780556ad6dfd", "term": "rpm包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-11164f91cf20ea2f", "term": "技术问题", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-72781cc9c709c48b", "term": "集合类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ebe7e993a2f1f1df", "term": "应用领域", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2b82ea55e24d6377", "term": "用户接口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d5713b47a63ccc76", "term": "开源社区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-59a8e166a0f71f1d", "term": "单击事件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f6e7febc0bccfd0d", "term": "桌面应用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d3907402bbb99dd3", "term": "控制流", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c56abc46732c6974", "term": "Map接口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-299b8870c2fc3fd5", "term": "编译出错", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f9c45e1a04494ede", "term": "各种语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e2d75ac31cf9eaee", "term": "智能指针", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a2a997ee46ca5c66", "term": "同步代码块", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b61ca5cf766628a4", "term": "远程服务", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1961784db559529c", "term": "中位数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b89b44a5346d5fe5", "term": "音视频", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0b47f625a7c6d0e2", "term": "图形用户界面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5298ebbdb723f492", "term": "持续更新", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-04bf5c81a44cc130", "term": "拓扑排序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-36c28c13da8c1185", "term": "开发经验", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-76ceb8224dac8bf3", "term": "算法思想", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-298d7cb17688a3f7", "term": "IO流", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0e3cb07307c148ae", "term": "关系映射", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-40f7f7008ba0c3b7", "term": "工厂方法模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e93b463546405ccc", "term": "XML解析", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-901e5b7e515a87a8", "term": "开闭原则", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-255841faf5082cbc", "term": "界面设计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4216a344f48ec87c", "term": "差分", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-41c59658fd4c2f92", "term": "重定位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-12a0d4981f2ec84b", "term": "条件查询", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bc74e9c2871370ec", "term": "功能测试", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f7cfa333b5d14095", "term": "显示行号", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ac33e09a7700f8e9", "term": "解析XML", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-72b99b17dbc20784", "term": "换页", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-99ec7f7b04124bb3", "term": "存储文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-39a9046f9c8c993d", "term": "最近使用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-37c58f8010c8c61d", "term": "逻辑判断", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f718db5682aaadf1", "term": "异步调用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-921c3b62f1f7d6f4", "term": "查看源码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-aff5c6551df99c22", "term": "游戏引擎", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5410b9c8f5a3f538", "term": "并发编程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6215a67b786f8b16", "term": "创业公司", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-80aa931c1291e75d", "term": "启动模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6ee784ac406da319", "term": "程序段", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4f4b6a281766234e", "term": "技术细节", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-49525d1b64a6b32c", "term": "常用属性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-18ec70b63ff9e7bf", "term": "数据请求", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e4117d1dbdd1bd8a", "term": "程序性能", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-18c7c0de0968cc74", "term": "for语句", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e66c3813e4feda42", "term": "共享变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-93e3d8c5b10657d2", "term": "5s", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4028c454fbbfb3e8", "term": "代码优化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b40aaf2e867891b3", "term": "多线程并发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1020feea90583715", "term": "思维方式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-45bed786caed2a35", "term": "UI设计", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-30194b0715f74601", "term": "线程调度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4a9ed2125808d72b", "term": "主存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fd95eb954e495218", "term": "中序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ed1670a5768cf5af", "term": "控制反转", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-60a71cbf7a3f2a97", "term": "事件对象", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-41cc2ab09a8c0a3a", "term": "plist文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-acf0d669b8874f7c", "term": "置位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-98073e15fa0329d0", "term": "自动刷新", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-16c3b27e55da3f27", "term": "动态内存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f79dc140574f4cd3", "term": "线性回归", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-055df9f7c016bbc5", "term": "内联函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6fb3e76018938b75", "term": "跨进程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5e66a9e8aeadd0e5", "term": "循环结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-af3ebcca62650170", "term": "线性布局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5b557adeba6d2ebd", "term": "栈溢出", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-85a15fb2227ae30f", "term": "物联网", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a486f086ba04bd72", "term": "过拟合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f227560c027c89f8", "term": "json字符串", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-aea68044e51ef788", "term": "静态代码块", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c37729f56a54a839", "term": "同步锁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2f84af8e98507f71", "term": "动态语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0e3eb6b19e5ca5a9", "term": "form表单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3513008db189a263", "term": "字符串匹配", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-24e55dcd01b575f1", "term": "系统进程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fa31a0823b55a6a5", "term": "页表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1e406bfcbad1c1ba", "term": "CSS样式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9a66452d61e56dee", "term": "自顶向下", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cd4f23cd03c785d3", "term": "数据备份", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fab3435fca771560", "term": "a标签", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c035da9e10901ca3", "term": "断点续传", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1fee9d8cce3c95a7", "term": "类函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-872ebf08a516e9ee", "term": "事件传递", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b2229b3d4531be30", "term": "缓存策略", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fa2045ae6238eeba", "term": "软件测试", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7bd452b2af479b04", "term": "Class类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-46b77feb23be3ce6", "term": "外包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-529ac9d5af094f86", "term": "深拷贝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dc2316254a8aeae0", "term": "居中显示", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0dfa7d89e29bdcfc", "term": "点集", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d4443b35a832768c", "term": "网络安全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-402d3f8f35906fd8", "term": "创建进程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-45187020c9bce628", "term": "自然语言", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2f7cef3744fafd93", "term": "电源管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-70a474eff9ef58b0", "term": "硬件加速", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d3967ca9601ede98", "term": "隔离级别", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-602d3730050ad645", "term": "时序图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d375f809b4fd4462", "term": "模式识别", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-346aa69abd3922cb", "term": "脏数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b2d4743e0a3cf7ae", "term": "软件架构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5ec5ed67c03456b5", "term": "获取参数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c105ee7de17e28e7", "term": "转换函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bcabc2789a20ef22", "term": "就绪状态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f21ef4aba5ab4e55", "term": "文字颜色", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-33c115df63a8a91b", "term": "多文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-49dd7177b12d14f5", "term": "排列组合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-343f0e8eb9b70e8f", "term": "用户登陆", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9e69b013efcbb7d0", "term": "传参数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1a56eac9092d289b", "term": "文件定义", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-76842104afdb98fe", "term": "页面布局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-91fb2ac118c32027", "term": "++i", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6f340cbe6f8f6769", "term": "私有属性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-316a7053f7d868b6", "term": "接口调用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5a24344c1448ab5f", "term": "软件版本", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fe02e7e4fd408b74", "term": "界面布局", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d8e86cfbb01a7bb9", "term": "分治法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-094a4cc6a420ac34", "term": "阅读器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-55077ac74cd4b16d", "term": "拷贝文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8975d3acbd0d99af", "term": "直接插入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5eb5a4816dbd6d5f", "term": "直接插入排序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bb1c335383e767e7", "term": "回车换行", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2e0b866685b65ad1", "term": "数位", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-57907a69fc5aa882", "term": "偏好设置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-db77fd01af957221", "term": "r2", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-89d9daf37f958e65", "term": "历史数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-57f6ec751172636d", "term": "图片下载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e57b7137459f6572", "term": "浅拷贝", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-63f31192ff463e72", "term": "权限设置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4e029ef63c337f07", "term": "访问修饰符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3c1109d2f0a392ee", "term": "搜索算法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e0782ab38fa37d2a", "term": "常用操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7acc42ab2aea2356", "term": "团队开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3f81845e5c7eb35d", "term": "资源共享", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-52afc06a6fdc90bc", "term": "小游戏", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e640f4336e943ae7", "term": "版本升级", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9018351883067878", "term": "小图标", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1c41b4c3a3a7fd3b", "term": "文件访问", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f7cddf811bd24c2f", "term": "异常类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-17fe8777a1bbdc85", "term": "访问共享", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6d7b5be63c89236f", "term": "进程创建", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b7cecf541b7d7995", "term": "软件产品", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a48bc2f2193ee277", "term": "磁盘IO", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-69694a5568441c1c", "term": "同步操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1e258076b154c8a5", "term": "#endif", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1fecb34e7006beaf", "term": "SQL注入", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-63320b39f338348c", "term": "多行注释", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ba50e3ba63c7e0a4", "term": "报错信息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e45bf8fe790b9414", "term": "绑定事件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-60a41a0a97ba57a7", "term": "数组排序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b217b5d6c6af685a", "term": "首选项", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-04ea81768ab82ad0", "term": "旧版", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-887426e4786aac86", "term": "读入数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3d3a96e7ef49213e", "term": "矩阵乘法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-92111080ce536f8e", "term": "迅雷", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2841c91463eb28ca", "term": "单选按钮", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2c1d29be2d4b9900", "term": "自底向上", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b32af2a5114f57c5", "term": "解压文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8e332361cc75cbf9", "term": "数字证书", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a1740559b73d832d", "term": "前序遍历", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4e999fb2357eec61", "term": "开发流程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-00acca8c0c10f6d3", "term": "发送短信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-76f4d52d4512a271", "term": "位操作", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-063b63363a97b188", "term": "事件响应", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-39974f5052a4a3ad", "term": "事件分发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c1e59f55ed630d14", "term": "web容器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f8e151e9f087ac66", "term": "垂直居中", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7c2f6df7f638b545", "term": "社交网络", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a0aaa1bf921d940e", "term": "内存问题", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6c07bb6fd4b612d1", "term": "设备信息", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d1616a31a5abfb80", "term": "磁盘分区", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-915b3c5d83531433", "term": "root密码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a31163b8a0012985", "term": "数据加密", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-19a2c118c32036d5", "term": "硬件资源", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5f6a03b217245ff8", "term": "图例", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3b8e67c02456aa4a", "term": "图片处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b143325ba6047c11", "term": "管理软件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-95ad5bf35f521bc6", "term": "数据目录", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-64bf41b075c9fdcb", "term": "数据采集", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-955c65f9b4c40290", "term": "Linux环境", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6d4624ac777e5e8e", "term": "共享文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0c97f72e74de4673", "term": "根文件系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0feebe184fcaa584", "term": "支持向量机", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9e5d8ef97581bc61", "term": "元字符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-104ba3fcb0e10faf", "term": "数据帧", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b03600b397a284af", "term": "软连接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a955892f2930fd08", "term": "war包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-6538fe3f7e8275d0", "term": "输出设备", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-473bcad2dba7fb63", "term": "项目代码", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cd906e3db3f472c7", "term": "批处理文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ec11b86e1ee69593", "term": "编程习惯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0da227ab7a121371", "term": "函数式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b386416427ba58f5", "term": "自定义对象", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b7b337f5af4a81bb", "term": "分布式存储", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-902756d89dfe254d", "term": "方法重载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3d3f76a0f9828e95", "term": "流量控制", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c72ee0854df6d6d0", "term": "对象锁", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-110087a65f9dca12", "term": "终端用户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d6b8575943268f22", "term": "数据空间", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9b64b674784447e1", "term": "单行注释", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e400d53922d15abd", "term": "传输控制协议", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d18c58c866eafbdb", "term": "类和对象", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a9522b78ae7aa87f", "term": "代码提示", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a4be2952e3f10705", "term": "调用栈", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e8c92c9f1f1bca6d", "term": "人脸识别", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-be9ef9541278d58b", "term": "网盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-200b8b48a98bc0d3", "term": "操作命令", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-078202f000a0ac99", "term": "实时更新", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9a0d34bdb5651d55", "term": "第三方应用", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1fd8d4d49d9ddd67", "term": "数据格式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2572efcdc9338841", "term": "maven项目", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b5551f66a52462b1", "term": "资源库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1ede315200511074", "term": "抽象工厂模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e6508cdc3ec4b332", "term": "按位与", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-02cca5df47f36699", "term": "iOS系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5302f2d2596670c2", "term": "子菜单", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2931951ec6205056", "term": "基础架构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1045b84ae4f8e11d", "term": "window对象", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c38eaa739eaa8b02", "term": "静态初始化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0e0d19669b907fc8", "term": "默认大小", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7842e85399053405", "term": "对象状态", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1f385bed36c0c579", "term": "网络通讯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ef1d376ef2056d94", "term": "自动编译", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-15e65fa8e3d02828", "term": "标签库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3e5c3ba2c6a7c4e2", "term": "运行方式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9df7be3068305019", "term": "网络下载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bf03b1cac2d1420e", "term": "高内聚", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-dff7b6af66f3313e", "term": "分布式缓存", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e13bd5018bcfb342", "term": "顺序表", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f5db6db3301b2f98", "term": "进程管理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-319617aac316f70b", "term": "向下兼容", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d15621c5ae2fcb26", "term": "json对象", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2b89c16c9c468cdb", "term": "字符串拼接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b312687178fe2247", "term": "源代码下载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-d23365471633404d", "term": "用户授权", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-68ea2613e9c25a4d", "term": "引用数据类型", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4b163647841f0a2a", "term": "敏捷开发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ef6e57f3baf2d29f", "term": "Collection接口", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-850de13a01d9b482", "term": "保存图片", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-83cdf0a5ee628b87", "term": "运算符重载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-10ca179a0200d384", "term": "输入设备", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-327c57c8b406ba1f", "term": "播放视频", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9d9ec77edcab27fa", "term": "面向过程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f2f0b73a252b7f35", "term": "匿名类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-86d14752389c3130", "term": "放大缩小", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f3f2343ceca4f2f9", "term": "安全模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ba92a965640e16ce", "term": "预加载", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-60a543d12dd7025d", "term": "外连接", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b18b23883b3139a4", "term": "时间设置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-40ee779daf33a3f2", "term": "算术运算符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-102ca5126493d827", "term": "梯度下降", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a2aee80dcb89c9e3", "term": "视频播放", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a770a9d053ce1ec7", "term": "数据封装", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c445edd77468a6b0", "term": "转义符", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bc9754f4cae8da6a", "term": "字典树", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-03e376d33ff21a2f", "term": "标签名", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2e6228a0c536d323", "term": "事件绑定", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bd8c6e285a30ce64", "term": "管理程序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8aece403ca0b24e6", "term": "柱状图", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ef4930471a817213", "term": "消息推送", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ba0e20e26a5951f6", "term": "Java编程", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-eb8849f239ce6dcb", "term": "自然语言处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-42f242432291462d", "term": "文件共享", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-35823ef337fd453c", "term": "组合模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-654a661d749296d9", "term": "语音识别", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ff1804eeb7de2085", "term": "打开方式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f09ec85136d22ffd", "term": "发展趋势", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e4ef591cfc38ff66", "term": "数据库配置", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c2dc4da52ed35127", "term": "内边距", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-828d3bee78961e51", "term": "做实验", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a33c5531281901cf", "term": "并发处理", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8bb4b47ea8650db8", "term": "模板题", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-4606e505becb8328", "term": "装饰模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-98399c4bd23dc017", "term": "正态分布", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-578bed955667364f", "term": "字节序", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1b2eff80cba1fb11", "term": "控制系统", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-989c3ad6e54fb7e2", "term": "斜率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c47ceb351ed02e09", "term": "信息安全", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5b0899db1547e741", "term": "表现层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-84ddf0517b955c33", "term": "先序遍历", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c60d5a5e72b1b8fa", "term": "生成树", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-48aef4523d85d332", "term": "软键盘", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e07e8b3d20d73e46", "term": "回送", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9e62a9f434e04491", "term": "与运算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bf636dad9b21224f", "term": "取地址", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b6f8e20d50a22b44", "term": "抽象基类", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ea8820f18a7f64c7", "term": "数据完整性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bcfa2a1946975e33", "term": "基本属性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-caa97c61a0049528", "term": "找规律", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-88ada91b1cb7b0bd", "term": "数学函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a7ac587ab52da350", "term": "基线", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-eae7f4537d6d243c", "term": "进程通信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b1f466dfb9d1daa9", "term": "Linux平台", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a8ac4732227e09fd", "term": "一般用户", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ebf9af0793cdb37e", "term": "深度优先搜索", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-35372df613a0600f", "term": "标准差", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ef7e9c268e14ac36", "term": "本地库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bdc801660e28884f", "term": "链路层", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9b41a3752d6ce961", "term": "Map集合", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-817f7b18607cd55f", "term": "理论基础", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-1aa596a3c33440ce", "term": "穷举", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-69d16fd39267095b", "term": "职业生涯", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3a99e48933834b93", "term": "链接库", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-40c8bae432e2df44", "term": "进程调度", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-a9c4e4cea9840342", "term": "广播地址", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-70b62df257d5922e", "term": "设计方案", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7defc7678839861e", "term": "线程并发", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-24fe0574fd6d95f0", "term": "优化问题", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-22e88948ea0b7bca", "term": "原语", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-33697e548c85a21d", "term": "只读属性", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2b4fd6beb38ce7c6", "term": "安全策略", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0f549853799d6bde", "term": "采样率", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-fe805ad61a219bf7", "term": "科学计算", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-0e319c6a26320d08", "term": "性能调优", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-40576e4d2f21e906", "term": "排错", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8490905ef8c1da10", "term": "01背包", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-09f1e24ac1c9e817", "term": "重复数据", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-c1079c79559e00e6", "term": "商业模式", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-e785ebc25aa8e7cf", "term": "单点故障", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-3283e160a838d6ba", "term": "大型网站", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-172c35a3eda1dd02", "term": "显示图像", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-ad44015ef0699b57", "term": "斐波那契数列", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-9bbe9f3294edc356", "term": "边界条件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-bc41a064e66b8cde", "term": "邮件服务器", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-03da180d126355d1", "term": "移动平台", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-06c658312ccfb99c", "term": "动态页面", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-cf11f9cb4617a4a3", "term": "静态成员函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-25d0604098bddba5", "term": "优化算法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2473cbc4392cd4ad", "term": "条件变量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-5ddc2035e4e477e9", "term": "互斥量", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-75632657d4f5f788", "term": "发短信", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8c767891bde49053", "term": "云平台", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-8fd3284a594961cf", "term": "对象序列化", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-00fcf17e448140d5", "term": "记忆化搜索", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-654dd96c7268c391", "term": "yum安装", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-97035c7f53b51927", "term": "so文件", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b377c2e2ed13f9d5", "term": "缓冲池", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-decae4e775ef364e", "term": "哈希算法", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-571e772e8cc3b172", "term": "数据库结构", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-f180c087ee15604b", "term": "应用环境", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-b11f719aa77bd08a", "term": "平衡二叉树", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-be54edfe3f531841", "term": "纯虚函数", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-88703334074f79fe", "term": "安全漏洞", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-7a763afa15c4dc03", "term": "插件安装", "aliases": [], "corrections": [], "category": "thuocl-common"}, + {"id": "thuocl-technology-2a43c7d6a8051af1", "term": "系统软件", "aliases": [], "corrections": [], "category": "thuocl-common"} ] } ] diff --git a/Sources/Resources/THUOCL-LICENSE.txt b/Sources/Resources/THUOCL-LICENSE.txt new file mode 100644 index 00000000..968c114b --- /dev/null +++ b/Sources/Resources/THUOCL-LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 THUNLP + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Sources/Speech/SpeechEngineProvider.swift b/Sources/Speech/SpeechEngineProvider.swift index f91a006f..8c43cbed 100644 --- a/Sources/Speech/SpeechEngineProvider.swift +++ b/Sources/Speech/SpeechEngineProvider.swift @@ -2,120 +2,125 @@ import Foundation @MainActor final class SpeechEngineProvider { - private var whisperEngine: WhisperEngine? - private var appleSpeechEngine: AppleSpeechEngine? - private var volcSpeechEngine: VolcSpeechEngine? - private var qwenSpeechEngine: QwenNativeASREngine? - private var mlxSTTEngine: MLXSTTEngine? + private var cachedEngine: (any SpeechEngine)? + private var cachedSelection: Selection? + private(set) var failureMessage: String? - func engine(settings: AppSettings, requestPermission: Bool = true) async -> (any SpeechEngine)? { - await ensureEngineLoaded(settings: settings, requestPermission: requestPermission) - return currentEngine(for: settings.speechEngine) - } + /// Value identity prevents a settings change during an await from selecting another engine. + struct Selection: Equatable { + let type: SpeechEngineType + let model: String + let modelPath: String + let locale: String + let appKey: String + let accessKey: String + let resourceID: String - private func currentEngine(for type: SpeechEngineType) -> (any SpeechEngine)? { - switch type { - case .whisper: return whisperEngine - case .apple: return appleSpeechEngine - case .volc: return volcSpeechEngine - case .qwen3: return qwenSpeechEngine - case .firered, .megaASR: return mlxSTTEngine + @MainActor + init(settings: AppSettings, inputLanguage: InputLanguage? = nil) { + type = settings.speechEngine + switch type { + case .whisper: model = settings.whisperModel + case .qwen3: model = settings.qwenASRModel + default: model = type.asrModelID ?? "" + } + modelPath = type == .qwen3 ? ModelCatalog.shared.asrModelPath(for: model) : "" + locale = type == .apple ? (inputLanguage ?? settings.inputLanguage).localeIdentifier : "" + appKey = type == .volc ? settings.volcAppKey : "" + accessKey = type == .volc ? settings.volcAccessKey : "" + resourceID = type == .volc ? settings.volcResourceId : "" } } - private func ensureEngineLoaded(settings: AppSettings, requestPermission: Bool) async { - switch settings.speechEngine { + func discardCachedEngine() { + // An in-flight session retains its own engine until it drains. + cachedEngine = nil + cachedSelection = nil + } + + func engine( + settings: AppSettings, + requestPermission: Bool = true, + selection requestedSelection: Selection? = nil, + progress: @escaping (WhisperEngine.DownloadProgress) -> Void = { _ in } + ) async -> (any SpeechEngine)? { + let selection = requestedSelection ?? Selection(settings: settings) + failureMessage = nil + if cachedSelection == selection, let engine = cachedEngine, engine.isReady { + return engine + } + let engine: any SpeechEngine + switch selection.type { case .whisper: - await ensureWhisperLoaded(modelID: settings.whisperModel) + guard let loaded = await loadWhisper(selection.model, progress: progress) else { return nil } + engine = loaded case .apple: - if appleSpeechEngine == nil { - let locale = Locale(identifier: settings.inputLanguage.localeIdentifier) - appleSpeechEngine = AppleSpeechEngine(locale: locale) - } - if requestPermission, !(appleSpeechEngine?.isReady ?? false) { - appleSpeechEngine?.requestAccess() + let apple = cachedSelection == selection + ? (cachedEngine as? AppleSpeechEngine) ?? AppleSpeechEngine(locale: Locale(identifier: selection.locale)) + : AppleSpeechEngine(locale: Locale(identifier: selection.locale)) + if requestPermission, !apple.isReady { + apple.requestAccess() try? await Task.sleep(nanoseconds: 500_000_000) } + engine = apple case .volc: - volcSpeechEngine = VolcSpeechEngine( - appKey: settings.volcAppKey, - accessKey: settings.volcAccessKey, - resourceId: settings.volcResourceId + engine = VolcSpeechEngine( + appKey: selection.appKey, accessKey: selection.accessKey, resourceId: selection.resourceID ) case .qwen3: - guard localASRIsAvailable(settings.qwenASRModel) else { - qwenSpeechEngine = nil - Log.info("[SpeechEngineProvider] Qwen ASR model requires manual download: \(settings.qwenASRModel)") - return - } - let modelPath = ModelCatalog.shared.asrModelPath(for: settings.qwenASRModel) - if qwenSpeechEngine?.usesModel(at: modelPath) == true { return } - qwenSpeechEngine = QwenNativeASREngine( - modelPath: modelPath, - modelID: settings.qwenASRModel + guard localASRIsAvailable(selection.model) else { return nil } + engine = QwenNativeASREngine( + modelPath: selection.modelPath, modelID: selection.model ) case .firered, .megaASR: - guard let modelID = settings.speechEngine.asrModelID else { return } - guard localASRIsAvailable(modelID) else { - mlxSTTEngine = nil - Log.info("[SpeechEngineProvider] ASR model requires manual download: \(modelID)") - return - } - if mlxSTTEngine?.modelID == modelID { return } - mlxSTTEngine = MLXSTTEngine(modelID: modelID) + guard localASRIsAvailable(selection.model) else { return nil } + engine = MLXSTTEngine(modelID: selection.model) } + cachedEngine = engine + cachedSelection = selection + return engine } - private func ensureWhisperLoaded(modelID: String) async { - if let engine = whisperEngine, engine.isReady || engine.isLoading { - return - } - + private func loadWhisper( + _ modelID: String, + progress: @escaping (WhisperEngine.DownloadProgress) -> Void + ) async -> WhisperEngine? { let catalog = ModelCatalog.shared catalog.refreshStatus(recheckingErrors: true) - let alreadyDownloaded = catalog.isWhisperDownloaded(modelID) - guard alreadyDownloaded else { - whisperEngine = nil - Log.info("[SpeechEngineProvider] Whisper model requires manual download: \(modelID)") - return + guard catalog.isWhisperDownloaded(modelID) else { + failureMessage = L("pipeline.speech_model_download_required") + return nil } - let engine = WhisperEngine(modelName: modelID) - whisperEngine = engine - catalog.updateWhisperStatus(modelID, status: .loading) + catalog.updateWhisperStatus(modelID, status: .loading, detail: L("model.loading")) do { - try await engine.loadModel { progress in - switch progress.stage { - case .downloading: - if alreadyDownloaded { - catalog.updateWhisperStatus(modelID, status: .loading, detail: L("model.loading")) - } else { - catalog.updateWhisperStatus( - modelID, - status: .downloading, - detail: progress.detailText - ) - } + try await engine.loadModel { update in + progress(update) + switch update.stage { case .compiling: catalog.updateWhisperStatus(modelID, status: .compiling, detail: L("model.loading")) - case .loading: + case .loading, .downloading: catalog.updateWhisperStatus(modelID, status: .loading, detail: L("model.loading")) - case .done: - break + case .done: break } } catalog.updateWhisperStatus(modelID, status: .ready) + return engine } catch { catalog.updateWhisperStatus(modelID, status: .error(error.localizedDescription)) + failureMessage = L("pipeline.model_load_failed") Log.error("[SpeechEngineProvider] Whisper load failed: \(error.localizedDescription)") + return nil } } private func localASRIsAvailable(_ modelID: String) -> Bool { ModelCatalog.shared.refreshASRStatus(recheckingErrors: true) - guard let status = ModelCatalog.shared.asrModels.first(where: { $0.id == modelID })?.status else { + let status = ModelCatalog.shared.asrModels.first(where: { $0.id == modelID })?.status + guard status == .downloaded || status == .ready else { + failureMessage = L("pipeline.speech_model_download_required") return false } - return status == .downloaded || status == .ready + return true } } diff --git a/Tests/OpenTypeTests/IndustryLexiconTests.swift b/Tests/OpenTypeTests/IndustryLexiconTests.swift index 00f2b493..49f16496 100644 --- a/Tests/OpenTypeTests/IndustryLexiconTests.swift +++ b/Tests/OpenTypeTests/IndustryLexiconTests.swift @@ -17,6 +17,69 @@ final class IndustryLexiconTests: XCTestCase { } } + func testImportedPacksHaveLicensedTermsWithoutAutomaticRewrites() throws { + let license = try XCTUnwrap(AppResources.bundle.url(forResource: "THUOCL-LICENSE", withExtension: "txt")) + XCTAssertTrue(try String(contentsOf: license).contains("Copyright (c) 2018 THUNLP")) + for pack in catalog.packs { + XCTAssertEqual(pack.terms.count, 2030) + let imported = pack.terms.filter { $0.category == "thuocl-common" } + XCTAssertEqual(imported.count, 2000) + XCTAssertTrue(imported.allSatisfy { $0.corrections.isEmpty && $0.aliases.isEmpty }) + let source = try XCTUnwrap(catalog.sources.first { $0.id == "thuocl-" + pack.id.rawValue }) + XCTAssertEqual(source.redistribution, "MIT") + XCTAssertTrue(source.url.contains("a30ce79d895d01ab5132a5c74c29703ff7efb4cc")) + let snapshot = IndustryLexiconSnapshot(pack: pack) + XCTAssertEqual(snapshot.protectedTerms.count, 30) + XCTAssertLessThanOrEqual(snapshot.recognitionPhrases.count, 100) + } + } + + func testLongTailTermsReachBoundedPromptThroughActualPromptBuilder() throws { + for pack in catalog.packs { + let tail = try XCTUnwrap(pack.terms.last) + let snapshot = IndustryLexiconSnapshot(pack: pack) + let description = snapshot.promptDescription(matching: "请记录:" + tail.term) + XCTAssertTrue(description.components(separatedBy: "\n").contains(tail.term)) + XCTAssertLessThanOrEqual(description.count, IndustryLexiconSnapshot.maximumPromptCharacters) + let prompt = TextProcessor().systemPromptWithPersonalContext( + "基础提示", inputLanguage: .chinese, + dictionarySnapshot: PersonalDictionarySnapshot(entries: [], editRules: [], industryLexicon: snapshot), + transcript: tail.term + ) + XCTAssertTrue(prompt.contains(tail.term)) + XCTAssertFalse(snapshot.protectedTerms.contains(tail.term)) + } + } + + func testLargeMatchingTranscriptCannotOverflowPromptBudget() { + for pack in catalog.packs { + let snapshot = IndustryLexiconSnapshot(pack: pack) + let text = pack.terms.map(\.term).joined(separator: ",") + let prompt = snapshot.promptDescription(matching: text) + let lines = prompt.components(separatedBy: "\n") + XCTAssertLessThanOrEqual(lines.count, IndustryLexiconSnapshot.maximumPromptTerms) + XCTAssertLessThanOrEqual(prompt.count, IndustryLexiconSnapshot.maximumPromptCharacters) + XCTAssertEqual(Set(lines).count, lines.count) + } + } + + func testPromptCharacterBudgetNeverCutsAnEntry() throws { + let original = try XCTUnwrap(catalog.pack(for: .technology)) + let pack = IndustryLexiconPack( + id: .technology, version: original.version, locale: original.locale, + reviewStatus: original.reviewStatus, sourceIDs: original.sourceIDs, + terms: (0..<100).map { index in + IndustryLexiconTerm(id: "test-\(index)", term: "term-\(index)", + aliases: [String(repeating: "长术语", count: 30)], corrections: [], category: "test") + } + ) + let prompt = IndustryLexiconSnapshot(pack: pack).promptDescription + XCTAssertFalse(prompt.isEmpty) + XCTAssertLessThanOrEqual(prompt.count, IndustryLexiconSnapshot.maximumPromptCharacters) + XCTAssertTrue(prompt.components(separatedBy: "\n").allSatisfy { $0.hasSuffix(")") }) + XCTAssertLessThan(prompt.components(separatedBy: "\n").count, IndustryLexiconSnapshot.maximumPromptTerms) + } + func testSelectedPackReachesRecognitionContextWithAliases() throws { let medical = try XCTUnwrap(catalog.pack(for: .medical)) let snapshot = PersonalDictionarySnapshot( diff --git a/Tests/OpenTypeTests/InputSessionOwnershipTests.swift b/Tests/OpenTypeTests/InputSessionOwnershipTests.swift new file mode 100644 index 00000000..767edc69 --- /dev/null +++ b/Tests/OpenTypeTests/InputSessionOwnershipTests.swift @@ -0,0 +1,246 @@ +import Foundation +import XCTest +@testable import OpenType + +@MainActor +final class InputSessionOwnershipTests: XCTestCase { + func testCancelledLeaseRemainsBusyUntilWorkDrains() throws { + let ownership = InputSessionOwnership() + let old = try ownership.acquire() + ownership.cancel(old) + XCTAssertThrowsError(try ownership.check(old)) + XCTAssertThrowsError(try ownership.acquire()) + ownership.release(old) + let next = try ownership.acquire() + ownership.release(old) + XCTAssertTrue(ownership.isBusy) + XCTAssertNoThrow(try ownership.check(next)) + } + + func testFilePreparationBlocksMenuBarAndCancellationCannotStartCapture() async throws { + let fixture = SessionFixture() + defer { fixture.cleanup() } + let barrier = SessionBarrier() + fixture.coordinator.engineLoader = { _ in + await barrier.wait() + return SessionEngine() + } + let session = try await fixture.create() + let operation = Task { + try await fixture.coordinator.processAudioFile( + sessionID: session.id, clientID: fixture.clientID, + audioURL: URL(fileURLWithPath: "/unused.wav"), cleanup: false + ) + } + await barrier.entered() + XCTAssertTrue(fixture.ownership.isBusy) + XCTAssertTrue(fixture.coordinator.isBusy) + let pipeline = VoicePipeline(appState: AppState(), ownership: fixture.ownership) + let capture = CaptureSpySource() + capture.currentToken = 1 + pipeline.remoteCaptureSpy = capture + pipeline.engineOverride = SessionEngine() + await pipeline.start() + XCTAssertEqual(capture.startInvocations, 0) + try await fixture.coordinator.cancel(sessionID: session.id, clientID: fixture.clientID) + XCTAssertTrue(fixture.ownership.isBusy, "cancel must not reuse a still-running loader") + await barrier.open() + do { _ = try await operation.value; XCTFail("cancelled work completed") } catch { } + XCTAssertFalse(fixture.ownership.isBusy) + XCTAssertEqual(try fixture.service.session(session.id, clientID: fixture.clientID)?.state, .cancelled) + } + + func testCancelledTranscriptionCannotPublishOrReleaseNextSession() async throws { + let fixture = SessionFixture() + defer { fixture.cleanup() } + let barrier = SessionBarrier() + let engine = SessionEngine() + engine.transcription = { await barrier.wait(); return "late old transcript" } + fixture.coordinator.engineLoader = { _ in engine } + let old = try await fixture.create() + let operation = Task { + try await fixture.coordinator.processAudioFile( + sessionID: old.id, clientID: fixture.clientID, + audioURL: URL(fileURLWithPath: "/unused.wav"), cleanup: false + ) + } + await barrier.entered() + try await fixture.coordinator.cancel(sessionID: old.id, clientID: fixture.clientID) + let next = try await fixture.create() + do { + _ = try await fixture.coordinator.processAudioFile( + sessionID: next.id, clientID: fixture.clientID, + audioURL: URL(fileURLWithPath: "/unused.wav"), cleanup: false + ) + XCTFail("old work is still using the engine") + } catch { XCTAssertEqual(error as? IntegrationError, .busy) } + await barrier.open() + do { _ = try await operation.value; XCTFail("cancelled work completed") } catch { } + let events = try fixture.service.snapshotEvents(sessionID: old.id, clientID: fixture.clientID) + XCTAssertFalse(events.contains { $0.type == .textFinal || $0.type == .transcriptFinal }) + XCTAssertEqual(try fixture.service.session(next.id, clientID: fixture.clientID)?.state, .created) + XCTAssertFalse(fixture.ownership.isBusy) + } + + func testDisconnectOfAnotherClientDoesNotCancelOwner() async throws { + let fixture = SessionFixture() + defer { fixture.cleanup() } + let barrier = SessionBarrier() + fixture.coordinator.engineLoader = { _ in await barrier.wait(); return SessionEngine() } + let session = try await fixture.create() + let operation = Task { + try await fixture.coordinator.startRecording(sessionID: session.id, clientID: fixture.clientID) + } + await barrier.entered() + fixture.coordinator.releaseActiveSessionForShutdown(clientID: "unrelated-client") + XCTAssertTrue(fixture.coordinator.isBusy) + XCTAssertEqual(try fixture.service.session(session.id, clientID: fixture.clientID)?.state, .created) + try await fixture.coordinator.cancel(sessionID: session.id, clientID: fixture.clientID) + await barrier.open() + do { try await operation.value; XCTFail("cancelled start completed") } catch { } + XCTAssertFalse(fixture.ownership.isBusy) + } + func testMenuBarReleaseDuringPreparationPreventsLateStart() async { + let ownership = InputSessionOwnership() + let pipeline = VoicePipeline(appState: AppState(), ownership: ownership) + let barrier = SessionBarrier() + let capture = CaptureSpySource() + capture.currentToken = 1 + pipeline.engineOverride = SessionEngine() + pipeline.remoteCaptureSpy = capture + pipeline.engineLoadBarrier = { await barrier.wait() } + let start = Task { await pipeline.start() } + await barrier.entered() + await pipeline.stop() + XCTAssertTrue(ownership.isBusy) + await barrier.open() + await start.value + XCTAssertFalse(ownership.isBusy) + XCTAssertEqual(capture.startInvocations, 0) + } + + func testSettingsAndEngineSelectionAreFrozenAtAdmission() async throws { + let fixture = SessionFixture() + defer { fixture.cleanup() } + fixture.settings.enableStreamingRecognitionBeta = false + fixture.settings.inputLanguage = .english + fixture.settings.speechEngine = .apple + let session = try await fixture.create() + _ = try fixture.coordinator.reserve(sessionID: session.id, clientID: fixture.clientID) + let snapshot = try XCTUnwrap(fixture.coordinator.requestSettings) + fixture.settings.enableStreamingRecognitionBeta = true + fixture.settings.inputLanguage = .chinese + fixture.settings.speechEngine = .volc + fixture.settings.outputMode = .command + let effective = fixture.coordinator.effectiveSettings(for: InputSessionRequest()) + XCTAssertFalse(effective.streamingEnabled) + XCTAssertEqual(effective.mode, .direct) + XCTAssertEqual(snapshot.inputLanguage, .english) + XCTAssertEqual(snapshot.speech.type, .apple) + try await fixture.coordinator.cancel(sessionID: session.id, clientID: fixture.clientID) + } + + func testTerminalCommitWritesHistoryExactlyOnce() async throws { + let fixture = SessionFixture() + defer { fixture.cleanup() } + let session = try await fixture.create() + try await fixture.service.beginProcessing(sessionID: session.id, clientID: fixture.clientID) + var records = 0 + try fixture.service.commitSession(sessionID: session.id, clientID: fixture.clientID, finalText: "done") { + records += 1 + } + XCTAssertThrowsError(try fixture.service.commitSession( + sessionID: session.id, clientID: fixture.clientID, finalText: "duplicate", record: { records += 1 } + )) + XCTAssertEqual(records, 1) + let events = try fixture.service.snapshotEvents(sessionID: session.id, clientID: fixture.clientID) + XCTAssertEqual(events.filter { $0.type == .textFinal }.count, 1) + } + + func testCancelledSessionCannotCommitPreparedHistory() async throws { + let fixture = SessionFixture() + defer { fixture.cleanup() } + let session = try await fixture.create() + _ = try fixture.coordinator.reserve(sessionID: session.id, clientID: fixture.clientID) + try await fixture.service.beginProcessing(sessionID: session.id, clientID: fixture.clientID) + var records = 0 + fixture.coordinator.pendingHistory = { records += 1 } + try await fixture.coordinator.cancel(sessionID: session.id, clientID: fixture.clientID) + XCTAssertThrowsError(try fixture.coordinator.commitOutput("late", sessionID: session.id, clientID: fixture.clientID)) + XCTAssertEqual(records, 0) + } + + func testUnauthorizedCancelCannotReleaseResources() async throws { + let fixture = SessionFixture() + defer { fixture.cleanup() } + let session = try await fixture.create() + _ = try fixture.coordinator.reserve(sessionID: session.id, clientID: fixture.clientID) + do { + try await fixture.coordinator.cancel(sessionID: session.id, clientID: "unregistered") + XCTFail("unauthorized cancellation succeeded") + } catch { } + XCTAssertTrue(fixture.ownership.isBusy) + try await fixture.coordinator.cancel(sessionID: session.id, clientID: fixture.clientID) + XCTAssertFalse(fixture.ownership.isBusy) + } + + func testMissingEngineReleasesReservationAndFailsSession() async throws { + let fixture = SessionFixture() + defer { fixture.cleanup() } + fixture.coordinator.engineLoader = { _ in nil } + let session = try await fixture.create() + do { + try await fixture.coordinator.startRecording(sessionID: session.id, clientID: fixture.clientID) + XCTFail("missing engine started") + } catch { XCTAssertEqual(error as? IntegrationError, .modelNotReady) } + XCTAssertFalse(fixture.ownership.isBusy) + XCTAssertEqual(try fixture.service.session(session.id, clientID: fixture.clientID)?.state, .failed) + } + +} + +@MainActor +private final class SessionFixture { + let suite = "InputSessionOwnershipTests-\(UUID())" + let defaults: UserDefaults + let settings: AppSettings + let clientID = IntegrationClient.localHTTP(tokenID: "token").id + let service: OpenTypeService + let ownership = InputSessionOwnership() + let coordinator: InputSessionCoordinator + + init() { + defaults = UserDefaults(suiteName: suite)! + settings = AppSettings(defaults: defaults) + settings.outputMode = .direct + settings.useScreenContext = false + let registry = IntegrationClientRegistry(defaults: defaults) + registry.approve(.localHTTP(tokenID: "token")) + service = OpenTypeService( + settings: .init(developerInterfaceEnabled: true, httpToken: "token"), registry: registry + ) + coordinator = InputSessionCoordinator(service: service, settings: settings, ownership: ownership) + } + + func create() async throws -> InputSession { + try await service.createSession( + InputSessionRequest(mode: .direct, language: .english, useScreenContext: false), clientID: clientID + ) + } + + func cleanup() { defaults.removePersistentDomain(forName: suite) } +} + +@MainActor +private final class SessionBarrier { + var continuation: CheckedContinuation? + func wait() async { await withCheckedContinuation { continuation = $0 } } + func entered() async { while continuation == nil { await Task.yield() } } + func open() { continuation?.resume(); continuation = nil } +} + +private final class SessionEngine: SpeechEngine, @unchecked Sendable { + var isReady: Bool { true } + var transcription: () async -> String = { "test" } + func transcribe(audioURL: URL?, language: String?) async throws -> String { await transcription() } +} diff --git a/Tests/OpenTypeTests/OverlayLayoutTests.swift b/Tests/OpenTypeTests/OverlayLayoutTests.swift index 9ab9541d..748ec669 100644 --- a/Tests/OpenTypeTests/OverlayLayoutTests.swift +++ b/Tests/OpenTypeTests/OverlayLayoutTests.swift @@ -123,15 +123,27 @@ final class OverlayLayoutTests: XCTestCase { XCTAssertNil(index) } - func testCancellingRecordingResetsStateWithoutProcessing() { + func testCancellingRecordingResetsStateWithoutProcessing() async { let appState = AppState() - appState.phase = .recording - appState.rawTranscription = "Discard me" let pipeline = VoicePipeline(appState: appState) + let capture = CaptureSpySource() + capture.currentToken = 1 + pipeline.remoteCaptureSpy = capture + pipeline.engineOverride = OverlaySpeechEngine() + await pipeline.start() + XCTAssertEqual(appState.phase, .recording) + appState.rawTranscription = "Discard me" pipeline.cancel() + await pipeline.processingTask?.value XCTAssertEqual(appState.phase, .idle) XCTAssertEqual(appState.rawTranscription, "") + XCTAssertFalse(pipeline.ownership.isBusy) } } + +private final class OverlaySpeechEngine: SpeechEngine { + var isReady: Bool { true } + func transcribe(audioURL: URL?, language: String?) async throws -> String { "" } +} diff --git a/Tests/OpenTypeTests/TextInsertionCancellationTests.swift b/Tests/OpenTypeTests/TextInsertionCancellationTests.swift new file mode 100644 index 00000000..76a6a8a6 --- /dev/null +++ b/Tests/OpenTypeTests/TextInsertionCancellationTests.swift @@ -0,0 +1,42 @@ +import AppKit +import XCTest +@testable import OpenType + +@MainActor +final class TextInsertionCancellationTests: XCTestCase { + func testCancelDuringClipboardPreparationNeverPastesAndRestoresAllTypes() async { + let pasteboard = NSPasteboard.withUniqueName() + defer { pasteboard.releaseGlobally() } + let binaryType = NSPasteboard.PasteboardType("org.utter.test.binary") + let bytes = Data([0, 1, 255]) + pasteboard.setData(bytes, forType: binaryType) + pasteboard.setString("original", forType: .string) + var pastes = 0 + let task = Task { + await TextInserter().insertViaClipboard(text: "temporary", pasteboard: pasteboard) { + pastes += 1 + return true + } + } + // The production method suspends between placing text and posting a key. + while pasteboard.string(forType: .string) != "temporary" { await Task.yield() } + task.cancel() + let pasted = await task.value + XCTAssertFalse(pasted) + XCTAssertEqual(pastes, 0) + XCTAssertEqual(pasteboard.string(forType: .string), "original") + XCTAssertEqual(pasteboard.data(forType: binaryType), bytes) + } + + func testClipboardChangedByUserIsNotOverwrittenDuringRestore() async { + let pasteboard = NSPasteboard.withUniqueName() + defer { pasteboard.releaseGlobally() } + let pasted = await TextInserter().insertViaClipboard(text: "dictation", pasteboard: pasteboard) { + pasteboard.clearContents() + pasteboard.setString("new user copy", forType: .string) + return true + } + XCTAssertTrue(pasted) + XCTAssertEqual(pasteboard.string(forType: .string), "new user copy") + } +} diff --git a/Tests/OpenTypeTests/TextProcessorFallbackTests.swift b/Tests/OpenTypeTests/TextProcessorFallbackTests.swift index 9d9e9998..b8e5efe0 100644 --- a/Tests/OpenTypeTests/TextProcessorFallbackTests.swift +++ b/Tests/OpenTypeTests/TextProcessorFallbackTests.swift @@ -23,29 +23,10 @@ final class TextProcessorFallbackTests: XCTestCase { ) } - func testRejectedOutputFallbackAlwaysKeepsSourceTranscript() { + func testValidatedOutputAcceptsFaithfulCandidateAndRejectsEmptyOutput() { let processor = TextProcessor() - - XCTAssertEqual( - processor.rejectedOutputFallback( - "raw transcript", - allowsGuardFallback: true - ), - "raw transcript" - ) - XCTAssertEqual( - processor.rejectedOutputFallback( - "raw transcript", - allowsGuardFallback: false - ), - "raw transcript" - ) - XCTAssertFalse( - processor.rejectedOutputFallback( - "raw transcript", - allowsGuardFallback: false - ).isEmpty - ) + XCTAssertEqual(processor.validatedOutput("Ship today.", source: "Ship today", inputLanguage: .english), "Ship today.") + XCTAssertEqual(processor.validatedOutput("", source: "Ship today", inputLanguage: .english), "Ship today") } func testGuardRejectsExcessiveDeletionAndKeepsSourceTranscript() { @@ -63,9 +44,8 @@ final class TextProcessorFallbackTests: XCTestCase { "excessive_deletion" ) - let fallback = TextProcessor().rejectedOutputFallback( - source, - allowsGuardFallback: false + let fallback = TextProcessor().validatedOutput( + candidate, source: source, inputLanguage: .chinese ) XCTAssertEqual(fallback, source) XCTAssertTrue(fallback.contains("讨论发布方案")) @@ -87,9 +67,8 @@ final class TextProcessorFallbackTests: XCTestCase { "protected_token_change" ) - let fallback = TextProcessor().rejectedOutputFallback( - source, - allowsGuardFallback: false + let fallback = TextProcessor().validatedOutput( + candidate, source: source, inputLanguage: .chinese ) XCTAssertEqual(fallback, source) XCTAssertTrue(fallback.contains("第3章")) @@ -111,9 +90,8 @@ final class TextProcessorFallbackTests: XCTestCase { "excessive_expansion" ) - let fallback = TextProcessor().rejectedOutputFallback( - source, - allowsGuardFallback: false + let fallback = TextProcessor().validatedOutput( + candidate, source: source, inputLanguage: .chinese ) XCTAssertEqual(fallback, source) XCTAssertFalse(fallback.contains("项目目标")) diff --git a/Tests/OpenTypeTests/VoicePipelinePolicyTests.swift b/Tests/OpenTypeTests/VoicePipelinePolicyTests.swift index 83aff7a6..d32b243e 100644 --- a/Tests/OpenTypeTests/VoicePipelinePolicyTests.swift +++ b/Tests/OpenTypeTests/VoicePipelinePolicyTests.swift @@ -118,7 +118,7 @@ final class VoicePipelinePolicyTests: XCTestCase { settings.outputMode = .direct let directCommand = await pipeline.resolvedSpokenEditCommand( raw: "delete selection", - settings: settings, + settings: VoiceInputSettings(settings: settings), targetApp: nil ) XCTAssertNil(directCommand) @@ -126,7 +126,7 @@ final class VoicePipelinePolicyTests: XCTestCase { settings.outputMode = .processed let processedCommand = await pipeline.resolvedSpokenEditCommand( raw: "delete selection", - settings: settings, + settings: VoiceInputSettings(settings: settings), targetApp: nil ) XCTAssertNil(processedCommand) diff --git a/docs/sdlc/changes/2026-09-23-input-session-ownership/intent.md b/docs/sdlc/changes/2026-09-23-input-session-ownership/intent.md new file mode 100644 index 00000000..8d90bb55 --- /dev/null +++ b/docs/sdlc/changes/2026-09-23-input-session-ownership/intent.md @@ -0,0 +1,63 @@ +# Intent: Unified input-session ownership with all product capabilities preserved + +**Status:** approved +**Approved-by:** User (conversation confirmation) +**Approved-date:** 2026-09-24 +**Upstream:** User request, 2026-09-23: fix orchestration problems and explain specialized text rules. + +## Problem + +Utter is a local-first voice input app with optional cloud support. All existing product capabilities must remain available. + +Source review identified separate ownership in VoicePipeline, InputSessionCoordinator, and OpenTypeService. Integration recording reserves activeSession only after awaiting engine loading; file processing never reserves it. Cancelling an integration session releases resources without owning/cancelling the full processing task. A late output can write history before service completion rejects its terminal session; release(active) does not verify current identity. These are source-derived concurrency risks, not yet runtime reproductions. + +VoicePipeline and SpeechEngineProvider separately own ASR instances and loading policies. TextProcessor is already shared in production and must remain shared. Remote microphone input already routes through VoicePipeline; transport handshake state is not a redundant transcription pipeline. + +Specialized strings mix protocol compatibility, model instructions, vocabulary data, and heuristics that accept, reject, or modify user text. Their different purposes and evidence must be made explicit before changing them. + +## Outcome + +Every input entry point observes consistent session ownership, cancellation and resource cleanup. Obsolete tasks cannot affect a newer input. All engines, local/cloud modes, editing, translation, integration APIs, remote microphone, context and learning features remain supported. + +## Scope + +Session admission, preparation, recording, processing, cancellation, result/history publication, cleanup and ASR lifecycle reuse across menu bar, remote microphone, HTTP/XPC and audio-file entry points. Audit specialized text rules and identify demonstrated obsolete or duplicated rules; behavior changes require positive and counterexample coverage. + +## Constraints + +- Preserve public API shapes, permission checks, client ownership and terminal event semantics. +- Preserve all product capabilities and existing stored settings/data. +- No whole-app rewrite, new framework, automatic signing fallback or release. +- UI and API state must reflect execution ownership rather than independently decide whether resources are free. +- Do not delete supported protocol fields, linguistic rules or vocabulary merely because they contain literal text. +- Risk: medium for internal lifecycle/runtime changes; escalate before changes to public compatibility or permission/security boundaries. + +## Acceptance criteria + +1. Competing entries during a deliberately suspended model load cannot both acquire execution resources. +2. Audio-file preparation and processing participate in the same admission contract as recording. +3. Cancel during preparation prevents later capture; cancel during processing prevents subsequent history/result publication. +4. Cancel followed by a new request is safe: old callbacks, output and cleanup cannot stop, erase or complete the new session. Resources still used by non-cooperative work are not prematurely reused. +5. Repeated stop/cancel and shutdown follow deterministic terminal behavior; unauthorized clients cannot release another session. +6. Each session uses a consistent engine/settings snapshot; changing settings cannot redirect in-flight audio or results. +7. ASR loading has one production ownership path, while preserving model readiness, progress, permission and recovery behavior. +8. Streaming policy differences are explicitly justified or reconciled without silently removing supported behavior. +9. Existing translation, editing, deferred replacement, screen context, learning and all input entry points retain their behavior. At most one result/history commit per session; deferred replacement retains its explicit second-edit contract. +10. Specialized-text review identifies purpose, callers, evidence and preservation counterexamples. Literal dictated JSON, quoted instructions, deliberate repetitions, real closing phrases and meaningful numbers/negations remain protected. +11. Relevant regression tests, repository checks and release-style build pass; actual entry-point verification is recorded separately from unit tests. + +## Specialized text findings + +| Source | Purpose | Current effect | Review boundary | +|---|---|---|---| +| Sources/Processing/TranscriptionSanitizer.swift | ASR artifact filtering | Weak-audio-only handling of `do anything`, closing phrases such as `感谢观看`, and transcript repetition; explicit silence markers are filtered separately | Real dictated phrases and quoted markers need counterexamples; audio-file path lacks measured audio evidence | +| Sources/Processing/TranscriptFidelityGuard.swift and TranscriptContentFidelity.swift | Reject unsafe model transformations | Language-specific negation/self-correction patterns and overlap/length thresholds can force fallback to source | These rules inspect comparison text; they are not direct filler-word deletion from output | +| Sources/Processing/TranscriptSpokenNumberParsing.swift | Compare spoken/written numbers | Chinese/English number mappings support fidelity checks | Preserve numbers, leading zeros, units and self-correction distinctions | +| Sources/Processing/LLMActionValue.swift and LLMFinalTextOutput.swift | Decode model output variants | Field aliases, nested envelopes and scalar coercions infer actions/final text | Separate supported contracts from speculative variants; preserve literal JSON dictation | +| Sources/Prompts/PromptCatalog+ASRQuality.swift | Model instructions | Multilingual examples guide cleanup, spelling and fidelity | Examples such as Utter/hotkey/API are instructions, not explicit local replacement rules; assess domain bias before editing | +| Sources/Resources/IndustryLexicons.json | Product vocabulary data | Terms, aliases and corrections are user-selectable domain functionality | Keep this requested product feature | +| Sources/Processing/TextProcessor+Output.swift | Historical call-site compatibility | allowsGuardFallback is ignored; fallback always preserves source | Candidate for removal with all callers updated and behavior unchanged | + +## Open questions + +No product-scope questions: all capabilities remain. The user explicitly confirmed the requested one-change waiver of per-stage stops on 2026-09-24. Design, implementation and verification may proceed continuously; this does not approve deployment or constitute review of unseen artifacts. diff --git a/docs/sdlc/changes/2026-09-23-input-session-ownership/plan.md b/docs/sdlc/changes/2026-09-23-input-session-ownership/plan.md new file mode 100644 index 00000000..e5aa15cd --- /dev/null +++ b/docs/sdlc/changes/2026-09-23-input-session-ownership/plan.md @@ -0,0 +1,15 @@ +# Plan: Input execution ownership + +**Status:** draft +**Approved-by:** — +**Approved-date:** — +**Upstream:** spec.md + +User-authorized per-stage waiver: 2026-09-24. No independent human approval of this artifact is claimed. + +1. Establish baseline suite and add controlled suspension tests for preparation, late recognition and cancellation. +2. Introduce the shared reservation, cancellable integration operations, identity-checked cleanup and client-scoped disconnect. +3. Share the ASR provider and capture per-session settings/engine identity; preserve every product entry and output mode. +4. Commit history and API completion together; guard text injection and caller publication against cancellation. +5. Remove the ignored fallback switch and keep multilingual/product/protocol rules unchanged. +6. Run focused regression, full swift test, SDLC/basic checks, diff review and release-style xcodebuild. Record hardware/window verification separately and do not equate fake-engine tests with live dictation acceptance. diff --git a/docs/sdlc/changes/2026-09-23-input-session-ownership/spec.md b/docs/sdlc/changes/2026-09-23-input-session-ownership/spec.md new file mode 100644 index 00000000..b89ebe08 --- /dev/null +++ b/docs/sdlc/changes/2026-09-23-input-session-ownership/spec.md @@ -0,0 +1,42 @@ +# Design: Input execution ownership + +**Status:** draft +**Approved-by:** — +**Approved-date:** — +**Upstream:** intent.md + +## Authorization + +The user confirmed the explicit one-change waiver of per-stage stops on 2026-09-24. This artifact records the resulting design; it is not represented as independently human-reviewed. + +## Boundary and alternatives + +| Approach | Implementation and migration | Verification and operation | Long-term cost | +|---|---|---|---| +| More entry-specific busy flags | Small immediate changes, no migration | Every async gap needs another local check; cross-entry races persist | Multiple resource owners and loading branches remain | +| Shared execution reservation and ASR provider | Replace admission/cleanup ownership; retain feature-specific adapters and existing API contracts | Exercise suspended work, cancellation, snapshot identity and terminal commit | One resource-admission contract and one ASR loader | +| Whole-pipeline rewrite | Reimplement editing, deferred replacement, UI and transports | Much larger regression surface across all retained features | Not justified by the observed defects | + +Selected the module-level ownership replacement. VoicePipeline remains the UI/edit adapter; InputSessionCoordinator remains the service adapter. Neither independently decides global resource availability. OpenTypeService retains authenticated API records/events, not ownership of microphone/model execution. + +## Invariants + +- A MainActor InputSessionOwnership reservation is acquired synchronously before the first preparation await. Menu bar, remote microphone, HTTP/XPC and audio-file processing share the same instance through AppDelegate. +- A cancelled reservation remains occupied until its current asynchronous operation returns. An engine that ignores cancellation must not be reused prematurely. New attempts receive the existing busy behavior; no unbounded queue is added. +- Cleanup verifies reservation identity. Service reset reuses the same ownership/provider, so an old coordinator cannot race its replacement. +- Integration operations own cancellable child tasks and propagate caller cancellation. Client authorization precedes cancellation; XPC disconnect is scoped to its client. +- API history is staged and committed synchronously with the terminal result, after authorization/state validation. No suspension separates these effects. +- VoiceInputSettings captures engine/model, language, vocabulary, processing options and capture choices at admission. Each session retains its engine. Configuration changes take effect next time. +- SpeechEngineProvider is the single production ASR selection/loading path. Its value key includes model, Qwen path, Apple locale and Volc credentials. Cache invalidation does not unload an engine still retained by a session. +- Deferred formatting remains a separately identified background result; existing replacement identity checks and local-model access serialization remain. Applying a replacement acquires the execution reservation. +- Cancellation before text injection suppresses paste/delete fallback and history publication. A keyboard event already delivered to another application cannot be recalled; cancellation does not pretend to undo it. + +## Failure and rollback + +Engine-not-ready, permission failure, thrown recognition and cancelled callers release only their reservation after cleanup. Cancellation cannot grant another client access or bypass existing authorization. Output-format heuristics and product vocabulary remain unchanged. + +Rollback is the inverse of this change's source/test diff; no data migration, dependency update, public payload change, installation or release is required. Do not reset unrelated worktree changes. Restore the prior implementation only as a coherent module change, not one admission check at a time. + +## Specialized-text decision + +Remove the ignored allowsGuardFallback parameter and identity wrapper. Exercise the actual fidelity decision via validatedOutput, preserving source on rejection. Keep recognized response aliases, all product vocabulary and existing multilingual prompt/heuristic behavior. Their purpose and risk are catalogued in intent.md; unsupported assumptions about their necessity are not deletion authority. diff --git a/docs/sdlc/changes/2026-09-23-input-session-ownership/verification.md b/docs/sdlc/changes/2026-09-23-input-session-ownership/verification.md new file mode 100644 index 00000000..fbdb7c7b --- /dev/null +++ b/docs/sdlc/changes/2026-09-23-input-session-ownership/verification.md @@ -0,0 +1,45 @@ +# Verification: Input execution ownership + +**Status:** pending approval +**Approved-by:** — +**Approved-date:** — +**Upstream:** plan.md + +User-authorized per-stage waiver: 2026-09-24. Local automated verification is complete; no independent human acceptance or release approval is claimed. + +- Baseline before implementation: 756 XCTest cases, 16 skipped, zero failures; one Swift Testing case passed. +- New test scaffolding initially failed compilation because the ownership interface did not exist. This was not a runtime counterexample against the old implementation. +- Initial targeted pass: 26 tests, zero failures. +- Expanded targeted pass: 29 tests, zero failures. +- Intermediate full suite: 760 tests, 16 skipped, two assertions failed in a legacy test that fabricated recording UI state without starting a session. Updated the test to traverse the real pipeline start with a fake capture/engine, then cancel and await cleanup. +- Final full suite: `swift test` passed, 768 XCTest cases, 16 skipped, zero failures; one Swift Testing case passed. Log: `/tmp/utter-session-complete-tests.log`. +- Final focused ownership/cancellation/overlay pass: 26 cases, zero failures, including the isolated-clipboard tests. Log: `/tmp/utter-session-last-regression.log`. +- `xcodebuild -scheme OpenType -configuration Release -derivedDataPath .build/xcode -destination 'platform=macOS' ARCHS=arm64 ONLY_ACTIVE_ARCH=NO build -quiet`: exit 0. Log: `/tmp/utter-session-complete-release.log`. Verified Release/OpenType and mlx-swift_Cmlx.bundle/Contents/Resources/default.metallib exist. Existing dependency/compiler-mode warnings remain; no build failure. +- `bash scripts/sdlc-checks.sh` and `bash scripts/ci-basic-checks.sh`: passed. Logs: `/tmp/utter-session-sdlc.log`, `/tmp/utter-session-basic.log`. +- `git diff --check`: passed. No dependency lockfile change or conflict markers. No PR created, so remote mergeability/CI were not evaluated. +- Application Swift source: 211 -> 215 files; 31,566 -> 31,675 physical lines (+109). This change fixes ownership and removes duplicate loading logic; it does not claim a broad file-count reduction. + +## Contract evidence + +| Contract | Evidence | +|---|---| +| Reserved during preparation/file work | testFilePreparationBlocksMenuBarAndCancellationCannotStartCapture | +| Cancellation drains before reuse | testCancelledLeaseRemainsBusyUntilWorkDrains; testCancelledTranscriptionCannotPublishOrReleaseNextSession | +| Key release during local preparation | testMenuBarReleaseDuringPreparationPreventsLateStart; existing remote pipeline regression suite | +| Client-scoped cleanup and authorization | testDisconnectOfAnotherClientDoesNotCancelOwner; testUnauthorizedCancelCannotReleaseResources | +| Frozen choices | testSettingsAndEngineSelectionAreFrozenAtAdmission | +| Terminal result/history commit | testTerminalCommitWritesHistoryExactlyOnce; testCancelledSessionCannotCommitPreparedHistory | +| Failure releases reservation | testMissingEngineReleasesReservationAndFailsSession | +| Cancel before paste and preserve clipboard | TextInsertionCancellationTests (unique test pasteboards and injected paste callback; no keyboard events sent) | +| Source-preserving fidelity fallback | TextProcessorFallbackTests now exercise validatedOutput rather than the removed identity wrapper | + +## Review findings resolved + +A cancelled caller previously could reach paste after target activation or the clipboard delay. Added boundary checks, preserve all clipboard types, and avoid overwriting newer clipboard changes. Already-posted keys are allowed to finish their key-up/clipboard-read interval; cancellation is not an undo operation. + +Formatting preload participates in the shared reservation, and unload no longer discards the processing-task handle before drain. ASR preparation is retained and awaited through stop/cancel. Model selection and late audio-level/partial callbacks are bound to the recording rather than current mutable settings. + + +## Evidence boundaries + +Controlled fake-engine tests exercise real coordinator and pipeline entry functions without model downloads, microphone permissions or typing into another app. They do not prove real ASR accuracy, physical Xiaomi remote operation, third-party XPC clients, or production signing/notarization. No dependency, stored-data, prompt, lexicon or API payload migration is performed. diff --git a/docs/sdlc/changes/2026-09-24-industry-lexicon-expansion/intent.md b/docs/sdlc/changes/2026-09-24-industry-lexicon-expansion/intent.md new file mode 100644 index 00000000..33ca0261 --- /dev/null +++ b/docs/sdlc/changes/2026-09-24-industry-lexicon-expansion/intent.md @@ -0,0 +1,16 @@ +# Expand common industry vocabulary + +Status: draft +Risk: medium + +## Request and scope + +On 2026-09-24 the user requested downloading common industry dictionaries and explicitly selected the existing software technology, medical, legal and finance/accounting categories. Preserve local-first voice input, cloud support, existing curated aliases/corrections and personal-dictionary priority. This is an additional commit on PR #113. Stage statuses do not represent human review of these artifacts. + +## Acceptance criteria + +- Each existing pack retains its 30 curated entries and gains 2,000 deduplicated, frequency-ranked terms from an identified redistributable source. +- Pin and verify source content; distribute its license with the application. No runtime downloads or new dependencies. +- Imported terms introduce no automatic replacement mappings and no additional mandatory verbatim-output constraints. +- ASR context remains limited to 100 phrases with personal entries first. Industry LLM context is bounded to 80 entries and 2,000 characters; relevant terms can be selected from the entire pack. +- Existing correction and non-target-preservation tests pass; verify bundled resources and release-style packaging. diff --git a/docs/sdlc/changes/2026-09-24-industry-lexicon-expansion/plan.md b/docs/sdlc/changes/2026-09-24-industry-lexicon-expansion/plan.md new file mode 100644 index 00000000..61cd9dcb --- /dev/null +++ b/docs/sdlc/changes/2026-09-24-industry-lexicon-expansion/plan.md @@ -0,0 +1,9 @@ +# Implementation and validation + +Status: draft + +1. Verify upstream license, immutable revision and source checksums; import common vocabulary into the existing resource. +2. Preserve curated corrections and personal priority; bound recognition/prompt contexts and select transcript-relevant hints. +3. Add regression coverage for imported-data semantics, packaged license, long-tail hints and budget limits. +4. Run importer twice to check reproducibility, deterministic lexicon checks, SDLC/basic checks, full Swift tests and release-style build. +5. Push a separate commit to PR #113, update its final scope, and verify mergeability and remote checks. Physical ASR quality is not established by text-only tests. diff --git a/docs/sdlc/changes/2026-09-24-industry-lexicon-expansion/spec.md b/docs/sdlc/changes/2026-09-24-industry-lexicon-expansion/spec.md new file mode 100644 index 00000000..234fcbc0 --- /dev/null +++ b/docs/sdlc/changes/2026-09-24-industry-lexicon-expansion/spec.md @@ -0,0 +1,19 @@ +# Common vocabulary import and bounded context + +Status: draft + +## Source and rights + +Use [THUOCL](https://github.com/thunlp/THUOCL), MIT, Copyright (c) 2018 THUNLP, revision `a30ce79d895d01ab5132a5c74c29703ff7efb4cc`. Import IT, medical, law and caijing files. These are historical corpus-frequency lists, not up-to-date professional standards or clinically/legal-reviewed advice. Keep modern curated entries, including AI terminology. Each pack remains explicitly marked as needing domain review. + +`scripts/import-industry-lexicons.py` contains pinned SHA-256 checksums, supports verified offline originals, preserves curated entries, and deterministically ranks by descending document frequency then lexical order. Exclude malformed frequency rows, blank/control/whitespace-containing terms, numeric-only terms and terms outside 2–40 characters. Exclude duplicates of curated terms, aliases and correction inputs. Select 2,000 additional terms per pack; imported entries have no invented aliases or correction mappings. The importer is idempotent. Bundle the original MIT notice as `THUOCL-LICENSE.txt`. + +## Runtime contract + +The catalog is the only data source for browsing, recognition context and prompt selection. Curated terms retain order and precedence. ASR receives at most 100 industry phrases before the existing personal-first combined cap. LLM hints prioritize exact case-insensitive matches from the full active pack, longest first, then fill from the leading common/curated entries, with hard limits of 80 entries and 2,000 characters. Normal formatting and command processing, including image-model fallback, provide the current transcript for this selection. Other callers receive the bounded default hints. + +Imported broad words such as “发展” are hints only: they must not become mandatory literal-output constraints that reject ordinary model formatting. Existing curated protected terms and replacement mappings retain their behavior. No fuzzy phonetic matching, new inference layer, or second vocabulary store is introduced. + +## Failure and rollback + +Checksum mismatch fails the import before writing resources. Existing catalog validation rejects malformed sources/packs. Tests exercise catalog loading, license packaging, personal priority, long-tail selection and prompt budgets. Roll back this isolated vocabulary commit to restore seed-only data and prompt construction; no user data migration is involved. diff --git a/docs/sdlc/changes/2026-09-24-industry-lexicon-expansion/verification.md b/docs/sdlc/changes/2026-09-24-industry-lexicon-expansion/verification.md new file mode 100644 index 00000000..87437081 --- /dev/null +++ b/docs/sdlc/changes/2026-09-24-industry-lexicon-expansion/verification.md @@ -0,0 +1,19 @@ +# Vocabulary expansion verification + +Status: pending approval + +## Local evidence — 2026-09-24 + +- Each pack contains 30 original curated entries plus 2,000 imported entries: 8,120 total. Resource size 1,116,835 bytes. +- Pinned source downloads and MIT license matched the checksums recorded in the importer. Repeated import was byte-identical: generated JSON SHA-256 `3e8ea045b8d6aff82e1ab2b305c6be40db10189253ac4f673b192e60200d1eb6`. +- Importer filtering/deduplication and checksum-rejection checks passed, including missing frequency, numeric-only and embedded-whitespace terms. +- `bash scripts/test-industry-lexicons.sh`: passed existing synthetic text correction and non-target preservation cases. These are not audio-recognition measurements. +- `bash scripts/sdlc-checks.sh`: exit 0. +- `bash scripts/ci-basic-checks.sh`: exit 0. +- `swift test`: 772 XCTest cases, 16 skipped, zero failures; one additional Swift Testing case passed. New coverage checks licensed imported-data semantics, long-tail selection through prompt construction, entry/character budgets and preservation of complete entries. Existing personal-first and curated-correction tests pass. +- Release-style `xcodebuild -scheme OpenType -configuration Release -derivedDataPath .build/xcode -destination 'platform=macOS' ARCHS=arm64 ONLY_ACTIVE_ARCH=NO build -quiet`: exit 0. Packaged JSON and MIT license match source bytes; Metal library exists. +- `git diff --check`: passed. After fetching origin, the branch contains the current main without divergence. + +## Boundaries + +No new UI layout was introduced. Physical audio recognition accuracy, domain-expert review, real-window browsing performance, signed installation and production acceptance were not tested. Historical THUOCL data may include broad or outdated terms; imported entries remain optional hints without new automatic replacement mappings. Local validation does not establish remote CI success or human approval. PR #113 carries this expansion separately from the session-lifecycle commit. diff --git a/scripts/import-industry-lexicons.py b/scripts/import-industry-lexicons.py new file mode 100644 index 00000000..6a5d7aee --- /dev/null +++ b/scripts/import-industry-lexicons.py @@ -0,0 +1,89 @@ +#!/usr/bin/env python3 +"""Rebuild the four common-term packs from pinned, MIT-licensed THUOCL data.""" +import argparse +import hashlib +import json +import re +from pathlib import Path +import urllib.request + +ROOT = Path(__file__).resolve().parents[1] +REVISION = "a30ce79d895d01ab5132a5c74c29703ff7efb4cc" +BASE = f"https://raw.githubusercontent.com/thunlp/THUOCL/{REVISION}/" +FILES = { + "technology": ("THUOCL_IT.txt", "e8cd42c9f5559735fa3bfb91515cbe051f991efd4a803038a1d5c0da85af3526"), + "medical": ("THUOCL_medical.txt", "a01f39f1677af0b6a620bbc68bf293e8e436f06248b74adb625cd61d9ad7bbcd"), + "legal": ("THUOCL_law.txt", "8ef1a5f41052ac95dedde88b167c5031a43b3e0211bf128b6125736cc76ef7b2"), + "finance": ("THUOCL_caijing.txt", "68e63d2009e59c6f388eeaa789d19b6a681657de3e8e56cc3479b21cd8548542"), +} +LICENSE_SHA = "db4b8cca414db4cf487b933d07a0514f77caf44f9f3d392f2bc9d7ba0d511c58" +LIMIT = 2000 +CATEGORY = "thuocl-common" + + +def read_verified(path, digest, cache): + data = (cache / Path(path).name).read_bytes() if cache else urllib.request.urlopen(BASE + path, timeout=60).read() + if hashlib.sha256(data).hexdigest() != digest: + raise ValueError(f"Source checksum mismatch: {path}") + return data + + +def common_terms(data, reserved): + ranked = [] + for line in data.decode("utf-8-sig").splitlines(): + term, frequency = line.rsplit("\t", 1) + if not frequency.strip().isdecimal(): + continue + term = term.strip() + if 2 <= len(term) <= 40 and not any(c.isspace() or not c.isprintable() for c in term) and not term.isdecimal(): + ranked.append((int(frequency.strip()), term)) + result = [] + seen = set(reserved) + for _, term in sorted(ranked, key=lambda item: (-item[0], item[1])): + if term.casefold() in seen: + continue + seen.add(term.casefold()) + result.append(term) + if len(result) == LIMIT: + break + if len(result) != LIMIT: + raise ValueError("Not enough eligible source terms") + return result + + +def main(): + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--source-dir", type=Path, help="Use already downloaded originals; checksums still required") + args = parser.parse_args() + resource = ROOT / "Sources/Resources" + target = resource / "IndustryLexicons.json" + document = json.loads(target.read_text()) + license_data = read_verified("LICENSE", LICENSE_SHA, args.source_dir) + sources = [s for s in document["sources"] if not s["id"].startswith("thuocl-")] + for pack in document["packs"]: + industry = pack["id"] + filename, checksum = FILES[industry] + seed = [t for t in pack["terms"] if t["category"] != CATEGORY] + reserved = {value.casefold() for t in seed for value in [t["term"], *t["aliases"], *t["corrections"]]} + terms = common_terms(read_verified("data/" + filename, checksum, args.source_dir), reserved) + source_id = "thuocl-" + industry + sources.append({"id": source_id, "title": "THUOCL " + industry + " (MIT, 2016/2017 corpus)", + "url": BASE + "data/" + filename, "usage": "redistributed-terms", "redistribution": "MIT"}) + pack["sourceIDs"] = [s for s in pack["sourceIDs"] if not s.startswith("thuocl-")] + [source_id] + pack["version"] = "2026.09.24-v2" + pack["reviewStatus"] = "curated-and-imported-needs-domain-review" + pack["terms"] = seed + [{"id": source_id + "-" + hashlib.sha256(t.encode()).hexdigest()[:16], + "term": t, "aliases": [], "corrections": [], "category": CATEGORY} for t in terms] + print(f"{industry}: {len(seed)} curated + {len(terms)} imported = {len(pack['terms'])}") + document.update(version="2026.09.24-v2", updatedAt="2026-09-24", sources=sources, + rights="Utter-curated seed terms plus THUOCL common terms, Copyright (c) 2018 THUNLP, MIT License. See THUOCL-LICENSE.txt. Imported terms have no automatic correction mappings.") + # One record per line keeps the generated data compact and reviewable. + output = json.dumps(document, ensure_ascii=False, indent=2) + output = re.sub(r'\{\n\s+"id": "[^"\n]+",\n\s+"term":.*?\n\s+\}', + lambda m: json.dumps(json.loads(m.group()), ensure_ascii=False), output, flags=re.S) + target.write_text(output + "\n") + (resource / "THUOCL-LICENSE.txt").write_bytes(license_data) + + +if __name__ == "__main__": + main()