gitextract_03xmjv7w/ ├── .gitignore ├── LICENSE ├── README.md ├── dragonball_dataset/ │ ├── dragonball_docs.jsonl │ └── dragonball_queries.jsonl └── rageval/ ├── __init__.py ├── article_generation/ │ ├── README.md │ ├── __init__.py │ ├── code/ │ │ ├── finance/ │ │ │ ├── en/ │ │ │ │ ├── s1_filter_schema.py │ │ │ │ ├── s2-1_generate_config.py │ │ │ │ ├── s2-2_generate_config_subevent.py │ │ │ │ ├── s3-1_generate_outline.py │ │ │ │ ├── s3-2_generate_company_info.py │ │ │ │ ├── s4_generate_article_s1a2.py │ │ │ │ └── s5_concat_article.py │ │ │ └── zh/ │ │ │ ├── s1_filter_schema.py │ │ │ ├── s2-1_generate_config.py │ │ │ ├── s2-2_generate_config_subevent.py │ │ │ ├── s3-1_generate_outline.py │ │ │ ├── s3-2_generate_company_info.py │ │ │ ├── s4_generate_article_s1a2.py │ │ │ └── s5_concat_article.py │ │ ├── law/ │ │ │ ├── en/ │ │ │ │ ├── s1_config.py │ │ │ │ └── s2_article.py │ │ │ └── zh/ │ │ │ ├── s1_config.py │ │ │ └── s2_article.py │ │ ├── medical/ │ │ │ ├── en/ │ │ │ │ ├── s1_config.py │ │ │ │ └── s2_article.py │ │ │ └── zh/ │ │ │ ├── s1_config.py │ │ │ └── s2_article.py │ │ ├── schema/ │ │ │ └── construct.py │ │ └── utils/ │ │ ├── __init__.py │ │ └── utils.py │ ├── output/ │ │ ├── finance/ │ │ │ ├── en/ │ │ │ │ └── schema/ │ │ │ │ ├── corporate_governance.json │ │ │ │ ├── financial_report.json │ │ │ │ └── share_changes_and_shareholder_report.json │ │ │ └── zh/ │ │ │ └── schema/ │ │ │ ├── 优先股相关情况.json │ │ │ ├── 债券相关情况.json │ │ │ ├── 公司治理.json │ │ │ ├── 环境与社会责任.json │ │ │ ├── 股份变动及股东情况.json │ │ │ └── 财务报告.json │ │ ├── law/ │ │ │ ├── en/ │ │ │ │ └── schema/ │ │ │ │ ├── charge.json │ │ │ │ └── crime.json │ │ │ └── zh/ │ │ │ └── schema/ │ │ │ ├── 刑事.json │ │ │ └── 罪名.json │ │ └── medical/ │ │ ├── en/ │ │ │ └── schema/ │ │ │ ├── disease_name.json │ │ │ ├── disease_name_definition.json │ │ │ ├── disease_type_name_detail.json │ │ │ ├── zhuyuan_bushoushu.json │ │ │ └── zhuyuan_shoushu.json │ │ └── zh/ │ │ └── schema/ │ │ ├── disease_name.json │ │ ├── disease_name_definition.json │ │ ├── disease_type_name_detail.json │ │ ├── zhuyuan_bushoushu.json │ │ └── zhuyuan_shoushu.json │ ├── requirements.txt │ └── scripts/ │ ├── finance/ │ │ ├── en/ │ │ │ ├── config.sh │ │ │ ├── run_all.sh │ │ │ ├── run_s2-1_continue.sh │ │ │ ├── run_s2-1_new.sh │ │ │ ├── run_s2-2.sh │ │ │ ├── run_s3-1.sh │ │ │ ├── run_s3-2.sh │ │ │ ├── run_s4.sh │ │ │ └── run_s5.sh │ │ └── zh/ │ │ ├── config.sh │ │ ├── run_all.sh │ │ ├── run_s2-1_continue.sh │ │ ├── run_s2-1_new.sh │ │ ├── run_s2-2.sh │ │ ├── run_s3-1.sh │ │ ├── run_s3-2.sh │ │ ├── run_s4.sh │ │ └── run_s5.sh │ ├── law/ │ │ ├── en/ │ │ │ ├── config.sh │ │ │ ├── run_all.sh │ │ │ ├── run_s1.sh │ │ │ └── run_s2.sh │ │ └── zh/ │ │ ├── config.sh │ │ ├── run_all.sh │ │ ├── run_s1.sh │ │ └── run_s2.sh │ ├── medical/ │ │ ├── en/ │ │ │ ├── config.sh │ │ │ ├── run_all.sh │ │ │ ├── run_s1.sh │ │ │ └── run_s2.sh │ │ └── zh/ │ │ ├── config.sh │ │ ├── run_all.sh │ │ ├── run_s1.sh │ │ └── run_s2.sh │ └── run.sh ├── evaluation/ │ ├── README.md │ ├── __init__.py │ ├── data/ │ │ └── example_finance_en_gpt-4o.jsonl │ ├── main.py │ ├── metrics/ │ │ ├── __init__.py │ │ └── rag_metrics/ │ │ ├── generation/ │ │ │ ├── keypoint_metrics.py │ │ │ └── rouge_l.py │ │ └── retrieval/ │ │ ├── eir.py │ │ ├── precision.py │ │ ├── recall.py │ │ ├── snr.py │ │ └── utils.py │ ├── process_intermediate.py │ ├── requirements.txt │ ├── result/ │ │ ├── final_result.json │ │ └── intermediate_result/ │ │ ├── example_finance_en_gpt-4o_eir_intermediate.jsonl │ │ ├── example_finance_en_gpt-4o_precision_intermediate.jsonl │ │ ├── example_finance_en_gpt-4o_recall_intermediate.jsonl │ │ └── example_finance_en_gpt-4o_rouge-l_intermediate.jsonl │ └── run_evaluation.sh └── qar_generation/ ├── README.md ├── __init__.py ├── code/ │ ├── client.py │ ├── data_processing/ │ │ ├── doc_corporation.py │ │ ├── postprocess.py │ │ └── qra_corporation.py │ ├── finance/ │ │ ├── en/ │ │ │ ├── qra_pipeline_multi_doc.py │ │ │ └── qra_pipeline_single_doc.py │ │ └── zh/ │ │ ├── qra_pipeline_multi_doc.py │ │ └── qra_pipeline_single_doc.py │ ├── keypoint_generation/ │ │ └── keypoint_generation.py │ ├── law/ │ │ ├── en/ │ │ │ ├── qra_pipeline_irrelevant.py │ │ │ ├── qra_pipeline_multi_doc.py │ │ │ └── qra_pipeline_single_doc.py │ │ └── zh/ │ │ ├── qra_pipeline_irrelevant.py │ │ ├── qra_pipeline_multi_doc.py │ │ └── qra_pipeline_single_doc.py │ ├── medical/ │ │ ├── en/ │ │ │ ├── qra_pipeline_irrelevant.py │ │ │ ├── qra_pipeline_multi_doc.py │ │ │ └── qra_pipeline_single_doc.py │ │ └── zh/ │ │ ├── qra_pipeline_irrelevant.py │ │ ├── qra_pipeline_multi_doc.py │ │ └── qra_pipeline_single_doc.py │ ├── reference_refinement/ │ │ ├── reference_refinement_multi_doc.py │ │ └── reference_refinement_single_doc.py │ └── utils/ │ ├── __init__.py │ └── utils.py ├── data/ │ ├── finance/ │ │ ├── en/ │ │ │ ├── config/ │ │ │ │ ├── Agriculture/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Aviation/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Construction/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Consumer_Goods/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Culture/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Education/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Energy/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Entertainment/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Environmental_Protection/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Finance/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Government/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Healthcare/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Housekeeping/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── IT/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Manufacturing/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Media/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Research_and_Development/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Retail/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Social/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ └── Tourism/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ └── 1/ │ │ │ │ ├── corporate_governance.json │ │ │ │ └── financial_report.json │ │ │ └── doc/ │ │ │ ├── 0/ │ │ │ │ ├── 公司年报_Agriculture_0.txt │ │ │ │ ├── 公司年报_Aviation_0.txt │ │ │ │ ├── 公司年报_Construction_0.txt │ │ │ │ ├── 公司年报_Consumer_Goods_0.txt │ │ │ │ ├── 公司年报_Culture_0.txt │ │ │ │ ├── 公司年报_Education_0.txt │ │ │ │ ├── 公司年报_Energy_0.txt │ │ │ │ ├── 公司年报_Entertainment_0.txt │ │ │ │ ├── 公司年报_Environmental_Protection_0.txt │ │ │ │ ├── 公司年报_Finance_0.txt │ │ │ │ ├── 公司年报_Government_0.txt │ │ │ │ ├── 公司年报_Healthcare_0.txt │ │ │ │ ├── 公司年报_Housekeeping_0.txt │ │ │ │ ├── 公司年报_IT_0.txt │ │ │ │ ├── 公司年报_Manufacturing_0.txt │ │ │ │ ├── 公司年报_Media_0.txt │ │ │ │ ├── 公司年报_Research_and_Development_0.txt │ │ │ │ ├── 公司年报_Retail_0.txt │ │ │ │ ├── 公司年报_Social_0.txt │ │ │ │ └── 公司年报_Tourism_0.txt │ │ │ └── 1/ │ │ │ ├── 公司年报_Agriculture_1.txt │ │ │ ├── 公司年报_Aviation_1.txt │ │ │ ├── 公司年报_Construction_1.txt │ │ │ ├── 公司年报_Consumer_Goods_1.txt │ │ │ ├── 公司年报_Culture_1.txt │ │ │ ├── 公司年报_Education_1.txt │ │ │ ├── 公司年报_Energy_1.txt │ │ │ ├── 公司年报_Entertainment_1.txt │ │ │ ├── 公司年报_Environmental_Protection_1.txt │ │ │ ├── 公司年报_Finance_1.txt │ │ │ ├── 公司年报_Government_1.txt │ │ │ ├── 公司年报_Healthcare_1.txt │ │ │ ├── 公司年报_Housekeeping_1.txt │ │ │ ├── 公司年报_IT_1.txt │ │ │ ├── 公司年报_Manufacturing_1.txt │ │ │ ├── 公司年报_Media_1.txt │ │ │ ├── 公司年报_Research_and_Development_1.txt │ │ │ ├── 公司年报_Retail_1.txt │ │ │ ├── 公司年报_Social_1.txt │ │ │ └── 公司年报_Tourism_1.txt │ │ └── zh/ │ │ ├── config/ │ │ │ ├── IT/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 农业/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 制造/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 医疗/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 娱乐/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 媒体/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 家政/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 建筑/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 政府/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 教育/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 文化/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 旅游/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 消费品/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 环保/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 研发/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 社交/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 能源/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 航空/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 金融/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ └── 零售/ │ │ │ ├── 0/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ └── 1/ │ │ │ ├── 公司治理.json │ │ │ ├── 环境与社会责任.json │ │ │ └── 财务报告.json │ │ └── doc/ │ │ ├── 0/ │ │ │ ├── 公司年报_IT_0.txt │ │ │ ├── 公司年报_农业_0.txt │ │ │ ├── 公司年报_制造_0.txt │ │ │ ├── 公司年报_医疗_0.txt │ │ │ ├── 公司年报_娱乐_0.txt │ │ │ ├── 公司年报_媒体_0.txt │ │ │ ├── 公司年报_家政_0.txt │ │ │ ├── 公司年报_建筑_0.txt │ │ │ ├── 公司年报_政府_0.txt │ │ │ ├── 公司年报_教育_0.txt │ │ │ ├── 公司年报_文化_0.txt │ │ │ ├── 公司年报_旅游_0.txt │ │ │ ├── 公司年报_消费品_0.txt │ │ │ ├── 公司年报_环保_0.txt │ │ │ ├── 公司年报_研发_0.txt │ │ │ ├── 公司年报_社交_0.txt │ │ │ ├── 公司年报_能源_0.txt │ │ │ ├── 公司年报_航空_0.txt │ │ │ ├── 公司年报_金融_0.txt │ │ │ └── 公司年报_零售_0.txt │ │ └── 1/ │ │ ├── 公司年报_IT_1.txt │ │ ├── 公司年报_农业_1.txt │ │ ├── 公司年报_制造_1.txt │ │ ├── 公司年报_医疗_1.txt │ │ ├── 公司年报_娱乐_1.txt │ │ ├── 公司年报_媒体_1.txt │ │ ├── 公司年报_家政_1.txt │ │ ├── 公司年报_建筑_1.txt │ │ ├── 公司年报_政府_1.txt │ │ ├── 公司年报_教育_1.txt │ │ ├── 公司年报_文化_1.txt │ │ ├── 公司年报_旅游_1.txt │ │ ├── 公司年报_消费品_1.txt │ │ ├── 公司年报_环保_1.txt │ │ ├── 公司年报_研发_1.txt │ │ ├── 公司年报_社交_1.txt │ │ ├── 公司年报_能源_1.txt │ │ ├── 公司年报_航空_1.txt │ │ ├── 公司年报_金融_1.txt │ │ └── 公司年报_零售_1.txt │ ├── law/ │ │ ├── en/ │ │ │ ├── config/ │ │ │ │ ├── Crime of Bending the Law for Personal Gain/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Counterfeiting Currency/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Embezzlement/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Evading Tax Arrears Recovery/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Intentional Homicide/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Negligent Homicide/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Picking Quarrels and Provoking Trouble/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Selling Counterfeit Registered Trademark Goods/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Theft/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ └── Crime of Traffic Accident/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ └── doc/ │ │ │ ├── Crime of Bending the Law for Personal Gain/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── Crime of Counterfeiting Currency/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── Crime of Embezzlement/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── Crime of Evading Tax Arrears Recovery/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── Crime of Intentional Homicide/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── Crime of Negligent Homicide/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── Crime of Picking Quarrels and Provoking Trouble/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── Crime of Selling Counterfeit Registered Trademark Goods/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── Crime of Theft/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ └── Crime of Traffic Accident/ │ │ │ ├── 0/ │ │ │ │ └── 0.txt │ │ │ ├── 1/ │ │ │ │ └── 1.txt │ │ │ └── 2/ │ │ │ └── 2.txt │ │ └── zh/ │ │ ├── config/ │ │ │ ├── 交通肇事罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 伪造货币罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 寻衅滋事罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 徇私枉法罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 挪用公款罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 故意杀人罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 盗窃罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 过失致人死亡罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 逃避追缴欠税罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ └── 销售假冒注册商标的商品罪/ │ │ │ ├── 0/ │ │ │ │ └── 0.json │ │ │ ├── 1/ │ │ │ │ └── 1.json │ │ │ └── 2/ │ │ │ └── 2.json │ │ └── doc/ │ │ ├── 交通肇事罪/ │ │ │ ├── 0/ │ │ │ │ └── 0.txt │ │ │ ├── 1/ │ │ │ │ └── 1.txt │ │ │ └── 2/ │ │ │ └── 2.txt │ │ ├── 伪造货币罪/ │ │ │ ├── 0/ │ │ │ │ └── 0.txt │ │ │ ├── 1/ │ │ │ │ └── 1.txt │ │ │ └── 2/ │ │ │ └── 2.txt │ │ ├── 寻衅滋事罪/ │ │ │ ├── 0/ │ │ │ │ └── 0.txt │ │ │ ├── 1/ │ │ │ │ └── 1.txt │ │ │ └── 2/ │ │ │ └── 2.txt │ │ ├── 徇私枉法罪/ │ │ │ ├── 0/ │ │ │ │ └── 0.txt │ │ │ ├── 1/ │ │ │ │ └── 1.txt │ │ │ └── 2/ │ │ │ └── 2.txt │ │ ├── 挪用公款罪/ │ │ │ ├── 0/ │ │ │ │ └── 0.txt │ │ │ ├── 1/ │ │ │ │ └── 1.txt │ │ │ └── 2/ │ │ │ └── 2.txt │ │ ├── 故意杀人罪/ │ │ │ ├── 0/ │ │ │ │ └── 0.txt │ │ │ ├── 1/ │ │ │ │ └── 1.txt │ │ │ └── 2/ │ │ │ └── 2.txt │ │ ├── 盗窃罪/ │ │ │ ├── 0/ │ │ │ │ └── 0.txt │ │ │ ├── 1/ │ │ │ │ └── 1.txt │ │ │ └── 2/ │ │ │ └── 2.txt │ │ ├── 过失致人死亡罪/ │ │ │ ├── 0/ │ │ │ │ └── 0.txt │ │ │ ├── 1/ │ │ │ │ └── 1.txt │ │ │ └── 2/ │ │ │ └── 2.txt │ │ ├── 逃避追缴欠税罪/ │ │ │ ├── 0/ │ │ │ │ └── 0.txt │ │ │ ├── 1/ │ │ │ │ └── 1.txt │ │ │ └── 2/ │ │ │ └── 2.txt │ │ └── 销售假冒注册商标的商品罪/ │ │ ├── 0/ │ │ │ └── 0.txt │ │ ├── 1/ │ │ │ └── 1.txt │ │ └── 2/ │ │ └── 2.txt │ └── medical/ │ ├── en/ │ │ ├── config/ │ │ │ ├── Benign, In Situ, and Uncertain Neoplasms/ │ │ │ │ └── 0/ │ │ │ │ ├── Growth Hormone Adenoma (GH Adenoma).json │ │ │ │ └── Uterine Fibroids.json │ │ │ ├── Circulatory System Diseases/ │ │ │ │ └── 0/ │ │ │ │ ├── Acute Rheumatic Fever.json │ │ │ │ └── Varicose Veins of the Lower Leg.json │ │ │ ├── Conditions Originating in the Perinatal Period/ │ │ │ │ └── 0/ │ │ │ │ ├── Neonatal Pneumonia due to Amniotic Fluid Aspiration.json │ │ │ │ └── Neonatal Tetanus.json │ │ │ ├── Congenital Anomalies/ │ │ │ │ └── 0/ │ │ │ │ ├── Congenital Heart Disease.json │ │ │ │ └── Favism.json │ │ │ ├── Digestive System Diseases/ │ │ │ │ └── 0/ │ │ │ │ ├── Intestinal Obstruction.json │ │ │ │ └── Peptic Ulcer.json │ │ │ ├── Diseases of the Blood and Blood-Forming Organs/ │ │ │ │ └── 0/ │ │ │ │ ├── Iron Deficiency Anemia.json │ │ │ │ └── Thalassemia.json │ │ │ ├── Diseases of the Ear and Mastoid Process/ │ │ │ │ └── 0/ │ │ │ │ ├── Chronic Otitis Media.json │ │ │ │ └── Mastoiditis.json │ │ │ ├── Diseases of the Eye and Adnexa/ │ │ │ │ └── 0/ │ │ │ │ ├── Cataract.json │ │ │ │ └── Glaucoma.json │ │ │ ├── Diseases of the Genitourinary System/ │ │ │ │ └── 0/ │ │ │ │ ├── Acute Pyelonephritis.json │ │ │ │ └── Urinary Tract Stones.json │ │ │ ├── Diseases of the Musculoskeletal System and Connective Tissue/ │ │ │ │ └── 0/ │ │ │ │ ├── Acute Osteomyelitis.json │ │ │ │ └── Rheumatoid Arthritis.json │ │ │ ├── Diseases of the Nervous System/ │ │ │ │ └── 0/ │ │ │ │ ├── Epidemic Cerebrospinal Meningitis.json │ │ │ │ └── Parkinson's Disease.json │ │ │ ├── Diseases of the Skin and Subcutaneous Tissue/ │ │ │ │ └── 0/ │ │ │ │ ├── Dermatitis.json │ │ │ │ └── Furuncle.json │ │ │ ├── Endocrine, Nutritional, and Metabolic Diseases and Immune Disorders/ │ │ │ │ └── 0/ │ │ │ │ ├── Diabetes Mellitus.json │ │ │ │ └── Hyperthyroidism.json │ │ │ ├── Infectious Diseases/ │ │ │ │ └── 0/ │ │ │ │ ├── Bacterial Food Poisoning.json │ │ │ │ └── Hepatitis A.json │ │ │ ├── Malignant Tumors/ │ │ │ │ └── 0/ │ │ │ │ ├── Esophageal Malignancy.json │ │ │ │ └── Nasopharyngeal Malignancy.json │ │ │ ├── Mental Disorders/ │ │ │ │ └── 0/ │ │ │ │ ├── Depression.json │ │ │ │ └── Schizophrenia.json │ │ │ ├── Parasitic Diseases/ │ │ │ │ └── 0/ │ │ │ │ ├── Acute Schistosomiasis.json │ │ │ │ └── Malaria.json │ │ │ ├── Pregnancy, Childbirth, and the Puerperium Complications/ │ │ │ │ └── 0/ │ │ │ │ ├── Pregnancy Complicated by Hyperthyroidism.json │ │ │ │ └── Pregnancy-Induced Hypertension Syndrome.json │ │ │ └── Respiratory System Diseases/ │ │ │ └── 0/ │ │ │ ├── Asthma.json │ │ │ └── Pneumonia.json │ │ └── doc/ │ │ ├── Benign, In Situ, and Uncertain Neoplasms/ │ │ │ └── 0/ │ │ │ ├── Growth Hormone Adenoma (GH Adenoma).txt │ │ │ └── Uterine Fibroids.txt │ │ ├── Circulatory System Diseases/ │ │ │ └── 0/ │ │ │ ├── Acute Rheumatic Fever.txt │ │ │ └── Varicose Veins of the Lower Leg.txt │ │ ├── Conditions Originating in the Perinatal Period/ │ │ │ └── 0/ │ │ │ ├── Neonatal Pneumonia due to Amniotic Fluid Aspiration.txt │ │ │ └── Neonatal Tetanus.txt │ │ ├── Congenital Anomalies/ │ │ │ └── 0/ │ │ │ ├── Congenital Heart Disease.txt │ │ │ └── Favism.txt │ │ ├── Digestive System Diseases/ │ │ │ └── 0/ │ │ │ ├── Intestinal Obstruction.txt │ │ │ └── Peptic Ulcer.txt │ │ ├── Diseases of the Blood and Blood-Forming Organs/ │ │ │ └── 0/ │ │ │ ├── Iron Deficiency Anemia.txt │ │ │ └── Thalassemia.txt │ │ ├── Diseases of the Ear and Mastoid Process/ │ │ │ └── 0/ │ │ │ ├── Chronic Otitis Media.txt │ │ │ └── Mastoiditis.txt │ │ ├── Diseases of the Eye and Adnexa/ │ │ │ └── 0/ │ │ │ ├── Cataract.txt │ │ │ └── Glaucoma.txt │ │ ├── Diseases of the Genitourinary System/ │ │ │ └── 0/ │ │ │ ├── Acute Pyelonephritis.txt │ │ │ └── Urinary Tract Stones.txt │ │ ├── Diseases of the Musculoskeletal System and Connective Tissue/ │ │ │ └── 0/ │ │ │ ├── Acute Osteomyelitis.txt │ │ │ └── Rheumatoid Arthritis.txt │ │ ├── Diseases of the Nervous System/ │ │ │ └── 0/ │ │ │ ├── Epidemic Cerebrospinal Meningitis.txt │ │ │ └── Parkinson's Disease.txt │ │ ├── Diseases of the Skin and Subcutaneous Tissue/ │ │ │ └── 0/ │ │ │ ├── Dermatitis.txt │ │ │ └── Furuncle.txt │ │ ├── Endocrine, Nutritional, and Metabolic Diseases and Immune Disorders/ │ │ │ └── 0/ │ │ │ ├── Diabetes Mellitus.txt │ │ │ └── Hyperthyroidism.txt │ │ ├── Infectious Diseases/ │ │ │ └── 0/ │ │ │ ├── Bacterial Food Poisoning.txt │ │ │ └── Hepatitis A.txt │ │ ├── Malignant Tumors/ │ │ │ └── 0/ │ │ │ ├── Esophageal Malignancy.txt │ │ │ └── Nasopharyngeal Malignancy.txt │ │ ├── Mental Disorders/ │ │ │ └── 0/ │ │ │ ├── Depression.txt │ │ │ └── Schizophrenia.txt │ │ ├── Parasitic Diseases/ │ │ │ └── 0/ │ │ │ ├── Acute Schistosomiasis.txt │ │ │ └── Malaria.txt │ │ ├── Pregnancy, Childbirth, and the Puerperium Complications/ │ │ │ └── 0/ │ │ │ ├── Pregnancy Complicated by Hyperthyroidism.txt │ │ │ └── Pregnancy-Induced Hypertension Syndrome.txt │ │ └── Respiratory System Diseases/ │ │ └── 0/ │ │ ├── Asthma.txt │ │ └── Pneumonia.txt │ └── zh/ │ ├── config/ │ │ ├── 传染病/ │ │ │ └── 0/ │ │ │ ├── 甲型肝炎.json │ │ │ └── 细菌性食物中毒.json │ │ ├── 先天异常/ │ │ │ └── 0/ │ │ │ ├── 先天性心脏病.json │ │ │ └── 蚕豆症.json │ │ ├── 内分泌、营养和代谢疾病及免疫疾病/ │ │ │ └── 0/ │ │ │ ├── 甲状腺功能亢进.json │ │ │ └── 糖尿病.json │ │ ├── 呼吸系统疾病/ │ │ │ └── 0/ │ │ │ ├── 哮喘.json │ │ │ └── 肺炎.json │ │ ├── 妊娠、分娩病及产褥期并发症/ │ │ │ └── 0/ │ │ │ ├── 妊娠合并甲状腺功能亢进.json │ │ │ └── 妊娠高血压综合症.json │ │ ├── 寄生虫病/ │ │ │ └── 0/ │ │ │ ├── 急性血吸虫病.json │ │ │ └── 疟疾.json │ │ ├── 循环系统疾病/ │ │ │ └── 0/ │ │ │ ├── 小腿静脉曲张.json │ │ │ └── 急性风湿热.json │ │ ├── 恶性肿瘤/ │ │ │ └── 0/ │ │ │ ├── 食管恶性肿瘤.json │ │ │ └── 鼻咽恶性肿瘤.json │ │ ├── 泌尿生殖系统疾病/ │ │ │ └── 0/ │ │ │ ├── 急性肾盂炎.json │ │ │ └── 泌尿系统结石.json │ │ ├── 消化系统疾病/ │ │ │ └── 0/ │ │ │ ├── 消化性溃疡.json │ │ │ └── 肠梗阻.json │ │ ├── 皮肤和皮下组织疾病/ │ │ │ └── 0/ │ │ │ ├── 疖子.json │ │ │ └── 皮炎.json │ │ ├── 眼及附器疾病/ │ │ │ └── 0/ │ │ │ ├── 白内障.json │ │ │ └── 青光眼.json │ │ ├── 神经系病/ │ │ │ └── 0/ │ │ │ ├── 帕金森病.json │ │ │ └── 流行性脑髓脊膜炎.json │ │ ├── 精神病/ │ │ │ └── 0/ │ │ │ ├── 抑郁症.json │ │ │ └── 精神分裂症.json │ │ ├── 耳和乳突疾病/ │ │ │ └── 0/ │ │ │ ├── 乳突炎.json │ │ │ └── 慢性中耳炎.json │ │ ├── 肌肉、骨骼系统和结缔组织疾病/ │ │ │ └── 0/ │ │ │ ├── 急性骨髓炎.json │ │ │ └── 类风湿性关节炎.json │ │ ├── 良性、原位及动态未定肿瘤/ │ │ │ └── 0/ │ │ │ ├── 子宫肌瘤.json │ │ │ └── 生长激素腺瘤(GH腺瘤).json │ │ ├── 血液和造血器官疾病/ │ │ │ └── 0/ │ │ │ ├── 地中海贫血.json │ │ │ └── 缺铁性贫血.json │ │ └── 起源于围产期的情况/ │ │ └── 0/ │ │ ├── 新生儿破伤风.json │ │ └── 新生儿羊水吸入性肺炎.json │ └── doc/ │ ├── 传染病/ │ │ └── 0/ │ │ ├── 甲型肝炎.txt │ │ └── 细菌性食物中毒.txt │ ├── 先天异常/ │ │ └── 0/ │ │ ├── 先天性心脏病.txt │ │ └── 蚕豆症.txt │ ├── 内分泌、营养和代谢疾病及免疫疾病/ │ │ └── 0/ │ │ ├── 甲状腺功能亢进.txt │ │ └── 糖尿病.txt │ ├── 呼吸系统疾病/ │ │ └── 0/ │ │ ├── 哮喘.txt │ │ └── 肺炎.txt │ ├── 妊娠、分娩病及产褥期并发症/ │ │ └── 0/ │ │ ├── 妊娠合并甲状腺功能亢进.txt │ │ └── 妊娠高血压综合症.txt │ ├── 寄生虫病/ │ │ └── 0/ │ │ ├── 急性血吸虫病.txt │ │ └── 疟疾.txt │ ├── 循环系统疾病/ │ │ └── 0/ │ │ ├── 小腿静脉曲张.txt │ │ └── 急性风湿热.txt │ ├── 恶性肿瘤/ │ │ └── 0/ │ │ ├── 食管恶性肿瘤.txt │ │ └── 鼻咽恶性肿瘤.txt │ ├── 泌尿生殖系统疾病/ │ │ └── 0/ │ │ ├── 急性肾盂炎.txt │ │ └── 泌尿系统结石.txt │ ├── 消化系统疾病/ │ │ └── 0/ │ │ ├── 消化性溃疡.txt │ │ └── 肠梗阻.txt │ ├── 皮肤和皮下组织疾病/ │ │ └── 0/ │ │ ├── 疖子.txt │ │ └── 皮炎.txt │ ├── 眼及附器疾病/ │ │ └── 0/ │ │ ├── 白内障.txt │ │ └── 青光眼.txt │ ├── 神经系病/ │ │ └── 0/ │ │ ├── 帕金森病.txt │ │ └── 流行性脑髓脊膜炎.txt │ ├── 精神病/ │ │ └── 0/ │ │ ├── 抑郁症.txt │ │ └── 精神分裂症.txt │ ├── 耳和乳突疾病/ │ │ └── 0/ │ │ ├── 乳突炎.txt │ │ └── 慢性中耳炎.txt │ ├── 肌肉、骨骼系统和结缔组织疾病/ │ │ └── 0/ │ │ ├── 急性骨髓炎.txt │ │ └── 类风湿性关节炎.txt │ ├── 良性、原位及动态未定肿瘤/ │ │ └── 0/ │ │ ├── 子宫肌瘤.txt │ │ └── 生长激素腺瘤(GH腺瘤).txt │ ├── 血液和造血器官疾病/ │ │ └── 0/ │ │ ├── 地中海贫血.txt │ │ └── 缺铁性贫血.txt │ └── 起源于围产期的情况/ │ └── 0/ │ ├── 新生儿破伤风.txt │ └── 新生儿羊水吸入性肺炎.txt ├── output/ │ ├── finance/ │ │ ├── en/ │ │ │ ├── config/ │ │ │ │ ├── Agriculture/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Aviation/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Construction/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Consumer_Goods/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Culture/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Education/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Energy/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Entertainment/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Environmental_Protection/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Finance/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Government/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Healthcare/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Housekeeping/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── IT/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Manufacturing/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Media/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Research_and_Development/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Retail/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ ├── Social/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ │ └── financial_report.json │ │ │ │ │ └── 1/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ └── Tourism/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── corporate_governance.json │ │ │ │ │ └── financial_report.json │ │ │ │ └── 1/ │ │ │ │ ├── corporate_governance.json │ │ │ │ └── financial_report.json │ │ │ ├── doc/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司年报_Agriculture_0.txt │ │ │ │ │ ├── 公司年报_Aviation_0.txt │ │ │ │ │ ├── 公司年报_Construction_0.txt │ │ │ │ │ ├── 公司年报_Consumer_Goods_0.txt │ │ │ │ │ ├── 公司年报_Culture_0.txt │ │ │ │ │ ├── 公司年报_Education_0.txt │ │ │ │ │ ├── 公司年报_Energy_0.txt │ │ │ │ │ ├── 公司年报_Entertainment_0.txt │ │ │ │ │ ├── 公司年报_Environmental_Protection_0.txt │ │ │ │ │ ├── 公司年报_Finance_0.txt │ │ │ │ │ ├── 公司年报_Government_0.txt │ │ │ │ │ ├── 公司年报_Healthcare_0.txt │ │ │ │ │ ├── 公司年报_Housekeeping_0.txt │ │ │ │ │ ├── 公司年报_IT_0.txt │ │ │ │ │ ├── 公司年报_Manufacturing_0.txt │ │ │ │ │ ├── 公司年报_Media_0.txt │ │ │ │ │ ├── 公司年报_Research_and_Development_0.txt │ │ │ │ │ ├── 公司年报_Retail_0.txt │ │ │ │ │ ├── 公司年报_Social_0.txt │ │ │ │ │ └── 公司年报_Tourism_0.txt │ │ │ │ └── 1/ │ │ │ │ ├── 公司年报_Agriculture_1.txt │ │ │ │ ├── 公司年报_Aviation_1.txt │ │ │ │ ├── 公司年报_Construction_1.txt │ │ │ │ ├── 公司年报_Consumer_Goods_1.txt │ │ │ │ ├── 公司年报_Culture_1.txt │ │ │ │ ├── 公司年报_Education_1.txt │ │ │ │ ├── 公司年报_Energy_1.txt │ │ │ │ ├── 公司年报_Entertainment_1.txt │ │ │ │ ├── 公司年报_Environmental_Protection_1.txt │ │ │ │ ├── 公司年报_Finance_1.txt │ │ │ │ ├── 公司年报_Government_1.txt │ │ │ │ ├── 公司年报_Healthcare_1.txt │ │ │ │ ├── 公司年报_Housekeeping_1.txt │ │ │ │ ├── 公司年报_IT_1.txt │ │ │ │ ├── 公司年报_Manufacturing_1.txt │ │ │ │ ├── 公司年报_Media_1.txt │ │ │ │ ├── 公司年报_Research_and_Development_1.txt │ │ │ │ ├── 公司年报_Retail_1.txt │ │ │ │ ├── 公司年报_Social_1.txt │ │ │ │ └── 公司年报_Tourism_1.txt │ │ │ └── qra_multidoc/ │ │ │ ├── 0/ │ │ │ │ ├── Agriculture_Aviation_corporate_governance.json │ │ │ │ ├── Agriculture_Education_corporate_governance.json │ │ │ │ ├── Construction_Agriculture_financial_report.json │ │ │ │ ├── Consumer_Goods_Culture_corporate_governance.json │ │ │ │ ├── Consumer_Goods_Environmental_Protection_corporate_governance.json │ │ │ │ ├── Consumer_Goods_Media_corporate_governance.json │ │ │ │ ├── Culture_Consumer_Goods_financial_report.json │ │ │ │ ├── Culture_Education_financial_report.json │ │ │ │ ├── Entertainment_Government_corporate_governance.json │ │ │ │ ├── Environmental_Protection_Aviation_corporate_governance.json │ │ │ │ ├── Finance_Consumer_Goods_financial_report.json │ │ │ │ ├── Finance_Environmental_Protection_financial_report.json │ │ │ │ ├── Government_Culture_corporate_governance.json │ │ │ │ ├── Government_Education_financial_report.json │ │ │ │ ├── Government_Housekeeping_financial_report.json │ │ │ │ ├── Government_Research_and_Development_financial_report.json │ │ │ │ ├── Government_Social_corporate_governance.json │ │ │ │ ├── Housekeeping_Retail_financial_report.json │ │ │ │ ├── IT_Environmental_Protection_financial_report.json │ │ │ │ ├── IT_Housekeeping_financial_report.json │ │ │ │ ├── Manufacturing_Energy_financial_report.json │ │ │ │ ├── Media_Construction_corporate_governance.json │ │ │ │ ├── Media_Energy_financial_report.json │ │ │ │ ├── Research_and_Development_Entertainment_corporate_governance.json │ │ │ │ ├── Research_and_Development_Social_corporate_governance.json │ │ │ │ ├── Research_and_Development_Social_financial_report.json │ │ │ │ ├── Retail_Manufacturing_financial_report.json │ │ │ │ ├── Social_Consumer_Goods_financial_report.json │ │ │ │ ├── Social_Healthcare_corporate_governance.json │ │ │ │ └── Tourism_Research_and_Development_corporate_governance.json │ │ │ └── 1/ │ │ │ ├── Construction_Aviation_corporate_governance.json │ │ │ ├── Construction_Entertainment_financial_report.json │ │ │ ├── Culture_Aviation_financial_report.json │ │ │ ├── Culture_IT_corporate_governance.json │ │ │ ├── Culture_Social_financial_report.json │ │ │ ├── Culture_Tourism_financial_report.json │ │ │ ├── Energy_Consumer_Goods_financial_report.json │ │ │ ├── Environmental_Protection_Government_corporate_governance.json │ │ │ ├── Finance_Housekeeping_financial_report.json │ │ │ ├── Government_Manufacturing_corporate_governance.json │ │ │ ├── Manufacturing_Consumer_Goods_corporate_governance.json │ │ │ ├── Manufacturing_Energy_corporate_governance.json │ │ │ ├── Manufacturing_Government_corporate_governance.json │ │ │ ├── Media_Environmental_Protection_financial_report.json │ │ │ ├── Social_Environmental_Protection_financial_report.json │ │ │ ├── Social_Healthcare_financial_report.json │ │ │ └── Social_Housekeeping_financial_report.json │ │ └── zh/ │ │ ├── config/ │ │ │ ├── IT/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 农业/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 制造/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 医疗/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 娱乐/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 媒体/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 家政/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 建筑/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 政府/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 教育/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 文化/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 旅游/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 消费品/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 环保/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 研发/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 社交/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 能源/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 航空/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ ├── 金融/ │ │ │ │ ├── 0/ │ │ │ │ │ ├── 公司治理.json │ │ │ │ │ ├── 环境与社会责任.json │ │ │ │ │ └── 财务报告.json │ │ │ │ └── 1/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ └── 零售/ │ │ │ ├── 0/ │ │ │ │ ├── 公司治理.json │ │ │ │ ├── 环境与社会责任.json │ │ │ │ └── 财务报告.json │ │ │ └── 1/ │ │ │ ├── 公司治理.json │ │ │ ├── 环境与社会责任.json │ │ │ └── 财务报告.json │ │ ├── doc/ │ │ │ ├── 0/ │ │ │ │ ├── 公司年报_IT_0.txt │ │ │ │ ├── 公司年报_农业_0.txt │ │ │ │ ├── 公司年报_制造_0.txt │ │ │ │ ├── 公司年报_医疗_0.txt │ │ │ │ ├── 公司年报_娱乐_0.txt │ │ │ │ ├── 公司年报_媒体_0.txt │ │ │ │ ├── 公司年报_家政_0.txt │ │ │ │ ├── 公司年报_建筑_0.txt │ │ │ │ ├── 公司年报_政府_0.txt │ │ │ │ ├── 公司年报_教育_0.txt │ │ │ │ ├── 公司年报_文化_0.txt │ │ │ │ ├── 公司年报_旅游_0.txt │ │ │ │ ├── 公司年报_消费品_0.txt │ │ │ │ ├── 公司年报_环保_0.txt │ │ │ │ ├── 公司年报_研发_0.txt │ │ │ │ ├── 公司年报_社交_0.txt │ │ │ │ ├── 公司年报_能源_0.txt │ │ │ │ ├── 公司年报_航空_0.txt │ │ │ │ ├── 公司年报_金融_0.txt │ │ │ │ └── 公司年报_零售_0.txt │ │ │ └── 1/ │ │ │ ├── 公司年报_IT_1.txt │ │ │ ├── 公司年报_农业_1.txt │ │ │ ├── 公司年报_制造_1.txt │ │ │ ├── 公司年报_医疗_1.txt │ │ │ ├── 公司年报_娱乐_1.txt │ │ │ ├── 公司年报_媒体_1.txt │ │ │ ├── 公司年报_家政_1.txt │ │ │ ├── 公司年报_建筑_1.txt │ │ │ ├── 公司年报_政府_1.txt │ │ │ ├── 公司年报_教育_1.txt │ │ │ ├── 公司年报_文化_1.txt │ │ │ ├── 公司年报_旅游_1.txt │ │ │ ├── 公司年报_消费品_1.txt │ │ │ ├── 公司年报_环保_1.txt │ │ │ ├── 公司年报_研发_1.txt │ │ │ ├── 公司年报_社交_1.txt │ │ │ ├── 公司年报_能源_1.txt │ │ │ ├── 公司年报_航空_1.txt │ │ │ ├── 公司年报_金融_1.txt │ │ │ └── 公司年报_零售_1.txt │ │ └── qra_multidoc/ │ │ ├── 0/ │ │ │ ├── IT_零售_公司治理.json │ │ │ ├── 制造_农业_环境与社会责任.json │ │ │ ├── 制造_能源_财务报告.json │ │ │ ├── 娱乐_环保_公司治理.json │ │ │ ├── 娱乐_零售_财务报告.json │ │ │ ├── 媒体_社交_财务报告.json │ │ │ ├── 家政_医疗_环境与社会责任.json │ │ │ ├── 家政_文化_公司治理.json │ │ │ ├── 家政_环保_财务报告.json │ │ │ ├── 家政_金融_公司治理.json │ │ │ ├── 建筑_教育_财务报告.json │ │ │ ├── 建筑_消费品_公司治理.json │ │ │ ├── 教育_医疗_财务报告.json │ │ │ ├── 教育_媒体_财务报告.json │ │ │ ├── 旅游_航空_财务报告.json │ │ │ ├── 旅游_零售_财务报告.json │ │ │ ├── 环保_旅游_环境与社会责任.json │ │ │ ├── 研发_文化_财务报告.json │ │ │ ├── 航空_媒体_环境与社会责任.json │ │ │ ├── 零售_医疗_财务报告.json │ │ │ └── 零售_娱乐_财务报告.json │ │ └── 1/ │ │ ├── IT_零售_公司治理.json │ │ ├── 农业_家政_财务报告.json │ │ ├── 农业_航空_财务报告.json │ │ ├── 医疗_消费品_公司治理.json │ │ ├── 医疗_航空_公司治理.json │ │ ├── 媒体_消费品_环境与社会责任.json │ │ ├── 媒体_能源_财务报告.json │ │ ├── 家政_建筑_财务报告.json │ │ ├── 家政_旅游_财务报告.json │ │ ├── 建筑_政府_财务报告.json │ │ ├── 建筑_文化_公司治理.json │ │ ├── 建筑_研发_环境与社会责任.json │ │ ├── 建筑_航空_财务报告.json │ │ ├── 政府_航空_财务报告.json │ │ ├── 教育_家政_公司治理.json │ │ ├── 教育_家政_环境与社会责任.json │ │ ├── 文化_农业_环境与社会责任.json │ │ ├── 文化_金融_财务报告.json │ │ ├── 旅游_航空_环境与社会责任.json │ │ ├── 消费品_农业_财务报告.json │ │ ├── 消费品_建筑_财务报告.json │ │ ├── 环保_家政_环境与社会责任.json │ │ ├── 研发_政府_公司治理.json │ │ ├── 社交_娱乐_财务报告.json │ │ ├── 能源_农业_环境与社会责任.json │ │ ├── 能源_家政_环境与社会责任.json │ │ ├── 能源_政府_公司治理.json │ │ ├── 能源_旅游_环境与社会责任.json │ │ ├── 航空_政府_财务报告.json │ │ ├── 航空_研发_财务报告.json │ │ └── 零售_娱乐_财务报告.json │ ├── law/ │ │ ├── en/ │ │ │ ├── config/ │ │ │ │ ├── Crime of Bending the Law for Personal Gain/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Counterfeiting Currency/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Embezzlement/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Evading Tax Arrears Recovery/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Intentional Homicide/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Negligent Homicide/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Picking Quarrels and Provoking Trouble/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Selling Counterfeit Registered Trademark Goods/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ ├── Crime of Theft/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.json │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.json │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.json │ │ │ │ └── Crime of Traffic Accident/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── doc/ │ │ │ │ ├── Crime of Bending the Law for Personal Gain/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.txt │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.txt │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.txt │ │ │ │ ├── Crime of Counterfeiting Currency/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.txt │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.txt │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.txt │ │ │ │ ├── Crime of Embezzlement/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.txt │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.txt │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.txt │ │ │ │ ├── Crime of Evading Tax Arrears Recovery/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.txt │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.txt │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.txt │ │ │ │ ├── Crime of Intentional Homicide/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.txt │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.txt │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.txt │ │ │ │ ├── Crime of Negligent Homicide/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.txt │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.txt │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.txt │ │ │ │ ├── Crime of Picking Quarrels and Provoking Trouble/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.txt │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.txt │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.txt │ │ │ │ ├── Crime of Selling Counterfeit Registered Trademark Goods/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.txt │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.txt │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.txt │ │ │ │ ├── Crime of Theft/ │ │ │ │ │ ├── 0/ │ │ │ │ │ │ └── 0.txt │ │ │ │ │ ├── 1/ │ │ │ │ │ │ └── 1.txt │ │ │ │ │ └── 2/ │ │ │ │ │ └── 2.txt │ │ │ │ └── Crime of Traffic Accident/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── qra_irrelevant.json │ │ │ └── qra_multidoc/ │ │ │ ├── Crime of Bending the Law for Personal Gain-0_Crime of Negligent Homicide-2.json │ │ │ ├── Crime of Bending the Law for Personal Gain-1_Crime of Negligent Homicide-1.json │ │ │ ├── Crime of Bending the Law for Personal Gain-1_Crime of Selling Counterfeit Registered Trademark Goods-2.json │ │ │ ├── Crime of Bending the Law for Personal Gain-1_Crime of Traffic Accident-1.json │ │ │ ├── Crime of Bending the Law for Personal Gain-2_Crime of Intentional Homicide-2.json │ │ │ ├── Crime of Counterfeiting Currency-0_Crime of Bending the Law for Personal Gain-0.json │ │ │ ├── Crime of Counterfeiting Currency-1_Crime of Selling Counterfeit Registered Trademark Goods-2.json │ │ │ ├── Crime of Counterfeiting Currency-1_Crime of Theft-2.json │ │ │ ├── Crime of Counterfeiting Currency-1_Crime of Traffic Accident-0.json │ │ │ ├── Crime of Counterfeiting Currency-2_Crime of Selling Counterfeit Registered Trademark Goods-2.json │ │ │ ├── Crime of Counterfeiting Currency-2_Crime of Traffic Accident-2.json │ │ │ ├── Crime of Embezzlement-0_Crime of Picking Quarrels and Provoking Trouble-1.json │ │ │ ├── Crime of Embezzlement-0_Crime of Traffic Accident-1.json │ │ │ ├── Crime of Embezzlement-1_Crime of Intentional Homicide-2.json │ │ │ ├── Crime of Embezzlement-2_Crime of Evading Tax Arrears Recovery-0.json │ │ │ ├── Crime of Embezzlement-2_Crime of Negligent Homicide-1.json │ │ │ ├── Crime of Evading Tax Arrears Recovery-0_Crime of Intentional Homicide-2.json │ │ │ ├── Crime of Evading Tax Arrears Recovery-0_Crime of Negligent Homicide-2.json │ │ │ ├── Crime of Evading Tax Arrears Recovery-0_Crime of Selling Counterfeit Registered Trademark Goods-1.json │ │ │ ├── Crime of Evading Tax Arrears Recovery-0_Crime of Traffic Accident-0.json │ │ │ ├── Crime of Evading Tax Arrears Recovery-2_Crime of Intentional Homicide-2.json │ │ │ ├── Crime of Evading Tax Arrears Recovery-2_Crime of Selling Counterfeit Registered Trademark Goods-0.json │ │ │ ├── Crime of Evading Tax Arrears Recovery-2_Crime of Selling Counterfeit Registered Trademark Goods-2.json │ │ │ ├── Crime of Evading Tax Arrears Recovery-2_Crime of Traffic Accident-1.json │ │ │ ├── Crime of Intentional Homicide-1_Crime of Embezzlement-0.json │ │ │ ├── Crime of Intentional Homicide-2_Crime of Counterfeiting Currency-2.json │ │ │ ├── Crime of Intentional Homicide-2_Crime of Evading Tax Arrears Recovery-1.json │ │ │ ├── Crime of Intentional Homicide-2_Crime of Picking Quarrels and Provoking Trouble-0.json │ │ │ ├── Crime of Negligent Homicide-0_Crime of Picking Quarrels and Provoking Trouble-0.json │ │ │ ├── Crime of Negligent Homicide-0_Crime of Traffic Accident-1.json │ │ │ ├── Crime of Negligent Homicide-1_Crime of Picking Quarrels and Provoking Trouble-1.json │ │ │ ├── Crime of Negligent Homicide-1_Crime of Theft-2.json │ │ │ ├── Crime of Negligent Homicide-1_Crime of Traffic Accident-0.json │ │ │ ├── Crime of Negligent Homicide-1_Crime of Traffic Accident-1.json │ │ │ ├── Crime of Negligent Homicide-2_Crime of Bending the Law for Personal Gain-1.json │ │ │ ├── Crime of Negligent Homicide-2_Crime of Embezzlement-0.json │ │ │ ├── Crime of Negligent Homicide-2_Crime of Picking Quarrels and Provoking Trouble-1.json │ │ │ ├── Crime of Picking Quarrels and Provoking Trouble-0_Crime of Evading Tax Arrears Recovery-0.json │ │ │ ├── Crime of Picking Quarrels and Provoking Trouble-0_Crime of Selling Counterfeit Registered Trademark Goods-1.json │ │ │ ├── Crime of Picking Quarrels and Provoking Trouble-0_Crime of Theft-0.json │ │ │ ├── Crime of Picking Quarrels and Provoking Trouble-1_Crime of Negligent Homicide-0.json │ │ │ ├── Crime of Picking Quarrels and Provoking Trouble-1_Crime of Selling Counterfeit Registered Trademark Goods-2.json │ │ │ ├── Crime of Picking Quarrels and Provoking Trouble-2_Crime of Embezzlement-0.json │ │ │ ├── Crime of Picking Quarrels and Provoking Trouble-2_Crime of Intentional Homicide-2.json │ │ │ ├── Crime of Selling Counterfeit Registered Trademark Goods-0_Crime of Counterfeiting Currency-0.json │ │ │ ├── Crime of Selling Counterfeit Registered Trademark Goods-0_Crime of Evading Tax Arrears Recovery-0.json │ │ │ ├── Crime of Selling Counterfeit Registered Trademark Goods-0_Crime of Negligent Homicide-1.json │ │ │ ├── Crime of Selling Counterfeit Registered Trademark Goods-1_Crime of Traffic Accident-2.json │ │ │ ├── Crime of Selling Counterfeit Registered Trademark Goods-2_Crime of Bending the Law for Personal Gain-2.json │ │ │ ├── Crime of Theft-0_Crime of Embezzlement-1.json │ │ │ ├── Crime of Theft-0_Crime of Evading Tax Arrears Recovery-0.json │ │ │ ├── Crime of Theft-0_Crime of Negligent Homicide-1.json │ │ │ ├── Crime of Theft-0_Crime of Picking Quarrels and Provoking Trouble-1.json │ │ │ ├── Crime of Theft-0_Crime of Picking Quarrels and Provoking Trouble-2.json │ │ │ ├── Crime of Theft-2_Crime of Counterfeiting Currency-0.json │ │ │ ├── Crime of Theft-2_Crime of Traffic Accident-0.json │ │ │ ├── Crime of Traffic Accident-0_Crime of Counterfeiting Currency-0.json │ │ │ ├── Crime of Traffic Accident-0_Crime of Picking Quarrels and Provoking Trouble-2.json │ │ │ ├── Crime of Traffic Accident-0_Crime of Selling Counterfeit Registered Trademark Goods-1.json │ │ │ ├── Crime of Traffic Accident-1_Crime of Selling Counterfeit Registered Trademark Goods-2.json │ │ │ ├── Crime of Traffic Accident-2_Crime of Counterfeiting Currency-2.json │ │ │ ├── Crime of Traffic Accident-2_Crime of Evading Tax Arrears Recovery-2.json │ │ │ ├── Crime of Traffic Accident-2_Crime of Intentional Homicide-2.json │ │ │ └── Crime of Traffic Accident-2_Crime of Picking Quarrels and Provoking Trouble-1.json │ │ └── zh/ │ │ ├── config/ │ │ │ ├── 交通肇事罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 伪造货币罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 寻衅滋事罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 徇私枉法罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 挪用公款罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 故意杀人罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 盗窃罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 过失致人死亡罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ ├── 逃避追缴欠税罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.json │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.json │ │ │ │ └── 2/ │ │ │ │ └── 2.json │ │ │ └── 销售假冒注册商标的商品罪/ │ │ │ ├── 0/ │ │ │ │ └── 0.json │ │ │ ├── 1/ │ │ │ │ └── 1.json │ │ │ └── 2/ │ │ │ └── 2.json │ │ ├── doc/ │ │ │ ├── 交通肇事罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── 伪造货币罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── 寻衅滋事罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── 徇私枉法罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── 挪用公款罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── 故意杀人罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── 盗窃罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── 过失致人死亡罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ ├── 逃避追缴欠税罪/ │ │ │ │ ├── 0/ │ │ │ │ │ └── 0.txt │ │ │ │ ├── 1/ │ │ │ │ │ └── 1.txt │ │ │ │ └── 2/ │ │ │ │ └── 2.txt │ │ │ └── 销售假冒注册商标的商品罪/ │ │ │ ├── 0/ │ │ │ │ └── 0.txt │ │ │ ├── 1/ │ │ │ │ └── 1.txt │ │ │ └── 2/ │ │ │ └── 2.txt │ │ ├── qra_irrelevant.json │ │ └── qra_multidoc/ │ │ ├── 交通肇事罪-0_伪造货币罪-1.json │ │ ├── 交通肇事罪-0_徇私枉法罪-1.json │ │ ├── 交通肇事罪-0_挪用公款罪-1.json │ │ ├── 交通肇事罪-0_故意杀人罪-2.json │ │ ├── 交通肇事罪-0_逃避追缴欠税罪-2.json │ │ ├── 交通肇事罪-1_故意杀人罪-0.json │ │ ├── 交通肇事罪-1_销售假冒注册商标的商品罪-0.json │ │ ├── 交通肇事罪-2_逃避追缴欠税罪-2.json │ │ ├── 伪造货币罪-1_挪用公款罪-1.json │ │ ├── 伪造货币罪-2_挪用公款罪-0.json │ │ ├── 伪造货币罪-2_逃避追缴欠税罪-1.json │ │ ├── 寻衅滋事罪-0_徇私枉法罪-2.json │ │ ├── 寻衅滋事罪-2_徇私枉法罪-0.json │ │ ├── 徇私枉法罪-0_寻衅滋事罪-1.json │ │ ├── 徇私枉法罪-0_寻衅滋事罪-2.json │ │ ├── 徇私枉法罪-1_交通肇事罪-1.json │ │ ├── 徇私枉法罪-1_盗窃罪-1.json │ │ ├── 挪用公款罪-1_徇私枉法罪-2.json │ │ ├── 挪用公款罪-1_过失致人死亡罪-0.json │ │ ├── 挪用公款罪-1_逃避追缴欠税罪-0.json │ │ ├── 挪用公款罪-2_伪造货币罪-2.json │ │ ├── 故意杀人罪-0_寻衅滋事罪-2.json │ │ ├── 故意杀人罪-0_销售假冒注册商标的商品罪-0.json │ │ ├── 故意杀人罪-1_伪造货币罪-2.json │ │ ├── 故意杀人罪-1_寻衅滋事罪-2.json │ │ ├── 故意杀人罪-1_盗窃罪-0.json │ │ ├── 故意杀人罪-1_过失致人死亡罪-0.json │ │ ├── 故意杀人罪-1_过失致人死亡罪-2.json │ │ ├── 故意杀人罪-2_交通肇事罪-2.json │ │ ├── 故意杀人罪-2_挪用公款罪-0.json │ │ ├── 故意杀人罪-2_挪用公款罪-2.json │ │ ├── 盗窃罪-0_寻衅滋事罪-2.json │ │ ├── 盗窃罪-0_挪用公款罪-2.json │ │ ├── 盗窃罪-1_寻衅滋事罪-1.json │ │ ├── 盗窃罪-2_寻衅滋事罪-2.json │ │ ├── 过失致人死亡罪-0_伪造货币罪-1.json │ │ ├── 过失致人死亡罪-1_徇私枉法罪-1.json │ │ ├── 过失致人死亡罪-1_盗窃罪-1.json │ │ ├── 过失致人死亡罪-2_伪造货币罪-2.json │ │ ├── 过失致人死亡罪-2_徇私枉法罪-0.json │ │ ├── 过失致人死亡罪-2_销售假冒注册商标的商品罪-1.json │ │ ├── 逃避追缴欠税罪-0_销售假冒注册商标的商品罪-0.json │ │ ├── 逃避追缴欠税罪-1_挪用公款罪-2.json │ │ ├── 逃避追缴欠税罪-1_销售假冒注册商标的商品罪-0.json │ │ ├── 销售假冒注册商标的商品罪-0_交通肇事罪-2.json │ │ ├── 销售假冒注册商标的商品罪-1_过失致人死亡罪-2.json │ │ ├── 销售假冒注册商标的商品罪-2_伪造货币罪-1.json │ │ ├── 销售假冒注册商标的商品罪-2_挪用公款罪-1.json │ │ └── 销售假冒注册商标的商品罪-2_逃避追缴欠税罪-1.json │ └── medical/ │ ├── en/ │ │ ├── config/ │ │ │ ├── Benign, In Situ, and Uncertain Neoplasms/ │ │ │ │ └── 0/ │ │ │ │ ├── Growth Hormone Adenoma (GH Adenoma).json │ │ │ │ └── Uterine Fibroids.json │ │ │ ├── Circulatory System Diseases/ │ │ │ │ └── 0/ │ │ │ │ ├── Acute Rheumatic Fever.json │ │ │ │ └── Varicose Veins of the Lower Leg.json │ │ │ ├── Conditions Originating in the Perinatal Period/ │ │ │ │ └── 0/ │ │ │ │ ├── Neonatal Pneumonia due to Amniotic Fluid Aspiration.json │ │ │ │ └── Neonatal Tetanus.json │ │ │ ├── Congenital Anomalies/ │ │ │ │ └── 0/ │ │ │ │ ├── Congenital Heart Disease.json │ │ │ │ └── Favism.json │ │ │ ├── Digestive System Diseases/ │ │ │ │ └── 0/ │ │ │ │ ├── Intestinal Obstruction.json │ │ │ │ └── Peptic Ulcer.json │ │ │ ├── Diseases of the Blood and Blood-Forming Organs/ │ │ │ │ └── 0/ │ │ │ │ ├── Iron Deficiency Anemia.json │ │ │ │ └── Thalassemia.json │ │ │ ├── Diseases of the Ear and Mastoid Process/ │ │ │ │ └── 0/ │ │ │ │ ├── Chronic Otitis Media.json │ │ │ │ └── Mastoiditis.json │ │ │ ├── Diseases of the Eye and Adnexa/ │ │ │ │ └── 0/ │ │ │ │ ├── Cataract.json │ │ │ │ └── Glaucoma.json │ │ │ ├── Diseases of the Genitourinary System/ │ │ │ │ └── 0/ │ │ │ │ ├── Acute Pyelonephritis.json │ │ │ │ └── Urinary Tract Stones.json │ │ │ ├── Diseases of the Musculoskeletal System and Connective Tissue/ │ │ │ │ └── 0/ │ │ │ │ ├── Acute Osteomyelitis.json │ │ │ │ └── Rheumatoid Arthritis.json │ │ │ ├── Diseases of the Nervous System/ │ │ │ │ └── 0/ │ │ │ │ ├── Epidemic Cerebrospinal Meningitis.json │ │ │ │ └── Parkinson's Disease.json │ │ │ ├── Diseases of the Skin and Subcutaneous Tissue/ │ │ │ │ └── 0/ │ │ │ │ ├── Dermatitis.json │ │ │ │ └── Furuncle.json │ │ │ ├── Endocrine, Nutritional, and Metabolic Diseases and Immune Disorders/ │ │ │ │ └── 0/ │ │ │ │ ├── Diabetes Mellitus.json │ │ │ │ └── Hyperthyroidism.json │ │ │ ├── Infectious Diseases/ │ │ │ │ └── 0/ │ │ │ │ ├── Bacterial Food Poisoning.json │ │ │ │ └── Hepatitis A.json │ │ │ ├── Malignant Tumors/ │ │ │ │ └── 0/ │ │ │ │ ├── Esophageal Malignancy.json │ │ │ │ └── Nasopharyngeal Malignancy.json │ │ │ ├── Mental Disorders/ │ │ │ │ └── 0/ │ │ │ │ ├── Depression.json │ │ │ │ └── Schizophrenia.json │ │ │ ├── Parasitic Diseases/ │ │ │ │ └── 0/ │ │ │ │ ├── Acute Schistosomiasis.json │ │ │ │ └── Malaria.json │ │ │ ├── Pregnancy, Childbirth, and the Puerperium Complications/ │ │ │ │ └── 0/ │ │ │ │ ├── Pregnancy Complicated by Hyperthyroidism.json │ │ │ │ └── Pregnancy-Induced Hypertension Syndrome.json │ │ │ └── Respiratory System Diseases/ │ │ │ └── 0/ │ │ │ ├── Asthma.json │ │ │ └── Pneumonia.json │ │ ├── doc/ │ │ │ ├── Benign, In Situ, and Uncertain Neoplasms/ │ │ │ │ └── 0/ │ │ │ │ ├── Growth Hormone Adenoma (GH Adenoma).txt │ │ │ │ └── Uterine Fibroids.txt │ │ │ ├── Circulatory System Diseases/ │ │ │ │ └── 0/ │ │ │ │ ├── Acute Rheumatic Fever.txt │ │ │ │ └── Varicose Veins of the Lower Leg.txt │ │ │ ├── Conditions Originating in the Perinatal Period/ │ │ │ │ └── 0/ │ │ │ │ ├── Neonatal Pneumonia due to Amniotic Fluid Aspiration.txt │ │ │ │ └── Neonatal Tetanus.txt │ │ │ ├── Congenital Anomalies/ │ │ │ │ └── 0/ │ │ │ │ ├── Congenital Heart Disease.txt │ │ │ │ └── Favism.txt │ │ │ ├── Digestive System Diseases/ │ │ │ │ └── 0/ │ │ │ │ ├── Intestinal Obstruction.txt │ │ │ │ └── Peptic Ulcer.txt │ │ │ ├── Diseases of the Blood and Blood-Forming Organs/ │ │ │ │ └── 0/ │ │ │ │ ├── Iron Deficiency Anemia.txt │ │ │ │ └── Thalassemia.txt │ │ │ ├── Diseases of the Ear and Mastoid Process/ │ │ │ │ └── 0/ │ │ │ │ ├── Chronic Otitis Media.txt │ │ │ │ └── Mastoiditis.txt │ │ │ ├── Diseases of the Eye and Adnexa/ │ │ │ │ └── 0/ │ │ │ │ ├── Cataract.txt │ │ │ │ └── Glaucoma.txt │ │ │ ├── Diseases of the Genitourinary System/ │ │ │ │ └── 0/ │ │ │ │ ├── Acute Pyelonephritis.txt │ │ │ │ └── Urinary Tract Stones.txt │ │ │ ├── Diseases of the Musculoskeletal System and Connective Tissue/ │ │ │ │ └── 0/ │ │ │ │ ├── Acute Osteomyelitis.txt │ │ │ │ └── Rheumatoid Arthritis.txt │ │ │ ├── Diseases of the Nervous System/ │ │ │ │ └── 0/ │ │ │ │ ├── Epidemic Cerebrospinal Meningitis.txt │ │ │ │ └── Parkinson's Disease.txt │ │ │ ├── Diseases of the Skin and Subcutaneous Tissue/ │ │ │ │ └── 0/ │ │ │ │ ├── Dermatitis.txt │ │ │ │ └── Furuncle.txt │ │ │ ├── Endocrine, Nutritional, and Metabolic Diseases and Immune Disorders/ │ │ │ │ └── 0/ │ │ │ │ ├── Diabetes Mellitus.txt │ │ │ │ └── Hyperthyroidism.txt │ │ │ ├── Infectious Diseases/ │ │ │ │ └── 0/ │ │ │ │ ├── Bacterial Food Poisoning.txt │ │ │ │ └── Hepatitis A.txt │ │ │ ├── Malignant Tumors/ │ │ │ │ └── 0/ │ │ │ │ ├── Esophageal Malignancy.txt │ │ │ │ └── Nasopharyngeal Malignancy.txt │ │ │ ├── Mental Disorders/ │ │ │ │ └── 0/ │ │ │ │ ├── Depression.txt │ │ │ │ └── Schizophrenia.txt │ │ │ ├── Parasitic Diseases/ │ │ │ │ └── 0/ │ │ │ │ ├── Acute Schistosomiasis.txt │ │ │ │ └── Malaria.txt │ │ │ ├── Pregnancy, Childbirth, and the Puerperium Complications/ │ │ │ │ └── 0/ │ │ │ │ ├── Pregnancy Complicated by Hyperthyroidism.txt │ │ │ │ └── Pregnancy-Induced Hypertension Syndrome.txt │ │ │ └── Respiratory System Diseases/ │ │ │ └── 0/ │ │ │ ├── Asthma.txt │ │ │ └── Pneumonia.txt │ │ ├── qra_irrelevant.json │ │ └── qra_multidoc/ │ │ └── 0/ │ │ ├── Acute Osteomyelitis_Schizophrenia.json │ │ ├── Acute Pyelonephritis_Furuncle.json │ │ ├── Acute Pyelonephritis_Glaucoma.json │ │ ├── Acute Schistosomiasis_Depression.json │ │ ├── Acute Schistosomiasis_Esophageal Malignancy.json │ │ ├── Acute Schistosomiasis_Parkinson's Disease.json │ │ ├── Acute Schistosomiasis_Pneumonia.json │ │ ├── Bacterial Food Poisoning_Depression.json │ │ ├── Bacterial Food Poisoning_Epidemic Cerebrospinal Meningitis.json │ │ ├── Bacterial Food Poisoning_Intestinal Obstruction.json │ │ ├── Cataract_Acute Schistosomiasis.json │ │ ├── Cataract_Congenital Heart Disease.json │ │ ├── Cataract_Epidemic Cerebrospinal Meningitis.json │ │ ├── Cataract_Neonatal Pneumonia due to Amniotic Fluid Aspiration.json │ │ ├── Chronic Otitis Media_Acute Osteomyelitis.json │ │ ├── Depression_Acute Osteomyelitis.json │ │ ├── Depression_Intestinal Obstruction.json │ │ ├── Diabetes Mellitus_Acute Schistosomiasis.json │ │ ├── Epidemic Cerebrospinal Meningitis_Pregnancy-Induced Hypertension Syndrome.json │ │ ├── Esophageal Malignancy_Glaucoma.json │ │ ├── Furuncle_Diabetes Mellitus.json │ │ ├── Furuncle_Favism.json │ │ ├── Furuncle_Malaria.json │ │ ├── Furuncle_Neonatal Tetanus.json │ │ ├── Furuncle_Varicose Veins of the Lower Leg.json │ │ ├── Glaucoma_Parkinson's Disease.json │ │ ├── Growth Hormone Adenoma (GH Adenoma)_Pneumonia.json │ │ ├── Intestinal Obstruction_Growth Hormone Adenoma (GH Adenoma).json │ │ ├── Intestinal Obstruction_Neonatal Tetanus.json │ │ ├── Nasopharyngeal Malignancy_Acute Osteomyelitis.json │ │ ├── Nasopharyngeal Malignancy_Glaucoma.json │ │ ├── Nasopharyngeal Malignancy_Malaria.json │ │ ├── Neonatal Pneumonia due to Amniotic Fluid Aspiration_Cataract.json │ │ ├── Neonatal Pneumonia due to Amniotic Fluid Aspiration_Varicose Veins of the Lower Leg.json │ │ ├── Neonatal Tetanus_Asthma.json │ │ ├── Pneumonia_Growth Hormone Adenoma (GH Adenoma).json │ │ ├── Pneumonia_Intestinal Obstruction.json │ │ ├── Pneumonia_Iron Deficiency Anemia.json │ │ ├── Pneumonia_Malaria.json │ │ ├── Pregnancy Complicated by Hyperthyroidism_Epidemic Cerebrospinal Meningitis.json │ │ ├── Pregnancy Complicated by Hyperthyroidism_Schizophrenia.json │ │ ├── Pregnancy Complicated by Hyperthyroidism_Thalassemia.json │ │ ├── Rheumatoid Arthritis_Malaria.json │ │ ├── Rheumatoid Arthritis_Pneumonia.json │ │ ├── Schizophrenia_Growth Hormone Adenoma (GH Adenoma).json │ │ ├── Schizophrenia_Pregnancy Complicated by Hyperthyroidism.json │ │ ├── Urinary Tract Stones_Acute Osteomyelitis.json │ │ ├── Uterine Fibroids_Varicose Veins of the Lower Leg.json │ │ ├── Varicose Veins of the Lower Leg_Dermatitis.json │ │ └── Varicose Veins of the Lower Leg_Growth Hormone Adenoma (GH Adenoma).json │ └── zh/ │ ├── config/ │ │ ├── 传染病/ │ │ │ └── 0/ │ │ │ ├── 甲型肝炎.json │ │ │ └── 细菌性食物中毒.json │ │ ├── 先天异常/ │ │ │ └── 0/ │ │ │ ├── 先天性心脏病.json │ │ │ └── 蚕豆症.json │ │ ├── 内分泌、营养和代谢疾病及免疫疾病/ │ │ │ └── 0/ │ │ │ ├── 甲状腺功能亢进.json │ │ │ └── 糖尿病.json │ │ ├── 呼吸系统疾病/ │ │ │ └── 0/ │ │ │ ├── 哮喘.json │ │ │ └── 肺炎.json │ │ ├── 妊娠、分娩病及产褥期并发症/ │ │ │ └── 0/ │ │ │ ├── 妊娠合并甲状腺功能亢进.json │ │ │ └── 妊娠高血压综合症.json │ │ ├── 寄生虫病/ │ │ │ └── 0/ │ │ │ ├── 急性血吸虫病.json │ │ │ └── 疟疾.json │ │ ├── 循环系统疾病/ │ │ │ └── 0/ │ │ │ ├── 小腿静脉曲张.json │ │ │ └── 急性风湿热.json │ │ ├── 恶性肿瘤/ │ │ │ └── 0/ │ │ │ ├── 食管恶性肿瘤.json │ │ │ └── 鼻咽恶性肿瘤.json │ │ ├── 泌尿生殖系统疾病/ │ │ │ └── 0/ │ │ │ ├── 急性肾盂炎.json │ │ │ └── 泌尿系统结石.json │ │ ├── 消化系统疾病/ │ │ │ └── 0/ │ │ │ ├── 消化性溃疡.json │ │ │ └── 肠梗阻.json │ │ ├── 皮肤和皮下组织疾病/ │ │ │ └── 0/ │ │ │ ├── 疖子.json │ │ │ └── 皮炎.json │ │ ├── 眼及附器疾病/ │ │ │ └── 0/ │ │ │ ├── 白内障.json │ │ │ └── 青光眼.json │ │ ├── 神经系病/ │ │ │ └── 0/ │ │ │ ├── 帕金森病.json │ │ │ └── 流行性脑髓脊膜炎.json │ │ ├── 精神病/ │ │ │ └── 0/ │ │ │ ├── 抑郁症.json │ │ │ └── 精神分裂症.json │ │ ├── 耳和乳突疾病/ │ │ │ └── 0/ │ │ │ ├── 乳突炎.json │ │ │ └── 慢性中耳炎.json │ │ ├── 肌肉、骨骼系统和结缔组织疾病/ │ │ │ └── 0/ │ │ │ ├── 急性骨髓炎.json │ │ │ └── 类风湿性关节炎.json │ │ ├── 良性、原位及动态未定肿瘤/ │ │ │ └── 0/ │ │ │ ├── 子宫肌瘤.json │ │ │ └── 生长激素腺瘤(GH腺瘤).json │ │ ├── 血液和造血器官疾病/ │ │ │ └── 0/ │ │ │ ├── 地中海贫血.json │ │ │ └── 缺铁性贫血.json │ │ └── 起源于围产期的情况/ │ │ └── 0/ │ │ ├── 新生儿破伤风.json │ │ └── 新生儿羊水吸入性肺炎.json │ ├── doc/ │ │ ├── 传染病/ │ │ │ └── 0/ │ │ │ ├── 甲型肝炎.txt │ │ │ └── 细菌性食物中毒.txt │ │ ├── 先天异常/ │ │ │ └── 0/ │ │ │ ├── 先天性心脏病.txt │ │ │ └── 蚕豆症.txt │ │ ├── 内分泌、营养和代谢疾病及免疫疾病/ │ │ │ └── 0/ │ │ │ ├── 甲状腺功能亢进.txt │ │ │ └── 糖尿病.txt │ │ ├── 呼吸系统疾病/ │ │ │ └── 0/ │ │ │ ├── 哮喘.txt │ │ │ └── 肺炎.txt │ │ ├── 妊娠、分娩病及产褥期并发症/ │ │ │ └── 0/ │ │ │ ├── 妊娠合并甲状腺功能亢进.txt │ │ │ └── 妊娠高血压综合症.txt │ │ ├── 寄生虫病/ │ │ │ └── 0/ │ │ │ ├── 急性血吸虫病.txt │ │ │ └── 疟疾.txt │ │ ├── 循环系统疾病/ │ │ │ └── 0/ │ │ │ ├── 小腿静脉曲张.txt │ │ │ └── 急性风湿热.txt │ │ ├── 恶性肿瘤/ │ │ │ └── 0/ │ │ │ ├── 食管恶性肿瘤.txt │ │ │ └── 鼻咽恶性肿瘤.txt │ │ ├── 泌尿生殖系统疾病/ │ │ │ └── 0/ │ │ │ ├── 急性肾盂炎.txt │ │ │ └── 泌尿系统结石.txt │ │ ├── 消化系统疾病/ │ │ │ └── 0/ │ │ │ ├── 消化性溃疡.txt │ │ │ └── 肠梗阻.txt │ │ ├── 皮肤和皮下组织疾病/ │ │ │ └── 0/ │ │ │ ├── 疖子.txt │ │ │ └── 皮炎.txt │ │ ├── 眼及附器疾病/ │ │ │ └── 0/ │ │ │ ├── 白内障.txt │ │ │ └── 青光眼.txt │ │ ├── 神经系病/ │ │ │ └── 0/ │ │ │ ├── 帕金森病.txt │ │ │ └── 流行性脑髓脊膜炎.txt │ │ ├── 精神病/ │ │ │ └── 0/ │ │ │ ├── 抑郁症.txt │ │ │ └── 精神分裂症.txt │ │ ├── 耳和乳突疾病/ │ │ │ └── 0/ │ │ │ ├── 乳突炎.txt │ │ │ └── 慢性中耳炎.txt │ │ ├── 肌肉、骨骼系统和结缔组织疾病/ │ │ │ └── 0/ │ │ │ ├── 急性骨髓炎.txt │ │ │ └── 类风湿性关节炎.txt │ │ ├── 良性、原位及动态未定肿瘤/ │ │ │ └── 0/ │ │ │ ├── 子宫肌瘤.txt │ │ │ └── 生长激素腺瘤(GH腺瘤).txt │ │ ├── 血液和造血器官疾病/ │ │ │ └── 0/ │ │ │ ├── 地中海贫血.txt │ │ │ └── 缺铁性贫血.txt │ │ └── 起源于围产期的情况/ │ │ └── 0/ │ │ ├── 新生儿破伤风.txt │ │ └── 新生儿羊水吸入性肺炎.txt │ ├── qra_irrelevant.json │ └── qra_multidoc/ │ └── 0/ │ ├── 乳突炎_妊娠合并甲状腺功能亢进.json │ ├── 乳突炎_流行性脑髓脊膜炎.json │ ├── 先天性心脏病_生长激素腺瘤(GH腺瘤).json │ ├── 哮喘_妊娠高血压综合症.json │ ├── 哮喘_甲型肝炎.json │ ├── 地中海贫血_类风湿性关节炎.json │ ├── 地中海贫血_食管恶性肿瘤.json │ ├── 妊娠合并甲状腺功能亢进_急性风湿热.json │ ├── 妊娠合并甲状腺功能亢进_白内障.json │ ├── 妊娠高血压综合症_泌尿系统结石.json │ ├── 子宫肌瘤_帕金森病.json │ ├── 子宫肌瘤_精神分裂症.json │ ├── 小腿静脉曲张_子宫肌瘤.json │ ├── 帕金森病_甲状腺功能亢进.json │ ├── 急性肾盂炎_新生儿羊水吸入性肺炎.json │ ├── 急性肾盂炎_甲状腺功能亢进.json │ ├── 急性肾盂炎_精神分裂症.json │ ├── 急性血吸虫病_消化性溃疡.json │ ├── 急性骨髓炎_帕金森病.json │ ├── 抑郁症_疟疾.json │ ├── 新生儿破伤风_妊娠高血压综合症.json │ ├── 新生儿破伤风_食管恶性肿瘤.json │ ├── 流行性脑髓脊膜炎_皮炎.json │ ├── 消化性溃疡_细菌性食物中毒.json │ ├── 消化性溃疡_鼻咽恶性肿瘤.json │ ├── 生长激素腺瘤(GH腺瘤)_小腿静脉曲张.json │ ├── 生长激素腺瘤(GH腺瘤)_急性血吸虫病.json │ ├── 生长激素腺瘤(GH腺瘤)_疟疾.json │ ├── 甲型肝炎_先天性心脏病.json │ ├── 甲型肝炎_甲状腺功能亢进.json │ ├── 甲型肝炎_青光眼.json │ ├── 甲状腺功能亢进_甲型肝炎.json │ ├── 甲状腺功能亢进_精神分裂症.json │ ├── 疖子_急性肾盂炎.json │ ├── 疖子_消化性溃疡.json │ ├── 疟疾_子宫肌瘤.json │ ├── 白内障_地中海贫血.json │ ├── 皮炎_鼻咽恶性肿瘤.json │ ├── 类风湿性关节炎_泌尿系统结石.json │ ├── 精神分裂症_帕金森病.json │ ├── 精神分裂症_疟疾.json │ ├── 糖尿病_抑郁症.json │ ├── 糖尿病_新生儿破伤风.json │ ├── 糖尿病_泌尿系统结石.json │ ├── 细菌性食物中毒_精神分裂症.json │ ├── 缺铁性贫血_乳突炎.json │ ├── 缺铁性贫血_消化性溃疡.json │ ├── 缺铁性贫血_生长激素腺瘤(GH腺瘤).json │ ├── 肠梗阻_地中海贫血.json │ ├── 肠梗阻_急性风湿热.json │ ├── 肠梗阻_新生儿破伤风.json │ ├── 肠梗阻_泌尿系统结石.json │ ├── 肺炎_急性肾盂炎.json │ ├── 肺炎_生长激素腺瘤(GH腺瘤).json │ ├── 肺炎_精神分裂症.json │ ├── 肺炎_鼻咽恶性肿瘤.json │ ├── 蚕豆症_地中海贫血.json │ ├── 蚕豆症_帕金森病.json │ ├── 青光眼_子宫肌瘤.json │ └── 食管恶性肿瘤_蚕豆症.json ├── prompts/ │ ├── finance_en.jsonl │ ├── finance_zh.jsonl │ ├── keypoint_prompt.jsonl │ ├── law_en.jsonl │ ├── law_zh.jsonl │ ├── medical_en.jsonl │ ├── medical_zh.jsonl │ └── reference_refinement_prompt.jsonl ├── requirements.txt ├── results/ │ ├── DRAGONBALL_docs.jsonl │ └── DRAGONBALL_queries.jsonl └── scripts/ ├── run_corporation.sh ├── run_keypoint_generation.sh ├── run_qra_irrelevant.sh ├── run_qra_multi_doc.sh ├── run_qra_single_doc.sh └── run_reference_refinement.sh