From 7d83483f2f403908dad9a2a6222d6946fad13cb2 Mon Sep 17 00:00:00 2001 From: opensafely-github-bot Date: Sun, 17 Mar 2024 17:24:41 +0000 Subject: [PATCH] chore: Update `external_studies` test code --- .../waiting-list/analysis/codelists.py | 9 +- .../analysis/dataset_definition_clockstops.py | 294 -- .../waiting-list/analysis/measures_opioid.py | 72 +- ...nxiety-disorder-diagnoses-and-symptoms.csv | 291 -- .../opensafely-anxiety-disorders.csv | 259 -- .../codelists/opensafely-depression.csv | 82 - .../codelists/opensafely-nsaids-oral.csv | 1476 ------- .../codelists/opensafely-osteoarthritis.csv | 437 +- .../opensafely-rheumatoid-arthritis.csv | 168 +- .../codelists/opensafely-symptoms-pain.csv | 3608 ----------------- ...user-anschaf-opioids-for-analgesia-dmd.csv | 2 + 11 files changed, 313 insertions(+), 6385 deletions(-) delete mode 100644 tests/acceptance/external_studies/waiting-list/analysis/dataset_definition_clockstops.py delete mode 100644 tests/acceptance/external_studies/waiting-list/codelists/ons-depression-and-generalised-anxiety-disorder-diagnoses-and-symptoms.csv delete mode 100644 tests/acceptance/external_studies/waiting-list/codelists/opensafely-anxiety-disorders.csv delete mode 100644 tests/acceptance/external_studies/waiting-list/codelists/opensafely-depression.csv delete mode 100644 tests/acceptance/external_studies/waiting-list/codelists/opensafely-nsaids-oral.csv delete mode 100644 tests/acceptance/external_studies/waiting-list/codelists/opensafely-symptoms-pain.csv diff --git a/tests/acceptance/external_studies/waiting-list/analysis/codelists.py b/tests/acceptance/external_studies/waiting-list/analysis/codelists.py index 65ee52500..bca47b778 100644 --- a/tests/acceptance/external_studies/waiting-list/analysis/codelists.py +++ b/tests/acceptance/external_studies/waiting-list/analysis/codelists.py @@ -110,7 +110,7 @@ osteoarthritis_codes = codelist_from_csv( "codelists/opensafely-osteoarthritis.csv", - column = "CTV3ID" + column = "code" ) depression_codes = codelist_from_csv( @@ -155,15 +155,10 @@ ra_codes = codelist_from_csv( "codelists/opensafely-rheumatoid-arthritis.csv", - column = "CTV3ID" + column = "code" ) oud_codes = codelist_from_csv( "codelists/user-hjforbes-opioid-dependency-clinical-diagnosis.csv", column = "code" ) - -pain_codes = codelist_from_csv( - "codelists/opensafely-symptoms-pain.csv", - column = "code" -) \ No newline at end of file diff --git a/tests/acceptance/external_studies/waiting-list/analysis/dataset_definition_clockstops.py b/tests/acceptance/external_studies/waiting-list/analysis/dataset_definition_clockstops.py deleted file mode 100644 index eaa7bfe0f..000000000 --- a/tests/acceptance/external_studies/waiting-list/analysis/dataset_definition_clockstops.py +++ /dev/null @@ -1,294 +0,0 @@ -################################################################################ -# This script defines and extracts relevant variables for people with a completed -# RTT pathway from May 2021 - Apr 2022 regardless of treatment type/specialty -################################################################################ - - -from ehrql import create_dataset, case, when, days, years, minimum_of -from ehrql.tables.tpp import ( - patients, - medications, - addresses, - practice_registrations, - clinical_events, - wl_clockstops) - -import codelists - -dataset = create_dataset() -dataset.configure_dummy_data(population_size=10000) - -#### Waiting list variables #### - -# WL data - exclude rows with missing dates/dates outside study period/end date before start date -clockstops = wl_clockstops.where( - wl_clockstops.referral_to_treatment_period_end_date.is_on_or_between("2021-05-01", "2022-04-30") - & wl_clockstops.referral_to_treatment_period_start_date.is_on_or_before(wl_clockstops.referral_to_treatment_period_end_date) - & wl_clockstops.week_ending_date.is_on_or_between("2021-05-01", "2022-04-30") - & wl_clockstops.waiting_list_type.is_in(["IRTT","ORTT","PTLO","PTLI","RTTO","RTTI"]) - ) - -# Number of RTT pathways per person -dataset.count_rtt_rows = clockstops.count_for_patient() -dataset.count_rtt_start_date = clockstops.referral_to_treatment_period_start_date.count_distinct_for_patient() -dataset.count_patient_id = clockstops.pseudo_patient_pathway_identifier.count_distinct_for_patient() -dataset.count_organisation_id = clockstops.pseudo_organisation_code_patient_pathway_identifier_issuer.count_distinct_for_patient() -dataset.count_referral_id = clockstops.pseudo_referral_identifier.count_distinct_for_patient() - -# Latest waiting list -# Sort by IDs and start date to identify unique RTT pathways -last_clockstops = clockstops.sort_by( - clockstops.referral_to_treatment_period_end_date, - clockstops.referral_to_treatment_period_start_date, - clockstops.pseudo_referral_identifier, - clockstops.pseudo_patient_pathway_identifier, - clockstops.pseudo_organisation_code_patient_pathway_identifier_issuer - ).last_for_patient() - -# RTT waiting list start date and end date -dataset.rtt_start_date = last_clockstops.referral_to_treatment_period_start_date -dataset.rtt_end_date = last_clockstops.referral_to_treatment_period_end_date -dataset.wait_time = (dataset.rtt_end_date - dataset.rtt_start_date).days - -# Other relevant columns -dataset.treatment_function = last_clockstops.activity_treatment_function_code -dataset.waiting_list_type = last_clockstops.waiting_list_type -dataset.priority_type = last_clockstops.priority_type_code -dataset.admitted = (last_clockstops.waiting_list_type.is_in(["IRTT","PTLI","RTTI"])) -dataset.ortho_surgery = (last_clockstops.activity_treatment_function_code.is_in(["110","111"])) - -#### Censoring dates #### - -# Registered 6 months before WL start -registrations = practice_registrations.where( - practice_registrations.start_date.is_on_or_before(dataset.rtt_start_date - days(182)) - ).for_patient_on(dataset.rtt_start_date) - -dataset.reg_end_date = registrations.end_date -dataset.dod = patients.date_of_death -dataset.end_date = minimum_of(dataset.reg_end_date, dataset.dod, dataset.rtt_end_date + days(182)) - -# Flag if censored before WL end date -dataset.censor_before_rtt_end = (dataset.end_date < dataset.rtt_end_date) - -# Flag if censored before study end date (RTT end + 6 months) -dataset.censor_before_study_end = (dataset.end_date < dataset.rtt_end_date + days(182)) - - -#### Medicines data #### - -med_codes = { - "opioid": codelists.opioid_codes, - # "lo_opioid": codelists.lo_opioid_codes, - # "med_opioid": codelists.med_opioid_codes, - # "hi_opioid": codelists.hi_opioid_codes, - "gabapentinoid": codelists.gabapentinoid_codes, - "antidepressant": codelists.antidepressant_codes, - "tca": codelists.tca_codes, - "nsaid": codelists.nsaid_codes, - "weak_opioid": codelists.weak_opioid_codes, - "strong_opioid": codelists.strong_opioid_codes, - "long_opioid": codelists.long_opioid_codes, - "short_opioid": codelists.short_opioid_codes, - } - -for med, med_codelist in med_codes.items(): - - med_events = medications.where(medications.dmd_code.is_in(med_codelist)) - - # Number of prescriptions during waiting list (this time period is variable, will account for this later) - wait_count_query = med_events.where( - med_events.date.is_on_or_between(dataset.rtt_start_date, minimum_of(dataset.end_date, dataset.rtt_end_date)) - ).count_for_patient() - dataset.add_column(f"{med}_wait_count", wait_count_query) - - # Any prescription during waiting list (this time period is variable, will account for this later) - wait_any_query = med_events.where( - med_events.date.is_on_or_between(dataset.rtt_start_date, minimum_of(dataset.end_date, dataset.rtt_end_date)) - ).exists_for_patient() - dataset.add_column(f"{med}_wait_any", wait_any_query) - - - # Number of prescriptions before waiting list - pre_count_query = med_events.where( - med_events.date.is_on_or_between(dataset.rtt_start_date - days(182), dataset.rtt_start_date - days(1)) - ).count_for_patient() - dataset.add_column(f"{med}_pre_count", pre_count_query) - - # Any prescription before waiting list - pre_any_query = med_events.where( - med_events.date.is_on_or_between(dataset.rtt_start_date - days(182), dataset.rtt_start_date - days(1)) - ).exists_for_patient() - dataset.add_column(f"{med}_pre_any", pre_any_query) - - - # Number of prescriptions after waiting list - post_count_query = med_events.where( - med_events.date.is_on_or_between(dataset.rtt_end_date + days(1), minimum_of(dataset.rtt_end_date + days(182), dataset.end_date)) - & (dataset.end_date > dataset.rtt_end_date) - ).count_for_patient() - dataset.add_column(f"{med}_post_count", post_count_query) - - # Any prescription after waiting list - post_any_query = med_events.where( - med_events.date.is_on_or_between(dataset.rtt_end_date + days(1), minimum_of(dataset.rtt_end_date + days(182), dataset.end_date)) - & (dataset.end_date > dataset.rtt_end_date) - ).exists_for_patient() - dataset.add_column(f"{med}_post_any", post_any_query) - - -# Date of first prescription -dataset.first_opioid_date = med_events.where( - med_events.dmd_code.is_in(codelists.opioid_codes) - & med_events.date.is_on_or_between(dataset.rtt_start_date - days(365), minimum_of(dataset.end_date, dataset.rtt_end_date + days(182))) - ).sort_by( - med_events.date - ).first_for_patient().date - - - -#### Demographics #### - -dataset.age = patients.age_on(dataset.rtt_start_date) -dataset.age_group = case( - when(dataset.age < 40).then("18-39"), - when(dataset.age < 50).then("40-49"), - when(dataset.age < 60).then("50-59"), - when(dataset.age < 70).then("60-69"), - when(dataset.age < 80).then("70-79"), - when(dataset.age >= 80).then("80+"), - otherwise="Missing", -) -dataset.sex = patients.sex - -# IMD decile -imd = addresses.for_patient_on(dataset.rtt_start_date).imd_rounded -dataset.imd10 = case( - when((imd >= 0) & (imd < int(32844 * 1 / 10))).then("1 (most deprived)"), - when(imd < int(32844 * 2 / 10)).then("2"), - when(imd < int(32844 * 3 / 10)).then("3"), - when(imd < int(32844 * 4 / 10)).then("4"), - when(imd < int(32844 * 5 / 10)).then("5"), - when(imd < int(32844 * 6 / 10)).then("6"), - when(imd < int(32844 * 7 / 10)).then("7"), - when(imd < int(32844 * 8 / 10)).then("8"), - when(imd < int(32844 * 9 / 10)).then("9"), - when(imd >= int(32844 * 9 / 10)).then("10 (least deprived)"), - otherwise="Unknown" -) - -# IMD quintile -dataset.imd5 = case( - when((imd >= 0) & (imd < int(32844 * 1 / 5))).then("1 (most deprived)"), - when(imd < int(32844 * 2 / 5)).then("2"), - when(imd < int(32844 * 3 / 5)).then("3"), - when(imd < int(32844 * 4 / 5)).then("4"), - when(imd >= int(32844 * 4 / 5)).then("5 (least deprived)"), - otherwise="Unknown" -) - -# Ethnicity 6 categories -ethnicity6 = clinical_events.where( - clinical_events.snomedct_code.is_in(codelists.ethnicity_codes_6) - ).where( - clinical_events.date.is_on_or_before(dataset.rtt_start_date) - ).sort_by( - clinical_events.date - ).last_for_patient().snomedct_code.to_category(codelists.ethnicity_codes_6) - -dataset.ethnicity6 = case( - when(ethnicity6 == "1").then("White"), - when(ethnicity6 == "2").then("Mixed"), - when(ethnicity6 == "3").then("South Asian"), - when(ethnicity6 == "4").then("Black"), - when(ethnicity6 == "5").then("Other"), - when(ethnicity6 == "6").then("Not stated"), - otherwise="Unknown" -) - -# Ethnicity 16 categories -ethnicity16 = clinical_events.where( - clinical_events.snomedct_code.is_in(codelists.ethnicity_codes_16) - ).where( - clinical_events.date.is_on_or_before(dataset.rtt_start_date) - ).sort_by( - clinical_events.date - ).last_for_patient().snomedct_code.to_category(codelists.ethnicity_codes_16) - -dataset.ethnicity16 = case( - when(ethnicity16 == "1").then("White - British"), - when(ethnicity16 == "2").then("White - Irish"), - when(ethnicity16 == "3").then("White - Other"), - when(ethnicity16 == "4").then("Mixed - White/Black Caribbean"), - when(ethnicity16 == "5").then("Mixed - White/Black African"), - when(ethnicity16 == "6").then("Mixed - White/Asian"), - when(ethnicity16 == "7").then("Mixed - Other"), - when(ethnicity16 == "8").then("Asian or Asian British - Indian"), - when(ethnicity16 == "9").then("Asian or Asian British - Pakistani"), - when(ethnicity16 == "10").then("Asian or Asian British - Bangladeshi"), - when(ethnicity16 == "11").then("Asian or Asian British - Other"), - when(ethnicity16 == "12").then("Black - Caribbean"), - when(ethnicity16 == "13").then("Black - African"), - when(ethnicity16 == "14").then("Black - Other"), - when(ethnicity16 == "15").then("Other - Chinese"), - when(ethnicity16 == "16").then("Other - Other"), - otherwise="Unknown" -) - -dataset.region = practice_registrations.for_patient_on(dataset.rtt_start_date).practice_nuts1_region_name - - -#### Clinical characteristics #### - -# Cancer diagnosis in past 5 years -dataset.cancer = clinical_events.where( - clinical_events.snomedct_code.is_in(codelists.cancer_codes) - ).where( - clinical_events.date.is_between_but_not_on(dataset.rtt_start_date - years(5), dataset.rtt_start_date) - ).exists_for_patient() - - -# Comorbidities in past 5 years -clin_events_5yrs = clinical_events.where( - clinical_events.date.is_on_or_between(dataset.rtt_start_date - years(5), dataset.rtt_start_date) - ) - -comorb_codes = { - "diabetes": codelists.diabetes_codes, - "cardiac": codelists.cardiac_codes, - "copd": codelists.copd_codes, - "liver": codelists.liver_codes, - "ckd": codelists.ckd_codes, - "oa": codelists.osteoarthritis_codes, - "ra": codelists.ra_codes, - "depression": codelists.depression_codes, - "anxiety": codelists.anxiety_codes, - "smi": codelists.smi_codes, - "oud": codelists.oud_codes - } - - -for comorb, comorb_codelist in comorb_codes.items(): - - if comorb in ["diabetes","cardiac","copd","liver","oa","ra"]: - - ctv3_query = clin_events_5yrs.where( - clin_events_5yrs.ctv3_code.is_in(comorb_codelist) - ).exists_for_patient() - dataset.add_column(comorb, ctv3_query) - - else: - - snomed_query = clin_events_5yrs.where( - clin_events_5yrs.snomedct_code.is_in(comorb_codelist) - ).exists_for_patient() - dataset.add_column(comorb, snomed_query) - - -#### DEFINE POPULATION #### - -dataset.define_population( - dataset.end_date.is_after(dataset.rtt_start_date) - & registrations.exists_for_patient() - & last_clockstops.exists_for_patient() -) diff --git a/tests/acceptance/external_studies/waiting-list/analysis/measures_opioid.py b/tests/acceptance/external_studies/waiting-list/analysis/measures_opioid.py index 2805c6f0e..95c5da245 100644 --- a/tests/acceptance/external_studies/waiting-list/analysis/measures_opioid.py +++ b/tests/acceptance/external_studies/waiting-list/analysis/measures_opioid.py @@ -37,7 +37,7 @@ wl_clockstops.referral_to_treatment_period_end_date.is_on_or_between("2021-05-01", "2022-04-30") & wl_clockstops.referral_to_treatment_period_start_date.is_on_or_before(wl_clockstops.referral_to_treatment_period_end_date) & wl_clockstops.week_ending_date.is_on_or_between("2021-05-01", "2022-04-30") - & wl_clockstops.waiting_list_type.is_in(["IRTT","ORTT","PTLO","PTLI","RTTO","RTTI"]) + & wl_clockstops.activity_treatment_function_code.is_in(["110","111"]) ).sort_by( wl_clockstops.referral_to_treatment_period_start_date, wl_clockstops.pseudo_referral_identifier, @@ -45,15 +45,6 @@ wl_clockstops.pseudo_organisation_code_patient_pathway_identifier_issuer ).last_for_patient() -routine = case( - when(last_clockstops.priority_type_code == "routine").then("Routine"), - when(last_clockstops.priority_type_code == "urgent").then("Urgent"), - when(last_clockstops.priority_type_code == "two week wait").then("Urgent"), - otherwise="Missing", - ) - -admitted = (last_clockstops.waiting_list_type.is_in(["IRTT","PTLI","RTTI"])) - # RTT waiting list start date and end date rtt_start_date = last_clockstops.referral_to_treatment_period_start_date @@ -87,6 +78,7 @@ # Standardise Rx dates relative to RTT start date for pre-WL prescribing all_opioid_rx.tmp_pre_date = tmp_date + days((all_opioid_rx.date - (rtt_start_date - days(182))).days) + ### Prescribing variables for numerator #### # Num Rx during waiting list (up to 1 year) @@ -109,12 +101,13 @@ ## Censoring date -registrations = practice_registrations.where( - practice_registrations.start_date.is_on_or_before(rtt_start_date - days(182)) - & (practice_registrations.end_date.is_after(rtt_start_date) | practice_registrations.end_date.is_null()) - ) +registrations = practice_registrations.spanning( + rtt_start_date - days(182), rtt_start_date + ).sort_by( + practice_registrations.end_date + ).last_for_patient() -reg_end_date = registrations.sort_by(registrations.end_date).last_for_patient().end_date +reg_end_date = registrations.end_date end_date = minimum_of(reg_end_date, patients.date_of_death, rtt_end_date + days(182)) # Standardise end date relative to RTT start and end dates @@ -143,43 +136,8 @@ # Demographics age = patients.age_on(rtt_start_date) -# age_group = case( -# when(age < 40).then("18-39"), -# when(age < 50).then("40-49"), -# when(age < 60).then("50-59"), -# when(age < 70).then("60-69"), -# when(age < 80).then("70-79"), -# when(age >= 80).then("80+"), -# otherwise="Missing", -# ) - sex = patients.sex -# # IMD decile -# imd = addresses.for_patient_on(rtt_start_date).imd_rounded -# imd10 = case( -# when((imd >= 0) & (imd < int(32844 * 1 / 10))).then("1 (most deprived)"), -# when(imd < int(32844 * 2 / 10)).then("2"), -# when(imd < int(32844 * 3 / 10)).then("3"), -# when(imd < int(32844 * 4 / 10)).then("4"), -# when(imd < int(32844 * 5 / 10)).then("5"), -# when(imd < int(32844 * 6 / 10)).then("6"), -# when(imd < int(32844 * 7 / 10)).then("7"), -# when(imd < int(32844 * 8 / 10)).then("8"), -# when(imd < int(32844 * 9 / 10)).then("9"), -# when(imd >= int(32844 * 9 / 10)).then("10 (least deprived)"), -# otherwise="Unknown" -# ) - -# # IMD quintile -# imd5 = case( -# when((imd >= 0) & (imd < int(32844 * 1 / 5))).then("1 (most deprived)"), -# when(imd < int(32844 * 2 / 5)).then("2"), -# when(imd < int(32844 * 3 / 5)).then("3"), -# when(imd < int(32844 * 4 / 5)).then("4"), -# when(imd >= int(32844 * 4 / 5)).then("5 (least deprived)"), -# otherwise="Unknown" -# ) ###### @@ -198,27 +156,23 @@ # Registered for >6 months & registrations.exists_for_patient() - # Orthopaedic surgery codes - & last_clockstops.activity_treatment_function_code.is_in(["110","111"]) - # No cancer & ~cancer # Censoring date (death/deregistration) after start of waiting list - & (end_date >= rtt_start_date) + & (end_date.is_after(rtt_start_date)) # Routine priority type - & routine.is_in(["Routine"]) - + & (last_clockstops.priority_type_code.is_in(["routine"])) + # Admitted - & admitted + & (last_clockstops.waiting_list_type.is_in(["IRTT","PTLI","RTTI"])) # Alive at end of waiting list - & (patients.date_of_death >= rtt_end_date) + & ((patients.date_of_death >= rtt_end_date) | patients.date_of_death.is_null()) ) - # Prescribing during WL measures.define_measure( name="count_wait", diff --git a/tests/acceptance/external_studies/waiting-list/codelists/ons-depression-and-generalised-anxiety-disorder-diagnoses-and-symptoms.csv b/tests/acceptance/external_studies/waiting-list/codelists/ons-depression-and-generalised-anxiety-disorder-diagnoses-and-symptoms.csv deleted file mode 100644 index a8948adcf..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/ons-depression-and-generalised-anxiety-disorder-diagnoses-and-symptoms.csv +++ /dev/null @@ -1,291 +0,0 @@ -code,term -10211000132109,Perinatal depression -1038261000000100,Maternal postnatal depression -10532003,"Primary degenerative dementia of the Alzheimer type, presenile onset, with depression" -1057351000000106,Signposting to depression self-help group -10743001000119103,Anxiety disorder in mother complicating childbirth -1086471000000103,"Recurrent reactive depressive episodes, severe, with psychosis" -1086661000000108,"Reactive depression, prolonged single episode" -1086671000000101,"Reactive depression, single episode" -1086681000000104,"Reactive depression, recurrent" -1086691000000102,"Reactive depression, first episode" -1089511000000100,Recurrent depression with current severe episode and psychotic features -1089631000000109,Recurrent depression with current severe episode without psychotic features -1089641000000100,Recurrent depression with current moderate episode -109006,Anxiety disorder of childhood OR adolescence -11003002,Nervous diarrhea -111487009,Dream anxiety disorder -112001000119100,Positive screening for depression on Patient Health Questionnaire 9 -11806006,Separation anxiety disorder of childhood -1196001,"Chronic bipolar II disorder, most recent episode major depressive" -12398201000119102,Anxiety disorder caused by methamphetamine -133121000119109,Severe seasonal affective disorder -14070001,Multi-infarct dementia with depression -14183003,"Chronic major depressive disorder, single episode" -15193003,"Severe recurrent major depression with psychotic features, mood-incongruent" -15277004,Hallucinogen-induced anxiety disorder -15639000,"Moderate major depression, single episode" -162218007,Stress-related problem -16238181000119101,Depressive disorder caused by amphetamine -16238221000119109,Depressive disorder caused by methamphetamine -16264621000119109,Recurrent mild major depressive disorder co-occurrent with anxiety -16264821000119108,Recurrent severe major depressive disorder co-occurrent with anxiety -16264901000119109,Recurrent moderate major depressive disorder co-occurrent with anxiety -16265061000119105,Recurrent major depressive disorder co-occurrent with anxiety in full remission -16265301000119106,Recurrent major depressive disorder in partial remission co-occurrent with anxiety -16265701000119107,Illness anxiety disorder -16265951000119109,Mild major depressive disorder co-occurrent with anxiety single episode -16266831000119100,Moderate major depressive disorder co-occurrent with anxiety single episode -16266991000119108,Severe major depressive disorder co-occurrent with anxiety single episode -162722001,On examination - depressed -162723006,On examination - anxious -162724000,On examination - nervous -16295005,"Bipolar II disorder, most recent episode major depressive" -166291000000108,Depression enhanced services administration -166481000000107,Depression enhanced service completed -1686006,"Sedative, hypnotic AND/OR anxiolytic-induced anxiety disorder" -17496003,Organic anxiety disorder -18818009,Moderate recurrent major depression -191455000,Presenile dementia with depression -191459006,Senile dementia with depression -191495003,Drug-induced depressive state -191601008,"Single major depressive episode, mild" -191602001,"Single major depressive episode, moderate" -191604000,"Single major depressive episode, severe, with psychosis" -191610000,"Recurrent major depressive episodes, mild" -191611001,"Recurrent major depressive episodes, moderate" -191613003,"Recurrent major depressive episodes, severe, with psychosis" -191616006,Recurrent depression -191627008,"Bipolar affective disorder, current episode depression" -191629006,"Bipolar affective disorder, currently depressed, mild" -191630001,"Bipolar affective disorder, currently depressed, moderate" -191632009,"Bipolar affective disorder, currently depressed, severe, with psychosis" -191659001,Atypical depressive disorder -191676002,Reactive depressive psychosis -191708009,Chronic anxiety -191709001,Recurrent anxiety -192037000,Acute panic state due to acute stress reaction -192038005,Acute fugue state due to acute stress reaction -192039002,Acute stupor state due to acute stress reaction -192041001,Acute situational disturbance -192044009,Stress reaction causing mixed disturbance of emotion and conduct -192046006,Brief depressive adjustment reaction -192049004,Prolonged depressive adjustment reaction -192079006,Postviral depression -192080009,Chronic depression -192108001,Disturbance of anxiety and fearfulness in childhood and adolescence -192191004,Organic mood disorder -192362008,"Bipolar affective disorder, current episode mixed" -19300006,"Severe bipolar II disorder, most recent episode major depressive with psychotic features, mood-congruent" -19694002,Late onset dysthymia -197480006,Anxiety disorder -198288003,Anxiety state -199111000000100,Referral for guided self-help for depression -20250007,"Severe major depression, single episode, with psychotic features, mood-incongruent" -207363009,Anxiety neurosis -20876004,Inhalant-induced anxiety disorder -21897009,Generalized anxiety disorder -21900002,"Bipolar I disorder, most recent episode depressed with catatonic features" -22407005,"Bipolar II disorder, most recent episode major depressive with catatonic features" -225624000,Panic attack -22621000119103,Anxiety disorder caused by drug -231443008,Right hemispheric organic affective disorder -231446000,Organic emotionally labile disorder -231485007,Post-schizophrenic depression -231499006,Endogenous depression first episode -231500002,Masked depression -231503000,Non-situational panic attack -231504006,Mixed anxiety and depressive disorder -231506008,Anxiety hysteria -231542000,Depressive conduct disorder -23645006,Organic mood disorder -237349002,Mild postnatal depression -237350002,Severe postnatal depression -247803002,Seasonal affective disorder -2506003,Early onset dysthymia -251000119105,"Severe major depression, single episode" -25922000,"Major depressive disorder, single episode with postpartum onset" -261000119107,Severe depressed bipolar I disorder -2618002,Chronic recurrent major depressive disorder -26852004,"Primary degenerative dementia of the Alzheimer type, senile onset, with depression" -268620009,Single major depressive episode -268621008,Recurrent major depressive episodes -271952001,Stress and adjustment reaction -272022009,Complaining of feeling depressed -272024005,Complaining of feeling unhappy -274948002,Endogenous depression - recurrent -279225001,Maternity blues -281000119103,Severe recurrent major depression -28475009,Severe recurrent major depression with psychotic features -288751000119101,"Reactive depressive psychosis, single episode" -29929003,"Bipolar I disorder, most recent episode depressed with atypical features" -300706003,Endogenous depression -300895004,Anxiety attack -30520009,"Severe bipolar II disorder, most recent episode major depressive with psychotic features" -30687003,"Bipolar II disorder, most recent episode major depressive with postpartum onset" -30819006,Dysphoric mood -310495003,Mild depression -310496002,Moderate depression -310497006,Severe depression -3109008,Secondary dysthymia early onset -319768000,Recurrent major depressive disorder with melancholic features -320751009,"Major depression, melancholic type" -321717001,Involutional depression -33078009,"Severe recurrent major depression with psychotic features, mood-congruent" -33736005,"Severe major depression with psychotic features, mood-congruent" -34315001,"Bipolar II disorder, most recent episode major depressive with melancholic features" -34938008,Alcohol-induced anxiety disorder -35489007,Depressive disorder -357705009,Cotard's syndrome -35846004,"Moderate bipolar II disorder, most recent episode major depressive" -36170009,Secondary dysthymia late onset -361761000000106,On full dose long term treatment for depression -36474008,Severe recurrent major depression without psychotic features -366979004,Depressed mood -36923009,"Major depression, single episode" -370143000,Major depressive disorder -37868008,Anxiety disorder of adolescence -38451003,Primary dysthymia early onset -386782008,Disturbance in affect -38694004,Recurrent major depressive disorder with atypical features -394924000,Symptoms of depression -395017009,Complaining of panic attack -395072006,Counseling for postnatal depression -397701000000102,[X]Severe depressive episode without psychotic symptoms -397711000000100,[X]Severe depressive episode with psychotic symptoms -39809009,Recurrent major depressive disorder with catatonic features -39951001,Cannabis-induced anxiety disorder -401211000000106,[X] Single episode major depression without psychotic symptoms -40379007,Mild recurrent major depression -40568001,Recurrent brief depressive disorder -415044007,Patient given advice about management of depression -417676004,On examination - panic attack -424196004,Feeling nervous -42594001,Organic mood disorder of depressed type -426174008,Chronic stress disorder -42925002,"Major depressive disorder, single episode with atypical features" -430421000000104,[X]Mild depressive episode -430852001,"Severe major depression, single episode, with psychotic features" -43568002,"Bipolar II disorder, most recent episode major depressive with atypical features" -442057004,Chronic depressive personality disorder -450714000,Severe major depression -455731000000100,[X] Single episode agitated depression without psychotic symptoms -46206005,Mood disorder -465441000000108,[X]Moderate depressive episode -467361000000105,"[X] Manic-depressive psychosis, depressed type without psychotic symptoms" -473126001,Suspected depressive disorder -48589009,Minor depressive disorder -48694002,Anxiety -49468007,Depressed bipolar I disorder -50026000,Psychoactive substance-induced organic anxiety disorder -51637008,"Chronic bipolar I disorder, most recent episode depressed" -52910006,Anxiety disorder due to a general medical condition -55967005,Phencyclidine-induced anxiety disorder -57194009,Adjustment disorder with depressed mood -58703003,Postpartum depression -596004,Premenstrual dysphoric disorder -59617007,Severe depressed bipolar I disorder with psychotic features -60099002,"Severe major depression with psychotic features, mood-incongruent" -609311000000100,Depressive disorder NEC -61387006,Moderate anxiety -63778009,"Major depressive disorder, single episode with melancholic features" -66344007,Recurrent major depression -66631006,Moderate depressed bipolar I disorder -67195008,Acute stress disorder -67711008,Primary dysthymia late onset -69392006,"Major depressive disorder, single episode with catatonic features" -69479009,Anxiety hyperventilation -7031000119100,Psychogenic fugue co-occurrent and due to stress reaction -70655008,Caffeine-induced anxiety disorder -70997004,Mild anxiety -712823008,Acute depression -71294008,"Mild bipolar II disorder, most recent episode major depressive" -71336009,Recurrent major depressive disorder with postpartum onset -713831000000108,Depression monitoring administration -715831000000109,Excepted from depression quality indicators - informed dissent -715924009,Disruptive mood dysregulation disorder -716111000000102,Exception reporting - depression quality indicators -716831000000103,Excepted from depression quality indicators - patient unsuitable -718636001,Minimal depression -719592004,Moderately severe major depression -719593009,Moderately severe depression -720451004,Minimal recurrent major depression -720452006,Moderately severe recurrent major depression -720453001,Moderately severe major depression single episode -720454007,Minimal major depression single episode -720455008,Minimal major depression -723928009,Mood disorder with depressive symptoms caused by alcohol -723930006,Mood disorder with mixed manic and depressive symptoms caused by alcohol -724654009,Anxiety disorder caused by opioid -724676000,Mood disorder with depressive symptoms caused by sedative -724677009,Mood disorder with depressive symptoms caused by hypnotic -724678004,Mood disorder with depressive symptoms caused by anxiolytic -724682002,Mood disorder with mixed depressive and manic symptoms caused by sedative -724683007,Mood disorder with mixed depressive and manic symptoms caused by hypnotic -724684001,Mood disorder with mixed depressive and manic symptoms caused by anxiolytic -724690002,Mood disorder with depressive symptoms caused by cocaine -724692005,Mood disorder with mixed depressive and manic symptoms caused by cocaine -724708007,Anxiety disorder caused by methylenedioxymethamphetamine -724722007,Anxiety disorder caused by dissociative drug -724723002,Anxiety disorder caused by ketamine -724757005,Depressive symptoms due to primary psychotic disorder -726772006,Major depression with psychotic features -737341006,Anxiety disorder caused by synthetic cannabinoid -73867007,Severe major depression with psychotic features -74506000,Bereavement due to life event -74686005,Mild depressed bipolar I disorder -75084000,Severe major depression without psychotic features -75752004,"Bipolar I disorder, most recent episode depressed with melancholic features" -75837004,Mood disorder with depressive features due to general medical condition -762321000,Mood disorder with depressive symptoms caused by opioid -762322007,Mood disorder with mixed depressive and manic symptoms caused by opioid -762329003,Mood disorder with depressive symptoms caused by stimulant -762330008,Mood disorder with mixed depressive and manic symptoms caused by stimulant -762331007,Anxiety disorder caused by stimulant -762336002,Mood disorder with depressive symptoms caused by hallucinogen -762337006,Mood disorder with mixed depressive and manic symptoms caused by hallucinogen -762339009,Mood disorder with depressive symptoms caused by volatile inhalant -762340006,Mood disorder with mixed depressive and manic symptoms caused by volatile inhalant -762345001,Mood disorder with depressive symptoms caused by dissociative drug -762346000,Mood disorder with mixed depressive and manic symptoms caused by dissociative drug -762512002,Mood disorder with depressive symptoms caused by synthetic cathinone -762514001,Mood disorder with mixed depressive and manic symptoms caused by synthetic cathinone -762515000,Anxiety disorder caused by synthetic cathinone -76441001,"Severe major depression, single episode, without psychotic features" -764611000000100,"Recurrent major depressive episodes, severe" -764631000000108,"Single major depressive episode, severe" -765176007,Psychosis and severe depression co-occurrent and due to bipolar affective disorder -767631007,"Bipolar disorder, most recent episode depression" -767636002,"Bipolar I disorder, most recent episode depression" -774531000000101,Antidepressant drug treatment started -77486005,Mood disorder with major depressive-like episode due to general medical condition -77911002,"Severe major depression, single episode, with psychotic features, mood-congruent" -782501005,Adjustment disorder with mixed anxiety and depressed mood -784051000000106,Depression care management -78667006,Dysthymia -788120007,Antenatal depression -788866004,Anxiety due to dementia -790961000000101,Antenatal depression -79298009,"Mild major depression, single episode" -79842004,Stuporous depression -80583007,Severe anxiety (panic) -81319007,"Severe bipolar II disorder, most recent episode major depressive without psychotic features" -81350009,Free-floating anxiety -82218004,Postoperative depression -82339009,Amphetamine-induced anxiety disorder -83176005,Primary dysthymia -832007,Moderate major depression -83458005,Agitated depression -838529004,Mood disorder with mixed depressive and manic symptoms caused by amfetamine and amfetamine derivative -838530009,Mood disorder with depressive symptoms caused by amfetamine and amfetamine derivative -84760002,"Schizoaffective disorder, depressive type" -84788008,Menopausal depression -85080004,Secondary dysthymia -87203005,"Bipolar I disorder, most recent episode depressed with postpartum onset" -87414006,Reactive depression (situational) -87512008,Mild major depression -87842000,Generalized neuromuscular exhaustion syndrome -923921000000104,Referral for depression self-help video -92501000119101,Stress reaction with psychomotor agitation -933441000000101,Referral for guided self-help for depression declined -94641000119109,Anxiety in pregnancy diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-anxiety-disorders.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-anxiety-disorders.csv deleted file mode 100644 index fbeca0eb6..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-anxiety-disorders.csv +++ /dev/null @@ -1,259 +0,0 @@ -code,term -1010649005,Acute vestibular syndrome due to anxiety and fear -10586006,Occupation-related stress disorder -10743001000119103,Anxiety disorder in mother complicating childbirth -109006,Anxiety disorder of childhood OR adolescence -111487009,Dream anxiety disorder -111490003,"Panic disorder with agoraphobia, agoraphobic avoidance in partial remission AND severe panic attacks" -111491004,"Panic disorder with agoraphobia, agoraphobic avoidance in full remission AND panic attacks in partial remission" -11458009,"Anticipatory anxiety, mild" -11806006,Separation anxiety disorder of childhood -11941006,"Panic disorder with agoraphobia, agoraphobic avoidance in full remission AND panic attacks in full remission" -12398201000119102,Anxiety disorder caused by methamphetamine -126943008,Separation anxiety -129869000,Death anxiety -13438001,Overanxious disorder of childhood -1380006,Agoraphobia without history of panic disorder with limited symptom attacks -139476005,Anxiousness (& symptom) -139598003,Anxious cognitions -139948007,O/E - anxious -15277004,Hallucinogen-induced anxiety disorder -154882009,(Anxiety state (& [states] or [panic attack])) or (pseudocyesis) -154884005,Phobic anxiety disorder -154964007,Mixed anxiety and depressive disorder -162192002,Anxiousness (& symptom) -16264621000119109,Recurrent mild major depressive disorder co-occurrent with anxiety -16264821000119108,Recurrent severe major depressive disorder co-occurrent with anxiety -16264901000119109,Recurrent moderate major depressive disorder co-occurrent with anxiety -16265061000119105,Recurrent major depressive disorder co-occurrent with anxiety in full remission -16265301000119106,Recurrent major depressive disorder in partial remission co-occurrent with anxiety -16265701000119107,Illness anxiety disorder -16265951000119109,Mild major depressive disorder co-occurrent with anxiety single episode -16266831000119100,Moderate major depressive disorder co-occurrent with anxiety single episode -16266991000119108,Severe major depressive disorder co-occurrent with anxiety single episode -162723006,On examination - anxious -1686006,"Sedative, hypnotic AND/OR anxiolytic-induced anxiety disorder" -17496003,Organic anxiety disorder -1816003,"Panic disorder with agoraphobia, severe agoraphobic avoidance AND mild panic attacks" -191703000,Anxiety disorder -191704006,Anxiety state unspecified -191706008,Generalised anxiety disorder -191707004,Mixed anxiety and depressive disorder -191708009,Chronic anxiety -191709001,Recurrent anxiety -191711005,Anxiety state NOS -191722009,Agoraphobia with panic attacks -191724005,"Social phobia, fear of eating in public" -191725006,"Social phobia, fear of public speaking" -191726007,"Social phobia, fear of public washing" -191736004,Obsessive-compulsive disorder -191737008,Compulsive neurosis -191738003,Obsessional neurosis -192014006,Psychogenic rumination -192037000,Acute panic state due to acute stress reaction -192038005,Acute fugue state due to acute stress reaction -192039002,Acute stupor state due to acute stress reaction -192041001,Acute situational disturbance -192042008,Acute post-trauma stress state -192044009,Stress reaction causing mixed disturbance of emotion and conduct -192108001,Disturbance of anxiety and fearfulness in childhood and adolescence -192109009,Childhood overanxious disorder -192110004,Childhood and adolescent fearfulness disturbance -192111000,Disturbance of anxiety and fearfulness in childhood and adolescence NOS -192192006,Organic anxiety disorder -192393009,[X]Phobic anxiety disorders -192397005,[X]Other phobic anxiety disorders -192398000,"[X]Phobic anxiety disorder, unspecified" -192399008,[X]Other anxiety disorders -192400001,[X]Panic disorder [episodic paroxysmal anxiety] -192401002,Generalised anxiety disorder -192402009,[X]Mixed anxiety and depressive disorder (& mild anxiety depression) -192403004,[X]Other mixed anxiety disorders -192404005,[X] Anxiety disorders: [other specified] or [anxiety hysteria] -192405006,"[X]Anxiety disorder, unspecified" -192459009,[X] Nightmares or dream anxiety disorder -192491005,Anxious personality disorder -192611004,Childhood phobic anxiety disorder -192612006,[X] Social anxiety disorder of childhood (avoidant disorder) -197480006,Anxiety disorder -19766004,"Panic disorder with agoraphobia, mild agoraphobic avoidance AND severe panic attacks" -198288003,Anxiety state -207363009,Anxiety neurosis -20876004,Inhalant-induced anxiety disorder -21897009,Generalized anxiety disorder -22230001,"Panic disorder with agoraphobia, agoraphobic avoidance in partial remission AND panic attacks in full remission" -225624000,Panic attack -225635005,Anxiety about treatment -225636006,Anxiety about forced dependence -225637002,Anxiety about loss of control -225638007,Anxiety about resuming sexual relations -225639004,Worried about not coping with baby -225640002,Worried about being a bad father -225641003,Worried about being a bad mother -225642005,Anxiety about not coping with parenthood -225643000,Anxiety about making mistakes -225644006,Anxiety about altered body image -22621000119103,Anxiety disorder caused by drug -231502005,Situational panic attack -231503000,Non-situational panic attack -231504006,Mixed anxiety and depressive disorder -231506008,Anxiety hysteria -231507004,Stage fright -231508009,Examination fear -231528008,Anxious personality disorder -238965007,Venereophobia -238966008,Syphilophobia -238976006,Bromisodrophobia -247649009,Anxious cognitions -247805009,Anxiety and fear -247808006,Anxiety about body function or health -24781009,"Panic disorder with agoraphobia, mild agoraphobic avoidance AND panic attacks in full remission" -247814004,Anxiety about blushing -247825008,Anxiety about behavior or performance -25501002,Social phobia -268714001,[X]Other specified anxiety disorders -268752000,(Anxiety state (& [states] or [panic attack])) or (pseudocyesis) -270472006,Maternal concern -277818007,Anxiety about losing control of bowels -277819004,Anxiety about wetting self -277820005,Anxiety about vomiting in public -277821009,Anxiety about having a fit -277822002,Anxiety about choking -277823007,Anxiety about swallowing -277824001,Anxiety about collapsing -277825000,Anxiety about shaking -277826004,Anxiety about sweating -277827008,Anxiety about dying -277828003,Anxiety about going crazy -277829006,Anxiety about losing emotional control -277831002,Anxiety about becoming fat -277833004,Anxiety about fainting -277834005,Anxiety about having a heart attack -277838008,Anxiety about appearing ridiculous -277839000,Anxiety about saying the wrong thing -279611005,Shell shock -279622009,Performance anxiety -286544004,Panic -286644009,Level of anxiety -30059008,"Panic disorder with agoraphobia, severe agoraphobic avoidance AND moderate panic attacks" -300894000,Parental anxiety -300895004,Anxiety attack -304896009,Castration anxiety complex -313182004,Chronic post-traumatic stress disorder -3158007,"Panic disorder with agoraphobia, agoraphobic avoidance in partial remission AND panic attacks in partial remission" -31781004,"Panic disorder with agoraphobia, agoraphobic avoidance in partial remission AND mild panic attacks" -318784009,"Posttraumatic stress disorder, delayed onset" -323331000000106,Anxiety about loss of memory -323341000000102,Anxiety about lethargy -323351000000104,Anxiety about mood -32388005,"Panic disorder with agoraphobia, agoraphobic avoidance in partial remission AND moderate panic attacks" -34116005,"Panic disorder with agoraphobia, agoraphobic avoidance in full remission AND severe panic attacks" -34938008,Alcohol-induced anxiety disorder -351861000000106,Stranger anxiety -35429005,Anticipatory anxiety -35607004,Panic disorder with agoraphobia -36646009,"Anticipatory anxiety, moderate" -371631005,Panic disorder -37868008,Anxiety disorder of adolescence -37872007,Avoidant disorder of childhood OR adolescence -38328002,"Panic disorder with agoraphobia, severe agoraphobic avoidance AND panic attacks in full remission" -386810004,Phobic disorder -395017009,Complaining of panic attack -39951001,Cannabis-induced anxiety disorder -402191000000101,[X] Anxiety disorders: [other specified] or [anxiety hysteria] -402951000000107,[X]Other phobic anxiety disorders -403593004,Phobic fear of skin cancer -41201000000107,Chronic anxiety -41211000000109,Recurrent anxiety -416621000000108,[X]Panic disorder [episodic paroxysmal anxiety] -417676004,On examination - panic attack -426174008,Chronic stress disorder -428687006,Nightmares associated with chronic post-traumatic stress disorder -431432003,Anxiety about loss of memory -43150009,Panic disorder without agoraphobia with severe panic attacks -443919007,Complex posttraumatic stress disorder -446175003,Acute posttraumatic stress disorder following military combat -446180007,Delayed posttraumatic stress disorder following military combat -450751000000102,"[X]Anxiety disorder, unspecified" -464911000000101,"[X]Phobic anxiety disorder, unspecified" -468761000000105,[X]Other anxiety disorders -469151000000104,[X]Other specified anxiety disorders -472131000000109,[X]Phobic anxiety disorders -47372000,Adjustment disorder with anxious mood -47505003,Posttraumatic stress disorder -478661000000105,[X]Other mixed anxiety disorders -48694002,Anxiety -4932002,"Panic disorder with agoraphobia, moderate agoraphobic avoidance AND mild panic attacks" -49564006,"Panic disorder with agoraphobia, mild agoraphobic avoidance AND moderate panic attacks" -50026000,Psychoactive substance-induced organic anxiety disorder -50983008,"Panic disorder with agoraphobia, mild agoraphobic avoidance AND panic attacks in partial remission" -51493001,Cocaine-induced anxiety disorder -52910006,Anxiety disorder due to a general medical condition -53467004,Anxiety disorder of childhood -53956006,Panic disorder without agoraphobia with panic attacks in partial remission -54587008,Simple phobia -5509004,Panic disorder with agoraphobia AND severe panic attacks -55967005,Phencyclidine-induced anxiety disorder -56576003,Panic disorder without agoraphobia -5874002,"Anticipatory anxiety, severe" -59923000,Panic disorder with agoraphobia AND panic attacks in full remission -61157009,Combat fatigue -61212007,"Panic disorder with agoraphobia, severe agoraphobic avoidance AND severe panic attacks" -61387006,Moderate anxiety -61569007,Agoraphobia without history of panic disorder -621271000000109,Anxiety state unspecified -62351001,Generalized social phobia -633361000000109,Anxiety state NOS -63701002,"Panic disorder with agoraphobia, mild agoraphobic avoidance AND mild panic attacks" -63909006,Panic disorder with agoraphobia AND panic attacks in partial remission -64060000,"Panic disorder with agoraphobia, moderate agoraphobic avoidance AND panic attacks in full remission" -64165008,Avoidant disorder of childhood -65064003,Panic disorder without agoraphobia with moderate panic attacks -65673007,Anxiety disorder -657791000000107,Disturbance of anxiety and fearfulness in childhood and adolescence NOS -67195008,Acute stress disorder -69479009,Anxiety hyperventilation -698693004,Adjustment disorder with anxious mood in remission -699241002,Chronic post-traumatic stress disorder following military combat -702535006,Anxiety about breathlessness -70655008,Caffeine-induced anxiety disorder -70691001,Agoraphobia -70997004,Mild anxiety -723913009,Olfactory reference disorder -724654009,Anxiety disorder caused by opioid -724693000,Obsessive compulsive disorder caused by cocaine -724708007,Anxiety disorder caused by methylenedioxymethamphetamine -724722007,Anxiety disorder caused by dissociative drug -724723002,Anxiety disorder caused by ketamine -724730008,Obsessive compulsive disorder caused by psychoactive substance -72861004,Panic disorder without agoraphobia with mild panic attacks -737341006,Anxiety disorder caused by synthetic cannabinoid -74010007,"Panic disorder with agoraphobia, severe agoraphobic avoidance AND panic attacks in partial remission" -762331007,Anxiety disorder caused by stimulant -762332000,Obsessive compulsive disorder caused by stimulant -762515000,Anxiety disorder caused by synthetic cathinone -762516004,Obsessive compulsive disorder caused by synthetic cathinone -76812003,"Panic disorder with agoraphobia, moderate agoraphobic avoidance AND panic attacks in partial remission" -76868007,"Panic disorder with agoraphobia, agoraphobic avoidance in full remission AND mild panic attacks" -782501005,Adjustment disorder with mixed anxiety and depressed mood -78541000000103,Chronic anxiety -78551000000100,Recurrent anxiety -788866004,Anxiety due to dementia -79823003,Panic -80583007,Severe anxiety (panic) -81350009,Free-floating anxiety -8185002,Panic disorder with agoraphobia AND moderate panic attacks -82339009,Amphetamine-induced anxiety disorder -82415003,Agoraphobia without history of panic disorder without limited symptom attacks -82494000,Panic disorder without agoraphobia with panic attacks in full remission -82738004,"Panic disorder with agoraphobia, moderate agoraphobic avoidance AND moderate panic attacks" -83253003,Shyness disorder of childhood -83631006,"Panic disorder with agoraphobia, moderate agoraphobic avoidance AND severe panic attacks" -85061001,"Separation anxiety disorder of childhood, early onset" -87798009,"Panic disorder with agoraphobia, agoraphobic avoidance in full remission AND moderate panic attacks" -887741000000102,Anxiety about breathlessness -887751000000104,Anxiety about breathlessness -89225005,Anxiety about blushing -89948007,Panic disorder with agoraphobia AND mild panic attacks -90790003,Avoidant disorder of adolescence -94641000119109,Anxiety in pregnancy diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-depression.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-depression.csv deleted file mode 100644 index 4b8c1897f..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-depression.csv +++ /dev/null @@ -1,82 +0,0 @@ -CTV3Code,Description -E0013,Presenile dementia with depression -E0021,Senile dementia with depression -E1120,"Single major depressive episode, unspecified" -E1121,"Single major depressive episode, mild" -E1122,"Single major depressive episode, moderate" -E1123,"Single major depressive episode, severe, without psychosis" -E1124,"Single major depressive episode, severe, with psychosis" -E1125,"Single major depressive episode, partial or unspec remission" -E1126,"Single major depressive episode, in full remission" -E112z,Single major depressive episode NOS -E1130,"Recurrent major depressive episodes, unspecified" -E1131,"Recurrent major depressive episodes, mild" -E1132,"Recurrent major depressive episodes, moderate" -E1133,"Recurrent major depressive episodes, severe, no psychosis" -E1134,"Recurrent major depressive episodes, severe, with psychosis" -E1135,"Recurrent major depressive episodes,partial/unspec remission" -E1137,Recurrent depression -E113z,Recurrent major depressive episode NOS -E1154,"Bipolar affect disord, now depressed, severe with psychosis" -E11y2,Atypical depressive disorder -E130.,Reactive depressive psychosis -E2112,Dysthymia -E291.,Prolonged depressive adjustment reaction -E2B..,Depressive disorder NEC -E2B1.,Chronic depression -Eu320,[X]Mild depressive episode -Eu321,[X]Moderate depressive episode -Eu322,"[X]Sev depress epis, no psych: (& single [agit][maj][vital])" -Eu323,[X]Sev depress epis + psych symp:(& singl epis [named vars]) -Eu32y,[X]Depression: [oth episode][atypic][single epis masked NOS] -Eu32z,[X](Depressn: [episode unsp][NOS (& react)][depress dis NOS] -Eu33.,[X]Recurrent depressive disorder (& [named variants]) -Eu330,"[X]Recurrent depressive disorder, current episode mild" -Eu331,"[X]Recurrent depressive disorder, current episode moderate" -Eu332,"[X]Depressn, no psych symp: [recurr: (named var)]/[endogen]" -Eu333,[X]Depress with psych sympt: [recurr: (named vars)][endogen] -Eu334,"[X]Recurrent depressive disorder, currently in remission" -Eu33y,[X]Other recurrent depressive disorders -Eu33z,[X] Depression recurrent: [unspecified] or [monopolar NOS] -Eu412,[X]Mixed anxiety and depress disord (& mild anxiet depressn) -Eu413,[X]Other mixed anxiety disorders -X00S8,Post-schizophrenic depression -X00SO,Depressive disorder -X00SQ,Agitated depression -X00SR,Endogenous depression -X00SS,Endogenous depression first episode -X00SU,Masked depression -X00Sb,Mixed anxiety and depressive disorder -X761L,Seasonal affective disorder -XE1Y0,Single major depressive episode -XE1Y1,Recurrent major depressive episodes -XE1YC,Reactive depression -XE1YD,Neurasthenia -XE1ZY,[X]Severe depressive episode without psychotic symptoms -XE1ZZ,[X]Severe depressive episode with psychotic symptoms -XE1Za,[X]Other depressive episodes -XE1Zb,"[X]Depressive episode, unspecified" -XE1Zc,[X]Recurrent depressive disorder -XE1Zd,[X]Recurr depress disorder cur epi severe without psyc sympt -XE1Ze,[X]Recurrent depress disorder cur epi severe with psyc symp -XE1Zf,"[X]Recurrent depressive disorder, unspecified" -XE2un,"Schizoaffective disorder, depressive type" -XM1GC,Endogenous depression - recurrent -XSEGJ,Major depressive disorder -XSGok,Mild major depression -XSGol,Moderate major depression -XSGom,Severe major depression without psychotic features -XSGon,Severe major depression with psychotic features -XSKr7,Cotard syndrome -Xa0wV,Recurrent brief depressive disorder -XaB9J,Depression NOS -XaCHo,"[X]Manic-depress psychosis,depressd,no psychotic symptoms" -XaCHr,[X]Single episode agitated depressn w'out psychotic symptoms -XaCHs,[X]Single episode major depression w'out psychotic symptoms -XaCIs,Mild depression -XaCIt,Moderate depression -XaCIu,Severe depression -XaX53,"Single major depress ep, severe with psych, psych in remissn" -XaX54,"Recurr major depress ep, severe with psych, psych in remissn" -XagU1,"Recurrent reactiv depressiv episodes, severe, with psychosis" -XagUK,Prolonged single episode of reactive depression diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-nsaids-oral.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-nsaids-oral.csv deleted file mode 100644 index a265fdf3f..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-nsaids-oral.csv +++ /dev/null @@ -1,1476 +0,0 @@ -code,term,dmd_id,type,bnf_code -100211000001103,Indometacin 50mg capsules,100211000001103,AMP,1001010K0AAABAB -10194911000001107,Solpadeine Migraine Ibuprofen & Codeine tablets,10194911000001107,AMP,1001010J0DGAAAY -10198211000001109,Meloxicam 7.5mg tablets,10198211000001109,AMP,1001010AAAAAAAA -10198411000001108,Meloxicam 15mg tablets,10198411000001108,AMP,1001010AAAAABAB -10239611000001109,Nurofen Maximum Strength Migraine Pain 684mg caplets,10239611000001109,AMP,1001010ADBCABAC -10245111000001102,Ibuprofen lysine 400mg tablets,10245111000001102,VMP,1001010ADAAACAC -10301011000001101,Nabumetone 500mg tablets,10301011000001101,AMP,1001010X0AAAAAA -10302411000001100,Meloxicam 15mg tablets,10302411000001100,AMP,1001010AAAAABAB -10302611000001102,Meloxicam 7.5mg tablets,10302611000001102,AMP,1001010AAAAAAAA -10304311000001100,Meloxicam 7.5mg tablets,10304311000001100,AMP,1001010AAAAAAAA -10304811000001109,Meloxicam 15mg tablets,10304811000001109,AMP,1001010AAAAABAB -103411000001107,Slo-Indo 75mg capsules,103411000001107,AMP,1001010K0BLAAAD -10360711000001106,Phenylbutazone 100mg tablets,10360711000001106,AMP,1001010Q0AAABAB -10361211000001105,Phenylbutazone 200mg tablets,10361211000001105,AMP,1001010Q0AAACAC -10378911000001102,Ibuprofen 200mg tablets,10378911000001102,AMP,1001010J0AAADAD -10379111000001107,Ibuprofen 400mg tablets,10379111000001107,AMP,1001010J0AAAEAE -10379411000001102,Ibuprofen 600mg tablets,10379411000001102,AMP,1001010J0AAAFAF -10381711000001100,Indometacin 25mg capsules,10381711000001100,AMP,1001010K0AAAAAA -10389911000001104,Mefenamic acid 250mg capsules,10389911000001104,AMP,1001010N0AAAAAA -10396611000001103,Naproxen 250mg tablets,10396611000001103,AMP,1001010P0AAADAD -10396811000001104,Naproxen 500mg tablets,10396811000001104,AMP,1001010P0AAAEAE -10401011000001106,Diclofenac sodium 25mg gastro-resistant tablets,10401011000001106,AMP,1001010C0AAADAD -10401211000001101,Diclofenac sodium 50mg gastro-resistant tablets,10401211000001101,AMP,1001010C0AAAEAE -10403211000001102,Piroxicam 10mg capsules,10403211000001102,AMP,1001010R0AAAAAA -10403611000001100,Piroxicam 20mg capsules,10403611000001100,AMP,1001010R0AAABAB -10423311000001100,Phenylbutazone 100mg tablets,10423311000001100,AMP,1001010Q0AAABAB -10423711000001101,Phenylbutazone 200mg tablets,10423711000001101,AMP,1001010Q0AAACAC -10440011000001105,Meloxicam 7.5mg tablets,10440011000001105,AMP,1001010AAAAAAAA -10440311000001108,Meloxicam 15mg tablets,10440311000001108,AMP,1001010AAAAABAB -10485111000001108,Voltarol Rapid 50mg tablets,10485111000001108,AMP, -10486111000001102,Voltarol 50mg dispersible tablets,10486111000001102,AMP, -10494611000001100,Brexidol 20mg tablets,10494611000001100,AMP, -10500411000001103,Celebrex 100mg capsules,10500411000001103,AMP, -10505811000001107,Indocid R 75mg capsules,10505811000001107,AMP, -10529711000001106,Diclofenac sodium 100mg modified-release capsules,10529711000001106,AMP, -10530111000001102,Diclofenac sodium 75mg modified-release capsules,10530111000001102,AMP, -106011000001106,Ketovail 200mg modified-release capsules,106011000001106,AMP,1001010L0BEABAJ -10612711000001100,Dicloflex 25mg gastro-resistant tablets,10612711000001100,AMP,1001010C0BQAIAD -10614811000001102,Meloxicam 7.5mg tablets,10614811000001102,AMP,1001010AAAAAAAA -10615011000001107,Meloxicam 15mg tablets,10615011000001107,AMP,1001010AAAAABAB -10686011000001100,Dicloflex 25mg gastro-resistant tablets,10686011000001100,AMP,1001010C0BQAJAD -10686211000001105,Dicloflex 50mg gastro-resistant tablets,10686211000001105,AMP,1001010C0BQAKAE -10686411000001109,Dicloflex 75mg SR tablets,10686411000001109,AMP,1001010C0BQALAL -10686711000001103,Dicloflex Retard 100mg tablets,10686711000001103,AMP,1001010C0BQAMAF -10701211000001107,Meloxicam 15mg tablets,10701211000001107,AMP,1001010AAAAABAB -10702311000001108,Meloxicam 7.5mg tablets,10702311000001108,AMP,1001010AAAAAAAA -107411000001100,Flamrase 50 EC tablets,107411000001100,AMP,1001010C0BKABAE -10752411000001106,Anadin LiquiFast 400mg capsules,10752411000001106,AMP,1001010J0CJACAU -10768811000001101,Nurofen Extra Strength 400mg capsules,10768811000001101,AMP,1001010J0B4ATAU -10774611000001104,Ibuprofen 400mg capsules,10774611000001104,VMP,1001010J0AAAUAU -10857811000001108,Oruvail 100 modified-release capsules,10857811000001108,AMP, -10925311000001102,Etopan XL 600mg tablets,10925311000001102,AMP,1001010E0BGAAAD -109311000001102,Ketoprofen 50mg capsules,109311000001102,AMP,1001010L0AAAAAA -10961711000001107,Aceclofenac 100mg tablets,10961711000001107,AMP,100101080AAAAAA -10961811000001104,Aceclofenac 100mg tablets,10961811000001104,AMP,100101080AAAAAA -10962111000001101,Meloxicam 7.5mg tablets,10962111000001101,AMP,1001010AAAAAAAA -10962511000001105,Meloxicam 15mg tablets,10962511000001105,AMP,1001010AAAAABAB -10985211000001100,Aceclofenac 100mg tablets,10985211000001100,AMP,100101080AAAAAA -11017511000001105,Indometacin 50mg capsules,11017511000001105,AMP,1001010K0AAABAB -11017711000001100,Indometacin 25mg capsules,11017711000001100,AMP,1001010K0AAAAAA -110611000001104,Ibuprofen 200mg tablets,110611000001104,AMP,1001010J0AAADAD -11141111000001109,Etodolac 600mg modified-release tablets,11141111000001109,AMP,1001010E0AAADAD -11177511000001107,Ibuprofen 400mg tablets,11177511000001107,AMP,1001010J0AAAEAE -11177711000001102,Ibuprofen 600mg tablets,11177711000001102,AMP,1001010J0AAAFAF -11256211000001106,Phenylbutazone 100mg tablets,11256211000001106,AMP,1001010Q0AAABAB -11256411000001105,Phenylbutazone 200mg tablets,11256411000001105,AMP,1001010Q0AAACAC -11270111000001101,Galprofen Migraine Relief 200mg capsules,11270111000001101,AMP,1001010J0CCAEAA -11405211000001107,Indometacin 25mg capsules,11405211000001107,AMP,1001010K0AAAAAA -11426211000001109,Meloxicam 7.5mg tablets,11426211000001109,AMP,1001010AAAAAAAA -11426411000001108,Meloxicam 15mg tablets,11426411000001108,AMP,1001010AAAAABAB -11426611000001106,Naproxen 250mg gastro-resistant tablets,11426611000001106,AMP,1001010P0AAAHAH -11426811000001105,Naproxen 500mg gastro-resistant tablets,11426811000001105,AMP,1001010P0AAAIAI -11484811000001108,Mefenamic acid 50mg/5ml oral suspension,11484811000001108,AMP,1001010N0AAABAB -11508411000001105,Mefenamic acid 50mg/5ml oral suspension,11508411000001105,AMP,1001010N0AAABAB -11538811000001103,Arcoxia 60mg tablets,11538811000001103,AMP, -11539111000001103,Arcoxia 90mg tablets,11539111000001103,AMP, -11579811000001108,Ibuprofen 200mg tablets,11579811000001108,AMP,1001010J0AAADAD -11615511000001106,Diclofenac 50mg/5ml oral suspension,11615511000001106,AMP,1001010C0AABLBL -11632711000001101,Diclofenac 12.5mg/5ml oral suspension,11632711000001101,AMP,1001010C0AABCBC -11633411000001103,Diclofenac 12.5mg/5ml oral solution,11633411000001103,AMP,1001010C0AABCBC -11634411000001100,Diclofenac 50mg/5ml oral solution,11634411000001100,AMP,1001010C0AAAVAV -11648711000001104,Diclofenac 50mg/5ml oral suspension,11648711000001104,VMP,1001010C0AABLBL -11650911000001102,Diclofenac 12.5mg/5ml oral solution,11650911000001102,VMP,1001010C0AABCBC -11651011000001105,Diclofenac 12.5mg/5ml oral suspension,11651011000001105,VMP,1001010C0AABCBC -11651311000001108,Diclofenac 50mg/5ml oral solution,11651311000001108,VMP,1001010C0AAAVAV -11753011000001104,Calprofen 100mg/5ml oral suspension 5ml sachets,11753011000001104,AMP,1001010J0DBACBM -11764811000001101,Arcoxia 120mg tablets,11764811000001101,AMP, -11775811000001106,Galpharm Maximum Strength Ibuprofen 400mg liquid capsules,11775811000001106,AMP,1001010J0DFABAU -11934111000001109,Nurofen Express 342mg caplets,11934111000001109,AMP,1001010ADBEAAAB -11934511000001100,Nurofen Express 200mg liquid capsules,11934511000001100,AMP,1001010J0B4AUAA -11934911000001107,Nurofen Express 400mg liquid capsules,11934911000001107,AMP,1001010J0B4AVAU -11935111000001108,Nurofen Express 684mg caplets,11935111000001108,AMP,1001010ADBEABAC -12257211000001109,Naproxen 100mg/5ml oral suspension,12257211000001109,AMP,1001010P0AAAYAY -12257611000001106,Naproxen 200mg/5ml oral suspension,12257611000001106,AMP,1001010P0AABCBC -12258411000001107,Naproxen 75mg/5ml oral suspension,12258411000001107,AMP,1001010P0AAAZAZ -122811000001109,Mefenamic acid 500mg tablets,122811000001109,AMP,1001010N0AAADAD -12301311000001108,Naproxen 100mg/5ml oral suspension,12301311000001108,VMP,1001010P0AAAYAY -12301411000001101,Naproxen 200mg/5ml oral suspension,12301411000001101,VMP,1001010P0AABCBC -12301611000001103,Naproxen 75mg/5ml oral suspension,12301611000001103,VMP,1001010P0AAAZAZ -123311000001105,Diclovol Retard 100mg tablets,123311000001105,AMP,1001010C0CCADAF -12560211000001105,Feldene Melt 20mg tablets,12560211000001105,AMP, -12597711000001104,Ibuprofen 200mg/5ml oral suspension,12597711000001104,AMP,1001010J0AABIBI -12599811000001104,Indometacin 10mg/5ml oral suspension,12599811000001104,AMP,1001010K0AAAXAX -12600111000001108,Indometacin 10mg/5ml oral solution,12600111000001108,AMP,1001010K0AAAXAX -12602811000001100,Indometacin 20mg/5ml oral suspension,12602811000001100,AMP,1001010K0AAARAR -12603111000001101,Indometacin 20mg/5ml oral solution,12603111000001101,AMP,1001010K0AAARAR -126111000001103,Feldene 20mg dispersible tablets,126111000001103,AMP,1001010R0BBADAE -12637311000001104,Ibuprofen 200mg/5ml oral suspension,12637311000001104,VMP,1001010J0AABIBI -12638011000001101,Indometacin 10mg/5ml oral solution,12638011000001101,VMP,1001010K0AAAXAX -12638111000001100,Indometacin 10mg/5ml oral suspension,12638111000001100,VMP,1001010K0AAAXAX -12638611000001108,Indometacin 20mg/5ml oral solution,12638611000001108,VMP,1001010K0AAARAR -12638711000001104,Indometacin 20mg/5ml oral suspension,12638711000001104,VMP,1001010K0AAARAR -129111000001106,Naproxen 250mg gastro-resistant tablets,129111000001106,AMP,1001010P0AAAHAH -13011000001106,Diclofenac sodium 50mg gastro-resistant tablets,13011000001106,AMP,1001010C0AAAEAE -13090211000001100,Novo-Diflunisal 250mg tablets,13090211000001100,AMP,1001010D0BCAAAA -13099411000001106,Arcoxia 60mg tablets,13099411000001106,AMP, -13099911000001103,Arcoxia 90mg tablets,13099911000001103,AMP, -13101011000001106,Anadin Joint Pain 200mg tablets,13101011000001106,AMP,1001010J0CJADAD -13122311000001105,Arcoxia 30mg tablets,13122311000001105,AMP,1001010AJBBADAD -13132911000001109,Etoricoxib 30mg tablets,13132911000001109,VMP,1001010AJAAADAD -13216611000001106,Voltarol Rapid 50mg tablets,13216611000001106,AMP, -13216811000001105,Voltarol 50mg dispersible tablets,13216811000001105,AMP, -13243911000001104,Piroxicam 10mg capsules,13243911000001104,AMP, -13244211000001106,Piroxicam 20mg capsules,13244211000001106,AMP, -13244511000001109,Piroxicam 10mg dispersible tablets,13244511000001109,AMP, -13244711000001104,Piroxicam 20mg dispersible tablets,13244711000001104,AMP, -13411000001102,Flamatak MR 75mg tablets,13411000001102,AMP,1001010C0BYABAL -13413211000001103,Meloxicam 7.5mg tablets,13413211000001103,AMP,1001010AAAAAAAA -13413411000001104,Meloxicam 15mg tablets,13413411000001104,AMP,1001010AAAAABAB -13435511000001107,Aceclofenac 100mg tablets,13435511000001107,AMP,100101080AAAAAA -13577411000001107,Fenbufen 450mg tablets,13577411000001107,AMP,1001010F0AAACAC -13578911000001103,Ibuprofen 200mg tablets,13578911000001103,AMP,1001010J0AAADAD -13579211000001102,Ibuprofen 400mg tablets,13579211000001102,AMP,1001010J0AAAEAE -13581311000001100,Mefenamic acid 500mg tablets,13581311000001100,AMP,1001010N0AAADAD -13581711000001101,Naproxen 250mg tablets,13581711000001101,AMP,1001010P0AAADAD -13583611000001109,Sulindac 100mg tablets,13583611000001109,AMP,1001010S0AAAAAA -13583811000001108,Sulindac 200mg tablets,13583811000001108,AMP,1001010S0AAABAB -13623411000001108,Ibuprofen 100mg/5ml oral suspension sugar free,13623411000001108,AMP,1001010J0AABHBH -13623911000001100,Ibuprofen 100mg/5ml oral suspension 5ml sachets sugar free,13623911000001100,AMP,1001010J0AABMBM -13630511000001104,Galprofen Long Lasting 300mg capsules,13630511000001104,AMP,1001010J0CCAFAB -13636911000001109,Galpharm Children's Ibuprofen 100mg/5ml oral suspension,13636911000001109,AMP,1001010J0DFACBH -13750411000001109,Lloydspharmacy Ibuprofen Long Lasting 200mg capsules,13750411000001109,AMP,1001010J0CMACBA -137711000001101,Diclofenac sodium 50mg gastro-resistant tablets,137711000001101,AMP,1001010C0AAAEAE -13829511000001101,Arcoxia 60mg tablets,13829511000001101,AMP, -13829711000001106,Arcoxia 90mg tablets,13829711000001106,AMP, -13829911000001108,Arcoxia 120mg tablets,13829911000001108,AMP, -13830511000001106,Arthrotec 50 gastro-resistant tablets,13830511000001106,AMP, -13830711000001101,Arthrotec 75 gastro-resistant tablets,13830711000001101,AMP, -13837411000001106,Brexidol 20mg tablets,13837411000001106,AMP, -13845911000001109,Naproxen 250mg tablets,13845911000001109,AMP,1001010P0AAADAD -13846111000001100,Naproxen 500mg tablets,13846111000001100,AMP,1001010P0AAAEAE -13847111000001102,Celebrex 100mg capsules,13847111000001102,AMP, -13847411000001107,Celebrex 200mg capsules,13847411000001107,AMP, -13860211000001101,Lloydspharmacy Ibuprofen 200mg liquid capsules,13860211000001101,AMP,1001010J0CMADAA -13860411000001102,Lloydspharmacy Maximum Strength Ibuprofen 400mg liquid capsules,13860411000001102,AMP,1001010J0CMAEAU -13865111000001104,Diclomax SR 75mg capsules,13865111000001104,AMP, -13930111000001109,Meloxicam 15mg tablets,13930111000001109,AMP, -13939911000001101,Seractil 300mg tablets,13939911000001101,AMP, -13942911000001105,Oruvail 200 modified-release capsules,13942911000001105,AMP, -13978411000001104,Voltarol 50mg dispersible tablets,13978411000001104,AMP, -13978811000001102,Voltarol Rapid 50mg tablets,13978811000001102,AMP, -14033611000001100,Voltarol Pain-eze 12.5mg tablets,14033611000001100,AMP,1001010AGBCAAAC -14062911000001108,Diclofenac potassium 12.5mg tablets,14062911000001108,VMP,1001010AGAAACAC -14162311000001104,Meloxicam 7.5mg tablets,14162311000001104,AMP,1001010AAAAAAAA -14162511000001105,Meloxicam 15mg tablets,14162511000001105,AMP,1001010AAAAABAB -14195411000001100,Arcoxia 60mg tablets,14195411000001100,AMP, -14195911000001108,Arcoxia 90mg tablets,14195911000001108,AMP, -14197111000001101,Arthrotec 50 gastro-resistant tablets,14197111000001101,AMP, -14197511000001105,Arthrotec 75 gastro-resistant tablets,14197511000001105,AMP, -14232711000001108,Feldene Melt 20mg tablets,14232711000001108,AMP, -14288711000001103,Brexidol 20mg tablets,14288711000001103,AMP, -14314011000001103,Diclofenac 50mg dispersible tablets sugar free,14314011000001103,AMP, -143611000001103,Naproxen 500mg gastro-resistant tablets,143611000001103,AMP,1001010P0AAAIAI -14492311000001100,Celebrex 100mg capsules,14492311000001100,AMP, -14492711000001101,Celebrex 200mg capsules,14492711000001101,AMP, -14493911000001106,Meloxicam 15mg tablets,14493911000001106,AMP, -14600611000001108,Nurofen Express 256mg tablets,14600611000001108,AMP,1001010APBBAAAA -14601611000001103,Nurofen Express 512mg tablets,14601611000001103,AMP,1001010APBBABAB -14606211000001108,Ibuprofen sodium dihydrate 200mg tablets,14606211000001108,VMP,1001010APAAAAAA -14606311000001100,Ibuprofen sodium dihydrate 400mg tablets,14606311000001100,VMP,1001010APAAABAB -146611000001109,Piroxicam 20mg capsules,146611000001109,AMP,1001010R0AAABAB -14671611000001106,Oruvail 200 modified-release capsules,14671611000001106,AMP, -14703311000001100,Ibuprofen 200mg capsules,14703311000001100,AMP,1001010J0AAAAAA -14713011000001101,Mobic 7.5mg tablets,14713011000001101,AMP, -14713411000001105,Mobic 15mg tablets,14713411000001105,AMP, -14713911000001102,Mobiflex 20mg tablets,14713911000001102,AMP, -14714811000001105,Piroxicam 10mg dispersible tablets,14714811000001105,AMP, -14716311000001107,Piroxicam 20mg dispersible tablets,14716311000001107,AMP, -14740311000001102,Nurofen Express 256mg caplets,14740311000001102,AMP,1001010APBBACAA -14759611000001104,Voltarol 50mg dispersible tablets,14759611000001104,AMP, -14760511000001104,Voltarol Rapid 50mg tablets,14760511000001104,AMP, -14761111000001102,Voltarol Retard 100mg tablets,14761111000001102,AMP, -14772411000001106,Ibuprofen 200mg tablets,14772411000001106,AMP,1001010J0AAADAD -14772911000001103,Ibuprofen 400mg tablets,14772911000001103,AMP,1001010J0AAAEAE -14773611000001104,Ibuprofen 600mg tablets,14773611000001104,AMP,1001010J0AAAFAF -14783711000001102,Indometacin 25mg capsules,14783711000001102,AMP,1001010K0AAAAAA -14784511000001105,Ibuprofen 200mg tablets,14784511000001105,AMP,1001010J0AAADAD -14945211000001109,Mefenamic acid 250mg capsules,14945211000001109,AMP,1001010N0AAAAAA -14945411000001108,Mefenamic acid 500mg tablets,14945411000001108,AMP,1001010N0AAADAD -150011000001103,Naproxen 250mg tablets,150011000001103,AMP,1001010P0AAADAD -15019211000001100,Ibuprofen 200mg capsules,15019211000001100,AMP,1001010J0AAAAAA -15055611000001106,Ibuprofen 400mg tablets,15055611000001106,AMP,1001010J0AAAEAE -15058911000001106,Aceclofenac 100mg tablets,15058911000001106,AMP,100101080AAAAAA -15100811000001100,Ibuprofen 100mg/5ml oral suspension sugar free,15100811000001100,AMP,1001010J0AABHBH -15101111000001101,Ibuprofen 600mg tablets,15101111000001101,AMP,1001010J0AAAFAF -15103511000001109,Ketoprofen 50mg capsules,15103511000001109,AMP,1001010L0AAAAAA -15109011000001103,Mefenamic acid 500mg tablets,15109011000001103,AMP,1001010N0AAADAD -15109311000001100,Meloxicam 15mg tablets,15109311000001100,AMP,1001010AAAAABAB -15109611000001105,Meloxicam 7.5mg tablets,15109611000001105,AMP,1001010AAAAAAAA -1511000001104,Ibuprofen 400mg tablets,1511000001104,AMP,1001010J0AAAEAE -15119311000001103,Aceclofenac 100mg tablets,15119311000001103,AMP, -15166111000001109,Aceclofenac 100mg tablets,15166111000001109,AMP,100101080AAAAAA -15229011000001105,Tenoxicam 20mg tablets,15229011000001105,AMP,100101040AAAAAA -15236411000001105,Naproxen 375mg gastro-resistant tablets,15236411000001105,AMP,1001010P0AAAJAJ -15238211000001107,Diclofenac 100mg/5ml oral solution,15238211000001107,AMP,1001010C0AABJBJ -15238511000001105,Diclofenac 100mg/5ml oral suspension,15238511000001105,AMP,1001010C0AABJBJ -15242611000001108,Diclofenac 100mg/5ml oral solution,15242611000001108,VMP,1001010C0AABJBJ -15242711000001104,Diclofenac 100mg/5ml oral suspension,15242711000001104,VMP,1001010C0AABJBJ -15417211000001101,Diclomax Retard 100mg capsules,15417211000001101,AMP, -15417411000001102,Diclomax SR 75mg capsules,15417411000001102,AMP, -15512111000001104,Feminax Ultra 250mg gastro-resistant tablets,15512111000001104,AMP,1001010P0BSAAAH -155411000001100,Oruvail 100 modified-release capsules,155411000001100,AMP,1001010L0BDAAAI -15711000001109,Ibuprofen 600mg tablets,15711000001109,AMP,1001010J0AAAFAF -15870411000001104,Diflunisal 250mg tablets,15870411000001104,AMP,1001010D0AAAAAA -15881511000001101,Indometacin 5mg/5ml oral suspension,15881511000001101,AMP,1001010K0AABABA -15881811000001103,Indometacin 5mg/5ml oral solution,15881811000001103,AMP,1001010K0AABABA -15914011000001100,Indometacin 5mg/5ml oral solution,15914011000001100,VMP,1001010K0AABABA -15914111000001104,Indometacin 5mg/5ml oral suspension,15914111000001104,VMP,1001010K0AABABA -16056611000001104,Ibuprofen 200mg tablets,16056611000001104,AMP,1001010J0AAADAD -16057111000001105,Ibuprofen 400mg tablets,16057111000001105,AMP,1001010J0AAAEAE -161211000001108,Naproxen 500mg tablets,161211000001108,AMP,1001010P0AAAEAE -16138511000001106,Arcoxia 60mg tablets,16138511000001106,AMP, -16138711000001101,Arcoxia 90mg tablets,16138711000001101,AMP, -16140611000001108,Axorid 200mg/20mg modified-release capsules,16140611000001108,AMP,1001010L0BQABAN -16142811000001108,Brexidol 20mg tablets,16142811000001108,AMP, -16147411000001109,Celebrex 200mg capsules,16147411000001109,AMP, -16148311000001101,Axorid 100mg/20mg modified-release capsules,16148311000001101,AMP,1001010L0BQAAAM -16174311000001107,Ketoprofen 100mg / Omeprazole 20mg modified-release capsules,16174311000001107,VMP,1001010L0AAAMAM -16174411000001100,Ketoprofen 200mg / Omeprazole 20mg modified-release capsules,16174411000001100,VMP,1001010L0AAANAN -162011000001106,Naprosyn 500mg tablets,162011000001106,AMP,1001010P0BCABAE -16207511000001104,Mobic 7.5mg tablets,16207511000001104,AMP, -16207711000001109,Mobic 15mg tablets,16207711000001109,AMP, -16212811000001102,Naproxen 250mg gastro-resistant tablets,16212811000001102,AMP,1001010P0AAAHAH -16213011000001104,Naproxen 500mg gastro-resistant tablets,16213011000001104,AMP,1001010P0AAAIAI -16218011000001106,Oruvail 200 modified-release capsules,16218011000001106,AMP, -16236911000001100,Diclofenac potassium 25mg tablets,16236911000001100,AMP,1001010AGAAAAAA -16237611000001108,Diclofenac potassium 50mg tablets,16237611000001108,AMP,1001010AGAAABAB -16257411000001109,Diclofenac 50mg dispersible tablets sugar free,16257411000001109,AMP, -16258311000001101,Diclomax Retard 100mg capsules,16258311000001101,AMP, -16258611000001106,Diclomax SR 75mg capsules,16258611000001106,AMP, -16265311000001101,Arcoxia 60mg tablets,16265311000001101,AMP, -16265711000001102,Arcoxia 90mg tablets,16265711000001102,AMP, -16266111000001109,Arcoxia 120mg tablets,16266111000001109,AMP, -16268811000001101,Arthrotec 75 gastro-resistant tablets,16268811000001101,AMP, -16331311000001104,Voltarol 50mg dispersible tablets,16331311000001104,AMP, -16347811000001100,Brexidol 20mg tablets,16347811000001100,AMP, -164411000001109,Mefenamic acid 250mg capsules,164411000001109,AMP,1001010N0AAAAAA -16446911000001100,Voltarol Rapid 50mg tablets,16446911000001100,AMP, -16458511000001106,Celebrex 100mg capsules,16458511000001106,AMP, -16458911000001104,Celebrex 200mg capsules,16458911000001104,AMP, -16528311000001106,Ibucalm 200mg tablets,16528311000001106,AMP,1001010J0DHAAAD -16528811000001102,Ibucalm 400mg tablets,16528811000001102,AMP,1001010J0DHABAE -16556511000001100,Mobic 15mg tablets,16556511000001100,AMP, -16576611000001103,Feldene Melt 20mg tablets,16576611000001103,AMP, -166111000001106,Arthrosin 500 tablets,166111000001106,AMP,1001010P0BDADAE -16650211000001108,Diclofenac potassium 50mg tablets,16650211000001108,AMP,1001010AGAAABAB -16681111000001104,Voltarol 50mg dispersible tablets,16681111000001104,AMP, -16681811000001106,Voltarol Rapid 50mg tablets,16681811000001106,AMP, -17014711000001105,Diclofenac potassium 25mg tablets,17014711000001105,AMP,1001010AGAAAAAA -17023611000001107,Ibuprofen 200mg tablets,17023611000001107,AMP,1001010J0AAADAD -17042011000001106,Hedex Ibuprofen 200mg tablets,17042011000001106,AMP,1001010J0CPABAD -17061411000001100,Lornoxicam 8mg tablets,17061411000001100,AMP,1001010AIAAACAC -17203811000001108,Meloxicam 7.5mg tablets,17203811000001108,AMP,1001010AAAAAAAA -17204011000001100,Meloxicam 15mg tablets,17204011000001100,AMP,1001010AAAAABAB -172111000001101,Indocid R 75mg capsules,172111000001101,AMP,1001010K0BDAFAD -17238111000001100,Mandafen 600mg tablets,17238111000001100,AMP,1001010J0CYACAF -172511000001105,Diclomax SR 75mg capsules,172511000001105,AMP,1001010C0BMABAW -17303111000001109,Galpharm Migraine Relief 200mg capsules,17303111000001109,AMP,1001010J0DFADAA -17303811000001102,Galpharm Period Pain Relief 250mg gastro-resistant tablets,17303811000001102,AMP,1001010P0BTAAAH -17307311000001104,Ibuprofen 200mg capsules,17307311000001104,AMP,1001010J0AAAAAA -17308011000001101,Nabumetone 500mg tablets,17308011000001101,AMP,1001010X0AAAAAA -17317011000001104,Paramed Ibuprofen 200mg liquid capsules,17317011000001104,AMP,1001010J0DFAEAA -17343411000001105,Oruvail 200 modified-release capsules,17343411000001105,AMP, -17359311000001102,Diclofenac 10mg dispersible tablets,17359311000001102,AMP,1001010C0AABBBB -17369211000001102,Diclofenac 10mg dispersible tablets,17369211000001102,VMP,1001010C0AABBBB -17412711000001105,Sulindac 100mg tablets,17412711000001105,AMP,1001010S0AAAAAA -17415011000001103,Sulindac 200mg tablets,17415011000001103,AMP,1001010S0AAABAB -17420711000001103,Preservex 100mg tablets,17420711000001103,AMP, -17473411000001100,Voltarol Rapid 50mg tablets,17473411000001100,AMP, -17476311000001103,Voltarol 50mg dispersible tablets,17476311000001103,AMP, -17476511000001109,Voltarol 75mg SR tablets,17476511000001109,AMP, -174811000001102,Nycopren 500mg gastro-resistant tablets,174811000001102,AMP,1001010P0BGABAI -17492311000001105,Arcoxia 30mg tablets,17492311000001105,AMP, -17493111000001102,Arthrotec 50 gastro-resistant tablets,17493111000001102,AMP, -175011000001107,Diclofenac sodium 25mg gastro-resistant tablets,175011000001107,AMP,1001010C0AAADAD -17516811000001106,Mobic 7.5mg tablets,17516811000001106,AMP, -17526411000001101,Voltarol Joint Pain 12.5mg tablets,17526411000001101,AMP,1001010AGBDAAAC -17534011000001103,Brufen 100mg/5ml syrup,17534011000001103,AMP, -17538811000001101,Feminax Express 342mg tablets,17538811000001101,AMP,1001010ADBFAAAB -17585111000001107,Mobic 15mg tablets,17585111000001107,AMP, -17585511000001103,Mobic 7.5mg tablets,17585511000001103,AMP, -17587411000001108,Arcoxia 60mg tablets,17587411000001108,AMP, -17587811000001105,Arcoxia 90mg tablets,17587811000001105,AMP, -17588311000001100,Arcoxia 120mg tablets,17588311000001100,AMP, -17591311000001106,Arthrotec 75 gastro-resistant tablets,17591311000001106,AMP, -17609911000001102,Naprosyn EC 250mg tablets,17609911000001102,AMP, -17610611000001100,Naprosyn EC 500mg tablets,17610611000001100,AMP, -17614211000001105,Brufen 600mg effervescent granules sachets,17614211000001105,AMP, -17615911000001102,Oruvail 200 modified-release capsules,17615911000001102,AMP, -17623711000001105,Celebrex 100mg capsules,17623711000001105,AMP, -17624111000001106,Celebrex 200mg capsules,17624111000001106,AMP, -17627211000001107,Enstar SR 75 tablets,17627211000001107,AMP,1001010C0CMAAAL -17627411000001106,Enstar XL 100 tablets,17627411000001106,AMP,1001010C0CMABAF -17664811000001107,Diclofenac potassium 50mg tablets,17664811000001107,AMP,1001010AGAAABAB -177111000001104,Ibuprofen 600mg tablets,177111000001104,AMP,1001010J0AAAFAF -17748811000001101,Aceclofenac 100mg tablets,17748811000001101,AMP,100101080AAAAAA -17811000001106,Brexidol 20mg tablets,17811000001106,AMP,1001010R0BHAAAK -17878511000001101,Piroxicam 10mg capsules,17878511000001101,AMP,1001010R0AAAAAA -17878711000001106,Piroxicam 20mg capsules,17878711000001106,AMP,1001010R0AAABAB -178811000001105,Naprosyn EC 250mg tablets,178811000001105,AMP,1001010P0BCAGAH -17891411000001103,Diclofenac sodium 25mg gastro-resistant tablets,17891411000001103,AMP,1001010C0AAADAD -17891611000001100,Diclofenac sodium 50mg gastro-resistant tablets,17891611000001100,AMP,1001010C0AAAEAE -17909911000001101,Flurbiprofen 50mg tablets,17909911000001101,AMP,1001010I0AAABAB -17910111000001107,Flurbiprofen 100mg tablets,17910111000001107,AMP,1001010I0AAACAC -17931411000001104,Ibuprofen 200mg tablets,17931411000001104,AMP,1001010J0AAADAD -17931611000001101,Ibuprofen 400mg tablets,17931611000001101,AMP,1001010J0AAAEAE -17931811000001102,Ibuprofen 600mg tablets,17931811000001102,AMP,1001010J0AAAFAF -17932611000001107,Indometacin 25mg capsules,17932611000001107,AMP,1001010K0AAAAAA -17932811000001106,Indometacin 50mg capsules,17932811000001106,AMP,1001010K0AAABAB -17939411000001103,Mefenamic acid 250mg capsules,17939411000001103,AMP,1001010N0AAAAAA -17939611000001100,Meloxicam 7.5mg tablets,17939611000001100,AMP,1001010AAAAAAAA -17939811000001101,Meloxicam 15mg tablets,17939811000001101,AMP,1001010AAAAABAB -17944911000001106,Nabumetone 500mg tablets,17944911000001106,AMP,1001010X0AAAAAA -17945511000001103,Naproxen 250mg gastro-resistant tablets,17945511000001103,AMP,1001010P0AAAHAH -17945711000001108,Naproxen 500mg gastro-resistant tablets,17945711000001108,AMP,1001010P0AAAIAI -17966411000001101,Nabumetone 500mg tablets,17966411000001101,AMP,1001010X0AAAAAA -17970611000001108,Mefenamic acid 500mg tablets,17970611000001108,AMP,1001010N0AAADAD -17982711000001105,Boots Rapid Ibuprofen lysine 342mg tablets,17982711000001105,AMP,1001010ADBGAAAB -180611000001102,Dysman 500 tablets,180611000001102,AMP,1001010N0BDADAD -18074911000001106,Ibuprofen 200mg tablets,18074911000001106,AMP,1001010J0AAADAD -18075111000001107,Ibuprofen 400mg tablets,18075111000001107,AMP,1001010J0AAAEAE -18078211000001108,Ibuprofen 600mg tablets,18078211000001108,AMP,1001010J0AAAFAF -18080011000001108,Nabumetone 500mg tablets,18080011000001108,AMP,1001010X0AAAAAA -18109611000001102,Ibuprofen 100mg/5ml oral suspension sugar free,18109611000001102,AMP,1001010J0AABHBH -18158711000001105,Voltarol Retard 100mg tablets,18158711000001105,AMP, -18191711000001105,Brufen 600mg effervescent granules sachets,18191711000001105,AMP, -18233711000001101,Vimovo 500mg/20mg modified-release tablets,18233711000001101,AMP,1001010P0BUAABB -18245811000001107,Naproxen 500mg / Esomeprazole 20mg modified-release tablets,18245811000001107,VMP,1001010P0AABBBB -182611000001101,Diclofenac sodium 25mg gastro-resistant tablets,182611000001101,AMP,1001010C0AAADAD -18261111000001105,Feldene Melt 20mg tablets,18261111000001105,AMP, -18292411000001107,Celebrex 100mg capsules,18292411000001107,AMP, -18299411000001101,Dicloflex 75mg SR tablets,18299411000001101,AMP,1001010C0BQANAL -18341211000001104,Diclofenac potassium 50mg tablets,18341211000001104,AMP,1001010AGAAABAB -18361711000001101,Diclofenac sodium 75mg modified-release tablets,18361711000001101,AMP, -18464611000001101,Naproxen 250mg tablets,18464611000001101,AMP,1001010P0AAADAD -18464911000001107,Naproxen 500mg tablets,18464911000001107,AMP,1001010P0AAAEAE -18545411000001104,Arcoxia 30mg tablets,18545411000001104,AMP, -18547411000001105,Brufen 600mg effervescent granules sachets,18547411000001105,AMP, -18547611000001108,Brufen 100mg/5ml syrup,18547611000001108,AMP, -18557911000001100,Ibuprofen 200mg caplets,18557911000001100,AMP,1001010J0AAADAD -18558411000001107,Ibuprofen 400mg caplets,18558411000001107,AMP,1001010J0AAAEAE -18559111000001109,Indometacin 25mg capsules,18559111000001109,AMP,1001010K0AAAAAA -185611000001105,Volraman 50mg gastro-resistant tablets,185611000001105,AMP,1001010C0BFABAE -18573911000001107,Diclofenac 50mg dispersible tablets sugar free,18573911000001107,AMP, -18574111000001106,Diclomax Retard 100mg capsules,18574111000001106,AMP, -18578511000001109,Feldene Melt 20mg tablets,18578511000001109,AMP, -18618611000001109,Diclofenac potassium 50mg tablets,18618611000001109,AMP,1001010AGAAABAB -18627211000001104,Naproxen 500mg tablets,18627211000001104,AMP,1001010P0AAAEAE -18627511000001101,Naproxen 250mg tablets,18627511000001101,AMP,1001010P0AAADAD -18637011000001107,First Resort Double Action Pain Relief 12.5mg tablets,18637011000001107,AMP,1001010AGBEABAC -18640211000001100,First Resort Period Pain Reliever 250mg gastro-resistant tablets,18640211000001100,AMP,1001010P0BVAAAH -186711000001109,Mefenamic acid 50mg/5ml oral suspension,186711000001109,AMP,1001010N0AAABAB -18680711000001104,Rhumalgan XL 100mg capsules,18680711000001104,AMP,1001010C0BDAHAN -18681011000001105,Rhumalgan SR 75mg capsules,18681011000001105,AMP,1001010C0BDAGAW -18711000001102,Celebrex 100mg capsules,18711000001102,AMP,1001010AHBBAAAA -18722511000001107,Diclofenac sodium 50mg gastro-resistant tablets,18722511000001107,AMP,1001010C0AAAEAE -18734211000001102,Piroxicam 10mg capsules,18734211000001102,AMP,1001010R0AAAAAA -18734411000001103,Piroxicam 20mg capsules,18734411000001103,AMP,1001010R0AAABAB -188111000001107,Mefenamic acid 250mg capsules,188111000001107,AMP,1001010N0AAAAAA -18822611000001108,Boots Ibuprofen 6 Months Plus 100mg/5ml oral suspension strawberry,18822611000001108,AMP,1001010J0CFABBH -18893911000001104,Oruvail 100 modified-release capsules,18893911000001104,AMP, -189011000001101,Mefenamic acid 500mg tablets,189011000001101,AMP,1001010N0AAADAD -190611000001103,Dicloflex Retard 100mg tablets,190611000001103,AMP,1001010C0BQACAF -19195411000001104,Naproxen 250mg tablets,19195411000001104,AMP,1001010P0AAADAD -19195611000001101,Naproxen 500mg tablets,19195611000001101,AMP,1001010P0AAAEAE -192711000001106,Feldene Melt 20mg tablets,192711000001106,AMP,1001010R0BBAGAG -19310911000001108,Mefenamic acid 250mg capsules,19310911000001108,AMP,1001010N0AAAAAA -193111000001104,Acoflam 50mg gastro-resistant tablets,193111000001104,AMP,1001010C0CDABAE -193511000001108,Diclotard 75mg modified-release tablets,193511000001108,AMP,1001010C0BZAAAL -19363611000001107,Voltarol Pain-eze Extra Strength 25mg tablets,19363611000001107,AMP,1001010AGBCABAA -19510011000001106,Anadin LiquiFast 200mg effervescent tablets,19510011000001106,AMP,1001010J0CJAEBP -19525111000001109,Ibuprofen 200mg effervescent tablets,19525111000001109,VMP,1001010J0AABPBP -195311000001101,Ibufem 200mg tablets,195311000001101,AMP,1001010J0CHAAAD -19690911000001104,Manorfen 200mg tablets,19690911000001104,AMP,1001010J0CTABAD -19700711000001109,Aceclofenac 100mg tablets,19700711000001109,AMP,100101080AAAAAA -19729911000001108,Brufen 100mg/5ml syrup,19729911000001108,AMP, -19865111000001101,Arcoxia 30mg tablets,19865111000001101,AMP, -19865311000001104,Arcoxia 120mg tablets,19865311000001104,AMP, -19866611000001104,Brufen 100mg/5ml syrup,19866611000001104,AMP, -19876411000001108,Voltarol Rapid 25mg tablets,19876411000001108,AMP, -19964211000001104,Feldene Melt 20mg tablets,19964211000001104,AMP, -19971111000001103,Motifene 75mg modified-release capsules,19971111000001103,AMP, -20030411000001108,Voltarol 75mg SR tablets,20030411000001108,AMP, -20132411000001101,Arcoxia 30mg tablets,20132411000001101,AMP, -201711000001104,Ibuprofen 200mg tablets,201711000001104,AMP,1001010J0AAADAD -20323711000001105,Diclofenac sodium 50mg gastro-resistant tablets,20323711000001105,AMP,1001010C0AAAEAE -20324411000001101,Indometacin 25mg capsules,20324411000001101,AMP,1001010K0AAAAAA -20324611000001103,Indometacin 50mg capsules,20324611000001103,AMP,1001010K0AAABAB -20325711000001106,Naproxen 250mg gastro-resistant tablets,20325711000001106,AMP,1001010P0AAAHAH -20325911000001108,Naproxen 500mg gastro-resistant tablets,20325911000001108,AMP,1001010P0AAAIAI -205911000001100,Valdic 75 Retard tablets,205911000001100,AMP,1001010C0CHABAL -207911000001105,Ibuprofen 400mg tablets,207911000001105,AMP,1001010J0AAAEAE -20914211000001103,Etodolac 600mg modified-release tablets,20914211000001103,AMP,1001010E0AAADAD -209211000001107,Fenbufen 450mg tablets,209211000001107,AMP,1001010F0AAACAC -21033511000001107,Ibuprofen 600mg tablets,21033511000001107,AMP,1001010J0AAAFAF -210711000001105,Fenactol SR 75mg tablets,210711000001105,AMP,1001010C0CJACAL -212611000001100,Nabumetone 500mg tablets,212611000001100,AMP,1001010X0AAAAAA -213111000001102,Mobiflex 20mg tablets,213111000001102,AMP,100101040BBAAAA -213511000001106,Lofensaid Retard 75 tablets,213511000001106,AMP,1001010C0BRACAL -21524011000001101,Nurofen Express Period Pain 200mg capsules,21524011000001101,AMP,1001010J0B4AWAA -21679511000001103,Nurofen Express Soluble 400mg oral powder sachets,21679511000001103,AMP,1001010ADBEACAD -21681311000001104,Ibuprofen lysine 400mg oral powder sachets,21681311000001104,VMP,1001010ADAAADAD -21748411000001104,Aceclofenac 100mg tablets,21748411000001104,AMP,100101080AAAAAA -21786211000001109,Tenoxicam 20mg tablets,21786211000001109,AMP,100101040AAAAAA -21791511000001102,Mefenamic acid 250mg capsules,21791511000001102,AMP,1001010N0AAAAAA -21791711000001107,Mefenamic acid 500mg tablets,21791711000001107,AMP,1001010N0AAADAD -21792011000001102,Meloxicam 7.5mg tablets,21792011000001102,AMP,1001010AAAAAAAA -21792211000001107,Meloxicam 15mg tablets,21792211000001107,AMP,1001010AAAAABAB -21816811000001106,Nabumetone 500mg tablets,21816811000001106,AMP,1001010X0AAAAAA -21817711000001100,Naproxen 250mg gastro-resistant tablets,21817711000001100,AMP,1001010P0AAAHAH -21817911000001103,Naproxen 500mg gastro-resistant tablets,21817911000001103,AMP,1001010P0AAAIAI -21818111000001100,Naproxen 250mg tablets,21818111000001100,AMP,1001010P0AAADAD -21818311000001103,Naproxen 500mg tablets,21818311000001103,AMP,1001010P0AAAEAE -21848811000001100,Piroxicam 10mg capsules,21848811000001100,AMP,1001010R0AAAAAA -21849011000001101,Piroxicam 20mg capsules,21849011000001101,AMP,1001010R0AAABAB -21867711000001104,Diclofenac sodium 100mg modified-release tablets,21867711000001104,AMP, -21943011000001106,Diclofenac sodium 25mg gastro-resistant tablets,21943011000001106,AMP,1001010C0AAADAD -21943211000001101,Diclofenac sodium 50mg gastro-resistant tablets,21943211000001101,AMP,1001010C0AAAEAE -21977911000001102,Etodolac 600mg modified-release tablets,21977911000001102,AMP,1001010E0AAADAD -22014911000001109,Flurbiprofen 100mg tablets,22014911000001109,AMP,1001010I0AAACAC -22046511000001104,Ibuprofen 200mg tablets,22046511000001104,AMP,1001010J0AAADAD -22046911000001106,Ibuprofen 400mg tablets,22046911000001106,AMP,1001010J0AAAEAE -220511000001107,Naproxen 500mg tablets,220511000001107,AMP,1001010P0AAAEAE -22057111000001108,Ibuprofen 600mg tablets,22057111000001108,AMP,1001010J0AAAFAF -22061111000001107,Indometacin 25mg capsules,22061111000001107,AMP,1001010K0AAAAAA -22061611000001104,Indometacin 50mg capsules,22061611000001104,AMP,1001010K0AAABAB -221211000001103,Dysman 250 capsules,221211000001103,AMP,1001010N0BDACAA -22345911000001103,Diclofenac sodium 100mg modified-release tablets,22345911000001103,AMP, -22348511000001102,Ibuprofen 400mg capsules,22348511000001102,AMP, -22408911000001109,Diclofenac sodium 100mg modified-release tablets,22408911000001109,AMP, -22421311000001109,Rhumalgan SR 75mg capsules,22421311000001109,AMP, -22421611000001104,Rhumalgan XL 100mg capsules,22421611000001104,AMP,1001010C0BDAJAN -22468711000001106,Rhumalgan SR 75mg capsules,22468711000001106,AMP,1001010C0BDAIAW -224911000001105,Diclozip 50mg gastro-resistant tablets,224911000001105,AMP,1001010C0BIABAE -225611000001103,Dicloflex 75mg SR tablets,225611000001103,AMP,1001010C0BQADAL -22591711000001107,Misofen 50mg/200microgram gastro-resistant tablets,22591711000001107,AMP,1001010C0CNAAAM -22592011000001102,Misofen 75mg/200microgram gastro-resistant tablets,22592011000001102,AMP,1001010C0CNABAX -22640411000001107,Meloxicam 15mg orodispersible tablets sugar free,22640411000001107,AMP,1001010AAAAAJAJ -22640911000001104,Meloxicam 7.5mg orodispersible tablets sugar free,22640911000001104,AMP,1001010AAAAAKAK -22648611000001108,Meloxicam 15mg orodispersible tablets sugar free,22648611000001108,VMP,1001010AAAAAJAJ -22648711000001104,Meloxicam 7.5mg orodispersible tablets sugar free,22648711000001104,VMP,1001010AAAAAKAK -22679511000001104,Diclofenac sodium 50mg gastro-resistant / Misoprostol 200microgram tablets,22679511000001104,AMP,1001010C0AAAMAM -22679711000001109,Diclofenac sodium 75mg gastro-resistant / Misoprostol 200microgram tablets,22679711000001109,AMP, -226811000001107,Ponstan 250mg capsules,226811000001107,AMP,1001010N0BBAAAA -22695711000001100,Diclofenac sodium 75mg modified-release tablets,22695711000001100,AMP, -22695911000001103,Diclofenac sodium 100mg modified-release tablets,22695911000001103,AMP, -230111000001100,Brufen 600mg tablets,230111000001100,AMP,1001010J0BCACAF -23279311000001100,Ibuprofen 200mg capsules,23279311000001100,AMP,1001010J0AAAAAA -23429211000001108,Diclofenac sodium 100mg modified-release tablets,23429211000001108,AMP, -235611000001100,Feldene 10mg capsules,235611000001100,AMP,1001010R0BBAAAA -23591411000001107,Diclofenac sodium 75mg modified-release capsules,23591411000001107,AMP, -23591611000001105,Diclofenac sodium 100mg modified-release tablets,23591611000001105,AMP, -23597011000001108,Indometacin 75mg modified-release capsules,23597011000001108,AMP, -23598311000001107,Ketoprofen 200mg modified-release capsules,23598311000001107,AMP, -23649611000001109,"Nurofen for Children Cold, Pain and Fever Strawberry Flavour 100mg/5ml oral suspension",23649611000001109,AMP,1001010J0B4AXBH -23649811000001108,"Nurofen for Children Cold, Pain and Fever Orange Flavour 100mg/5ml oral suspension",23649811000001108,AMP,1001010J0B4AYBH -23654211000001105,Diclofenac sodium 75mg modified-release capsules,23654211000001105,AMP, -23654611000001107,Diclofenac sodium 75mg modified-release tablets,23654611000001107,AMP, -23654911000001101,Diclofenac sodium 100mg modified-release tablets,23654911000001101,AMP, -236611000001105,Arthrosin EC 500 tablets,236611000001105,AMP,1001010P0BDAEAI -23679411000001105,Meloxicam 7.5mg orodispersible tablets sugar free,23679411000001105,AMP,1001010AAAAAKAK -23679611000001108,Meloxicam 15mg orodispersible tablets sugar free,23679611000001108,AMP,1001010AAAAAJAJ -23811000001106,Ibuprofen 100mg/5ml oral suspension sugar free,23811000001106,AMP,1001010J0AABHBH -23862211000001104,Diclofenac sodium 25mg gastro-resistant tablets,23862211000001104,AMP,1001010C0AAADAD -23915011000001106,Etodolac 600mg modified-release tablets,23915011000001106,AMP,1001010E0AAADAD -23937411000001104,Diclofenac sodium 100mg modified-release tablets,23937411000001104,AMP, -23948511000001100,Indometacin 75mg modified-release capsules,23948511000001100,AMP, -23968811000001108,Diclofenac sodium 75mg modified-release capsules,23968811000001108,AMP, -240011000001102,Ketpron XL 200mg capsules,240011000001102,AMP,1001010L0BPABAJ -24026011000001101,Diclofenac sodium 100mg modified-release tablets,24026011000001101,AMP, -240311000001104,Relcofen 400mg tablets,240311000001104,AMP,1001010J0BYABAE -24157511000001102,Diclofenac sodium 100mg modified-release tablets,24157511000001102,AMP, -24174611000001106,Ibuprofen 100mg/5ml oral suspension sugar free,24174611000001106,AMP,1001010J0AABHBH -24176011000001109,Indometacin 25mg capsules,24176011000001109,AMP,1001010K0AAAAAA -24176411000001100,Indometacin 50mg capsules,24176411000001100,AMP,1001010K0AAABAB -24378611000001109,Mefenamic acid 250mg capsules,24378611000001109,AMP,1001010N0AAAAAA -24378911000001103,Meloxicam 15mg tablets,24378911000001103,AMP,1001010AAAAABAB -24379111000001108,Meloxicam 7.5mg tablets,24379111000001108,AMP,1001010AAAAAAAA -24411000001107,Indometacin 25mg capsules,24411000001107,AMP,1001010K0AAAAAA -24511000001106,Pacifene 200mg tablets,24511000001106,AMP,1001010J0BUAAAD -24522011000001103,Diclofenac sodium 100mg modified-release tablets,24522011000001103,AMP, -24550711000001101,Diclofenac sodium 75mg modified-release capsules,24550711000001101,AMP, -24550911000001104,Diclofenac sodium 100mg modified-release capsules,24550911000001104,AMP, -24584811000001108,Numark Max Strength Pharmacy Ibuprofen 400mg tablets,24584811000001108,AMP,1001010J0CDADAE -24595811000001105,Diclofenac sodium 100mg modified-release capsules,24595811000001105,AMP, -24596011000001108,Diclofenac sodium 100mg modified-release tablets,24596011000001108,AMP, -24596211000001103,Diclofenac sodium 75mg modified-release capsules,24596211000001103,AMP, -24596411000001104,Diclofenac sodium 75mg modified-release tablets,24596411000001104,AMP, -24616411000001108,Flurbiprofen 50mg tablets,24616411000001108,AMP,1001010I0AAABAB -24616611000001106,Flurbiprofen 100mg tablets,24616611000001106,AMP,1001010I0AAACAC -24625711000001103,Ibuprofen 200mg capsules,24625711000001103,AMP,1001010J0AAAAAA -252911000001102,Diclofenac sodium 50mg gastro-resistant tablets,252911000001102,AMP,1001010C0AAAEAE -25311000001101,Ibuprofen 600mg tablets,25311000001101,AMP,1001010J0AAAFAF -253811000001104,Fenactol 25mg gastro-resistant tablets,253811000001104,AMP,1001010C0CJAAAD -25599211000001102,Diclofenac sodium 100mg modified-release tablets,25599211000001102,AMP, -256211000001107,Diclofenac sodium 50mg gastro-resistant tablets,256211000001107,AMP,1001010C0AAAEAE -25702211000001108,Diclofenac sodium 100mg modified-release tablets,25702211000001108,AMP, -258411000001107,Galprofen Cold and Flu 200mg tablets,258411000001107,AMP,1001010J0CCABAD -258511000001106,Indocid 25mg capsules,258511000001106,AMP,1001010K0BDAAAA -259811000001102,Mefenamic acid 50mg/5ml oral suspension,259811000001102,AMP,1001010N0AAABAB -26311000001106,Ibuprofen 100mg/5ml oral suspension sugar free,26311000001106,AMP,1001010J0AABHBH -263211000001109,Brufen 400mg tablets,263211000001109,AMP,1001010J0BCABAE -267611000001103,Piroxicam 20mg capsules,267611000001103,AMP,1001010R0AAABAB -26779711000001102,Indometacin 25mg capsules,26779711000001102,AMP,1001010K0AAAAAA -26780111000001103,Indometacin 50mg capsules,26780111000001103,AMP,1001010K0AAABAB -26853411000001107,Mefenamic acid 50mg/5ml oral suspension,26853411000001107,AMP,1001010N0AAABAB -268911000001105,Diclofenac sodium 25mg gastro-resistant tablets,268911000001105,AMP,1001010C0AAADAD -269111000001100,Mefenamic acid 250mg capsules,269111000001100,AMP,1001010N0AAAAAA -27170011000001102,Ibuprofen 200mg caplets,27170011000001102,AMP,1001010J0AAADAD -271711000001109,Diclofenac sodium 25mg gastro-resistant tablets,271711000001109,AMP,1001010C0AAADAD -273411000001104,Ibuprofen 400mg tablets film coated,273411000001104,AMP,1001010J0AAAEAE -27511000001103,Froben SR 200mg capsules,27511000001103,AMP,1001010I0BBADAD -276611000001107,Piroxicam 20mg dispersible tablets,276611000001107,AMP,1001010R0AAAEAE -27711000001108,Naproxen 500mg gastro-resistant tablets,27711000001108,AMP,1001010P0AAAIAI -27840711000001109,Aceclofenac 100mg tablets,27840711000001109,AMP,100101080AAAAAA -279011000001106,Naproxen 500mg gastro-resistant tablets,279011000001106,AMP,1001010P0AAAIAI -28000911000001105,Celecoxib 200mg capsules,28000911000001105,AMP,1001010AHAAABAB -28001111000001101,Celecoxib 100mg capsules,28001111000001101,AMP,1001010AHAAAAAA -28011711000001103,Celecoxib 100mg capsules,28011711000001103,AMP,1001010AHAAAAAA -28011911000001101,Celecoxib 200mg capsules,28011911000001101,AMP,1001010AHAAABAB -28039011000001105,Celecoxib 100mg capsules,28039011000001105,AMP,1001010AHAAAAAA -28039211000001100,Celecoxib 200mg capsules,28039211000001100,AMP,1001010AHAAABAB -281911000001103,Ibuprofen 600mg tablets,281911000001103,AMP,1001010J0AAAFAF -282011000001105,Nabumetone 500mg tablets,282011000001105,AMP,1001010X0AAAAAA -282411000001101,Diclovol 75mg SR tablets,282411000001101,AMP,1001010C0CCACAL -28292711000001100,Celecoxib 100mg capsules,28292711000001100,AMP,1001010AHAAAAAA -28292911000001103,Celecoxib 200mg capsules,28292911000001103,AMP,1001010AHAAABAB -28378211000001108,Celecoxib 100mg capsules,28378211000001108,AMP,1001010AHAAAAAA -28378411000001107,Celecoxib 200mg capsules,28378411000001107,AMP,1001010AHAAABAB -28378611000001105,Celecoxib 100mg capsules,28378611000001105,AMP,1001010AHAAAAAA -28378811000001109,Celecoxib 200mg capsules,28378811000001109,AMP,1001010AHAAABAB -2841311000001100,Vioxx 25mg tablets,2841311000001100,AMP,1001010AFBBADAD -28414411000001104,Diclofenac 40mg/5ml oral solution,28414411000001104,AMP,1001010C0AABKBK -28414711000001105,Diclofenac 40mg/5ml oral suspension,28414711000001105,AMP,1001010C0AABKBK -2841511000001106,VioxxAcute 25mg tablets,2841511000001106,AMP,1001010AFBBAEAD -28422211000001104,Diclofenac 40mg/5ml oral solution,28422211000001104,VMP,1001010C0AABKBK -28422311000001107,Diclofenac 40mg/5ml oral suspension,28422311000001107,VMP,1001010C0AABKBK -286411000001100,Piroxicam 10mg capsules,286411000001100,AMP,1001010R0AAAAAA -28777611000001107,Naproxen 500mg / Esomeprazole 20mg modified-release tablets,28777611000001107,AMP, -28919111000001108,Indometacin 50mg capsules,28919111000001108,AMP,1001010K0AAABAB -2892711000001101,Keral 25mg tablets,2892711000001101,AMP,1001010AEBBAAAA -28939511000001106,Anadin Period Pain Relief 200mg capsules,28939511000001106,AMP,1001010J0CJAFAA -28984611000001101,Ibuprofen 200mg tablets,28984611000001101,AMP,1001010J0AAADAD -28984811000001102,Ibuprofen 400mg tablets,28984811000001102,AMP,1001010J0AAAEAE -28985211000001102,Naproxen 250mg tablets,28985211000001102,AMP,1001010P0AAADAD -28985411000001103,Naproxen 500mg tablets,28985411000001103,AMP,1001010P0AAAEAE -28986111000001102,Piroxicam 10mg capsules,28986111000001102,AMP,1001010R0AAAAAA -28986311000001100,Piroxicam 20mg capsules,28986311000001100,AMP,1001010R0AAABAB -2911000001100,Voltarol 25mg gastro-resistant tablets,2911000001100,AMP,1001010C0BBAAAD -294311000001102,Ketocid 200 modified-release capsules,294311000001102,AMP,1001010L0BIAAAJ -29666011000001102,Care Ibuprofen for Children 100mg/5ml oral suspension,29666011000001102,AMP,1001010J0CUABBH -29688611000001108,Masidemen 50mg/200microgram gastro-resistant tablets,29688611000001108,AMP,1001010C0CPAAAM -29688811000001107,Masidemen 75mg/200microgram gastro-resistant tablets,29688811000001107,AMP,1001010C0CPABAX -297211000001103,Naproxen 500mg gastro-resistant tablets,297211000001103,AMP,1001010P0AAAIAI -29742611000001106,Tiloket CR 200mg capsules,29742611000001106,AMP,1001010L0BNADAJ -29784111000001104,Celecoxib 200mg capsules,29784111000001104,AMP,1001010AHAAABAB -29784511000001108,Celecoxib 100mg capsules,29784511000001108,AMP,1001010AHAAAAAA -29875911000001106,Ibuprofen 200mg tablets,29875911000001106,AMP,1001010J0AAADAD -29877911000001101,Indometacin 25mg capsules,29877911000001101,AMP,1001010K0AAAAAA -29878111000001103,Indometacin 50mg capsules,29878111000001103,AMP,1001010K0AAABAB -29904711000001109,Mefenamic acid 250mg capsules,29904711000001109,AMP,1001010N0AAAAAA -29928311000001106,Naproxen 250mg gastro-resistant tablets,29928311000001106,AMP,1001010P0AAAHAH -29928511000001100,Naproxen 250mg tablets,29928511000001100,AMP,1001010P0AAADAD -29928711000001105,Naproxen 500mg gastro-resistant tablets,29928711000001105,AMP,1001010P0AAAIAI -29928911000001107,Naproxen 500mg tablets,29928911000001107,AMP,1001010P0AAAEAE -29978211000001104,Arthrotec 50 gastro-resistant tablets,29978211000001104,AMP, -29978411000001100,Arthrotec 75 gastro-resistant tablets,29978411000001100,AMP, -29980411000001108,Brufen 600mg effervescent granules sachets,29980411000001108,AMP, -29980611000001106,Brufen Retard 800mg tablets,29980611000001106,AMP, -30011211000001106,Celecoxib 100mg capsules,30011211000001106,AMP,1001010AHAAAAAA -30011411000001105,Celecoxib 200mg capsules,30011411000001105,AMP,1001010AHAAABAB -30048011000001102,Diclofenac potassium 50mg tablets,30048011000001102,AMP,1001010AGAAABAB -30048411000001106,Diclofenac sodium 75mg modified-release tablets,30048411000001106,AMP, -30049011000001107,Diclofenac sodium 50mg gastro-resistant tablets,30049011000001107,AMP,1001010C0AAAEAE -30049311000001105,Diclofenac sodium 100mg modified-release capsules,30049311000001105,AMP, -30054411000001100,Etodolac 600mg modified-release tablets,30054411000001100,AMP,1001010E0AAADAD -30062011000001105,Nabumetone 500mg tablets,30062011000001105,AMP,1001010X0AAAAAA -30062411000001101,Naproxen 250mg gastro-resistant tablets,30062411000001101,AMP,1001010P0AAAHAH -30062611000001103,Naproxen 375mg gastro-resistant tablets,30062611000001103,AMP,1001010P0AAAJAJ -30062811000001104,Naproxen 500mg gastro-resistant tablets,30062811000001104,AMP,1001010P0AAAIAI -30063011000001101,Naproxen 500mg tablets,30063011000001101,AMP,1001010P0AAAEAE -30112511000001107,Piroxicam 10mg capsules,30112511000001107,AMP,1001010R0AAAAAA -30112711000001102,Piroxicam 20mg capsules,30112711000001102,AMP,1001010R0AAABAB -30136411000001104,Celecoxib 100mg capsules,30136411000001104,AMP,1001010AHAAAAAA -30136611000001101,Celecoxib 200mg capsules,30136611000001101,AMP,1001010AHAAABAB -30212411000001106,Ibuprofen 200mg tablets,30212411000001106,AMP,1001010J0AAADAD -30213011000001106,Ibuprofen 400mg tablets,30213011000001106,AMP,1001010J0AAAEAE -3021311000001105,Manorfen 400mg tablets,3021311000001105,AMP,1001010J0CTAAAE -30216811000001109,Ketoprofen 200mg modified-release capsules,30216811000001109,AMP, -3023411000001104,Relifex 500mg tablets,3023411000001104,AMP,1001010X0BBAAAA -302411000001106,Diclofenac sodium 50mg gastro-resistant tablets,302411000001106,AMP,1001010C0AAAEAE -30269111000001109,Brufen 100mg/5ml syrup,30269111000001109,AMP, -30269311000001106,Brufen 600mg effervescent granules sachets,30269311000001106,AMP, -30804111000001103,Ibuprofen 100mg/5ml oral suspension sugar free,30804111000001103,AMP,1001010J0AABHBH -30810311000001107,Etodolac 600mg modified-release tablets,30810311000001107,AMP,1001010E0AAADAD -30825611000001104,Diclofenac sodium 50mg gastro-resistant tablets,30825611000001104,AMP,1001010C0AAAEAE -30827011000001104,Meloxicam 7.5mg tablets,30827011000001104,AMP,1001010AAAAAAAA -30827211000001109,Meloxicam 15mg tablets,30827211000001109,AMP,1001010AAAAABAB -308411000001108,Surgam 300mg tablets,308411000001108,AMP,1001010T0BBABAC -30849711000001108,Naproxen 250mg tablets,30849711000001108,AMP,1001010P0AAADAD -30849911000001105,Naproxen 500mg tablets,30849911000001105,AMP,1001010P0AAAEAE -30850111000001100,Naproxen 500mg gastro-resistant tablets,30850111000001100,AMP,1001010P0AAAIAI -30857611000001107,Piroxicam 10mg capsules,30857611000001107,AMP,1001010R0AAAAAA -30857811000001106,Piroxicam 20mg capsules,30857811000001106,AMP,1001010R0AAABAB -30934911000001101,Ketoprofen 200mg modified-release capsules,30934911000001101,AMP, -31003411000001100,Boots Ibuprofen 3 Months Plus 100mg/5ml oral suspension strawberry,31003411000001100,AMP,1001010J0CFACBH -31004511000001103,Boots Ibuprofen and Codeine 200mg/12.8mg tablets,31004511000001103,AMP,1001010J0CFADAY -31005011000001105,Boots Ibuprofen Long Lasting 200mg capsules,31005011000001105,AMP,1001010J0CFAEBA -310111000001102,Piroxicam 10mg capsules,310111000001102,AMP,1001010R0AAAAAA -31017911000001101,Boots Period Pain Relief 250mg gastro-resistant tablets,31017911000001101,AMP,1001010P0BWAAAH -31279811000001102,Stirlescent 250mg effervescent tablets,31279811000001102,AMP,1001010P0BXAABD -31306711000001103,Naproxen 250mg effervescent tablets sugar free,31306711000001103,VMP,1001010P0AABDBD -31393111000001107,Nurofen Joint & Back Pain Relief 256mg tablets,31393111000001107,AMP,1001010APBCAAAA -31394111000001109,Nurofen Max Strength Joint & Back Pain Relief 512mg tablets,31394111000001109,AMP,1001010APBCABAB -31394411000001104,Nurofen Joint & Back Pain Relief 256mg caplets,31394411000001104,AMP,1001010APBCACAA -31394911000001107,Nurofen Joint & Back Pain Relief 200mg capsules,31394911000001107,AMP,1001010J0B4AZAA -31396411000001107,Nurofen Sinus Pressure & Headache Relief 200mg/30mg tablets,31396411000001107,AMP,1001010J0B4BABJ -3158711000001107,Nurofen Long Lasting 300mg capsules,3158711000001107,AMP,1001010J0B4AGAB -3159211000001105,Fenbid 300mg Spansules,3159211000001105,AMP,1001010J0BEAAAB -3159911000001101,Arthrotec 50 gastro-resistant tablets,3159911000001101,AMP,1001010C0BLAAAM -3161411000001104,Arthrotec 75 gastro-resistant tablets,3161411000001104,AMP,1001010C0BLABAX -317911000001103,Piroxicam 10mg capsules,317911000001103,AMP,1001010R0AAAAAA -318711000001104,Acoflam 25mg gastro-resistant tablets,318711000001104,AMP,1001010C0CDAAAD -31993111000001104,Ibuprofen 200mg capsules,31993111000001104,AMP,1001010J0AAAAAA -31993611000001107,Ibuprofen 400mg capsules,31993611000001107,AMP, -32011000001107,Ibuprofen 600mg tablets,32011000001107,AMP,1001010J0AAAFAF -322299000,Naproxen sodium 275mg tablets,322299000,VMP,100101070AAAAAA -3224611000001107,Naproxen 500mg tablets,3224611000001107,AMP,1001010P0AAAEAE -32360011000001100,Ibuprofen 200mg orodispersible tablets sugar free,32360011000001100,AMP, -323611000001109,Flurbiprofen 50mg tablets,323611000001109,AMP,1001010I0AAABAB -32390811000001108,Nurofen for Children 100mg chewable capsules,32390811000001108,AMP,1001010J0B4BBBQ -3239211000001107,Brufen 600mg effervescent granules sachets,3239211000001107,AMP,1001010J0BCAEAN -32392411000001107,Ibuprofen 100mg chewable capsules,32392411000001107,VMP,1001010J0AABQBQ -32397411000001105,Celecoxib 100mg capsules,32397411000001105,AMP,1001010AHAAAAAA -32410211000001100,Ibuprofen 200mg orodispersible tablets sugar free,32410211000001100,AMP, -32465611000001107,Ibuprofen 200mg capsules,32465611000001107,AMP,1001010J0AAAAAA -324811000001106,Rhumalgan CR 100 tablets,324811000001106,AMP,1001010C0BDADAF -32496211000001102,Celecoxib 100mg capsules,32496211000001102,AMP,1001010AHAAAAAA -32496411000001103,Celecoxib 200mg capsules,32496411000001103,AMP,1001010AHAAABAB -326211000001100,Diclofenac sodium 25mg gastro-resistant tablets,326211000001100,AMP,1001010C0AAADAD -32636911000001104,Naproxen 25mg/ml oral suspension sugar free,32636911000001104,AMP,1001010P0AABEBE -32638811000001105,Naproxen 125mg/5ml oral suspension sugar free,32638811000001105,VMP,1001010P0AABEBE -327311000001106,Ibuprofen 200mg tablets,327311000001106,AMP,1001010J0AAADAD -32775911000001100,Naproxen 125mg/5ml oral suspension sugar free,32775911000001100,AMP,1001010P0AABEBE -32777811000001100,Nabumetone 500mg/5ml oral suspension,32777811000001100,AMP,1001010X0AAADAD -32778411000001103,Nabumetone 500mg/5ml oral suspension,32778411000001103,VMP,1001010X0AAADAD -32811000001101,Galprofen 100mg/5ml oral suspension,32811000001101,AMP,1001010J0CCADBH -329574003,Diclofenac sodium 75mg gastro-resistant modified-release capsules,329574003,VMP,1001010C0AAARAR -329587009,Diclofenac sodium 50mg gastro-resistant tablets,329587009,VMP,1001010C0AAAEAE -329591004,Diclofenac 50mg dispersible tablets sugar free,329591004,VMP,1001010C0AAAJAJ -329598005,Diclofenac sodium 50mg gastro-resistant / Misoprostol 200microgram tablets,329598005,VMP,1001010C0AAAMAM -329602007,Diclofenac sodium 75mg gastro-resistant / Misoprostol 200microgram tablets,329602007,VMP,1001010C0AAAXAX -329607001,Diclofenac sodium 75mg modified-release tablets,329607001,VMP,1001010C0AAALAL -329612000,Diflunisal 250mg tablets,329612000,VMP,1001010D0AAAAAA -329613005,Diflunisal 500mg tablets,329613005,VMP,1001010D0AAABAB -329620003,Etodolac 300mg capsules,329620003,VMP,1001010E0AAACAC -329622006,Etodolac 600mg modified-release tablets,329622006,VMP,1001010E0AAADAD -329630007,Fenbufen 300mg capsules,329630007,VMP,1001010F0AAAAAA -329636001,Fenbufen 450mg tablets,329636001,VMP,1001010F0AAACAC -329641009,Fenoprofen 300mg tablets,329641009,VMP,1001010G0AAABAB -329642002,Fenoprofen 600mg tablets,329642002,VMP,1001010G0AAADAD -329648003,Flurbiprofen 50mg tablets,329648003,VMP,1001010I0AAABAB -329649006,Flurbiprofen 100mg tablets,329649006,VMP,1001010I0AAACAC -329652003,Ibuprofen 200mg tablets,329652003,VMP,1001010J0AAADAD -329653008,Ibuprofen 400mg tablets,329653008,VMP,1001010J0AAAEAE -329654002,Ibuprofen 600mg tablets,329654002,VMP,1001010J0AAAFAF -329662005,Ibuprofen 800mg modified-release tablets,329662005,VMP,1001010J0AAAPAP -329677002,Ibuprofen 600mg effervescent granules sachets,329677002,VMP,1001010J0AAANAN -329683004,Ibuprofen 200mg / Codeine 12.8mg tablets,329683004,VMP,1001010J0AAAYAY -329686007,Ibuprofen 100mg/5ml oral suspension sugar free,329686007,VMP,1001010J0AABHBH -329710002,Ibuprofen 100mg/5ml oral suspension,329710002,VMP,1001010J0AAACAC -329714006,Indometacin 25mg capsules,329714006,VMP,1001010K0AAAAAA -329715007,Indometacin 50mg capsules,329715007,VMP,1001010K0AAABAB -329758006,Ketoprofen 50mg capsules,329758006,VMP,1001010L0AAAAAA -329790001,Mefenamic acid 250mg capsules,329790001,VMP,1001010N0AAAAAA -329803004,Mefenamic acid 500mg tablets,329803004,VMP,1001010N0AAADAD -329806007,Naproxen 250mg tablets,329806007,VMP,1001010P0AAADAD -329807003,Naproxen 500mg tablets,329807003,VMP,1001010P0AAAEAE -329838002,Naproxen 250mg gastro-resistant tablets,329838002,VMP,1001010P0AAAHAH -329839005,Naproxen 500mg gastro-resistant tablets,329839005,VMP,1001010P0AAAIAI -329852000,Naproxen 125mg/5ml oral suspension,329852000,VMP,1001010P0AAARAR -329854004,Phenylbutazone 100mg tablets,329854004,VMP,1001010Q0AAABAB -329855003,Phenylbutazone 200mg tablets,329855003,VMP,1001010Q0AAACAC -329862007,Piroxicam 10mg capsules,329862007,VMP,1001010R0AAAAAA -329863002,Piroxicam 20mg capsules,329863002,VMP,1001010R0AAABAB -329881004,Piroxicam 10mg dispersible tablets,329881004,VMP,1001010R0AAADAD -329882006,Piroxicam 20mg dispersible tablets,329882006,VMP,1001010R0AAAEAE -329887000,Sulindac 100mg tablets,329887000,VMP,1001010S0AAAAAA -329888005,Sulindac 200mg tablets,329888005,VMP,1001010S0AAABAB -329896000,Tiaprofenic acid 300mg tablets,329896000,VMP,1001010T0AAACAC -329907004,Acemetacin 60mg capsules,329907004,VMP,100101050AAAAAA -329910006,Nabumetone 500mg tablets,329910006,VMP,1001010X0AAAAAA -329914002,Tenoxicam 20mg tablets,329914002,VMP,100101040AAAAAA -329925006,Aceclofenac 100mg tablets,329925006,VMP,100101080AAAAAA -329927003,Meloxicam 7.5mg tablets,329927003,VMP,1001010AAAAAAAA -329928008,Meloxicam 15mg tablets,329928008,VMP,1001010AAAAABAB -329963003,Dexketoprofen 25mg tablets,329963003,VMP,1001010AEAAAAAA -329967002,Diclofenac potassium 25mg tablets,329967002,VMP,1001010AGAAAAAA -329968007,Diclofenac potassium 50mg tablets,329968007,VMP,1001010AGAAABAB -330163001,Rofecoxib 25mg tablets,330163001,VMP,1001010AFAAADAD -330169002,Celecoxib 200mg capsules,330169002,VMP,1001010AHAAABAB -330170001,Celecoxib 100mg capsules,330170001,VMP,1001010AHAAAAAA -3311000001106,Indolar SR 75mg capsules,3311000001106,AMP,1001010K0BGADAD -3313611000001105,Ibuprofen 200mg tablets,3313611000001105,AMP,1001010J0AAADAD -33136211000001102,Naproxen 125mg/5ml oral suspension sugar free,33136211000001102,AMP,1001010P0AABEBE -3323411000001100,Ibuprofen 100mg/5ml oral suspension sugar free,3323411000001100,AMP,1001010J0AABHBH -333311000001102,Ibuprofen 400mg tablets,333311000001102,AMP,1001010J0AAAEAE -334011000001103,Diclozip 25mg gastro-resistant tablets,334011000001103,AMP,1001010C0BIAAAD -334411000001107,Ibuprofen 600mg tablets,334411000001107,AMP,1001010J0AAAFAF -33498211000001105,Aceclofenac 100mg tablets,33498211000001105,AMP,100101080AAAAAA -3354811000001101,Voltarol 50mg dispersible tablets,3354811000001101,AMP,1001010C0BBAGAJ -33548811000001105,Etolyn 600mg modified-release tablets,33548811000001105,AMP,1001010E0BHAAAD -33588711000001109,Celecoxib 100mg capsules,33588711000001109,AMP,1001010AHAAAAAA -33588911000001106,Celecoxib 200mg capsules,33588911000001106,AMP,1001010AHAAABAB -336911000001107,Hedex Ibuprofen 200mg caplets,336911000001107,AMP,1001010J0CPAAAD -33743911000001109,Naproxen 50mg/ml oral suspension,33743911000001109,AMP,1001010P0AABFBF -3377811000001108,Ketoprofen 100mg capsules,3377811000001108,VMP,1001010L0AAABAB -34016011000001105,Indometacin 25mg capsules,34016011000001105,AMP,1001010K0AAAAAA -3406111000001103,Arcoxia 60mg tablets,3406111000001103,AMP,1001010AJBBAAAA -3406811000001105,Arcoxia 90mg tablets,3406811000001105,AMP,1001010AJBBABAB -3407911000001102,Arcoxia 120mg tablets,3407911000001102,AMP,1001010AJBBACAC -341611000001107,Volraman 25mg gastro-resistant tablets,341611000001107,AMP,1001010C0BFAAAD -34195911000001106,Naproxen 50mg/ml oral suspension,34195911000001106,AMP,1001010P0AABFBF -3420111000001109,Codafen Continus tablets,3420111000001109,AMP,1001010J0B8AAAR -342211000001103,Ibuprofen 200mg tablets,342211000001103,AMP,1001010J0AAADAD -34328011000001102,Naproxen 50mg/ml oral suspension,34328011000001102,AMP,1001010P0AABFBF -343711000001102,Lederfen 450mg tablets,343711000001102,AMP,1001010F0BBADAC -3439011000001103,Piroxicam betadex 20mg tablets,3439011000001103,VMP,1001010R0AAAKAK -345311000001100,Oruvail 200 modified-release capsules,345311000001100,AMP,1001010L0BDABAJ -34584911000001102,Celecoxib 200mg capsules,34584911000001102,AMP,1001010AHAAABAB -34603211000001104,Diclofenac sodium 50mg gastro-resistant tablets,34603211000001104,AMP,1001010C0AAAEAE -34604011000001106,Diclofenac sodium 25mg gastro-resistant tablets,34604011000001106,AMP,1001010C0AAADAD -34618111000001103,Etoricoxib 30mg tablets,34618111000001103,AMP,1001010AJAAADAD -34618311000001101,Etoricoxib 60mg tablets,34618311000001101,AMP,1001010AJAAAAAA -34618511000001107,Etoricoxib 90mg tablets,34618511000001107,AMP,1001010AJAAABAB -34618711000001102,Etoricoxib 120mg tablets,34618711000001102,AMP,1001010AJAAACAC -34620211000001100,Etoricoxib 30mg tablets,34620211000001100,AMP,1001010AJAAADAD -34620411000001101,Etoricoxib 60mg tablets,34620411000001101,AMP,1001010AJAAAAAA -34620611000001103,Etoricoxib 90mg tablets,34620611000001103,AMP,1001010AJAAABAB -34620811000001104,Etoricoxib 120mg tablets,34620811000001104,AMP,1001010AJAAACAC -34624211000001108,Etoricoxib 30mg tablets,34624211000001108,AMP,1001010AJAAADAD -34624411000001107,Etoricoxib 60mg tablets,34624411000001107,AMP,1001010AJAAAAAA -34624611000001105,Etoricoxib 90mg tablets,34624611000001105,AMP,1001010AJAAABAB -34624711000001101,Etoricoxib 120mg tablets,34624711000001101,AMP,1001010AJAAACAC -34691111000001107,Etoricoxib 30mg tablets,34691111000001107,AMP,1001010AJAAADAD -34691311000001109,Etoricoxib 60mg tablets,34691311000001109,AMP,1001010AJAAAAAA -34691511000001103,Etoricoxib 90mg tablets,34691511000001103,AMP,1001010AJAAABAB -34691711000001108,Etoricoxib 120mg tablets,34691711000001108,AMP,1001010AJAAACAC -34698811000001106,Etoricoxib 30mg tablets,34698811000001106,AMP,1001010AJAAADAD -34699011000001105,Etoricoxib 60mg tablets,34699011000001105,AMP,1001010AJAAAAAA -34699211000001100,Etoricoxib 90mg tablets,34699211000001100,AMP,1001010AJAAABAB -34699411000001101,Etoricoxib 120mg tablets,34699411000001101,AMP,1001010AJAAACAC -34710711000001106,Etoricoxib 30mg tablets,34710711000001106,AMP,1001010AJAAADAD -34710911000001108,Etoricoxib 60mg tablets,34710911000001108,AMP,1001010AJAAAAAA -34711111000001104,Etoricoxib 90mg tablets,34711111000001104,AMP,1001010AJAAABAB -34711311000001102,Etoricoxib 120mg tablets,34711311000001102,AMP,1001010AJAAACAC -347249002,Phenylbutazone 100mg gastro-resistant tablets,347249002,VMP,1001010Q0AAABAB -34790511000001100,Flarin 200mg capsules,34790511000001100,AMP,1001010J0DIAAAA -34874211000001103,Sudafed Sinus Pain Relief 200mg/6.1mg tablets,34874211000001103,AMP,1001010J0CSABBS -34878411000001108,Ibuprofen 200mg / Phenylephrine 6.1mg tablets,34878411000001108,VMP,1001010J0AABSBS -349811000001107,Ibuprofen 600mg tablets,349811000001107,AMP,1001010J0AAAFAF -350511000001103,Diclomax Retard 100mg capsules,350511000001103,AMP,1001010C0BMAAAN -35096411000001107,Seractil 300mg tablets,35096411000001107,AMP,1001010AMBBACAA -351111000001101,Nabumetone 500mg tablets,351111000001101,AMP,1001010X0AAAAAA -35140711000001104,Celecoxib 100mg capsules,35140711000001104,AMP,1001010AHAAAAAA -35160611000001101,Etoricoxib 30mg tablets,35160611000001101,AMP,1001010AJAAADAD -35160811000001102,Etoricoxib 60mg tablets,35160811000001102,AMP,1001010AJAAAAAA -35161011000001104,Etoricoxib 90mg tablets,35161011000001104,AMP,1001010AJAAABAB -35161211000001109,Etoricoxib 120mg tablets,35161211000001109,AMP,1001010AJAAACAC -35369111000001107,Mefenamic acid 50mg/5ml oral suspension,35369111000001107,VMP,1001010N0AAABAB -358411000001104,Rhumalgan CR 75 tablets,358411000001104,AMP,1001010C0BDACAL -35851611000001107,Ibuprofen 200mg tablets,35851611000001107,AMP,1001010J0AAADAD -35861211000001104,Nabumetone 500mg tablets,35861211000001104,AMP,1001010X0AAAAAA -35906711000001107,Celecoxib 100mg capsules,35906711000001107,AMP,1001010AHAAAAAA -35906911000001109,Celecoxib 200mg capsules,35906911000001109,AMP,1001010AHAAABAB -35918311000001105,Tiaprofenic acid 300mg modified-release capsules,35918311000001105,VMP,1001010T0AAADAD -359411000001107,Fenactol 50mg gastro-resistant tablets,359411000001107,AMP,1001010C0CJABAE -36011911000001106,Naproxen 250mg tablets,36011911000001106,AMP,1001010P0AAADAD -36017011000001102,Piroxicam 20mg orodispersible tablets sugar free,36017011000001102,VMP,1001010R0AAAGAG -36026111000001106,Naproxen 500mg tablets,36026111000001106,AMP,1001010P0AAAEAE -36030111000001106,Naproxen 500mg modified-release tablets,36030111000001106,VMP,1001010P0AAAQAQ -36037011000001106,Ketoprofen 100mg modified-release capsules,36037011000001106,VMP,1001010L0AAAIAI -36037211000001101,Ketoprofen 150mg modified-release capsules,36037211000001101,VMP,1001010L0AAALAL -36037311000001109,Ketoprofen 200mg modified-release capsules,36037311000001109,VMP,1001010L0AAAJAJ -36042811000001102,Ibuprofen 400mg tablets,36042811000001102,AMP,1001010J0AAAEAE -36043011000001104,Ibuprofen 600mg tablets,36043011000001104,AMP,1001010J0AAAFAF -36045011000001103,Ibuprofen 200mg modified-release capsules,36045011000001103,VMP,1001010J0AABABA -36045211000001108,Ibuprofen 300mg modified-release / Codeine 20mg tablets,36045211000001108,VMP,1001010J0AAARAR -36045311000001100,Ibuprofen 300mg modified-release capsules,36045311000001100,VMP,1001010J0AAABAB -36046811000001101,Indometacin 75mg modified-release capsules,36046811000001101,VMP,1001010K0AAADAD -36059011000001103,Flurbiprofen 200mg modified-release capsules,36059011000001103,VMP,1001010I0AAADAD -36080311000001102,Ibuprofen 600mg tablets,36080311000001102,AMP,1001010J0AAAFAF -360911000001103,Naproxen 250mg tablets,360911000001103,AMP,1001010P0AAADAD -36105911000001102,Ibular 200mg tablets,36105911000001102,AMP,1001010J0DJAAAD -36106111000001106,Ibular 400mg tablets,36106111000001106,AMP,1001010J0DJABAE -361811000001100,Piroxicam 10mg dispersible tablets,361811000001100,AMP,1001010R0AAADAD -363911000001106,Flurbiprofen 100mg tablets,363911000001106,AMP,1001010I0AAACAC -36513111000001106,Ibuprofen 600mg tablets,36513111000001106,AMP,1001010J0AAAFAF -36563711000001106,Diclofenac sodium 100mg modified-release tablets,36563711000001106,VMP,1001010C0AAAFAF -36564511000001103,Naproxen 375mg gastro-resistant tablets,36564511000001103,VMP,1001010P0AAAJAJ -36566511000001109,Diclofenac sodium 25mg gastro-resistant tablets,36566511000001109,VMP,1001010C0AAADAD -365911000001107,Ketoprofen 50mg capsules,365911000001107,AMP,1001010L0AAAAAA -36597211000001105,Naproxen 250mg tablets,36597211000001105,AMP,1001010P0AAADAD -36597611000001107,Naproxen 500mg tablets,36597611000001107,AMP,1001010P0AAAEAE -36603011000001101,Ibuprofen Twelve Plus Pain Relief 200mg/5ml oral suspension,36603011000001101,AMP,1001010J0DKAABR -36608611000001101,Ibuprofen 200mg/5ml oral suspension sugar free,36608611000001101,VMP,1001010J0AABRBR -36700311000001101,Ibuprofen 600mg tablets,36700311000001101,AMP,1001010J0AAAFAF -3671411000001106,Sulindac 100mg tablets,3671411000001106,AMP,1001010S0AAAAAA -3671811000001108,Sulindac 100mg tablets,3671811000001108,AMP,1001010S0AAAAAA -36736411000001102,Nexocin EC 250mg gastro-resistant tablets,36736411000001102,AMP,1001010P0BYAAAH -36737011000001109,Nexocin EC 375mg gastro-resistant tablets,36737011000001109,AMP,1001010P0BYABAJ -3673711000001104,Sulindac 100mg tablets,3673711000001104,AMP,1001010S0AAAAAA -36737211000001104,Nexocin EC 500mg gastro-resistant tablets,36737211000001104,AMP,1001010P0BYACAI -3674011000001104,Dolobid 250mg tablets,3674011000001104,AMP,1001010D0BBAAAA -36741411000001107,Celecoxib 200mg capsules,36741411000001107,AMP,1001010AHAAABAB -3674211000001109,Clinoril 100mg tablets,3674211000001109,AMP,1001010S0BBAAAA -3674511000001107,Sulindac 100mg tablets,3674511000001107,AMP,1001010S0AAAAAA -3674611000001106,Dolobid 500mg tablets,3674611000001106,AMP,1001010D0BBABAB -367511000001109,Ibuprofen 200mg tablets,367511000001109,AMP,1001010J0AAADAD -36751811000001106,Celecoxib 100mg capsules,36751811000001106,AMP,1001010AHAAAAAA -3675211000001105,Sulindac 200mg tablets,3675211000001105,AMP,1001010S0AAABAB -3675511000001108,Sulindac 200mg tablets,3675511000001108,AMP,1001010S0AAABAB -3675811000001106,Sulindac 200mg tablets,3675811000001106,AMP,1001010S0AAABAB -3676011000001109,Clinoril 200mg tablets,3676011000001109,AMP,1001010S0BBABAB -36760411000001109,Ibuprofen Seven Plus Pain Relief 200mg/5ml oral suspension,36760411000001109,AMP,1001010J0DKABBR -3676211000001104,Sulindac 200mg tablets,3676211000001104,AMP,1001010S0AAABAB -36781911000001106,Naproxen 500mg gastro-resistant tablets,36781911000001106,AMP,1001010P0AAAIAI -36782111000001103,Naproxen 250mg gastro-resistant tablets,36782111000001103,AMP,1001010P0AAAHAH -36784811000001104,Diclofenac sodium 25mg gastro-resistant tablets,36784811000001104,AMP,1001010C0AAADAD -36785011000001109,Diclofenac sodium 50mg gastro-resistant tablets,36785011000001109,AMP,1001010C0AAAEAE -367911000001102,Naproxen 250mg gastro-resistant tablets,367911000001102,AMP,1001010P0AAAHAH -368011000001100,Brufen Retard 800mg tablets,368011000001100,AMP,1001010J0BCAFAP -368211000001105,Naproxen 500mg gastro-resistant tablets,368211000001105,AMP,1001010P0AAAIAI -36833011000001101,Etoricoxib 30mg tablets,36833011000001101,AMP,1001010AJAAADAD -36833211000001106,Etoricoxib 60mg tablets,36833211000001106,AMP,1001010AJAAAAAA -36833411000001105,Etoricoxib 90mg tablets,36833411000001105,AMP,1001010AJAAABAB -36833611000001108,Etoricoxib 120mg tablets,36833611000001108,AMP,1001010AJAAACAC -3684611000001103,Fenopron 300 tablets,3684611000001103,AMP,1001010G0BBAAAB -3685511000001101,Fenopron 600 tablets,3685511000001101,AMP,1001010G0BBABAD -36859211000001109,Celecoxib 100mg capsules,36859211000001109,AMP,1001010AHAAAAAA -36859611000001106,Celecoxib 200mg capsules,36859611000001106,AMP,1001010AHAAABAB -36926211000001106,Naproxen 500mg tablets,36926211000001106,AMP,1001010P0AAAEAE -370195008,Ibuprofen 200mg capsules,370195008,VMP,1001010J0AAAAAA -37062811000001105,Ibuprofen 400mg tablets,37062811000001105,AMP,1001010J0AAAEAE -37064511000001102,Etoricoxib 30mg tablets,37064511000001102,AMP,1001010AJAAADAD -37065011000001109,Etoricoxib 60mg tablets,37065011000001109,AMP,1001010AJAAAAAA -37065411000001100,Etoricoxib 90mg tablets,37065411000001100,AMP,1001010AJAAABAB -37065911000001108,Etoricoxib 120mg tablets,37065911000001108,AMP,1001010AJAAACAC -37079111000001100,Ibuprofen 600mg tablets,37079111000001100,AMP,1001010J0AAAFAF -37084611000001101,Diclofenac sodium 100mg modified-release capsules,37084611000001101,VMP,1001010C0AAANAN -37084911000001107,Diclofenac sodium 75mg modified-release capsules,37084911000001107,VMP,1001010C0AAAWAW -37119811000001109,Mefenamic acid 500mg tablets,37119811000001109,AMP,1001010N0AAADAD -37122511000001106,Naproxen 250mg gastro-resistant tablets,37122511000001106,AMP,1001010P0AAAHAH -37230511000001109,Etoricoxib 30mg tablets,37230511000001109,AMP,1001010AJAAADAD -37236911000001104,Diclofenac sodium 25mg gastro-resistant tablets,37236911000001104,AMP,1001010C0AAADAD -372911000001106,Ibuprofen 600mg tablets film coated,372911000001106,AMP,1001010J0AAAFAF -37336111000001109,Naproxen 375mg gastro-resistant tablets,37336111000001109,AMP,1001010P0AAAJAJ -37354011000001104,Etoricoxib 120mg tablets,37354011000001104,AMP,1001010AJAAACAC -37354711000001102,Etoricoxib 30mg tablets,37354711000001102,AMP,1001010AJAAADAD -37355211000001105,Etoricoxib 60mg tablets,37355211000001105,AMP,1001010AJAAAAAA -37355811000001106,Etoricoxib 90mg tablets,37355811000001106,AMP,1001010AJAAABAB -37358211000001103,Arcoxia 90mg tablets,37358211000001103,AMP, -37358511000001100,Arcoxia 60mg tablets,37358511000001100,AMP, -37377011000001109,Etoricoxib 30mg tablets,37377011000001109,AMP,1001010AJAAADAD -37377411000001100,Etoricoxib 60mg tablets,37377411000001100,AMP,1001010AJAAAAAA -37377611000001102,Etoricoxib 90mg tablets,37377611000001102,AMP,1001010AJAAABAB -37378011000001105,Etoricoxib 120mg tablets,37378011000001105,AMP,1001010AJAAACAC -37380011000001100,Brufen Retard 800mg tablets,37380011000001100,AMP, -37380211000001105,Brufen 600mg effervescent granules sachets,37380211000001105,AMP, -37386211000001107,Preservex 100mg tablets,37386211000001107,AMP, -37399311000001105,Oruvail 200 modified-release capsules,37399311000001105,AMP, -37421811000001101,Ibuprofen 100mg/5ml oral suspension sugar free,37421811000001101,AMP,1001010J0AABHBH -37422011000001104,Ibuprofen 600mg tablets,37422011000001104,AMP,1001010J0AAAFAF -374311000001103,Defanac 50mg gastro-resistant tablets,374311000001103,AMP,1001010C0CIADAE -37530011000001108,Lodine SR 600mg tablets,37530011000001108,AMP, -37609211000001109,Naproxen 50mg/ml oral suspension,37609211000001109,AMP,1001010P0AABFBF -37620411000001105,Arcoxia 60mg tablets,37620411000001105,AMP, -37620611000001108,Arcoxia 90mg tablets,37620611000001108,AMP, -37620811000001107,Arthrotec 50 gastro-resistant tablets,37620811000001107,AMP, -376878007,Indometacin 25mg/5ml oral suspension,376878007,VMP,1001010K0AABBBB -37689911000001101,Aceclofenac 100mg tablets,37689911000001101,AMP, -37723411000001105,Mefenamic acid 500mg tablets,37723411000001105,AMP, -377711000001106,Naproxen 500mg tablets,377711000001106,AMP,1001010P0AAAEAE -37862011000001100,Ibuprofen 200mg tablets,37862011000001100,AMP,1001010J0AAADAD -37893811000001100,Celecoxib 100mg capsules,37893811000001100,AMP,1001010AHAAAAAA -37894011000001108,Celecoxib 200mg capsules,37894011000001108,AMP,1001010AHAAABAB -37926711000001100,Diclofenac sodium 25mg gastro-resistant tablets,37926711000001100,AMP,1001010C0AAADAD -37926911000001103,Diclofenac sodium 50mg gastro-resistant tablets,37926911000001103,AMP,1001010C0AAAEAE -37999211000001105,Naproxen 250mg gastro-resistant tablets,37999211000001105,AMP,1001010P0AAAHAH -37999411000001109,Naproxen 375mg gastro-resistant tablets,37999411000001109,AMP,1001010P0AAAJAJ -37999611000001107,Naproxen 500mg gastro-resistant tablets,37999611000001107,AMP,1001010P0AAAIAI -37999811000001106,Naproxen 500mg tablets,37999811000001106,AMP,1001010P0AAAEAE -38122811000001103,Brufen Retard 800mg tablets,38122811000001103,AMP, -38411011000001109,Diclo-SR 75mg tablets,38411011000001109,AMP,1001010C0CRAAAL -385011000001106,Piroxicam 10mg capsules,385011000001106,AMP,1001010R0AAAAAA -386511000001105,Defanac 25mg gastro-resistant tablets,386511000001105,AMP,1001010C0CIACAD -3869111000001103,Nurofen Meltlets 200mg tablets,3869111000001103,AMP,1001010J0B4AHBN -38692711000001102,Nurofen for Children 200mg/5ml oral suspension orange,38692711000001102,AMP,1001010J0B4BCBR -38692911000001100,Nurofen for Children 200mg/5ml oral suspension strawberry,38692911000001100,AMP,1001010J0B4BDBR -38695211000001104,Ibuprofen 400mg tablets,38695211000001104,AMP,1001010J0AAAEAE -38695411000001100,Ibuprofen 200mg tablets,38695411000001100,AMP,1001010J0AAADAD -387211000001109,Indometacin 25mg capsules,387211000001109,AMP,1001010K0AAAAAA -3875511000001104,Ibuprofen 200mg orodispersible tablets sugar free,3875511000001104,VMP,1001010J0AABNBN -38763711000001104,Aceclofenac 100mg tablets,38763711000001104,AMP,100101080AAAAAA -38826811000001106,Celecoxib 200mg capsules,38826811000001106,AMP,1001010AHAAABAB -38827111000001101,Celecoxib 100mg capsules,38827111000001101,AMP,1001010AHAAAAAA -38869711000001103,Diclofenac potassium 50mg tablets,38869711000001103,AMP,1001010AGAAABAB -38869911000001101,Diclofenac sodium 25mg gastro-resistant tablets,38869911000001101,AMP,1001010C0AAADAD -38870111000001101,Diclofenac sodium 50mg gastro-resistant tablets,38870111000001101,AMP,1001010C0AAAEAE -38902311000001104,Etoricoxib 120mg tablets,38902311000001104,AMP,1001010AJAAACAC -38902611000001109,Etoricoxib 30mg tablets,38902611000001109,AMP,1001010AJAAADAD -38902811000001108,Etoricoxib 60mg tablets,38902811000001108,AMP,1001010AJAAAAAA -38903011000001106,Etoricoxib 90mg tablets,38903011000001106,AMP,1001010AJAAABAB -38920811000001101,Flurbiprofen 100mg tablets,38920811000001101,AMP,1001010I0AAACAC -389511000001100,Arthrofen 200 tablets,389511000001100,AMP,1001010J0B1ADAD -38957111000001108,Nabumetone 500mg tablets,38957111000001108,AMP,1001010X0AAAAAA -38968711000001103,Ibuprofen 200mg tablets,38968711000001103,AMP,1001010J0AAADAD -38991111000001109,Ibuprofen 400mg tablets,38991111000001109,AMP,1001010J0AAAEAE -38991811000001102,Ibuprofen 600mg tablets,38991811000001102,AMP,1001010J0AAAFAF -38997011000001103,Ibuprofen 100mg/5ml oral suspension sugar free,38997011000001103,AMP,1001010J0AABHBH -39000711000001105,Indometacin 25mg capsules,39000711000001105,AMP,1001010K0AAAAAA -39000911000001107,Indometacin 50mg capsules,39000911000001107,AMP,1001010K0AAABAB -39024511000001101,Diclofenac sodium 75mg modified-release tablets,39024511000001101,VMP,1001010C0AAALAL -39035311000001108,Mefenamic acid 250mg capsules,39035311000001108,AMP,1001010N0AAAAAA -39035511000001102,Mefenamic acid 500mg tablets,39035511000001102,AMP,1001010N0AAADAD -39035911000001109,Meloxicam 15mg tablets,39035911000001109,AMP,1001010AAAAABAB -39036111000001100,Meloxicam 7.5mg tablets,39036111000001100,AMP,1001010AAAAAAAA -39053211000001103,Nabumetone 500mg tablets,39053211000001103,AMP,1001010X0AAAAAA -39053611000001101,Naproxen 250mg tablets,39053611000001101,AMP,1001010P0AAADAD -39053811000001102,Naproxen 375mg gastro-resistant tablets,39053811000001102,AMP,1001010P0AAAJAJ -39054011000001105,Naproxen 500mg tablets,39054011000001105,AMP,1001010P0AAAEAE -39054211000001100,Naproxen 250mg gastro-resistant tablets,39054211000001100,AMP,1001010P0AAAHAH -39054411000001101,Naproxen 500mg gastro-resistant tablets,39054411000001101,AMP,1001010P0AAAIAI -39108111000001104,Ibuprofen 100mg/5ml oral suspension sugar free,39108111000001104,VMP,1001010J0AABHBH -39109711000001107,Etodolac 600mg modified-release tablets,39109711000001107,VMP,1001010E0AAADAD -39110311000001101,Ibuprofen 800mg modified-release tablets,39110311000001101,VMP,1001010J0AAAPAP -3915411000001104,Nurofen Plus tablets,3915411000001104,AMP,1001010J0B4AKAY -3916211000001109,Solpaflex tablets,3916211000001109,AMP,1001010J0CBAAAY -39162411000001108,Piroxicam 10mg capsules,39162411000001108,AMP,1001010R0AAAAAA -39162711000001102,Piroxicam 20mg capsules,39162711000001102,AMP,1001010R0AAABAB -3917611000001108,Nurofen 200mg liquid capsules,3917611000001108,AMP,1001010J0B4AIAA -3918911000001101,Anadin Ultra 200mg capsules,3918911000001101,AMP,1001010J0CJABAA -392111000001104,Pardelprin MR 75mg capsules,392111000001104,AMP,1001010K0BVAAAD -39258411000001103,Sulindac 100mg tablets,39258411000001103,AMP,1001010S0AAAAAA -39258711000001109,Sulindac 200mg tablets,39258711000001109,AMP,1001010S0AAABAB -393211000001104,Mefenamic acid 500mg tablets,393211000001104,AMP,1001010N0AAADAD -39411000001109,Ketoprofen 100mg capsules,39411000001109,AMP,1001010L0AAABAB -39414411000001101,Ibuprofen 200mg tablets,39414411000001101,AMP,1001010J0AAADAD -39415111000001105,Ibuprofen 400mg tablets,39415111000001105,AMP,1001010J0AAAEAE -3953411000001109,Motifene 75mg modified-release capsules,3953411000001109,AMP,1001010C0BPAAAR -396811000001107,Naproxen 500mg tablets,396811000001107,AMP,1001010P0AAAEAE -39690211000001106,Dexketoprofen 25mg tablets,39690211000001106,VMP,1001010AEAAAAAA -39692011000001102,Fenoprofen 300mg tablets,39692011000001102,VMP,1001010G0AAABAB -39693611000001104,Ibuprofen 200mg / Pseudoephedrine hydrochloride 30mg tablets,39693611000001104,VMP,1001010J0AABJBJ -39709911000001103,Diclofenac 50mg dispersible tablets sugar free,39709911000001103,VMP,1001010C0AAAJAJ -39721011000001108,Piroxicam 10mg dispersible tablets,39721011000001108,VMP,1001010R0AAADAD -39721211000001103,Piroxicam 20mg dispersible tablets,39721211000001103,VMP,1001010R0AAAEAE -39737111000001104,Ibuprofen 400mg capsules,39737111000001104,AMP,1001010J0AAAUAU -3979611000001106,Ebretin 300mg capsules,3979611000001106,AMP,1001010E0BDABAC -398311000001104,Fenbufen 450mg tablets,398311000001104,AMP,1001010F0AAACAC -39879911000001107,Meloxicam 15mg orodispersible tablets sugar free,39879911000001107,AMP,1001010AAAAAJAJ -39880111000001109,Meloxicam 7.5mg orodispersible tablets sugar free,39880111000001109,AMP,1001010AAAAAKAK -3996111000001104,Galprofen Long Lasting 200mg capsules,3996111000001104,AMP,1001010J0CCACBA -39977211000001102,Ibuprofen 400mg tablets,39977211000001102,AMP,1001010J0AAAEAE -403111000001103,Ketozip 200 XL capsules,403111000001103,AMP,1001010L0BKAAAJ -403211000001109,Pirozip 10 capsules,403211000001109,AMP,1001010R0BDAAAA -40619711000001108,Diclofenac sodium 25mg gastro-resistant tablets,40619711000001108,AMP,1001010C0AAADAD -40685111000001107,Etoricoxib 60mg tablets,40685111000001107,AMP,1001010AJAAAAAA -40685311000001109,Etoricoxib 90mg tablets,40685311000001109,AMP,1001010AJAAABAB -40685511000001103,Etoricoxib 120mg tablets,40685511000001103,AMP,1001010AJAAACAC -40689411000001104,Etoricoxib 90mg tablets,40689411000001104,AMP,1001010AJAAABAB -40692911000001101,Etoricoxib 60mg tablets,40692911000001101,AMP,1001010AJAAAAAA -40693711000001106,Etoricoxib 30mg tablets,40693711000001106,AMP,1001010AJAAADAD -40694111000001107,Etoricoxib 120mg tablets,40694111000001107,AMP,1001010AJAAACAC -40694811000001100,Naproxen 250mg tablets,40694811000001100,AMP,1001010P0AAADAD -40695011000001105,Naproxen 500mg tablets,40695011000001105,AMP,1001010P0AAAEAE -407711000001107,Diclovol 50mg gastro-resistant tablets,407711000001107,AMP,1001010C0CCABAE -407904005,Ibuprofen 200mg / Pseudoephedrine hydrochloride 30mg tablets,407904005,VMP,1001010J0AABJBJ -407907003,Etoricoxib 60mg tablets,407907003,VMP,1001010AJAAAAAA -407908008,Etoricoxib 90mg tablets,407908008,VMP,1001010AJAAABAB -407909000,Etoricoxib 120mg tablets,407909000,VMP,1001010AJAAACAC -40829711000001109,Etoricoxib 30mg tablets,40829711000001109,AMP,1001010AJAAADAD -40855211000001101,Mefenamic acid 500mg tablets,40855211000001101,AMP,1001010N0AAADAD -408602008,Lornoxicam 8mg tablets,408602008,VMP,1001010AIAAACAC -408811000001100,Naproxen 500mg tablets,408811000001100,AMP,1001010P0AAAEAE -40910911000001100,Galpharm Rapid Ibuprofen lysine 342mg tablets,40910911000001100,AMP,1001010ADBHAAAB -40913711000001106,Noubid 200mg tablets,40913711000001106,AMP,1001010J0DLAAAD -40927611000001102,Ibuprofen 200mg tablets,40927611000001102,AMP,1001010J0AAADAD -40928011000001105,Ibuprofen 400mg tablets,40928011000001105,AMP,1001010J0AAAEAE -41014211000001102,Ibuprofen 400mg capsules,41014211000001102,AMP,1001010J0AAAUAU -410711000001109,Flurbiprofen 100mg tablets,410711000001109,AMP,1001010I0AAACAC -41091211000001100,Bell's Children's Pain & Fever Relief 100mg/5ml oral suspension,41091211000001100,AMP,1001010J0DMAABH -411211000001108,Mefenamic acid 500mg tablets,411211000001108,AMP,1001010N0AAADAD -41169911000001101,Period Pain Reliever 250mg gastro-resistant tablets,41169911000001101,AMP, -41351211000001108,Mefenamic acid 500mg tablets,41351211000001108,AMP, -415611000001108,Arthrofen 600 tablets,415611000001108,AMP,1001010J0B1AFAF -415811000001107,Ibuprofen 400mg tablets sugar coated,415811000001107,AMP,1001010J0AAAEAE -418352003,Dexibuprofen 300mg tablets,418352003,VMP,1001010AMAAAAAA -418811000001103,Diclofenac sodium 100mg modified-release tablets,418811000001103,AMP, -418855005,Dexibuprofen 400mg tablets,418855005,VMP,1001010AMAAABAB -419711000001102,Ketovail 100mg modified-release capsules,419711000001102,AMP,1001010L0BEAAAI -420811000001109,Ibuprofen 400mg tablets sugar coated,420811000001109,AMP,1001010J0AAAEAE -429511000001103,Orudis 50mg capsules,429511000001103,AMP,1001010L0BCAAAA -430611000001107,Ketoprofen 200mg modified-release capsules,430611000001107,AMP, -4331311000001106,Indometacin 25mg capsules,4331311000001106,AMP,1001010K0AAAAAA -4331511000001100,Indometacin 50mg capsules,4331511000001100,AMP,1001010K0AAABAB -434011000001107,Naprosyn EC 500mg tablets,434011000001107,AMP,1001010P0BCAIAI -434411000001103,Valdic 100 Retard tablets,434411000001103,AMP,1001010C0CHAAAF -434811000001101,Ibuprofen 400mg tablets,434811000001101,AMP,1001010J0AAAEAE -436011000001102,Nabumetone 500mg tablets,436011000001102,AMP,1001010X0AAAAAA -440911000001102,Defanac Retard 100mg tablets,440911000001102,AMP,1001010C0CIABAF -44511000001108,Lofensaid 50mg gastro-resistant tablets,44511000001108,AMP,1001010C0BRAAAE -445711000001109,Brufen 100mg/5ml syrup,445711000001109,AMP,1001010J0BCADAC -447511000001108,Naproxen 500mg tablets,447511000001108,AMP,1001010P0AAAEAE -447611000001107,Fenbufen 450mg tablets,447611000001107,AMP,1001010F0AAACAC -450411000001108,Piroxicam 20mg capsules,450411000001108,AMP,1001010R0AAABAB -450611000001106,Lofensaid 25mg gastro-resistant tablets,450611000001106,AMP,1001010C0BRABAD -4506711000001105,Xefo 8mg tablets,4506711000001105,AMP,1001010AIBBACAC -451211000001103,Ibuprofen 600mg tablets,451211000001103,AMP,1001010J0AAAFAF -451911000001107,Piroxicam 20mg dispersible tablets,451911000001107,AMP,1001010R0AAAEAE -4535711000001109,Fenpaed 100mg/5ml oral suspension,4535711000001109,AMP,1001010J0CXABBH -4545511000001100,Nurofen Advance 200mg tablets,4545511000001100,AMP,1001010ADBBAAAB -4550611000001107,Naprosyn 125mg/5ml oral suspension,4550611000001107,AMP,1001010P0BCACAR -455111000001106,Ketoprofen 200mg modified-release capsules,455111000001106,AMP, -4557011000001104,Ibuprofen lysine 200mg tablets,4557011000001104,VMP,1001010ADAAABAB -455811000001104,Piroxicam 10mg dispersible tablets,455811000001104,AMP,1001010R0AAADAD -4572011000001104,Diclofenac sodium 75mg modified-release tablets,4572011000001104,AMP, -4572311000001101,Diclofenac sodium 100mg modified-release tablets,4572311000001101,AMP, -4573211000001103,Indometacin 75mg modified-release capsules,4573211000001103,AMP, -4575711000001106,Ketoprofen 100mg modified-release capsules,4575711000001106,AMP,1001010L0AAAIAI -458511000001105,Orudis 100mg capsules,458511000001105,AMP,1001010L0BCABAB -4585211000001105,Calprofen 100mg/5ml oral suspension,4585211000001105,AMP,1001010J0DBAABH -4603011000001107,Ibuprofen 200mg tablets,4603011000001107,AMP,1001010J0AAADAD -4603411000001103,Nurofen Recovery 200mg orodispersible tablets,4603411000001103,AMP,1001010J0B4AMBN -4603811000001101,Nurofen Migraine Pain 342mg tablets,4603811000001101,AMP,1001010ADBCACAB -4604211000001104,Ibuprofen 400mg tablets,4604211000001104,AMP,1001010J0AAAEAE -4605611000001101,Nurofen for Children Singles 100mg/5ml oral suspension 5ml sachets orange,4605611000001101,AMP,1001010J0B4ALBM -4606211000001109,Nurofen Cold and Flu tablets,4606211000001109,AMP,1001010J0B4APBJ -4615511000001102,Ibuprofen 100mg/5ml oral suspension 5ml sachets sugar free,4615511000001102,VMP,1001010J0AABMBM -4626911000001105,Eccoxolac 300mg capsules,4626911000001105,AMP,1001010E0BFAAAC -4632211000001100,Feverfen 100mg/5ml oral suspension,4632211000001100,AMP,1001010J0CWABBH -4663611000001101,Butacote 100mg gastro-resistant tablets,4663611000001101,AMP,1001010Q0BBAAAB -468211000001100,Piroxicam 10mg capsules,468211000001100,AMP,1001010R0AAAAAA -473411000001103,Feldene 10mg dispersible tablets,473411000001103,AMP,1001010R0BBACAD -474111000001105,Galprofen 200mg tablets,474111000001105,AMP,1001010J0CCAAAD -477011000001101,Orbifen For Children 100mg/5ml oral suspension,477011000001101,AMP,1001010J0CRAABH -477611000001108,Flurbiprofen 50mg tablets,477611000001108,AMP,1001010I0AAABAB -481611000001108,Naproxen 500mg tablets,481611000001108,AMP,1001010P0AAAEAE -482011000001109,Larafen CR 200mg capsules,482011000001109,AMP,1001010L0BHAAAJ -4820811000001106,Flurbiprofen 50mg tablets,4820811000001106,AMP,1001010I0AAABAB -4821011000001109,Flurbiprofen 100mg tablets,4821011000001109,AMP,1001010I0AAACAC -4870111000001103,Nabumetone 500mg tablets,4870111000001103,AMP,1001010X0AAAAAA -490411000001102,Lofensaid Retard 100 tablets,490411000001102,AMP,1001010C0BRADAF -491911000001103,Ibuprofen 400mg tablets,491911000001103,AMP,1001010J0AAAEAE -494511000001107,Piroxicam 10mg capsules,494511000001107,AMP,1001010R0AAAAAA -495411000001109,Surgam SA 300mg capsules,495411000001109,AMP,1001010T0BBADAD -497011000001107,Closteril 100 modified-release tablets,497011000001107,AMP,1001010C0CGAAAF -49711000001102,Flamrase 75mg SR tablets,49711000001102,AMP,1001010C0BKADAL -497111000001108,Ibuprofen 400mg tablets,497111000001108,AMP,1001010J0AAAEAE -497711000001109,Piroxicam 20mg dispersible tablets,497711000001109,AMP,1001010R0AAAEAE -5003211000001101,Nabumetone 500mg tablets,5003211000001101,AMP,1001010X0AAAAAA -5021111000001102,Ibuprofen 100mg/5ml oral suspension sugar free,5021111000001102,AMP,1001010J0AABHBH -505811000001104,Ketoprofen 100mg modified-release capsules,505811000001104,AMP,1001010L0AAAIAI -510811000001107,Flurbiprofen 50mg tablets,510811000001107,AMP,1001010I0AAABAB -513511000001103,Ketoprofen 50mg capsules,513511000001103,AMP,1001010L0AAAAAA -521011000001101,Naproxen 500mg tablets,521011000001101,AMP,1001010P0AAAEAE -521711000001104,Naproxen 250mg tablets,521711000001104,AMP,1001010P0AAADAD -522911000001108,Ibuprofen 400mg tablets,522911000001108,AMP,1001010J0AAAEAE -525611000001106,Indometacin 50mg capsules,525611000001106,AMP,1001010K0AAABAB -530011000001108,Diclofenac sodium 25mg gastro-resistant tablets,530011000001108,AMP,1001010C0AAADAD -531911000001100,Indometacin 75mg modified-release capsules,531911000001100,AMP, -5329711000001101,Aceclofenac 100mg tablets,5329711000001101,AMP, -5334711000001100,Arthrotec 50 gastro-resistant tablets,5334711000001100,AMP, -5335511000001106,Arthrotec 75 gastro-resistant tablets,5335511000001106,AMP, -5346211000001101,Celebrex 200mg capsules,5346211000001101,AMP, -534911000001102,Diclofenac sodium 25mg gastro-resistant tablets,534911000001102,AMP,1001010C0AAADAD -5358611000001100,Dexketoprofen 25mg tablets,5358611000001100,AMP, -5361611000001103,Diclofenac 50mg dispersible tablets sugar free,5361611000001103,AMP, -5363211000001101,Dolobid 500mg tablets,5363211000001101,AMP, -5368511000001107,Froben SR 200mg capsules,5368511000001107,AMP, -538211000001100,Froben 100mg tablets,538211000001100,AMP,1001010I0BBABAC -5389511000001104,Mobic 7.5mg tablets,5389511000001104,AMP, -5389711000001109,Meloxicam 7.5mg tablets,5389711000001109,AMP, -5389911000001106,Meloxicam 15mg tablets,5389911000001106,AMP, -5390911000001104,Mobic 15mg tablets,5390911000001104,AMP, -5392711000001102,Motifene 75mg modified-release capsules,5392711000001102,AMP, -5392911000001100,Naprosyn 500mg tablets,5392911000001100,AMP, -5396711000001103,Oruvail 200 modified-release capsules,5396711000001103,AMP, -5406211000001101,Relifex 500mg tablets,5406211000001101,AMP, -541311000001100,Indomod 75mg modified-release capsules,541311000001100,AMP,1001010K0BIABAD -541811000001109,Acoflam 75mg SR tablets,541811000001109,AMP,1001010C0CDACAL -5425611000001101,Voltarol Retard 100mg tablets,5425611000001101,AMP, -5426311000001101,Vioxx 25mg tablets,5426311000001101,AMP, -5441311000001107,Aceclofenac 100mg tablets,5441311000001107,AMP, -5441711000001106,Preservex 100mg tablets,5441711000001106,AMP, -5474911000001107,Naproxen 250mg gastro-resistant tablets,5474911000001107,AMP,1001010P0AAAHAH -547611000001101,Diclofenac sodium 50mg gastro-resistant tablets,547611000001101,AMP,1001010C0AAAEAE -547811000001102,Naproxen 250mg gastro-resistant tablets,547811000001102,AMP,1001010P0AAAHAH -5482811000001102,Mobiflex 20mg tablets,5482811000001102,AMP, -5489311000001103,Brufen Retard 800mg tablets,5489311000001103,AMP, -5496511000001100,Meloxicam 15mg tablets,5496511000001100,AMP, -5496611000001101,Meloxicam 7.5mg tablets,5496611000001101,AMP, -550011000001109,Motrin 600mg tablets,550011000001109,AMP,1001010J0BHACAF -5506011000001100,Nabumetone 500mg tablets,5506011000001100,AMP, -5511811000001103,Tenoxicam 20mg tablets,5511811000001103,AMP, -5525711000001101,Brufen Retard 800mg tablets,5525711000001101,AMP, -5529911000001102,Celebrex 200mg capsules,5529911000001102,AMP, -5530911000001106,Celebrex 100mg capsules,5530911000001106,AMP, -5545311000001102,Froben SR 200mg capsules,5545311000001102,AMP, -555811000001109,Diclofenac sodium 25mg gastro-resistant tablets,555811000001109,AMP,1001010C0AAADAD -5561611000001101,Mobic 15mg tablets,5561611000001101,AMP, -5562611000001107,Mobic 7.5mg tablets,5562611000001107,AMP, -5565611000001103,Motifene 75mg modified-release capsules,5565611000001103,AMP, -5567511000001106,Oruvail 200 modified-release capsules,5567511000001106,AMP, -5590411000001105,Mobiflex 20mg tablets,5590411000001105,AMP, -5595511000001104,Vioxx 25mg tablets,5595511000001104,AMP, -5597111000001104,Voltarol 75mg SR tablets,5597111000001104,AMP, -5597311000001102,Voltarol Retard 100mg tablets,5597311000001102,AMP, -5613011000001104,Arthrotec 50 gastro-resistant tablets,5613011000001104,AMP, -5613611000001106,Arthrotec 75 gastro-resistant tablets,5613611000001106,AMP, -5621511000001101,Relifex 500mg tablets,5621511000001101,AMP, -5639311000001108,Econac SR 75mg tablets,5639311000001108,AMP,1001010C0CKAAAL -5639711000001107,Econac XL 100mg tablets,5639711000001107,AMP,1001010C0CKABAF -56411000001103,Synflex 275mg tablets,56411000001103,AMP,100101070BBAAAA -564511000001104,Indometacin 25mg capsules,564511000001104,AMP,1001010K0AAAAAA -565511000001103,Tenoxicam 20mg tablets,565511000001103,AMP,100101040AAAAAA -570111000001107,Dicloflex 25mg gastro-resistant tablets,570111000001107,AMP,1001010C0BQAAAD -574511000001107,Flurbiprofen 50mg tablets,574511000001107,AMP,1001010I0AAABAB -579011000001103,Naproxen 250mg gastro-resistant tablets,579011000001103,AMP,1001010P0AAAHAH -581911000001106,Indocid 50mg capsules,581911000001106,AMP,1001010K0BDABAB -586711000001103,Ponstan Forte 500mg tablets,586711000001103,AMP,1001010N0BBABAD -589011000001106,Emflex 60mg capsules,589011000001106,AMP,100101050BBAAAA -591611000001104,Mobic 7.5mg tablets,591611000001104,AMP,1001010AABBAAAA -594411000001100,Fenbufen 450mg tablets,594411000001100,AMP,1001010F0AAACAC -601311000001100,Anadin Ibuprofen 200mg tablets,601311000001100,AMP,1001010J0CJAAAD -602311000001109,Flamrase 25 EC tablets,602311000001109,AMP,1001010C0BKAAAD -602711000001108,Tenoxicam 20mg tablets,602711000001108,AMP,100101040AAAAAA -603311000001104,Naproxen 250mg gastro-resistant tablets,603311000001104,AMP,1001010P0AAAHAH -604011000001100,Indometacin 50mg capsules,604011000001100,AMP,1001010K0AAABAB -60511000001108,Naproxen 250mg tablets,60511000001108,AMP,1001010P0AAADAD -605911000001102,Voltarol Rapid 50mg tablets,605911000001102,AMP,1001010AGBBABAB -61111000001105,Naprosyn S/R 500mg tablets,61111000001105,AMP,1001010P0BCAJAQ -611711000001104,Naprosyn EC 375mg tablets,611711000001104,AMP,1001010P0BCAHAJ -616611000001101,Fenbufen 450mg tablets,616611000001101,AMP,1001010F0AAACAC -621611000001103,Cuprofen Maximum Strength 400mg tablets,621611000001103,AMP,1001010J0BMACAE -621911000001109,Nurofen 200mg caplets,621911000001109,AMP,1001010J0B4AEAD -624911000001107,Arthrosin 250 tablets,624911000001107,AMP,1001010P0BDACAD -625011000001107,Diclofenac sodium 50mg gastro-resistant tablets,625011000001107,AMP,1001010C0AAAEAE -627511000001108,Piroxicam 20mg capsules,627511000001108,AMP,1001010R0AAABAB -630611000001105,Naproxen 250mg tablets,630611000001105,AMP,1001010P0AAADAD -632211000001109,Volsaid Retard 100 tablets,632211000001109,AMP,1001010C0BSABAF -63311000001108,Piroxicam 20mg capsules,63311000001108,AMP,1001010R0AAABAB -633211000001103,Advil Extra Strength 400mg tablets,633211000001103,AMP,1001010J0CEABAE -635011000001109,Nabumetone 500mg tablets,635011000001109,AMP,1001010X0AAAAAA -6407711000001109,Ibuprofen 200mg tablets sugar coated,6407711000001109,AMP,1001010J0AAADAD -640911000001100,Cuprofen 200mg tablets,640911000001100,AMP,1001010J0BMAAAD -641211000001103,Ibuprofen 600mg tablets,641211000001103,AMP,1001010J0AAAFAF -642011000001100,Junior Ibuprofen 100mg/5ml oral suspension,642011000001100,AMP,1001010J0CDABBH -643711000001106,Brufen 200mg tablets,643711000001106,AMP,1001010J0BCAAAD -644111000001107,Ibuprofen 400mg tablets,644111000001107,AMP,1001010J0AAAEAE -65111000001107,Ketoprofen 100mg capsules,65111000001107,AMP,1001010L0AAABAB -654211000001104,Ibuprofen 200mg tablets film coated,654211000001104,AMP,1001010J0AAADAD -655611000001101,Mefenamic acid 500mg tablets,655611000001101,AMP,1001010N0AAADAD -656011000001104,Fenactol Retard 100mg tablets,656011000001104,AMP,1001010C0CJADAF -657811000001107,Oruvail 150 modified-release capsules,657811000001107,AMP,1001010L0BDADAL -657911000001102,Flexotard MR 100mg tablets,657911000001102,AMP,1001010C0BXAAAF -658611000001107,Naproxen 375mg gastro-resistant tablets,658611000001107,AMP,1001010P0AAAJAJ -658811000001106,Flamatak MR 100mg tablets,658811000001106,AMP,1001010C0BYAAAF -659911000001109,Ketoprofen 200mg modified-release capsules,659911000001109,AMP,1001010L0AAAJAJ -663411000001105,Voltarol Rapid 25mg tablets,663411000001105,AMP,1001010AGBBAAAA -664811000001105,Nurofen for Children 100mg/5ml oral suspension orange,664811000001105,AMP,1001010J0B4AJBH -667011000001107,Slofenac 75mg SR tablets,667011000001107,AMP,1001010C0BWAAAL -678411000001107,Naproxen 500mg gastro-resistant tablets,678411000001107,AMP,1001010P0AAAIAI -681811000001105,Piroxicam 10mg dispersible tablets,681811000001105,AMP,1001010R0AAADAD -686111000001107,Flurbiprofen 100mg tablets,686111000001107,AMP,1001010I0AAACAC -687211000001104,Naproxen 250mg gastro-resistant tablets,687211000001104,AMP,1001010P0AAAHAH -692711000001105,Naproxen 500mg gastro-resistant tablets,692711000001105,AMP,1001010P0AAAIAI -694111000001101,Piroxicam 20mg capsules,694111000001101,AMP,1001010R0AAABAB -694411000001106,Nurofen 200mg tablets,694411000001106,AMP,1001010J0B4ABAD -699311000001103,Diclofenac sodium 50mg gastro-resistant tablets,699311000001103,AMP,1001010C0AAAEAE -700211000001105,Diclofenac sodium 50mg gastro-resistant tablets,700211000001105,AMP,1001010C0AAAEAE -714611000001102,Ibuprofen 400mg tablets,714611000001102,AMP,1001010J0AAAEAE -715111000001109,Rheumatac Retard 75 tablets,715111000001109,AMP,1001010C0CEAAAL -715411000001104,Ibuprofen 200mg tablets,715411000001104,AMP,1001010J0AAADAD -719711000001107,Dicloflex 50mg gastro-resistant tablets,719711000001107,AMP,1001010C0BQABAE -721011000001102,Diclofenac sodium 75mg modified-release tablets,721011000001102,AMP, -723011000001101,Piroxicam 20mg capsules,723011000001101,AMP,1001010R0AAABAB -731611000001107,Ibuprofen 100mg/5ml oral suspension sugar free,731611000001107,AMP,1001010J0AABHBH -732111000001109,Flurbiprofen 100mg tablets,732111000001109,AMP,1001010I0AAACAC -732311000001106,Jomethid XL 200mg capsules,732311000001106,AMP,1001010L0BMAAAJ -735411000001107,Piroxicam 10mg capsules,735411000001107,AMP,1001010R0AAAAAA -740211000001103,Mefenamic acid 500mg tablets,740211000001103,AMP,1001010N0AAADAD -741211000001109,Diclofenac sodium 50mg gastro-resistant tablets,741211000001109,AMP,1001010C0AAAEAE -745711000001100,Voltarol 50mg gastro-resistant tablets,745711000001100,AMP,1001010C0BBABAE -746311000001109,Indometacin 25mg capsules,746311000001109,AMP,1001010K0AAAAAA -7498011000001106,Tiloket 50mg capsules,7498011000001106,AMP,1001010L0BNACAA -749911000001101,Indometacin 50mg capsules,749911000001101,AMP,1001010K0AAABAB -75311000001102,Lederfen 300mg capsules,75311000001102,AMP,1001010F0BBAAAA -753111000001104,Tenoxicam 20mg tablets,753111000001104,AMP,100101040AAAAAA -756011000001108,Mefenamic acid 250mg capsules,756011000001108,AMP,1001010N0AAAAAA -757111000001107,Fenbufen 450mg tablets,757111000001107,AMP,1001010F0AAACAC -761911000001109,Flamrase SR 100mg tablets,761911000001109,AMP,1001010C0BKACAF -762311000001104,Froben 50mg tablets,762311000001104,AMP,1001010I0BBAAAB -763111000001107,Voltarol 75mg SR tablets,763111000001107,AMP,1001010C0BBAHAL -764211000001103,Naproxen 250mg gastro-resistant tablets,764211000001103,AMP,1001010P0AAAHAH -7643811000001101,Calprofen 100mg/5ml oral suspension paediatric,7643811000001101,AMP,1001010J0DBABBH -7664811000001108,Orbifen For Children 100mg/5ml oral suspension 5ml sachets,7664811000001108,AMP,1001010J0CRABBM -767711000001103,Mefenamic acid 250mg capsules,767711000001103,AMP,1001010N0AAAAAA -770811000001101,Indometacin 25mg capsules,770811000001101,AMP,1001010K0AAAAAA -771311000001100,Ibuprofen 200mg tablets,771311000001100,AMP,1001010J0AAADAD -774611000001107,Mefenamic acid 500mg tablets,774611000001107,AMP,1001010N0AAADAD -774811000001106,Naproxen 250mg tablets,774811000001106,AMP,1001010P0AAADAD -778511000001101,Ketoprofen 100mg modified-release capsules,778511000001101,AMP,1001010L0AAAIAI -779411000001108,Ibuprofen 400mg tablets,779411000001108,AMP,1001010J0AAAEAE -780411000001108,Diclofenac sodium 25mg gastro-resistant tablets,780411000001108,AMP,1001010C0AAADAD -78311000001106,Diclovol 25mg gastro-resistant tablets,78311000001106,AMP,1001010C0CCAAAD -784011000001106,Acoflam 100mg Retard tablets,784011000001106,AMP,1001010C0CDADAF -7852911000001109,Dicloflex 75mg SR tablets,7852911000001109,AMP,1001010C0BQAEAL -7853311000001103,Dicloflex Retard 100mg tablets,7853311000001103,AMP,1001010C0BQAGAF -7853611000001108,Diclovol 75mg SR tablets,7853611000001108,AMP,1001010C0CCAEAL -7854011000001104,Diclovol Retard 100mg tablets,7854011000001104,AMP,1001010C0CCAFAF -7854211000001109,Dicloflex 75mg SR tablets,7854211000001109,AMP,1001010C0BQAFAL -7854611000001106,Dicloflex Retard 100mg tablets,7854611000001106,AMP,1001010C0BQAHAF -787911000001104,Indometacin 50mg capsules,787911000001104,AMP,1001010K0AAABAB -788011000001102,Fenbufen 450mg tablets,788011000001102,AMP,1001010F0AAACAC -7898511000001105,Naproxen 375mg gastro-resistant tablets,7898511000001105,AMP,1001010P0AAAJAJ -7926811000001106,Ibuprofen 200mg caplets,7926811000001106,AMP,1001010J0AAADAD -7928011000001101,Ibuprofen 400mg caplets,7928011000001101,AMP,1001010J0AAAEAE -7929311000001109,Lloydspharmacy Ibuprofen 100mg/5ml oral suspension,7929311000001109,AMP,1001010J0CMAFBH -793611000001101,Valket 200 Retard capsules,793611000001101,AMP,1001010L0BNAAAJ -7944111000001109,Ibuprofen 100mg/5ml oral suspension sugar free,7944111000001109,AMP,1001010J0AABHBH -7987311000001109,Obifen 400mg tablets,7987311000001109,AMP, -799011000001106,Indometacin 50mg capsules,799011000001106,AMP,1001010K0AAABAB -7997311000001105,Mandafen for Children 100mg/5ml oral suspension sugar free,7997311000001105,AMP,1001010J0CYAABH -7997811000001101,Mandafen 400mg tablets,7997811000001101,AMP,1001010J0CYABAE -8008611000001103,Sudafed Sinus Pressure & Pain tablets,8008611000001103,AMP,1001010J0CSAABJ -802111000001103,Nabumetone 500mg tablets,802111000001103,AMP,1001010X0AAAAAA -804611000001103,Tiloket CR 100mg capsules,804611000001103,AMP,1001010L0BNABAI -804711000001107,Voltarol Retard 100mg tablets,804711000001107,AMP,1001010C0BBAFAF -805711000001106,Ibuprofen 200mg tablets sugar coated,805711000001106,AMP,1001010J0AAADAD -8061211000001108,Nurofen Back Pain SR 300mg capsules,8061211000001108,AMP,1001010J0B4ANAB -80711000001101,Naproxen 500mg tablets,80711000001101,AMP,1001010P0AAAEAE -8092711000001106,Cuprofen PLUS tablets,8092711000001106,AMP,1001010J0BMAEAY -8104311000001107,Fenpaed 100mg/5ml oral suspension 5ml sachets,8104311000001107,AMP,1001010J0CXACBM -814411000001103,Volsaid Retard 75 tablets,814411000001103,AMP,1001010C0BSAAAL -81511000001104,Mobic 15mg tablets,81511000001104,AMP,1001010AABBABAB -817811000001105,Naproxen 375mg gastro-resistant tablets,817811000001105,AMP,1001010P0AAAJAJ -819011000001108,Nycopren 250mg gastro-resistant tablets,819011000001108,AMP,1001010P0BGAAAH -8196311000001104,Rhumalgan XL 100mg capsules,8196311000001104,AMP,1001010C0BDAEAN -8197611000001106,Rhumalgan SR 75mg capsules,8197611000001106,AMP,1001010C0BDAFAW -8211000001106,Ketotard XL 200mg capsules,8211000001106,AMP,1001010L0BLAAAJ -823411000001108,Ketoprofen 100mg capsules,823411000001108,AMP,1001010L0AAABAB -823911000001100,Ketoprofen 100mg capsules,823911000001100,AMP,1001010L0AAABAB -825611000001105,Flurbiprofen 50mg tablets,825611000001105,AMP,1001010I0AAABAB -828011000001106,Piroxicam 10mg dispersible tablets,828011000001106,AMP,1001010R0AAADAD -829411000001105,Diclofenac sodium 25mg gastro-resistant tablets,829411000001105,AMP,1001010C0AAADAD -842611000001103,Naproxen 375mg gastro-resistant tablets,842611000001103,AMP,1001010P0AAAJAJ -8438311000001105,Diclofenac 10mg/5ml oral solution,8438311000001105,AMP,1001010C0AABDBD -8438611000001100,Diclofenac 10mg/5ml oral suspension,8438611000001100,AMP,1001010C0AABDBD -8439611000001109,Diclofenac 25mg/5ml oral solution,8439611000001109,AMP,1001010C0AAAYAY -8440111000001105,Diclofenac 25mg/5ml oral suspension,8440111000001105,AMP,1001010C0AAAYAY -84411000001101,Indomax 75 SR capsules,84411000001101,AMP,1001010K0BQABAD -844911000001100,Preservex 100mg tablets,844911000001100,AMP,100101080BBAAAA -8455011000001100,Diclofenac 10mg/5ml oral solution,8455011000001100,VMP,1001010C0AABDBD -8455111000001104,Diclofenac 10mg/5ml oral suspension,8455111000001104,VMP,1001010C0AABDBD -8455411000001109,Diclofenac 25mg/5ml oral solution,8455411000001109,VMP,1001010C0AAAYAY -8455511000001108,Diclofenac 25mg/5ml oral suspension,8455511000001108,VMP,1001010C0AAAYAY -853011000001103,Indometacin 75mg modified-release capsules,853011000001103,AMP,1001010K0AAADAD -8544811000001104,Indometacin 50mg/5ml oral solution,8544811000001104,AMP,1001010K0AAAVAV -8544911000001109,Indometacin 25mg/5ml oral solution,8544911000001109,AMP,1001010K0AAAQAQ -8545311000001107,Indometacin 50mg/5ml oral suspension,8545311000001107,AMP,1001010K0AAAVAV -8545911000001108,Indometacin 25mg/5ml oral suspension,8545911000001108,AMP,1001010K0AABBBB -8561611000001108,Indometacin 25mg/5ml oral solution,8561611000001108,VMP,1001010K0AAAQAQ -8561811000001107,Indometacin 50mg/5ml oral solution,8561811000001107,VMP,1001010K0AAAVAV -8561911000001102,Indometacin 50mg/5ml oral suspension,8561911000001102,VMP,1001010K0AAAVAV -859511000001108,Ibuprofen 200mg tablets,859511000001108,AMP,1001010J0AAADAD -8607611000001109,Mefenamic acid 250mg/5ml oral suspension,8607611000001109,AMP,1001010N0AAAGAG -8608211000001106,Mefenamic acid 500mg/5ml oral suspension,8608211000001106,AMP,1001010N0AAAHAH -86111000001104,Naproxen 250mg tablets,86111000001104,AMP,1001010P0AAADAD -8637511000001100,Naproxen 125mg/5ml oral suspension,8637511000001100,AMP,1001010P0AAARAR -8638311000001107,Naproxen 250mg/5ml oral suspension,8638311000001107,AMP,1001010P0AABFBF -8639711000001102,Naproxen 500mg/5ml oral suspension,8639711000001102,AMP,1001010P0AAATAT -8662311000001102,Mefenamic acid 250mg/5ml oral suspension,8662311000001102,VMP,1001010N0AAAGAG -8662411000001109,Mefenamic acid 500mg/5ml oral suspension,8662411000001109,VMP,1001010N0AAAHAH -866711000001104,Fenbufen 300mg capsules,866711000001104,AMP,1001010F0AAAAAA -8669711000001109,Naproxen 250mg/5ml oral suspension,8669711000001109,VMP,1001010P0AABFBF -8669811000001101,Naproxen 500mg/5ml oral suspension,8669811000001101,VMP,1001010P0AAATAT -867111000001102,Ketpron XL 100mg capsules,867111000001102,AMP,1001010L0BPAAAI -867711000001101,Berlind 75 Retard capsules,867711000001101,AMP,1001010K0BXAAAD -868911000001103,Motrin 400mg tablets,868911000001103,AMP,1001010J0BHABAE -869811000001101,Ibuprofen 200mg tablets,869811000001101,AMP,1001010J0AAADAD -878111000001108,Celebrex 200mg capsules,878111000001108,AMP,1001010AHBBABAB -8781711000001100,Boots Cold and Flu Relief with Ibuprofen tablets,8781711000001100,AMP,0310000N0BPAAAN -878411000001103,Ibuprofen 400mg tablets,878411000001103,AMP,1001010J0AAAEAE -878611000001100,Piroxicam 20mg dispersible tablets,878611000001100,AMP,1001010R0AAAEAE -881711000001108,Ketoprofen 100mg capsules,881711000001108,AMP,1001010L0AAABAB -886811000001105,Ketoprofen 50mg capsules,886811000001105,AMP,1001010L0AAAAAA -889911000001109,Naproxen 250mg tablets,889911000001109,AMP,1001010P0AAADAD -892211000001107,Ibuprofen 200mg tablets,892211000001107,AMP,1001010J0AAADAD -8929611000001109,Diclofenac sodium 75mg modified-release capsules,8929611000001109,AMP, -8932811000001101,Diclofenac sodium 100mg modified-release capsules,8932811000001101,AMP, -894311000001106,Naprosyn 250mg tablets,894311000001106,AMP,1001010P0BCAAAD -8970311000001109,Advil 200mg tablets,8970311000001109,AMP,1001010J0CEAAAD -901511000001105,Ibuprofen 600mg tablets,901511000001105,AMP,1001010J0AAAFAF -901911000001103,Librofem 200mg tablets,901911000001103,AMP,1001010J0BSAAAD -903411000001105,Migrafen 200mg tablets,903411000001105,AMP,1001010J0B2AAAD -90611000001109,Feldene 20 capsules,90611000001109,AMP,1001010R0BBABAB -906311000001107,Defanac 75mg SR tablets,906311000001107,AMP,1001010C0CIAAAL -910811000001103,Pirozip 20 capsules,910811000001103,AMP,1001010R0BDABAB -911611000001107,Rheumacin LA 75mg capsules,911611000001107,AMP,1001010K0BKAAAD -913811000001105,Ibuprofen 400mg tablets,913811000001105,AMP,1001010J0AAAEAE -915411000001107,Ketoprofen 50mg capsules,915411000001107,AMP,1001010L0AAAAAA -9164311000001106,Nurofen for Children Singles 100mg/5ml oral suspension 5ml sachets strawberry,9164311000001106,AMP,1001010J0B4ARBM -9164611000001101,Nurofen for Children 100mg/5ml oral suspension strawberry,9164611000001101,AMP,1001010J0B4AQBH -9172611000001104,Ibuprofen 200mg caplets,9172611000001104,AMP,1001010J0AAADAD -91911000001105,Flurbiprofen 100mg tablets,91911000001105,AMP,1001010I0AAACAC -9191811000001101,Piroxicam 10mg capsules,9191811000001101,AMP,1001010R0AAAAAA -9192011000001104,Piroxicam 20mg capsules,9192011000001104,AMP,1001010R0AAABAB -920011000001100,Fenbufen 300mg capsules,920011000001100,AMP,1001010F0AAAAAA -9209811000001100,Ibuprofen 100mg/5ml oral suspension sugar free,9209811000001100,AMP,1001010J0AABHBH -9210011000001100,Ibuprofen 100mg/5ml oral suspension 5ml sachets sugar free,9210011000001100,AMP,1001010J0AABMBM -921411000001100,Lodine SR 600mg tablets,921411000001100,AMP,1001010E0BBADAD -922511000001109,Dexomon 75mg SR tablets,922511000001109,AMP,1001010C0BUABAL -922711000001104,Arthrosin EC 250 tablets,922711000001104,AMP,1001010P0BDAFAH -9244911000001100,Pure Health Junior Ibuprofen 100mg/5ml oral suspension,9244911000001100,AMP,1001010J0DEAABH -92511000001106,Tenoxicam 20mg tablets,92511000001106,AMP,100101040AAAAAA -92811000001109,Piroxicam 20mg capsules,92811000001109,AMP,1001010R0AAABAB -928211000001108,Ibuprofen 600mg tablets,928211000001108,AMP,1001010J0AAAFAF -928911000001104,Piroxicam 10mg capsules,928911000001104,AMP,1001010R0AAAAAA -931711000001108,Fenbufen 300mg capsules,931711000001108,AMP,1001010F0AAAAAA -933011000001107,Arthrofen 400 tablets,933011000001107,AMP,1001010J0B1AEAE -936011000001104,Naproxen 500mg gastro-resistant tablets,936011000001104,AMP,1001010P0AAAIAI -9372211000001106,Cuprofen for Children 100mg/5ml oral suspension,9372211000001106,AMP, -940111000001102,Fenbufen 300mg capsules,940111000001102,AMP,1001010F0AAAAAA -9444911000001101,Nurofen Sinus tablets,9444911000001101,AMP,1001010J0B4ASBJ -9447211000001103,Seractil 300mg tablets,9447211000001103,AMP,1001010AMBBAAAA -9447611000001101,Seractil 400mg tablets,9447611000001101,AMP,1001010AMBBABAB -9458211000001101,Ibuprofen 100mg/5ml oral suspension 5ml sachets sugar free,9458211000001101,AMP,1001010J0AABMBM -9501811000001106,Ibuprofen 200mg tablets,9501811000001106,AMP,1001010J0AAADAD -9502111000001109,Ibuprofen 400mg tablets,9502111000001109,AMP,1001010J0AAAEAE -9511211000001108,Nurofen Tension Headache 342mg caplets,9511211000001108,AMP,1001010ADBDAAAB -9648711000001108,Ibuprofen 400mg tablets,9648711000001108,AMP,1001010J0AAAEAE -9746611000001109,Ibuprofen 400mg caplets,9746611000001109,AMP,1001010J0AAAEAE -9746811000001108,Ibuprofen 200mg caplets,9746811000001108,AMP,1001010J0AAADAD -9805311000001101,Ibuprofen 200mg tablets,9805311000001101,AMP,1001010J0AAADAD -9805911000001100,Ibuprofen 600mg tablets,9805911000001100,AMP,1001010J0AAAFAF -9807011000001106,Indometacin 50mg capsules,9807011000001106,AMP,1001010K0AAABAB -9816611000001104,Ibuprofen 400mg tablets,9816611000001104,AMP,1001010J0AAAEAE -9834411000001104,Meloxicam 7.5mg tablets,9834411000001104,AMP,1001010AAAAAAAA -9834611000001101,Meloxicam 15mg tablets,9834611000001101,AMP,1001010AAAAABAB -9834811000001102,Meloxicam 7.5mg tablets,9834811000001102,AMP,1001010AAAAAAAA -9835011000001107,Meloxicam 15mg tablets,9835011000001107,AMP,1001010AAAAABAB -9856111000001101,Meloxicam 7.5mg tablets,9856111000001101,AMP,1001010AAAAAAAA -9856311000001104,Meloxicam 15mg tablets,9856311000001104,AMP,1001010AAAAABAB -9870211000001108,Meloxicam 7.5mg tablets,9870211000001108,AMP,1001010AAAAAAAA -9870511000001106,Meloxicam 15mg tablets,9870511000001106,AMP,1001010AAAAABAB -98811000001106,Fenoket 200mg modified-release capsules,98811000001106,AMP,1001010L0BJAAAJ -9890311000001105,Cuprofen for Children 100mg/5ml oral suspension,9890311000001105,AMP,1001010J0BMADBH -9905911000001107,Meloxicam 7.5mg tablets,9905911000001107,AMP,1001010AAAAAAAA -9906111000001103,Meloxicam 15mg tablets,9906111000001103,AMP,1001010AAAAABAB -9991411000001100,Meloxicam 7.5mg tablets,9991411000001100,AMP,1001010AAAAAAAA -9991611000001102,Meloxicam 15mg tablets,9991611000001102,AMP,1001010AAAAABAB -9993111000001106,Galpharm Ibuprofen For Children 100mg/5ml oral suspension 5ml sachets,9993111000001106,AMP,1001010J0DFAABM -329559000,VMP previous to 37084911000001107,329559000,VMP,1001010C0AAAWAW -329585001,VMP previous to 36563711000001106,329585001,VMP,1001010C0AAAFAF -329586000,VMP previous to 36566511000001109,329586000,VMP,1001010C0AAADAD -329591004,VMP previous to 39709911000001103,329591004,VMP,1001010C0AAAJAJ -329600004,VMP previous to 37084611000001101,329600004,VMP,1001010C0AAANAN -329607001,VMP previous to 39024511000001101,329607001,VMP,1001010C0AAALAL -329622006,VMP previous to 39109711000001107,329622006,VMP,1001010E0AAADAD -329641009,VMP previous to 39692011000001102,329641009,VMP,1001010G0AAABAB -329647008,VMP previous to 36059011000001103,329647008,VMP,1001010I0AAADAD -329662005,VMP previous to 39110311000001101,329662005,VMP,1001010J0AAAPAP -329686007,VMP previous to 39108111000001104,329686007,VMP,1001010J0AABHBH -329711003,VMP previous to 36045011000001103,329711003,VMP,1001010J0AABABA -329712005,VMP previous to 36045311000001100,329712005,VMP,1001010J0AAABAB -329713000,VMP previous to 36045211000001108,329713000,VMP,1001010J0AAARAR -329756005,VMP previous to 36046811000001101,329756005,VMP,1001010K0AAADAD -329785004,VMP previous to 36037211000001101,329785004,VMP,1001010L0AAALAL -329787007,VMP previous to 36037011000001106,329787007,VMP,1001010L0AAAIAI -329788002,VMP previous to 36037311000001109,329788002,VMP,1001010L0AAAJAJ -329804005,VMP previous to 35369111000001107,329804005,VMP,1001010N0AAABAB -329847005,VMP previous to 36030111000001106,329847005,VMP,1001010P0AAAQAQ -329850008,VMP previous to 36564511000001103,329850008,VMP,1001010P0AAAJAJ -329880003,VMP previous to 36017011000001102,329880003,VMP,1001010R0AAAGAG -329881004,VMP previous to 39721011000001108,329881004,VMP,1001010R0AAADAD -329882006,VMP previous to 39721211000001103,329882006,VMP,1001010R0AAAEAE -329894002,VMP previous to 35918311000001105,329894002,VMP,1001010T0AAADAD -329963003,VMP previous to 39690211000001106,329963003,VMP,1001010AEAAAAAA -3411011000001108,VMP previous to 407909000,3411011000001108,VMP,1001010AJAAACAC -3411111000001109,VMP previous to 407907003,3411111000001109,VMP,1001010AJAAAAAA -3411211000001103,VMP previous to 407908008,3411211000001103,VMP,1001010AJAAABAB -3926211000001104,VMP previous to 370195008,3926211000001104,VMP,1001010J0AAAAAA -407904005,VMP previous to 39693611000001104,407904005,VMP,1001010J0AABJBJ -4508611000001100,VMP previous to 408602008,4508611000001100,VMP,1001010AIAAACAC -4615611000001103,"VMP previous to 39693611000001104, 407904005",4615611000001103,VMP,1001010J0AABJBJ -8561711000001104,VMP previous to 376878007,8561711000001104,VMP,1001010K0AABBBB -9467711000001102,VMP previous to 418352003,9467711000001102,VMP,1001010AMAAAAAA -9467811000001105,VMP previous to 418855005,9467811000001105,VMP,1001010AMAAABAB -42099211000001100,VMP subsequent to 329925006,42099211000001100,VMP,100101080AAAAAA -42099311000001108,VMP subsequent to 329907004,42099311000001108,VMP,100101050AAAAAA -42100411000001101,VMP subsequent to 330170001,42100411000001101,VMP,1001010AHAAAAAA -42100511000001102,VMP subsequent to 330169002,42100511000001102,VMP,1001010AHAAABAB -42101111000001100,VMP subsequent to 418352003,42101111000001100,VMP,1001010AMAAAAAA -42101211000001106,VMP subsequent to 418855005,42101211000001106,VMP,1001010AMAAABAB -42101611000001108,VMP subsequent to 329967002,42101611000001108,VMP,1001010AGAAAAAA -42101711000001104,VMP subsequent to 329968007,42101711000001104,VMP,1001010AGAAABAB -42101811000001107,VMP subsequent to 329598005,42101811000001107,VMP,1001010C0AAAMAM -42101911000001102,VMP subsequent to 329587009,42101911000001102,VMP,1001010C0AAAEAE -42102011000001109,VMP subsequent to 329602007,42102011000001109,VMP,1001010C0AAAXAX -42102111000001105,VMP subsequent to 329574003,42102111000001105,VMP,1001010C0AAARAR -42102211000001104,VMP subsequent to 329612000,42102211000001104,VMP,1001010D0AAAAAA -42102311000001107,VMP subsequent to 329613005,42102311000001107,VMP,1001010D0AAABAB -42103111000001104,VMP subsequent to 329620003,42103111000001104,VMP,1001010E0AAACAC -42103211000001105,VMP subsequent to 407909000,42103211000001105,VMP,1001010AJAAACAC -42103311000001102,VMP subsequent to 407907003,42103311000001102,VMP,1001010AJAAAAAA -42103411000001109,VMP subsequent to 407908008,42103411000001109,VMP,1001010AJAAABAB -42103711000001103,VMP subsequent to 329630007,42103711000001103,VMP,1001010F0AAAAAA -42103911000001101,VMP subsequent to 329636001,42103911000001101,VMP,1001010F0AAACAC -42104011000001103,VMP subsequent to 329642002,42104011000001103,VMP,1001010G0AAADAD -42104211000001108,VMP subsequent to 329649006,42104211000001108,VMP,1001010I0AAACAC -42104311000001100,VMP subsequent to 329648003,42104311000001100,VMP,1001010I0AAABAB -42104511000001106,VMP subsequent to 329710002,42104511000001106,VMP,1001010J0AAACAC -42104611000001105,VMP subsequent to 329683004,42104611000001105,VMP,1001010J0AAAYAY -42104711000001101,VMP subsequent to 370195008,42104711000001101,VMP,1001010J0AAAAAA -42104811000001109,VMP subsequent to 329652003,42104811000001109,VMP,1001010J0AAADAD -42104911000001104,VMP subsequent to 329653008,42104911000001104,VMP,1001010J0AAAEAE -42105211000001109,VMP subsequent to 329677002,42105211000001109,VMP,1001010J0AAANAN -42105311000001101,VMP subsequent to 329654002,42105311000001101,VMP,1001010J0AAAFAF -42105611000001106,VMP subsequent to 329714006,42105611000001106,VMP,1001010K0AAAAAA -42105711000001102,VMP subsequent to 376878007,42105711000001102,VMP,1001010K0AABBBB -42105811000001105,VMP subsequent to 329715007,42105811000001105,VMP,1001010K0AAABAB -42106011000001108,VMP subsequent to 329758006,42106011000001108,VMP,1001010L0AAAAAA -42106211000001103,VMP subsequent to 408602008,42106211000001103,VMP,1001010AIAAACAC -42106311000001106,VMP subsequent to 329790001,42106311000001106,VMP,1001010N0AAAAAA -42106411000001104,VMP subsequent to 329803004,42106411000001104,VMP,1001010N0AAADAD -42106611000001101,VMP subsequent to 329928008,42106611000001101,VMP,1001010AAAAABAB -42106811000001102,VMP subsequent to 329927003,42106811000001102,VMP,1001010AAAAAAAA -42107211000001101,VMP subsequent to 329910006,42107211000001101,VMP,1001010X0AAAAAA -42107311000001109,VMP subsequent to 329852000,42107311000001109,VMP,1001010P0AAARAR -42107411000001102,VMP subsequent to 329838002,42107411000001102,VMP,1001010P0AAAHAH -42107511000001103,VMP subsequent to 329806007,42107511000001103,VMP,1001010P0AAADAD -42107611000001104,VMP subsequent to 329839005,42107611000001104,VMP,1001010P0AAAIAI -42107811000001100,VMP subsequent to 329807003,42107811000001100,VMP,1001010P0AAAEAE -42107911000001105,VMP subsequent to 322299000,42107911000001105,VMP,100101070AAAAAA -42109811000001108,VMP subsequent to 347249002,42109811000001108,VMP,1001010Q0AAABAB -42109911000001103,VMP subsequent to 329854004,42109911000001103,VMP,1001010Q0AAABAB -42110011000001108,VMP subsequent to 329855003,42110011000001108,VMP,1001010Q0AAACAC -42110111000001109,VMP subsequent to 329862007,42110111000001109,VMP,1001010R0AAAAAA -42110211000001103,VMP subsequent to 329863002,42110211000001103,VMP,1001010R0AAABAB -42111111000001103,VMP subsequent to 330163001,42111111000001103,VMP,1001010AFAAADAD -42111611000001106,VMP subsequent to 329887000,42111611000001106,VMP,1001010S0AAAAAA -42111711000001102,VMP subsequent to 329888005,42111711000001102,VMP,1001010S0AAABAB -42112011000001107,VMP subsequent to 329914002,42112011000001107,VMP,100101040AAAAAA -42112211000001102,VMP subsequent to 329896000,42112211000001102,VMP,1001010T0AAACAC diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-osteoarthritis.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-osteoarthritis.csv index 4aee7c1c6..6fc5bee80 100644 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-osteoarthritis.csv +++ b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-osteoarthritis.csv @@ -1,227 +1,210 @@ -CTV3PreferredTermDesc,CTV3ID,CTV3Source -Cervical spond.with myelopathy,Y5903,CTV3_Children -Cervical spondylosis,X703j,CTV3Map_Code_Only -Cervical spondylosis,X703j,CTV3Map_Code_And_Term -Cervical spondylosis with myelopathy,XE1Ev,CTV3_Children -Cervical spondylosis with radiculopathy,N119.,CTV3_Children -Cervical spondylosis with vascular compression,N11A.,CTV3_Children -Cervical spondylosis without myelopathy,XE1Eu,CTV3Map_Code_Only -Lumbar spondylosis,X703k,CTV3Map_Code_And_Term -Lumbosacral spondylosis,XaE3C,CTV3_Children -Lumbosacral spondylosis with myelopathy,N115.,CTV3_Children -Lumbosacral spondylosis with radiculopathy,N11C.,CTV3_Children -Lumbosacral spondylosis without myelopathy,XE1Ex,CTV3_Children -Multiple-level cervical spondylosis with myelopathy,N1112,CTV3_Children -Multiple-level cervical spondylosis with radiculopathy,N1192,CTV3_Children -Multiple-level cervical spondylosis without myelopathy,N1102,CTV3_Children -Multiple-level lumbosacral spondylosis with myelopathy,N1152,CTV3_Children -Multiple-level lumbosacral spondylosis with radiculopathy,N11C2,CTV3_Children -Multiple-level lumbosacral spondylosis without myelopathy,N1142,CTV3_Children -Multiple-level thoracic spondylosis with myelopathy,N1132,CTV3_Children -Multiple-level thoracic spondylosis with radiculopathy,N11B2,CTV3_Children -Multiple-level thoracic spondylosis without myelopathy,N1122,CTV3_Children -Other spondyloses and allied disorders,N11y.,CTV3_Children -Single-level cervical spondylosis with myelopathy,N1110,CTV3_Children -Single-level cervical spondylosis with radiculopathy,N1190,CTV3_Children -Single-level cervical spondylosis without myelopathy,N1100,CTV3_Children -Single-level lumbosacral spondylosis with myelopathy,N1150,CTV3_Children -Single-level lumbosacral spondylosis with radiculopathy,N11C0,CTV3_Children -Single-level lumbosacral spondylosis without myelopathy,N1140,CTV3_Children -Single-level thoracic spondylosis with myelopathy,N1130,CTV3_Children -Single-level thoracic spondylosis with radiculopathy,N11B0,CTV3_Children -Single-level thoracic spondylosis without myelopathy,N1120,CTV3_Children -Spondylosis,X7039,CTV3Map_Code_Only -Spondylosis,X7039,CTV3Map_Code_And_Term -Spondylosis NOS,XE1Ey,CTV3Map_Code_And_Term -Spondylosis NOS,XE1Ey,CTV3Map_Code_Only -Spondylosis NOS,N11zz,CTV3_Children -Spondylosis and allied disorders,XE1Et,CTV3Map_Code_Only -"Spondylosis with myelopathy, NOS",N11z1,CTV3_Children -"Spondylosis without myelopathy, NOS",N11z0,CTV3_Children -Thoracic spondylosis,X70Cw,CTV3Map_Code_And_Term -Thoracic spondylosis (& [without myelopathy]),N112.,CTV3_Children -Thoracic spondylosis with myelopathy,N113.,CTV3_Children -Thoracic spondylosis with radiculopathy,N11B.,CTV3_Children -Thoracic spondylosis without myelopathy,XE1Ew,CTV3_Children -Two-level cervical spondylosis with myelopathy,N1111,CTV3_Children -Two-level cervical spondylosis with radiculopathy,N1191,CTV3_Children -Two-level cervical spondylosis without myelopathy,N1101,CTV3_Children -Two-level lumbosacral spondylosis with myelopathy,N1151,CTV3_Children -Two-level lumbosacral spondylosis with radiculopathy,N11C1,CTV3_Children -Two-level lumbosacral spondylosis without myelopathy,N1141,CTV3_Children -Two-level thoracic spondylosis with myelopathy,N1131,CTV3_Children -Two-level thoracic spondylosis with radiculopathy,N11B1,CTV3_Children -Two-level thoracic spondylosis without myelopathy,N1121,CTV3_Children -[X]Other spondylosis,Nyu64,CTV3_Children -[X]Other spondylosis with myelopathy,Nyu62,CTV3_Children -[X]Other spondylosis with radiculopathy,Nyu63,CTV3_Children -(Lumbosacr spondylos [& no myelopath]) or (degen lumb spine),N114.,CTV3_Children -(Spond:[cerv][lum][sac]) or (arth spine) or (osteoart spine),XE1HM,CTV3_Children -(Spondyl & allied dis) or (arthr spine) or (osteoarth spine),N11..,High_Level_SNOMED -Cerv spondylos (& [no myelopath]) or (osteoarthr cerv spine),N110.,CTV3_Children -Degenerative arthropathy of spinal facet joint,X70Cy,High_Level_SNOMED -Bouchard's nodes with arthropathy,N0503,CTV3Map_Code_And_Term -Delivery of rehabilitation for osteoarthritis,XaLsk,CTV3Map_Code_And_Term -Erosive osteoarthrosis,N0506,CTV3Map_Code_And_Term -Finger osteoarthritis NOS,X7035,CTV3Map_Code_Only -Foot osteoarthritis NOS,X7030,CTV3Map_Code_And_Term -Generalised osteoarthritis NOS,N050z,CTV3Map_Code_And_Term -Generalised osteoarthritis of multiple sites,N0502,CTV3Map_Code_And_Term -Generalised osteoarthritis of the hand,XE1DW,CTV3Map_Code_Only -Generalised osteoarthritis of unspecified site,N0500,CTV3Map_Code_And_Term -H/O: osteoarthritis,14G2.,CTV3Map_Code_And_Term -Heberden's nodes with arthropathy,N0507,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified",N053.,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, NOS",N053z,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of other spec site",N0538,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of shoulder region",N0531,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of the ankle and foot",N0537,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of the forearm",N0533,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of the hand",N0534,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of the lower leg",XE1DZ,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of the upper arm",N0532,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, of unspecified site",N0530,CTV3Map_Code_And_Term -"Localised osteoarthritis, unspecified, pelvic region/thigh",XE1DY,CTV3Map_Code_Only -"Localised, primary osteoarthritis",N051.,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis NOS",N051z,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of elbow",XaEGf,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of other specified site",N0518,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the ankle and foot",N0517,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the forearm",N0513,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the hand",N0514,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the lower leg",N0516,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the pelvic region/thigh",N0515,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the shoulder region",N0511,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the upper arm",N0512,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of the wrist",XaEGd,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of toe",XaEGe,CTV3Map_Code_And_Term -"Localised, primary osteoarthritis of unspecified site",N0510,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis",N052.,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis NOS",N052z,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of other specified site",N0528,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of pelvic region/thigh",XE1DX,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of the ankle and foot",N0527,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of the forearm",N0523,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of the hand",N0524,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of the lower leg",N0526,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of the shoulder region",N0521,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of the upper arm",N0522,CTV3Map_Code_And_Term -"Localised, secondary osteoarthritis of unspecified site",N0520,CTV3Map_Code_And_Term -O/E - hands - Heberden's nodes,2G26.,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspec, of unspecified sites",N0540,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified",N054.,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, multiple sites",N0549,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, of ankle/foot",N0547,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, of forearm",N0543,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, of hand",N0544,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, of lower leg",N0546,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, of pelvis/thigh",N0545,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, of shoulder",N0541,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, of upper arm",N0542,CTV3Map_Code_And_Term -"Oligoarticular osteoarthritis, unspecified, other spec sites",N0548,CTV3Map_Code_And_Term -Osteoarthritis,XE1DV,CTV3Map_Code_Only -Osteoarthritis NOS,N05zz,CTV3_Children -"Osteoarthritis NOS, of DIP joint of finger",N05zH,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of PIP joint of finger",N05zG,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of acromioclavicular joint",N05zB,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of ankle",N05zN,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of ankle and foot",XE1Dg,CTV3Map_Code_Only -"Osteoarthritis NOS, of elbow",N05zC,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of hip",N05zJ,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of knee",N05zL,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of other tarsal joint",N05zR,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of shoulder",N05z9,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of shoulder region",N05z1,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of sternoclavicular joint",N05zA,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of subtalar joint",N05zP,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of talonavicular joint",N05zQ,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of the forearm",XE1Dc,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of the hand",XE1Dd,CTV3Map_Code_Only -"Osteoarthritis NOS, of the lower leg",XE1Df,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of the upper arm",XE1Db,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of unspecified site",N05z0,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of wrist",N05zE,CTV3Map_Code_And_Term -"Osteoarthritis NOS, other specified site",N05z8,CTV3Map_Code_And_Term -"Osteoarthritis NOS, pelvic region/thigh",XE1De,CTV3Map_Code_Only -"Osteoarthritis of more than one site, unspecified, NOS",N054z,CTV3Map_Code_And_Term -Osteoarthritis of spinal facet joint,X703A,CTV3Map_Code_And_Term -Patellofemoral osteoarthritis,XaYQD,CTV3Map_Code_Only -"Post-traumatic coxarthrosis, bilateral",N0529,CTV3Map_Code_And_Term -"Primary coxarthrosis, bilateral",N0519,CTV3Map_Code_And_Term -Thumb osteoarthritis NOS,X7034,CTV3Map_Code_And_Term -Toe osteoarthritis NOS,X702z,CTV3Map_Code_And_Term -[X]Other post-traumatic coxarthrosis,Nyu23,CTV3Map_Code_And_Term -(Heberden nodes) or (Bouchard nodes) or (gen osteoarth hand),N0501,CTV3_Children -(Spondylosis NOS) or (osteoarthritis spine),N11z.,CTV3_Children -Ankle osteoarthritis NOS,X7031,CTV3Map_Code_Only -Bouchard's node,X76G5,CTV3Map_Code_Only -Bouchard's node,X76G5,CTV3Map_Code_And_Term -Endemic osteoarthritis,X704R,CTV3_Children -Exacerbation of osteoarthritis,XaIna,CTV3_Children -Finger osteoarthritis NOS,X7035,CTV3Map_Code_And_Term -Foot osteoarthritis NOS,X7030,CTV3Map_Code_Only -Generalised osteoarthritis,N050.,CTV3Map_Code_And_Term -Generalised osteoarthritis of the hand,XE1DW,CTV3Map_Code_And_Term -Heberden's node,XM05w,CTV3Map_Code_And_Term -Heberden's node,XM05w,CTV3Map_Code_Only -Idiopathic osteoarthritis,N0504,CTV3_Children -Idiopathic osteoarthritis,X7038,CTV3Map_Code_And_Term -Localised osteoarthritis,X7041,CTV3_Children -"Localised osteoarthritis, unspecified, of the lower leg",XE1DZ,CTV3Map_Code_Only -"Localised osteoarthritis, unspecified, pelvic region/thigh",XE1DY,CTV3Map_Code_And_Term -O/E - Heberden's nodes,XaBzh,CTV3_Children -Osteoarthritis,XE1DV,CTV3Map_Code_And_Term -Osteoarthritis (& [allied disorders]),N05..,CTV3_Children -Osteoarthritis - ankle/foot,Xa3gR,CTV3_Children -Osteoarthritis - hand joint,Xa3gQ,CTV3_Children -Osteoarthritis - other joint,Xa3gS,CTV3_Children -Osteoarthritis -multiple joint,XE1Gm,CTV3_Children -Osteoarthritis NOS,XE1Da,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of 1st metatarsophalangeal joint",N05zS,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of ankle and foot",XE1Dg,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of distal radioulnar joint",N05zD,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of elbow",N05zC,CTV3Map_Code_Only -"Osteoarthritis NOS, of hip",N05zJ,CTV3Map_Code_Only -"Osteoarthritis NOS, of interphalangeal joint of toe",N05zU,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of knee",N05zL,CTV3Map_Code_Only -"Osteoarthritis NOS, of lesser metatarsophalangeal joint",N05zT,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of metacarpophalangeal joint",N05zF,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of sacroiliac joint",N05zK,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of the forearm",XE1Dc,CTV3Map_Code_Only -"Osteoarthritis NOS, of the hand",XE1Dd,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of the lower leg",XE1Df,CTV3Map_Code_Only -"Osteoarthritis NOS, of the upper arm",XE1Db,CTV3Map_Code_Only -"Osteoarthritis NOS, of tibiofibular joint",N05zM,CTV3Map_Code_And_Term -"Osteoarthritis NOS, of wrist",N05zE,CTV3Map_Code_Only -"Osteoarthritis NOS, pelvic region/thigh",XE1De,CTV3Map_Code_And_Term -Osteoarthritis NOS: [ankle &/or foot] or [toe],N05z7,CTV3_Children -Osteoarthritis NOS: [hand] or [finger] or [thumb],N05z4,CTV3_Children -Osteoarthritis NOS: [lower leg] or [knee],N05z6,CTV3_Children -Osteoarthritis NOS: [of the forearm] or [wrist],N05z3,CTV3_Children -Osteoarthritis NOS: [of the upper arm] or [elbow],N05z2,CTV3_Children -Osteoarthritis NOS: [pelvic region and/or thigh] or [hip],N05z5,CTV3_Children -Osteoarthritis of acromioclavicular joint,X703C,CTV3_Children -Osteoarthritis of ankle,X703M,CTV3_Children -Osteoarthritis of distal interphalangeal joint,X703H,CTV3_Children -Osteoarthritis of elbow,X703D,CTV3_Children -Osteoarthritis of finger joint,X703G,CTV3_Children -Osteoarthritis of first carpometacarpal joint,X703F,CTV3_Children -Osteoarthritis of first metatarsalphalangeal joint,X703O,CTV3_Children -Osteoarthritis of foot joint,XaBmY,CTV3_Children -Osteoarthritis of hip,X703K,CTV3_Children -Osteoarthritis of knee,X703L,CTV3_Children -Osteoarthritis of metacarpophalangeal joint,XM1NQ,CTV3_Children -Osteoarthritis of metacarpophalangeal joint of finger,X703J,CTV3_Children -Osteoarthritis of proximal interphalangeal joint,X703I,CTV3_Children -Osteoarthritis of shoulder joint,X703B,CTV3_Children -Osteoarthritis of subtalar joint,X703N,CTV3_Children -Osteoarthritis of toe joint,X703P,CTV3_Children -Osteoarthritis of wrist,X703E,CTV3_Children -Osteoarthritis: [localised low leg unsp] or [patellofemoral],N0536,CTV3_Children -Patellofemoral osteoarthritis,XaYQD,CTV3Map_Code_And_Term -Secondary osteoarthritis,X703Q,CTV3_Children -Thumb osteoarthritis NOS,X7034,CTV3Map_Code_Only -Toe osteoarthritis NOS,X702z,CTV3Map_Code_Only -[Joint degeneration] or [osteoarthritis NOS],N05z.,CTV3_Children -(Otto pel)(hip osteoart NOS)(loc osteoart uns pel reg/thigh),N0535,CTV3_Children -Otto's pelvis,X7042,CTV3Map_Code_Only \ No newline at end of file +code,term +14G2.,H/O: osteoarthritis +2G26.,O/E - hands - Heberden's nodes +N05..,Osteoarthritis (& [allied disorders]) +N050.,Generalised osteoarthritis +N0500,Generalised osteoarthritis of unspecified site +N0501,(Heberden nodes) or (Bouchard nodes) or (gen osteoarth hand) +N0502,Generalised osteoarthritis of multiple sites +N0503,Bouchard's nodes with arthropathy +N0504,Idiopathic osteoarthritis +N0506,Erosive osteoarthrosis +N0507,Heberden's nodes with arthropathy +N050z,Generalised osteoarthritis NOS +N051.,"Localised, primary osteoarthritis" +N0510,"Localised, primary osteoarthritis of unspecified site" +N0511,"Localised, primary osteoarthritis of the shoulder region" +N0512,"Localised, primary osteoarthritis of the upper arm" +N0513,"Localised, primary osteoarthritis of the forearm" +N0514,"Localised, primary osteoarthritis of the hand" +N0515,"Localised, primary osteoarthritis of the pelvic region/thigh" +N0516,"Localised, primary osteoarthritis of the lower leg" +N0517,"Localised, primary osteoarthritis of the ankle and foot" +N0518,"Localised, primary osteoarthritis of other specified site" +N0519,"Primary coxarthrosis, bilateral" +N051z,"Localised, primary osteoarthritis NOS" +N052.,"Localised, secondary osteoarthritis" +N0520,"Localised, secondary osteoarthritis of unspecified site" +N0521,"Localised, secondary osteoarthritis of the shoulder region" +N0522,"Localised, secondary osteoarthritis of the upper arm" +N0523,"Localised, secondary osteoarthritis of the forearm" +N0524,"Localised, secondary osteoarthritis of the hand" +N0526,"Localised, secondary osteoarthritis of the lower leg" +N0527,"Localised, secondary osteoarthritis of the ankle and foot" +N0528,"Localised, secondary osteoarthritis of other specified site" +N0529,"Post-traumatic coxarthrosis, bilateral" +N052z,"Localised, secondary osteoarthritis NOS" +N053.,"Localised osteoarthritis, unspecified" +N0530,"Localised osteoarthritis, unspecified, of unspecified site" +N0531,"Localised osteoarthritis, unspecified, of shoulder region" +N0532,"Localised osteoarthritis, unspecified, of the upper arm" +N0533,"Localised osteoarthritis, unspecified, of the forearm" +N0534,"Localised osteoarthritis, unspecified, of the hand" +N0535,(Otto pel)(hip osteoart NOS)(loc osteoart uns pel reg/thigh) +N0536,Osteoarthritis: [localised low leg unsp] or [patellofemoral] +N0537,"Localised osteoarthritis, unspecified, of the ankle and foot" +N0538,"Localised osteoarthritis, unspecified, of other spec site" +N053z,"Localised osteoarthritis, unspecified, NOS" +N054.,"Oligoarticular osteoarthritis, unspecified" +N0540,"Oligoarticular osteoarthritis, unspec, of unspecified sites" +N0541,"Oligoarticular osteoarthritis, unspecified, of shoulder" +N0542,"Oligoarticular osteoarthritis, unspecified, of upper arm" +N0543,"Oligoarticular osteoarthritis, unspecified, of forearm" +N0544,"Oligoarticular osteoarthritis, unspecified, of hand" +N0545,"Oligoarticular osteoarthritis, unspecified, of pelvis/thigh" +N0546,"Oligoarticular osteoarthritis, unspecified, of lower leg" +N0547,"Oligoarticular osteoarthritis, unspecified, of ankle/foot" +N0548,"Oligoarticular osteoarthritis, unspecified, other spec sites" +N0549,"Oligoarticular osteoarthritis, unspecified, multiple sites" +N054z,"Osteoarthritis of more than one site, unspecified, NOS" +N05z.,[Joint degeneration] or [osteoarthritis NOS] +N05z0,"Osteoarthritis NOS, of unspecified site" +N05z1,"Osteoarthritis NOS, of shoulder region" +N05z2,Osteoarthritis NOS: [of the upper arm] or [elbow] +N05z3,Osteoarthritis NOS: [of the forearm] or [wrist] +N05z4,Osteoarthritis NOS: [hand] or [finger] or [thumb] +N05z5,Osteoarthritis NOS: [pelvic region and/or thigh] or [hip] +N05z6,Osteoarthritis NOS: [lower leg] or [knee] +N05z7,Osteoarthritis NOS: [ankle &/or foot] or [toe] +N05z8,"Osteoarthritis NOS, other specified site" +N05z9,"Osteoarthritis NOS, of shoulder" +N05zA,"Osteoarthritis NOS, of sternoclavicular joint" +N05zB,"Osteoarthritis NOS, of acromioclavicular joint" +N05zC,"Osteoarthritis NOS, of elbow" +N05zD,"Osteoarthritis NOS, of distal radioulnar joint" +N05zE,"Osteoarthritis NOS, of wrist" +N05zF,"Osteoarthritis NOS, of metacarpophalangeal joint" +N05zG,"Osteoarthritis NOS, of PIP joint of finger" +N05zH,"Osteoarthritis NOS, of DIP joint of finger" +N05zJ,"Osteoarthritis NOS, of hip" +N05zK,"Osteoarthritis NOS, of sacroiliac joint" +N05zL,"Osteoarthritis NOS, of knee" +N05zM,"Osteoarthritis NOS, of tibiofibular joint" +N05zN,"Osteoarthritis NOS, of ankle" +N05zP,"Osteoarthritis NOS, of subtalar joint" +N05zQ,"Osteoarthritis NOS, of talonavicular joint" +N05zR,"Osteoarthritis NOS, of other tarsal joint" +N05zS,"Osteoarthritis NOS, of 1st metatarsophalangeal joint" +N05zT,"Osteoarthritis NOS, of lesser metatarsophalangeal joint" +N05zU,"Osteoarthritis NOS, of interphalangeal joint of toe" +N05zz,Osteoarthritis NOS +N11..,(Spondyl & allied dis) or (arthr spine) or (osteoarth spine) +N110.,Cerv spondylos (& [no myelopath]) or (osteoarthr cerv spine) +N1100,Single-level cervical spondylosis without myelopathy +N1101,Two-level cervical spondylosis without myelopathy +N1102,Multiple-level cervical spondylosis without myelopathy +N1110,Single-level cervical spondylosis with myelopathy +N1111,Two-level cervical spondylosis with myelopathy +N1112,Multiple-level cervical spondylosis with myelopathy +N112.,Thoracic spondylosis (& [without myelopathy]) +N1120,Single-level thoracic spondylosis without myelopathy +N1121,Two-level thoracic spondylosis without myelopathy +N1122,Multiple-level thoracic spondylosis without myelopathy +N113.,Thoracic spondylosis with myelopathy +N1130,Single-level thoracic spondylosis with myelopathy +N1131,Two-level thoracic spondylosis with myelopathy +N1132,Multiple-level thoracic spondylosis with myelopathy +N114.,(Lumbosacr spondylos [& no myelopath]) or (degen lumb spine) +N1140,Single-level lumbosacral spondylosis without myelopathy +N1141,Two-level lumbosacral spondylosis without myelopathy +N1142,Multiple-level lumbosacral spondylosis without myelopathy +N115.,Lumbosacral spondylosis with myelopathy +N1150,Single-level lumbosacral spondylosis with myelopathy +N1151,Two-level lumbosacral spondylosis with myelopathy +N1152,Multiple-level lumbosacral spondylosis with myelopathy +N119.,Cervical spondylosis with radiculopathy +N1190,Single-level cervical spondylosis with radiculopathy +N1191,Two-level cervical spondylosis with radiculopathy +N1192,Multiple-level cervical spondylosis with radiculopathy +N11A.,Cervical spondylosis with vascular compression +N11B.,Thoracic spondylosis with radiculopathy +N11B0,Single-level thoracic spondylosis with radiculopathy +N11B1,Two-level thoracic spondylosis with radiculopathy +N11B2,Multiple-level thoracic spondylosis with radiculopathy +N11C.,Lumbosacral spondylosis with radiculopathy +N11C0,Single-level lumbosacral spondylosis with radiculopathy +N11C1,Two-level lumbosacral spondylosis with radiculopathy +N11C2,Multiple-level lumbosacral spondylosis with radiculopathy +N11y.,Other spondyloses and allied disorders +N11z.,(Spondylosis NOS) or (osteoarthritis spine) +N11z0,"Spondylosis without myelopathy, NOS" +N11z1,"Spondylosis with myelopathy, NOS" +N11zz,Spondylosis NOS +Nyu23,[X]Other post-traumatic coxarthrosis +Nyu62,[X]Other spondylosis with myelopathy +Nyu63,[X]Other spondylosis with radiculopathy +Nyu64,[X]Other spondylosis +X702z,Toe osteoarthritis NOS +X7030,Foot osteoarthritis NOS +X7031,Ankle osteoarthritis NOS +X7034,Thumb osteoarthritis NOS +X7035,Finger osteoarthritis NOS +X7038,Idiopathic osteoarthritis +X7039,Spondylosis +X703A,Osteoarthritis of spinal facet joint +X703B,Osteoarthritis of shoulder joint +X703C,Osteoarthritis of acromioclavicular joint +X703D,Osteoarthritis of elbow +X703E,Osteoarthritis of wrist +X703F,Osteoarthritis of first carpometacarpal joint +X703G,Osteoarthritis of finger joint +X703H,Osteoarthritis of distal interphalangeal joint +X703I,Osteoarthritis of proximal interphalangeal joint +X703J,Osteoarthritis of metacarpophalangeal joint of finger +X703K,Osteoarthritis of hip +X703L,Osteoarthritis of knee +X703M,Osteoarthritis of ankle +X703N,Osteoarthritis of subtalar joint +X703O,Osteoarthritis of first metatarsalphalangeal joint +X703P,Osteoarthritis of toe joint +X703Q,Secondary osteoarthritis +X703j,Cervical spondylosis +X703k,Lumbar spondylosis +X7041,Localised osteoarthritis +X7042,Otto's pelvis +X704R,Endemic osteoarthritis +X70Cw,Thoracic spondylosis +X70Cy,Degenerative arthropathy of spinal facet joint +X76G5,Bouchard's node +XE1DV,Osteoarthritis +XE1DW,Generalised osteoarthritis of the hand +XE1DX,"Localised, secondary osteoarthritis of pelvic region/thigh" +XE1DY,"Localised osteoarthritis, unspecified, pelvic region/thigh" +XE1DZ,"Localised osteoarthritis, unspecified, of the lower leg" +XE1Da,Osteoarthritis NOS +XE1Db,"Osteoarthritis NOS, of the upper arm" +XE1Dc,"Osteoarthritis NOS, of the forearm" +XE1Dd,"Osteoarthritis NOS, of the hand" +XE1De,"Osteoarthritis NOS, pelvic region/thigh" +XE1Df,"Osteoarthritis NOS, of the lower leg" +XE1Dg,"Osteoarthritis NOS, of ankle and foot" +XE1Et,Spondylosis and allied disorders +XE1Eu,Cervical spondylosis without myelopathy +XE1Ev,Cervical spondylosis with myelopathy +XE1Ew,Thoracic spondylosis without myelopathy +XE1Ex,Lumbosacral spondylosis without myelopathy +XE1Ey,Spondylosis NOS +XE1Gm,Osteoarthritis -multiple joint +XE1HM,(Spond:[cerv][lum][sac]) or (arth spine) or (osteoart spine) +XM05w,Heberden's node +XM1NQ,Osteoarthritis of metacarpophalangeal joint +Xa3gQ,Osteoarthritis - hand joint +Xa3gR,Osteoarthritis - ankle/foot +Xa3gS,Osteoarthritis - other joint +XaBmY,Osteoarthritis of foot joint +XaBzh,O/E - Heberden's nodes +XaE3C,Lumbosacral spondylosis +XaEGd,"Localised, primary osteoarthritis of the wrist" +XaEGe,"Localised, primary osteoarthritis of toe" +XaEGf,"Localised, primary osteoarthritis of elbow" +XaIna,Exacerbation of osteoarthritis +XaLsk,Delivery of rehabilitation for osteoarthritis +XaVyj,Hip disability and osteoarthritis outcome score +XaYQD,Patellofemoral osteoarthritis +Y5903,Cervical spond.with myelopathy +Y8078,Osteoarthritis - elbow joint +Y8079,Osteoarthritis - hip joint +Y8080,Osteoarthritis - knee joint +Y8081,Osteoarthritis - NOS +Y8082,Osteoarthritis - wrist joint +Y8083,Osteoarthritis -shoulder joint diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-rheumatoid-arthritis.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-rheumatoid-arthritis.csv index 875df20cc..89be524d8 100644 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-rheumatoid-arthritis.csv +++ b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-rheumatoid-arthritis.csv @@ -1,82 +1,86 @@ -CTV3ID,CTV3PreferredTermDesc,CTV3Source -N0431,Acute polyarticular juvenile rheumatoid arthritis,High_Level_SNOMED -N041.,Felty's syndrome,CTV3Map_Code_And_Term -X701k,Fibrosing alveolitis associated with rheumatoid arthritis,CTV3Map_Code_Only -X701k,Fibrosing alveolitis associated with rheumatoid arthritis,CTV3Map_Code_And_Term -N040T,Flare of rheumatoid arthritis,CTV3Map_Code_And_Term -14G1.,H/O: rheumatoid arthritis,High_Level_SNOMED -X701t,Juvenile rheumatoid arthritis,High_Level_SNOMED -XE1Gi,Juvenile rheumatoid arthritis &/or Still's disease,High_Level_SNOMED -N043z,Juvenile rheumatoid arthritis NOS,High_Level_SNOMED -N0433,Monarticular juvenile rheumatoid arthritis,High_Level_SNOMED -F3964,Myopathy due to rheumatoid arthritis,CTV3Map_Code_And_Term -X705t,Nailfold rheumatoid vasculitis,CTV3_Children -X705v,Necrotising rheumatoid vasculitis,CTV3_Children -2G27.,O/E-hands-rheumatoid spindling,CTV3Map_Code_And_Term -N0401,Other rheumatoid arthritis of spine,CTV3Map_Code_And_Term -N042.,Other rheumatoid arthropathy + visceral/systemic involvement,CTV3Map_Code_And_Term -F3712,Polyneuropathy in rheumatoid arthritis,CTV3Map_Code_And_Term -Xafj8,Rheum arth monitor invitation by SMS (short message service),QOF -N040.,Rheumatoid arthritis,CTV3Map_Code_And_Term -Xa3gN,Rheumatoid arthritis - ankle/foot,CTV3_Children -Xa3gM,Rheumatoid arthritis - hand joint,CTV3_Children -N040S,Rheumatoid arthritis - multiple joint,CTV3_Children -Xa3gL,Rheumatoid arthritis - multiple joint,CTV3Map_Code_And_Term -Xa3gO,Rheumatoid arthritis - other joint,CTV3_Children -Xa3gP,Rheumatoid arthritis NOS,CTV3_Children -XE1DU,Rheumatoid arthritis and other inflammatory polyarthropathy,QOF -XaZdB,Rheumatoid arthritis annual review,CTV3_Children -XM1XV,Rheumatoid arthritis monitoring,CTV3Map_Code_And_Term -XafjA,Rheumatoid arthritis monitoring SMS text mesg 2nd invitation,QOF -XafjB,Rheumatoid arthritis monitoring SMS text mesg 3rd invitation,QOF -XaaWW,Rheumatoid arthritis monitoring invitation,QOF -XagLZ,Rheumatoid arthritis monitoring invitation email,QOF -XaaWt,Rheumatoid arthritis monitoring invitation first letter,QOF -XaaWu,Rheumatoid arthritis monitoring invitation second letter,QOF -XaaWv,Rheumatoid arthritis monitoring invitation third letter,QOF -XaaWx,Rheumatoid arthritis monitoring telephone invitation,QOF -XaaWw,Rheumatoid arthritis monitoring verbal invitation,QOF -Xafj9,Rheumatoid arthritis monitring SMS text msg first invitation,QOF -N040A,Rheumatoid arthritis of DIP joint of finger,CTV3Map_Code_And_Term -N0409,Rheumatoid arthritis of PIP joint of finger,CTV3Map_Code_And_Term -N0404,Rheumatoid arthritis of acromioclavicular joint,CTV3Map_Code_And_Term -N040F,Rheumatoid arthritis of ankle,CTV3Map_Code_And_Term -N0400,Rheumatoid arthritis of cervical spine,CTV3Map_Code_And_Term -N0406,Rheumatoid arthritis of distal radioulnar joint,CTV3Map_Code_And_Term -N0405,Rheumatoid arthritis of elbow,CTV3Map_Code_And_Term -N040K,Rheumatoid arthritis of first metatarsophalangeal joint,CTV3Map_Code_And_Term -N040B,Rheumatoid arthritis of hip,CTV3Map_Code_And_Term -N040M,Rheumatoid arthritis of interphalangeal joint of toe,CTV3Map_Code_And_Term -N040D,Rheumatoid arthritis of knee,CTV3Map_Code_And_Term -N040L,Rheumatoid arthritis of lesser metatarsophalangeal joint,CTV3Map_Code_And_Term -N0408,Rheumatoid arthritis of metacarpophalangeal joint,CTV3Map_Code_And_Term -N040J,Rheumatoid arthritis of other tarsal joint,CTV3Map_Code_And_Term -N040C,Rheumatoid arthritis of sacroiliac joint,CTV3Map_Code_And_Term -N0402,Rheumatoid arthritis of shoulder,CTV3Map_Code_And_Term -N0403,Rheumatoid arthritis of sternoclavicular joint,CTV3Map_Code_And_Term -N040G,Rheumatoid arthritis of subtalar joint,CTV3Map_Code_And_Term -N040H,Rheumatoid arthritis of talonavicular joint,CTV3Map_Code_And_Term -N040E,Rheumatoid arthritis of tibiofibular joint,CTV3Map_Code_And_Term -N0407,Rheumatoid arthritis of wrist,CTV3Map_Code_And_Term -X701m,Rheumatoid arthritis with multisystem involvement,CTV3_Children -X701j,Rheumatoid arthritis with organ / system involvement,CTV3_Children -N042z,Rheumatoid arthropathy + visceral/systemic involvement NOS,CTV3Map_Code_And_Term -N040Q,Rheumatoid bursitis,CTV3Map_Code_And_Term -G5yA.,Rheumatoid carditis,CTV3Map_Code_And_Term -N0421,Rheumatoid lung,CTV3Map_Code_And_Term -N0421,Rheumatoid lung,CTV3Map_Code_Only -G5y8.,Rheumatoid myocarditis,CTV3Map_Code_And_Term -N0422,Rheumatoid nodule,CTV3Map_Code_And_Term -X103Y,Rheumatoid pneumoconiosis,CTV3Map_Code_Only -X103Y,Rheumatoid pneumoconiosis,CTV3Map_Code_And_Term -X701l,Rheumatoid vasculitis,CTV3Map_Code_And_Term -X701i,Seronegative rheumatoid arthritis,CTV3Map_Code_And_Term -XaBMO,Seropositive errosive rheumatoid arthritis,CTV3Map_Code_And_Term -X701h,Seropositive rheumatoid arthritis,CTV3_Children -Xa3wk,Still's disease - juvenile rheumatoid arthritis,High_Level_SNOMED -X705u,Systemic rheumatoid vasculitis,CTV3_Children -Nyu11,[X]Other seropositive rheumatoid arthritis,CTV3Map_Code_And_Term -Nyu12,[X]Other specified rheumatoid arthritis,CTV3Map_Code_And_Term -Nyu10,[X]Rheumatoid arthritis+involvement/other organs or systems,CTV3Map_Code_And_Term -Nyu1G,"[X]Seropositive rheumatoid arthritis, unspecified",CTV3Map_Code_And_Term -N04X.,"[X]Seropositive rheumatoid arthritis, unspecified",CTV3_Children \ No newline at end of file +code,term +14G1.,H/O: rheumatoid arthritis +2G27.,O/E-hands-rheumatoid spindling +F3712,Polyneuropathy in rheumatoid arthritis +F3964,Myopathy due to rheumatoid arthritis +G5y8.,Rheumatoid myocarditis +G5yA.,Rheumatoid carditis +N04..,Inflamm polyarthropathy: (& [rheumatoid arthrit] or [other]) +N040.,Rheumatoid arthritis +N0400,Rheumatoid arthritis of cervical spine +N0401,Other rheumatoid arthritis of spine +N0402,Rheumatoid arthritis of shoulder +N0403,Rheumatoid arthritis of sternoclavicular joint +N0404,Rheumatoid arthritis of acromioclavicular joint +N0405,Rheumatoid arthritis of elbow +N0406,Rheumatoid arthritis of distal radioulnar joint +N0407,Rheumatoid arthritis of wrist +N0408,Rheumatoid arthritis of metacarpophalangeal joint +N0409,Rheumatoid arthritis of PIP joint of finger +N040A,Rheumatoid arthritis of DIP joint of finger +N040B,Rheumatoid arthritis of hip +N040C,Rheumatoid arthritis of sacroiliac joint +N040D,Rheumatoid arthritis of knee +N040E,Rheumatoid arthritis of tibiofibular joint +N040F,Rheumatoid arthritis of ankle +N040G,Rheumatoid arthritis of subtalar joint +N040H,Rheumatoid arthritis of talonavicular joint +N040J,Rheumatoid arthritis of other tarsal joint +N040K,Rheumatoid arthritis of first metatarsophalangeal joint +N040L,Rheumatoid arthritis of lesser metatarsophalangeal joint +N040M,Rheumatoid arthritis of interphalangeal joint of toe +N040Q,Rheumatoid bursitis +N040S,Rheumatoid arthritis - multiple joint +N040T,Flare of rheumatoid arthritis +N041.,Felty's syndrome +N042.,Other rheumatoid arthropathy + visceral/systemic involvement +N0421,Rheumatoid lung +N0422,Rheumatoid nodule +N042z,Rheumatoid arthropathy + visceral/systemic involvement NOS +N0431,Acute polyarticular juvenile rheumatoid arthritis +N0433,Monarticular juvenile rheumatoid arthritis +N043z,Juvenile rheumatoid arthritis NOS +N04X.,"[X]Seropositive rheumatoid arthritis, unspecified" +Nyu10,[X]Rheumatoid arthritis+involvement/other organs or systems +Nyu11,[X]Other seropositive rheumatoid arthritis +Nyu12,[X]Other specified rheumatoid arthritis +Nyu1G,"[X]Seropositive rheumatoid arthritis, unspecified" +X103Y,Rheumatoid pneumoconiosis +X701h,Seropositive rheumatoid arthritis +X701i,Seronegative rheumatoid arthritis +X701j,Rheumatoid arthritis with organ / system involvement +X701k,Fibrosing alveolitis associated with rheumatoid arthritis +X701l,Rheumatoid vasculitis +X701m,Rheumatoid arthritis with multisystem involvement +X701t,Juvenile rheumatoid arthritis +X705t,Nailfold rheumatoid vasculitis +X705u,Systemic rheumatoid vasculitis +X705v,Necrotising rheumatoid vasculitis +XE1DU,Rheumatoid arthritis and other inflammatory polyarthropathy +XE1Gi,Juvenile rheumatoid arthritis &/or Still's disease +XM1XV,Rheumatoid arthritis monitoring +Xa3gL,Rheumatoid arthritis - multiple joint +Xa3gM,Rheumatoid arthritis - hand joint +Xa3gN,Rheumatoid arthritis - ankle/foot +Xa3gO,Rheumatoid arthritis - other joint +Xa3gP,Rheumatoid arthritis NOS +Xa3wk,Still's disease - juvenile rheumatoid arthritis +XaBMO,Seropositive errosive rheumatoid arthritis +XaLsj,Delivery of rehabilitation for rheumatoid arthritis +XaN2K,Disease activity score in rheumatoid arthritis +XaYT6,Disease activity score 28 joint in rheumatoid arthritis +XaZdB,Rheumatoid arthritis annual review +XaaWW,Rheumatoid arthritis monitoring invitation +XaaWt,Rheumatoid arthritis monitoring invitation first letter +XaaWu,Rheumatoid arthritis monitoring invitation second letter +XaaWv,Rheumatoid arthritis monitoring invitation third letter +XaaWw,Rheumatoid arthritis monitoring verbal invitation +XaaWx,Rheumatoid arthritis monitoring telephone invitation +Xaex7,Rheumatoid Arthritis Impact of Disease questionnaire +Xafj8,Rheum arth monitor invitation by SMS (short message service) +Xafj9,Rheumatoid arthritis monitring SMS text msg first invitation +XafjA,Rheumatoid arthritis monitoring SMS text mesg 2nd invitation +XafjB,Rheumatoid arthritis monitoring SMS text mesg 3rd invitation +XagLZ,Rheumatoid arthritis monitoring invitation email +Y1fa1,Quality and Outcomes Framework rheumatoid arthritis quality indicator-related care invitation (procedure) +Y27bb,LTC care plan agreed using AIRMID - rheumatoid arthritis diff --git a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-symptoms-pain.csv b/tests/acceptance/external_studies/waiting-list/codelists/opensafely-symptoms-pain.csv deleted file mode 100644 index 9f10ceb20..000000000 --- a/tests/acceptance/external_studies/waiting-list/codelists/opensafely-symptoms-pain.csv +++ /dev/null @@ -1,3608 +0,0 @@ -code,term -10000006,Radiating chest pain -1000004,Sprain -1003721002,Pain of joint of knee -1003722009,Pain of knee region -10085004,Metatarsalgia -1010233001,Otalgia of left ear -1010234007,Otalgia of right ear -102480002,Generalized acute body pains -102481003,Generalized chronic body pains -102482005,Growing pains -102554000,Cervical spinous process tenderness -102555004,Neck pain aggravated by recumbency -102556003,Pain in upper limb -102570003,Inguinal pain -102587001,Acute chest pain -102588006,Chest wall pain -102589003,Atypical chest pain -102591006,Chest wall tenderness -102616008,Painful mouth -102619001,Pain in esophagus -102628000,Gallbladder pain -102830001,Renal angle tenderness -102831002,Renal angle pain -102997000,Psychroalgia -103000001,Crymodynia -103013007,Smarting pain -103014001,Cervical nerve root pain -103015000,Thoracic nerve root pain -103016004,Lumbosacral nerve root pain -10317009,Spinal enthesopathy -1033009,Thoracic arthritis -10512004,Sprain of other site of shoulder and upper arm -105380005,Cryoanalgesia -105611005,Sprain of ligament of joint -10601006,Pain in lower limb -1069301000000108,Does manage pain in body part -1069661000000101,Unable to understand pain in body part -1070371000000103,Difficulty managing generalised pain -1070461000000102,Difficulty managing pain in body part -1071031000000107,Difficulty tolerating generalised pain -1071041000000103,Difficulty tolerating pain in body part -1072071000000104,Does not manage generalised pain -1072151000000109,Does not manage pain in body part -1072701000000109,Does not tolerate generalised pain -1072711000000106,Does not tolerate pain in body part -1073721000000107,Does manage generalised pain -1074391000119103,Osteoarthritis of right sternoclavicular joint -1074411000119103,Osteoarthritis of bilateral sternoclavicular joints -1074451000119102,Osteoarthritis of left sternoclavicular joint -1074461000119100,Osteoarthritis of right foot -1074471000119106,Osteoarthritis of midtarsal joint of right foot -1074481000119109,Osteoarthritis of first metatarsophalangeal joint of right foot -1074491000119107,Osteoarthritis of left foot -1074501000119100,Osteoarthritis of midtarsal joint of left foot -1074511000119102,Osteoarthritis of first metatarsophalangeal joint of left foot -1074561000119104,Osteoarthritis of right sacroiliac joint -1074571000119105,Osteoarthritis of left sacroiliac joint -1074631000119106,Arthritis of bilateral glenohumeral joints -1074651000119100,Arthritis of left glenohumeral joint -1074661000119103,Arthritis of left sternoclavicular joint -1074671000119109,Arthritis of right glenohumeral joint -1074681000119107,Arthritis of right sternoclavicular joint -1074691000119105,Arthritis of left elbow -1074701000119105,Arthritis of right elbow -1074711000119108,Arthritis of bilateral elbows -1074721000119101,Arthritis of left wrist -1074731000119103,Arthritis of right wrist -1074741000119107,Arthritis of bilateral wrist -1074771000119100,Arthritis of finger of bilateral hand -1074781000119102,Arthritis of bilateral first carpometacarpal joints -1074801000119103,Arthritis of first carpometacarpal joint of left hand -1074811000119100,Arthritis of first carpometacarpal joint of right hand -1074881000119106,Arthritis of left ankle -1074891000119109,Arthritis of left foot -1074901000119108,Arthritis of left midtarsal joint -1074911000119106,Arthritis of right ankle -1074921000119104,Arthritis of right foot -1074931000119101,Arthritis of right midtarsal joint -1074941000119105,Arthritis of bilateral ankle -1074951000119107,Arthritis of bilateral feet -1074961000119109,Arthritis of bilateral sternoclavicular joints -1074971000119103,Arthritis of left sacroiliac joint -1074981000119100,Arthritis of right sacroiliac joint -1075231000000101,Unable to manage generalised pain -1075321000000105,Unable to manage pain in body part -1075491000119108,Femoral acetabular impingement of right hip joint -1075501000119101,Femoral acetabular impingement of left hip joint -1075631000119107,Pain of right sternoclavicular joint -1075651000119101,Pain of left sternoclavicular joint -1075811000119101,Calcific tendinitis of right foot -1075821000119108,Calcific tendinitis of right achilles tendon -1075841000119102,Calcific tendinitis of left achilles tendon -1075851000119100,Tenosynovitis of right wrist -1075861000119103,Tenosynovitis of left wrist -1075871000119109,Tenosynovitis of right hand -1075881000119107,Tenosynovitis of left hand -1075891000119105,Synovitis of left ankle joint -1075901000119109,Synovitis of right ankle joint -1075911000119107,Synovitis of joint of left foot -1075921000000109,Unable to tolerate generalised pain -1075921000119100,Synovitis of joint of right foot -1075931000000106,Unable to tolerate pain in body part -1075931000119102,Tenosynovitis of left ankle -1075941000119106,Tenosynovitis of right ankle -1075951000119108,Tenosynovitis of left foot -1075961000119105,Tenosynovitis of right foot -1076011000000108,Unable to understand generalised pain -1076171000119108,Patellar bursitis of right knee -1076181000119106,Bursitis of right knee -1076191000119109,Pes anserinus bursitis of right knee -1076211000119105,Suprapatellar bursitis of right knee -1076221000119103,Subpatellar bursitis of right knee -1076231000119100,Patellar bursitis of left knee -1076241000119109,Bursitis of left knee -1076251000119106,Pes anserinus bursitis of left knee -1076271000119102,Suprapatellar bursitis of left knee -1076281000119104,Subpatellar bursitis of left knee -1076291000119101,Ischiogluteal bursitis of right hip -1076301000119100,Iliopsoas bursitis of right hip -1076311000119102,Ischiogluteal bursitis of left hip -1076321000119109,Iliopsoas bursitis of left hip -1076421000119104,Retrocalcaneal bursitis of right foot -1076441000119105,Retrocalcaneal bursitis of left foot -1076501000119109,Subacromial bursitis of right shoulder -1076521000119100,Subdeltoid bursitis of right shoulder -1076531000119102,Scapulothoracic bursitis of right shoulder -1076541000119106,Subacromial bursitis of left shoulder -1076561000119105,Subdeltoid bursitis of left shoulder -1076571000119104,Scapulothoracic bursitis of left shoulder -1076621000119101,Tendinitis of right knee -1076631000119103,Tendinitis of right hip adductor muscle -1076641000119107,Tendinitis of left knee -1076651000119109,Tendinitis of left hip adductor muscle -1076671000119100,Tendinitis of right flexor hallucis longus -1076691000119104,Tendinitis of left flexor hallucis longus -1076721000119108,Joint pain in right hand -1076731000119106,Joint pain in left hand -1078021000000101,Pelvic girdle pain -107841000000101,Mechanical low back pain -1082771000000109,Magnetic resonance arthrography of carpometacarpal joint -1084561000119106,Referred otalgia of bilateral ears -1088071000000108,Pain in upper arm -1089311000000108,Painful and cold upper limb -1089321000000102,Painful and cold lower limb -1089331000000100,Painful and cold lower leg -1089341000000109,Painful and cold foot -1089351000000107,Painful and cold forearm -1089361000000105,Painful and cold hand -108941000000106,Ischial bursitis -1089561000119107,Referred otalgia of left ear -1092171000119100,Referred otalgia of right ear -109297005,Acute bursitis -109298000,Subacute bursitis -109299008,Chronic bursitis -1094851000000101,Chronic sacroiliac joint pain -109659002,Tenderness of temporomandibular joint on palpation -109663009,Arthritis of temporomandibular joint as part of polyarthritis -109668000,Degenerative arthritis of temporomandibular joint -11023001,Acute calcific periarthritis -110288007,Tenderness of joint -110341006,Tenderness of gums -11049006,Cervical radiculitis -1108141000000108,Expresses pain atypically -11114002,Sore gums -111211002,Migratory polyarthritis -111219000,Degenerative joint disease of other site -111220006,Primary localized osteoarthrosis of other site -111237004,Putti's syndrome -111239001,Peripheral enthesopathy -111240004,Enthesopathy of shoulder region -111242007,Periarthritis of wrist -111243002,Bursitis of knee -111255008,Avascular necrosis of the capital femoral epiphysis -111277007,Pharyngeal bursitis -111349000,Glossopyrosis -111653006,Sprain of sacroiliac region -1119213008,Tenderness of left lumbar region of back -1119214002,Tenderness of right lumbar region of back -1119215001,Pain in left lumbar region of back -1119216000,Pain in right lumbar region of back -1121000119107,Chronic neck pain -112102006,Atypical neuralgia -112104007,Localized pain -112581000119104,Acute pain of joint of knee -112821000000109,Neuropathic pain -112961000119103,Osteoarthritis of joint of bilateral feet -112971000119109,Osteoarthritis of joint of bilateral ankles -112981000119107,Osteoarthritis of bilateral knee joints -112991000119105,Osteoarthritis of bilateral hip joints -113001000119106,Osteoarthritis of joint of finger of bilateral hands -113011000119109,Osteoarthritis of joint of bilateral hands -113021000119102,Osteoarthritis of bilateral wrists -113041000119108,Osteoarthritis of bilateral shoulders -113611000119100,Myofascial pain syndrome of lumbar spine -11382003,Sprain of ulnar collateral ligament -11654001,Achilles tendinitis -11679003,Radicular pain -117711000000105,Myalgia/myositis of neck -11826631000119102,Strain of tendon of left hand -11826671000119104,Strain of muscle of left hand -11826711000119100,Strain of tendon of right wrist -11826791000119109,Strain of tendon of left wrist -11833751000119108,Sprain of talofibular ligament of right ankle -11833791000119103,Sprain of talofibular ligament of left ankle -11838861000119108,Strain of intrinsic muscle of left thumb -11839051000119107,Strain of muscle of right hand -11839121000119103,Strain of intrinsic muscle of right thumb -11839311000119108,Strain of tendon of right hand -11842371000119107,Strain of tendon of right ankle -11842451000119109,Strain of tendon of left ankle -11842731000119108,Strain of muscle of right foot -11842771000119106,Strain of muscle of left foot -11857981000119105,Strain of muscle of right lower leg -11858021000119108,Strain of muscle of left lower leg -11858061000119103,Strain of muscle of right posterior lower leg -11858101000119100,Strain of muscle of left posterior lower leg -11892641000119101,Chronic female pelvic pain syndrome -11939005,Acute arthritis -11991005,Degenerative joint disease of lower leg -12236481000119105,Bursitis of left wrist -12236521000119105,Bursitis of right wrist -12236561000119100,Arthritis of finger of left hand -12236601000119100,Arthritis of finger of right hand -12241111000119104,Tendinitis of left elbow -12241151000119103,Tendinitis of left forearm -12241191000119108,Tendinitis of right elbow -12241231000119104,Tendinitis of right forearm -12241631000119102,Osteoarthritis of finger joint of left hand -12241671000119104,Osteoarthritis of finger joint of right hand -12242791000119100,Tenderness of left temporomandibular joint -12242831000119106,Tenderness of right temporomandibular joint -12247531000119106,Pain in bilateral lower legs -12247571000119109,Bilateral foot joint pain -1229008,Sprain of midcarpal joint -123091001,Painful ejaculation -123253007,Neuralgia -123255000,Radiculitis -12336008,Referred otalgia -123536004,Sprain of upper extremity -123586005,Tendon sheath crepitus -12367361000119109,Osteoarthritis of right patellofemoral joint -12367411000119102,Osteoarthritis of left patellofemoral joint -12367461000119104,Osteoarthritis of bilateral patellofemoral joints -123796003,Cervical spondylosis -123797007,Thoracic spondylosis -12519004,Sprain of sacroiliac ligament -12521000132103,Strain of jaw -12531000132101,Strain of toe -125624001,Sprain of ligament -12584003,Bone pain -12594008,Sprain of sacrotuberous ligament -127292004,Sprain of anterior cruciate ligament of knee -127293009,Sprain of posterior cruciate ligament of knee -128079007,Reflex sympathetic dystrophy -128196005,Lumbar radiculopathy -128197001,Sacral radiculopathy -128200000,Complex regional pain syndrome -128268005,Arthropathy of pelvis -129501000119107,Chronic sacral pain for greater than three months -129511000119105,Chronic pain in coccyx for more than three months -129613007,Tympanic plexus neuralgia syndrome -1304004,Fibromyalgia -13057000,Pleuropericardial chest pain -130731000119100,Disorder of joint of lumbosacral vertebra -130986009,Acute onset pain -13155005,Infection caused by Elaeophora schneideri -13271000119101,Prolapse of thoracic intervertebral disc without radiculopathy -13291000119100,Prolapse of lumbar intervertebral disc without radiculopathy -133731000119108,Chronic pain in male pelvis -134407002,Chronic back pain -135860001,Exacerbation of backache -13612005,Temporomandibular joint-pain-dysfunction syndrome -1362191000000105,Pain relieved by passing flatus -1362201000000107,Pain relieved by defaecating -136791000119103,Chronic thoracic back pain -13888000,Primary localized osteoarthrosis of shoulder region -139146005,Back pain -139148006,Back pain -139149003,Backache with radiation -139150003,Back pain worse on sneezing -139151004,C/O - low back pain -139152006,Back pain without radiation NOS -139153001,C/O - upper back ache -139154007,Backache symptom NOS -139171008,Growing pains -139228007,Chest pain -139229004,Chest pain not present -139231008,Precordial pain -139232001,Anterior chest wall pain -139233006,Pleuritic pain -139234000,Parasternal pain -139236003,Atypical chest pain -139237007,Retrosternal pain -139238002,Chest pain on exertion -139239005,Rib pain -139240007,Chest pain NOS -139275007,Sore mouth -139276008,Sore gums -139293008,Swallowing painful -139314004,Defaecation painful -139316002,Pain: [site of GIT] or [abdominal site symptom] or [flank] or [subcostal] or [iliac fossa] -139319009,Left subcostal pain -139320003,Right subcostal pain -139321004,Left flank pain -139322006,Right flank pain -139325008,Suprapubic pain -139376006,Defaecation painful -139421003,(Pain: [lumbar] or [renal] or [loin]) or (lumbar renal ache) -139427004,C/O pelvic pain -139428009,C/O perineal pain -139429001,Pain in penis -139430006,Pain in scrotum -139556001,Pain in eye -139625000,Earache symptoms -139627008,Unilateral earache -139628003,Bilateral earache -139630001,Earache symptom NOS -139682004,C/O: [a pain] or [an ache] -139768007,Pain character -139769004,Burning pain -139770003,Aching pain -139771004,Stabbing pain -139772006,Cutting pain -139773001,Griping pain -139774007,Tightening pain -139775008,Pricking pain -139776009,Generalised aches and pains -139777000,Shooting pain -139778005,Rest pain -139780004,Pain character NOS -139942008,O/E - in pain -139999000,O/E - pain influenced posture -14040001000004109,Uncontrolled pain -140422000,O/E pain: [abdominal (& on palpation)] or [epigastric] or [iliac] or [lumbar] or [umbilical] -140423005,O/E - no abd.pain on palpation -140427006,O/E - abd. pain - R.lumbar -140429009,O/E - abd. pain - L.lumbar -140432007,O/E - left iliac: [abdominal pain] or [tender] -140433002,O/E -abd.pain on palpation NOS -140568000,O/E - renal angle tenderness -140929002,O/E - pain sensation -140933009,O/E - pain sensation NOS -14107000,Synovitis -141416002,O/E - painful ear -141418001,O/E - ear auricle painful -141419009,O/E - pain over mastoid -141420003,O/E - painful ear NOS -141443007,O/E - maxillary sinus: [tenderness] or [pain] -141444001,O/E - frontal sinus: [tenderness] or [pain] -14150005,Alteration in comfort: chronic pain -141694009,O/E: [shoulder joint abnormal] or [painful arc] -141718000,O/E - joint movement painful -14175009,Rheumatic joint disease -141806002,O/E - tenderness &/or pain -141865000,O/E - sign painful -141867008,O/E - sign slightly painful -141868003,O/E - sign moderately painful -141869006,O/E - sign very painful -141870007,O/E - sign painful NOS -144951000000106,Chronic mechanical low back pain -144961000000109,Mechanical neck pain -148074006,Rheumatology disorder - joints affected -154930008,Somatoform pain disorder -154932000,Psychalgia: [tension backache] or [other] -155048007,(Cluster headaches) or (migrainous neuralgia) or (migraine NOS) -155066002,Trigeminal neuralgia -155067006,Atypical facial pain -155074001,Other mononeuritis upper limb &/or causalgia -155076004,Meralgia paraesthetica -155078003,Interdigital neuralgia -15525009,Sprain of distal radioulnar joint -155251005,Otalgia -155650000,(Temporomandibular joint dis) or (snapping jaw) or (temporomandibular syndrome) -155788009,Proctalgia fugax (& anal spasm): disorder or observation -156236006,Pelvic joint/ligament damage -15629941000119104,Left inguinal pain -15629981000119109,Right inguinal pain -15630021000119102,Pain of bilateral inguinal regions -15630651000119104,Tendinitis of right hand -15630691000119109,Tendinitis of left hand -15630731000119102,Tendinitis of bilateral hands -15630931000119100,Bursitis of bilateral hips -15632371000119104,Disorder of bilateral patellofemoral joints -15632451000119102,Right temporomandibular joint pain dysfunction syndrome -15632491000119107,Left temporomandibular joint pain dysfunction syndrome -15632531000119107,Bilateral temporomandibular joint pain dysfunction syndrome -15633361000119103,Bilateral sciatica -15634471000119104,Bilateral calf pain -15635921000119105,Pes anserinus bursitis of bilateral knees -15636001000119108,Lateral epicondylitis of bilateral humerus -15636531000119108,Somatic dysfunction of left sacroiliac joint -15636571000119106,Somatic dysfunction of right sacroiliac joint -15636611000119102,Somatic dysfunction of bilateral sacroiliac joints -15636851000119100,Stiffness of bilateral hand joints -15637151000119108,Tendinitis of long head of biceps brachii of bilateral shoulders -15637191000119103,Calcific tendinitis of bilateral shoulders -15637311000119105,Olecranon bursitis of bilateral elbows -15638411000119100,Peroneal tendinitis of bilateral lower legs -15638571000119107,Prepatellar bursitis of bilateral knees -15638971000119100,Femoral acetabular impingement of bilateral hip joints -15639561000119107,Pain of bilateral acromioclavicular joints -15639721000119105,Pain in bilateral temporomandibular joints -156459003,(Arthritis/arthrosis) or (arthropathy) or (joint disorders) -156484000,Polyarthropathy (& [inflammatory]) NOS -156486003,Osteoarthritis -156487007,Osteoarthritis -multiple joint -156488002,Osteoarthritis of shoulder joint -156489005,Osteoarthritis of elbow -156490001,Osteoarthritis of wrist -156491002,Osteoarthritis - hand joint -156492009,Osteoarthritis of hip -156493004,Osteoarthritis of knee -156494005,Osteoarthritis - ankle/foot -156495006,Osteoarthritis - other joint -156496007,Osteoarthritis NOS -156508002,Arthropathy NOS -156510000,Climacteric arthritis -156514009,(Arthropathy NOS) or (arthrosis) or (Charcot's joint) or (Otto's pelvis) or (polyarthritis NOS) -156592007,(Pain in joint) or (coxalgia) -156593002,Multiple joint pain -156594008,Joint pain: [shoulder] or [acromioclavicular] -156595009,Elbow joint pain -156596005,Wrist joint pain -156597001,Hand joint pain -156598006,Hip pain -156599003,Knee joint pain -156600000,Arthralgia of the ankle and foot -156601001,Arthralgia of other specified site -156602008,Arthralgia NOS -156616003,(Joint: [disorder NOS] or [unstable]) or (polyarthralgia) -156622007,(Spondyloses: [cervical] or [lumbar] or [sacral]) or (arthritis - spine) or (osteoarthritis - spine) -156641005,(Cervicalgia) or (neck pain NOS) -156647009,Pain in thoracic spine -156648004,Low back pain -156649007,Sciatica -156651006,(Backache NOS) or (back pain [& low]) -156655002,Soft tissue rheumatism -156656001,Polymyalgia rheumatica -156657005,(Peripheral enthesopathies) or (capsulitis) -156658000,(Shoulder: [syndrome (& [painful arc][rotator cuff])][bicipital tendinit][bursitis][frozen][pericapsulit][adhes capsulit]) or (tendinitis: [subscapular][supraspinat][infraspinat][bicep long head]) -156659008,(Epicondylitis &/or tennis elbow) or (golfers' elbow) -156660003,Periarthritis of wrist -156661004,Enthesopathy of the hip region -156662006,(Patellar tendinitis) or (Pellegrini-Stieda syndrome) -156663001,(Tendinitis: [ankle/tarsus] or [achilles] or [ankle]) or (calcaneal spur) or (metatarsalgia) -156665008,(Peripheral enthesopathy NOS) or (exostosis NOS) or (periarthritis NOS) or (semi-membranosus bursa) or (tendinitis NOS) -156666009,Synovitis &/or tenosynovitis -156667000,Synovitis/tenosyn.- multiple -156668005,Synovitis/tenosynovitis - shoulder -156669002,Synovitis/tenosynovitis - elbow -156670001,(Synovitis/tenosynovitis - wrist) or (de Quervain's tenosynovitis) -156671002,(Synovitis/tenosynovitis - hand) or (finger: [snapping] or [trigger]) -156672009,Synovitis/tenosynovitis - hip -156673004,Synovitis/tenosynovitis - knee -156674005,Synovitis/tenosynovitis - ankle/foot -156675006,Synovitis or tenosynovitis NOS -156677003,Bursitis -156678008,Bursitis - multiple -156679000,Bursitis of shoulder -156680002,Elbow bursitis (& olecranon) -156681003,Bursitis of wrist -156682005,Bursitis of hand -156683000,Bursitis of hip -156684006,(Bursitis: [knee] or [pre-patellar]) or (house-maid's knee) -156685007,(Bursitis - ankle/foot) or (painful heel syndrome) -156686008,Bursitis NOS -156726002,Muscle strain -156727006,Fibromyalgia -156730004,Rheumatism &/or fibrositis: [NOS] -156731000,Rheumatism multiple NOS -156732007,Rheumatism shoulder NOS -156733002,Rheumatism elbow NOS -156734008,Rheumatism wrist NOS -156735009,Rheumatism hand NOS -156736005,Rheumatism hip NOS -156737001,Rheumatism knee NOS -156738006,Rheumatism ankle/foot NOS -156739003,Rheumatism or fibrositis NOS -156740001,Myalgia &/or myositis: [NOS] -156741002,Myalgia/myositis - multiple -156742009,Myalgia/myositis - shoulder -156743004,Myalgia/myositis - upper arm -156744005,Myalgia/myositis - forearm -156745006,Myalgia/myositis - hand -156746007,Myalgia/myositis -pelvis/thigh -15674641000119105,Tendinitis of bilateral psoas tendons -156747003,Myalgia/myositis - lower leg -156748008,Myalgia/myositis - ankle/foot -15674881000119101,Tendinitis of adductor tendon of bilateral hips -156749000,(Myalgia/myositis NOS) or (intercostal myalgia) -15674961000119103,Tendinitis of bilateral hips -156750000,"Neuralgia, neuritis or radiculitis NOS" -156752008,Neuralgia/neuritis - multiple -15675201000119109,Tendinitis of metatarsophalangeal joint of second toe of left foot -15675281000119101,Tendinitis of metatarsophalangeal joint of second toe of right foot -156753003,Neuralgia/neuritis - shoulder -156754009,Neuralgia/neuritis - upper arm -15675401000119105,Tendinitis of bilateral feet -156755005,Neuralgia/neuritis - forearm -15675561000119107,Calcific tendinitis of bilateral achilles tendons -156756006,Neuralgia/neuritis - hand -156757002,Neuralgia/neuritis - pelvis/thigh -15675721000119105,Calcific tendinitis of bilateral elbows -156758007,Neuralgia/neuritis - lower leg -15675801000119108,Calcific tendinitis of bilateral knees -156759004,(Neuralgia/neuritis - ankle/foot) or (policemans' disease) -15675961000119102,Calcific tendinitis of bilateral wrists -156760009,(Neuralgia/neuritis - NOS) or (nerve root pain NEC) -15676041000119107,Tenosynovitis of bilateral wrists -156761008,Pain in limb &/or NOS -15676161000119105,Tendinitis of bilateral pes anserinus tendons -156762001,Pain in limb - multiple -15676241000119103,Tendinitis of bilateral knees -156763006,Pain in left arm -156764000,Pain in right arm -15676401000119104,Tendinitis of flexor tendon of left hand -15676441000119102,Tendinitis of flexor tendon of right hand -15676481000119107,Tendinitis of flexor tendon of bilateral hands -156765004,Pain in left leg -15676521000119107,Tendinitis of extensor tendon of right hand -15676561000119102,Tendinitis of extensor tendon of bilateral hands -156766003,Pain in right leg -15676601000119102,Tendinitis of extensor tendon of left hand -156767007,Pain in limb NOS -156779007,(Nonarticular rheumatism NOS) or (panniculitis) -15683241000119104,Infrapatellar bursitis of bilateral knees -15683321000119104,Bursitis of bilateral knees -15683361000119109,Bursitis of bilateral calcaneal tendon bursae -15683841000119100,Subacromial bursitis of bilateral shoulders -15683881000119105,Scapulothoracic bursitis of bilateral shoulders -15683921000119103,Ischiogluteal bursitis of bilateral hips -15686041000119102,Osteoarthritis of right temporomandibular joint -15686081000119107,Osteoarthritis of bilateral temporomandibular joints -15686121000119109,Osteoarthritis of left temporomandibular joint -15686521000119102,Transient synovitis of right knee -15686601000119107,Transient synovitis of left knee -15687041000119100,Synovitis of joint of bilateral knees -15687921000119105,Capsulitis of metatarsophalangeal joint of left foot -15687961000119100,Capsulitis of left tarsus -15688081000119106,Capsulitis of metatarsophalangeal joint of right foot -15688121000119108,Capsulitis of right tarsus -15688201000119108,Capsulitis of metatarsophalangeal joint of bilateral feet -15692321000119108,Arthritis of bilateral first metatarsophalangeal joints -15697681000119103,Tendinitis of bilateral ankles -15722441000119106,Osteoarthritis of left subtalar joint -15722521000119101,Osteoarthritis of right subtalar joint -15722561000119106,Osteoarthritis of first metatarsophalangeal joint of bilateral feet -15722961000119101,Osteoarthritis of bilateral sacroiliac joints -15724041000119109,Enthesopathy of bilateral ankles -15724121000119102,Enthesopathy of bilateral knees -15724161000119107,Enthesopathy of left knee region -15724201000119102,Enthesopathy of right knee region -15724281000119105,Enthesopathy of right foot -15724361000119105,Enthesopathy of left foot -15724441000119104,Enthesopathy of bilateral feet -15724961000119109,Enthesopathy of right elbow -15725041000119105,Enthesopathy of left elbow -15725521000119105,Disorder of bilateral sacroiliac joints -157257005,[Dislocations &/or sprains &/or strains] or subluxations -15726841000119108,Arthropathy of bilateral knee joints -15727761000119101,Adhesions of bilateral temporomandibular joints -157281003,Sprain: [shoulder] or [upper arm] -157282005,Arm sprain - upper -157283000,Sprain of elbow joint -157284006,Forearm sprain -15728481000119104,Arthropathy of joint of bilateral hands -157285007,Sprain of wrist joint -157286008,Sprain: [hand] or [finger] -157287004,Sprained finger &/or thumb -157288009,Hand sprain NOS -157289001,Hip sprain -157290005,Sprained upper leg (& [thigh]) -157291009,Sprain of knee joint -157292002,Sprain of lateral collateral ligament of knee joint -157293007,Sprain of medial collateral ligament of knee joint -157294001,Sprain of cruciate ligament of knee -15729441000119103,Arthropathy of joint of bilateral shoulder regions -157295000,Knee sprain NOS -157296004,Leg sprain -157297008,Sprain of ankle joint -157298003,Strain of tendo achilles -15729841000119100,Heberden node of distal interphalangeal joint of finger of bilateral hands -15729881000119105,Heberden node of the distal interphalangeal joints of the right hand -157299006,(Sprain - ankle NOS) or (twisted ankle) -15729921000119103,Heberden node of the distal interphalangeal joints of the left hand -157300003,Sprain of foot joint -157301004,Sprained toe -157302006,Foot sprain NOS -157303001,Back sprain -157304007,(Sprained neck) or (whiplash injury) -157305008,Thoracic back sprain -157306009,Lumbar sprain -157307000,Lumbosacral sprain -157308005,Sacral &/or coccyx sprain -157309002,Sprain of sacroiliac joint -157310007,Back sprain NOS -157311006,Other sprains -157312004,Sprain of temporomandibular joint -157313009,Rib sprain unspecified -157314003,Sternum sprain -157315002,Pelvic sprain (& [pubic symphisis]) -157316001,Strain of tendon of medial thigh muscle -157317005,Other sprains NOS -15739006,Juvenile osteochondrosis of hip AND/OR pelvis -15743521000119108,Chronic pain of right upper limb -15743561000119103,Chronic pain of left upper limb -15743681000119106,Pain of bilateral shoulder blades -15749341000119107,Pain in bilateral upper arms -15749801000119104,Chronic pain of bilateral feet -15803009,Bladder pain -158180005,"[D]Pain, generalised" -158217005,[D]Musculoskeletal pain -158297006,[D]Facial pain -158298001,[D]Pain in head NOS -158393008,[D]Chest pain -158394002,[D]Precordial pain -158395001,Breathing painful -158396000,[D]Anterior chest wall pain -158397009,[D]Pleuritic pain -158402008,Retrosternal pain [D] -158403003,[D]Musculoskeletal chest pain -158404009,[D]Chest pain NOS -158494001,[D]Vesical pain -158508009,[D]Suprapubic pain -158511005,[D]Loin pain -15883961000119103,Tenderness of bilateral temporomandibular joints -15941001,Brachialgia -15968001,Sprain of thigh -15972981000119101,Arthritis of bilateral sacroiliac joint -15978711000119106,Disorder of left cervical nerve root -15978831000119108,Disorder of right cervical nerve root -15980431000119104,Articular disc disorder of left temporomandibular joint -15980471000119101,Articular disc disorder of bilateral temporomandibular joints -15980511000119105,Articular disc disorder of right temporomandibular joint -15980671000119103,Arthritis of right temporomandibular joint -15980711000119104,Arthritis of left temporomandibular joint -15980751000119103,Arthritis of bilateral temporomandibular joints -16001004,Otalgia -16002671000119106,Chronic pain of bilateral upper limbs -16002871000119105,Chronic pain of right foot -16002911000119108,Chronic pain of left foot -16003591000119104,Tendinitis of right rotator cuff -16003631000119104,Tendinitis of bilateral rotator cuffs -16003671000119101,Tendinitis of left rotator cuff -16003791000119106,Rotator cuff arthropathy of right shoulder -16003831000119100,Rotator cuff arthropathy of left shoulder -16003871000119102,Rotator cuff arthropathy of bilateral shoulders -16004271000119100,Tenosynovitis of right radial styloid -16004311000119100,Tenosynovitis of bilateral radial styloids -16004351000119104,Tenosynovitis of left radial styloid -16007431000119108,Tenosynovitis of bilateral hands -16010911000119109,Arthropathy of right foot -16010991000119100,Arthropathy of left foot -16011071000119109,Arthropathy of bilateral feet -16015391000119105,Osteoarthritis of midtarsal joints of bilateral feet -16015791000119109,Arthritis of left subtalar joint -16015991000119106,Arthritis of right subtalar joint -16016111000119109,Arthritis of bilateral subtalar joint -16021151000119108,Bursitis of right foot -16021191000119103,Iliopsoas bursitis of bilateral hips -16021271000119105,Bursitis of bilateral feet -16021311000119105,Retrocalcaneal bursitis of bilateral feet -16021391000119101,Bursitis of left foot -16021431000119106,Bursitis of bilateral ankles -16024431000119108,Acute polyarticular juvenile idiopathic arthritis -16044751000119106,Polyarticular juvenile idiopathic arthritis -16046003,Muscle rigidity -16052151000119104,Tendinitis of bilateral quadriceps tendon -16052191000119109,Tendinitis of right quadriceps tendon -16052231000119100,Tendinitis of left quadriceps tendon -16052271000119102,Tendinitis of bilateral elbows -16057351000119103,Neuralgia of left glossopharyngeal nerve -16057391000119108,Neuralgia of right glossopharyngeal nerve -161817008,Pain on intercourse -161882006,Stiff neck -161889002,Backache symptom -161891005,Backache -161892003,Backache with radiation -161893008,Back pain worse on sneezing -161894002,Complaining of low back pain -161895001,Back pain without radiation NOS -161896000,Complaining of upper back ache -161897009,Backache symptom NOS -161916000,Growing pains (& symptom) -161971004,Chest pain not present -161973001,Anterior chest wall pain -161974007,Parasternal pain -161976009,Rib pain -161977000,Costal margin chest pain -161978005,Chest pain NOS -162011005,Sore mouth -162043005,Hunger pain -162045003,Pain: [GIT site] or [abdominal] or [flank] or [subcostal] or [iliac fossa] -162047006,Left subcostal pain -162048001,Right subcostal pain -162049009,Left flank pain -162050009,Right flank pain -162053006,Suprapubic pain -16206781000119109,Meralgia paresthetica of bilateral lower limbs -162099008,Defaecation painful -162138001,Genitourinary pain -162141005,(C/O - pain: [loin] or [lumbar] or [renal]) or (lumbar ache - renal) -162143008,Pain in female genitalia -162146000,Ovarian pain -162147009,Complaining of pelvic pain -162148004,Complaining of perineal pain -162149007,Pain in penis -162150007,Pain in scrotum -162209005,Headache (& [C/O]) -162286001,Pain in eye -162302003,(Frontal headache) or (pain in sinuses) -162356005,Earache symptom -162358006,Unilateral earache -162359003,Bilateral earache -162361007,Earache symptom NOS -162397003,Pain in throat -162412006,(Pain) or (C/O: [ache] or [pain]) -162413001,C/O - pain in toes -162414007,C/O - pain in hallux -162425003,Chest wall tenderness -162502002,Finding of pain character -162503007,Cutting pain -162504001,Griping pain -162505000,Tightening pain -162506004,Pricking pain -162507008,Rest pain -162509006,Pain character NOS -16269008,Neuralgia -162717001,On examination - in pain (context-dependent category) -162777005,On examination - pain influenced posture -16282000,Sprain of ulnohumeral joint -163212000,O/E: pain on palpation (& [abdominal] or [epigastric] or [iliac] or [lumbar] or [umbilical]) -163213005,On examination - no abdominal pain on palpation -163217006,On examination - abdominal pain - right lumbar -163219009,On examination - abdominal pain - left lumbar -163220003,On examination - abdominal pain - right iliac -163222006,On examination - abdominal pain - left iliac -163223001,On examination - abdominal pain on palpation NOS -163358002,On examination - renal angle tenderness -163728006,On examination - pain sensation -163732000,On examination - pain sensation NOS -16399001,Difficulty coping with pain -164219003,On examination - painful ear -164221008,On examination - ear auricle painful -164222001,On examination - pain over mastoid -164223006,On examination - painful ear NOS -164246008,On examination - maxillary sinus tenderness -164247004,On examination - frontal sinus tenderness -16426601000119103,Arthritis of facet joint of thoracic spine -16426641000119101,Arthritis of facet joint of lumbar spine -16426681000119106,Arthritis of facet joint of cervical spine -16438171000119103,Greater trochanteric pain syndrome of right lower limb -16438211000119101,Greater trochanteric pain syndrome of bilateral lower limbs -16438251000119100,Greater trochanteric pain syndrome of left lower limb -16442141000119109,Periorbital pain of left eye -16442181000119104,Periorbital pain of right eye -16442221000119107,Periorbital pain of bilateral eyes -164509005,O/E: [shoulder joint abnormal] or [painful arc] -164539000,On examination - joint movement painful -164627001,O/E - tenderness &/or pain -164628006,O/E - snuff box tenderness -164688009,On examination - sign painful -164690005,On examination - sign slightly painful -164691009,On examination - sign moderately painful -164692002,On examination - sign very painful -164693007,On examination - sign painful NOS -16546631000119102,Strain of right patellar tendon -16546791000119109,Strain of left patellar tendon -16583361000119101,Osteoarthritis of joint right ankle -16638321000119100,Neuralgia of bilateral pudendal nerves -16638401000119101,Neuralgia of nerve of bilateral lower limbs -16690551000119106,Female deep pain on intercourse -1679003,Arthritis associated with another disorder -16839401000119104,Low back pain co-occurrent with neuralgia of left sciatic nerve -16864831000119104,Lumbar radiculitis -16899701000119102,Pain of joint of bilateral hands -16986008,Back pain -17059001,Prepatellar bursitis -170848008,Rheumatology disorder - joints affected -17111003,Postinfectious neuralgia -1715006,Primary localized osteoarthrosis of upper arm -17184000,Sprain of coracohumeral ligament -175004,Supraorbital neuralgia -17654007,Tibialis anticus tendinitis -1771000119109,Arthritis of wrist -1781000119107,Sprain of ankle grade II -17883008,Sprain of hip -1791000119105,Sprain of ankle grade I -18251006,Calcium deposits in tendon AND/OR bursa -186231000000109,Muscle pain -186261000000104,Pain in elbow -187331000119105,Arthropathy of pelvis due to neurological disorder -18876004,Pain in finger -18888002,Strain of supraspinatus muscle AND/OR tendon -189671000000104,Muscle pain -189701000000100,Pain in elbow -190799001,(Liposynovitis prepatellaris) or (Hoffa's Disease) -192027005,Psychogenic pain unspecified -192029008,Psychogenic backache -192030003,Psychalgia NOS -192435004,[X] Somatoform pain disorder (& [persistent] or [psychalgia] or [psychogenic backache] or [psychogenic headache]) -193031009,Cluster headache syndrome -193089003,Other specified trigeminal neuralgia -193090007,Trigeminal neuralgia NOS -193115004,Phantom limb syndrome with pain -193116003,Phantom limb syndrome without pain -193149007,Interdigital neuralgia -193150007,Interdigital neuralgia -193947008,Ciliary neuralgia -194185002,Eye pain NOS -194406008,(Otalgia) or (ear pain) -194407004,Unspecified otalgia -194408009,Otalgia NOS -195830008,Nasal: [obstruction] or [congestion (& sinus)] or [infection] or [sore nostril] or [cavity and sinus disease NOS] -196434003,Temporomandibular joint disorder NOS -196554004,(Sore lip) or (angular stomatitis &/or cheilitis) -197834003,Chronic interstitial cystitis -198404001,Dysmenorrhoea (& spasmodic) -198411002,Other pelvic pain - female -201012005,(Pruritus ani) or (perianal itch) or (sore bottom) -201734004,Neuropathic arthropathy (& Charcot's) -201735003,Post-immunisation arthritis -201739009,Other general diseases with associated arthropathy -201740006,"Arthritis associated with other disease, shoulder" -201741005,"Arthritis associated with other disease, sternoclavicular joint" -201742003,"Arthritis associated with other disease, acromioclavicular joint" -201743008,"Arthritis associated with other disease, elbow" -201744002,"Arthritis associated with other disease, distal radioulnar joint" -201745001,"Arthritis associated with other disease, wrist" -201746000,"Arthritis associated with other disease, metacarpophalangeal joint" -201747009,"Arthritis associated with other disease, proximal interphalangeal joint of finger" -201748004,"Arthritis associated with other disease, distal interphalangeal joint of finger" -201750007,"Arthritis associated with other disease, hip" -201751006,"Arthritis associated with other disease, sacroiliac joint" -201752004,"Arthritis associated with other disease, knee" -201753009,"Arthritis associated with other disease, tibiofibular joint" -201754003,"Arthritis associated with other disease, ankle" -201755002,"Arthritis associated with other disease, subtalar joint" -201756001,"Arthritis associated with other disease, talonavicular joint" -201757005,"Arthritis associated with other disease, other tarsal joint" -201758000,"Arthritis associated with other disease, 1st metatarsophalangeal joint" -201759008,"Arthritis associated with other disease, lesser metatarsophalangeal joint" -201760003,"Arthritis associated with other disease, interphalangeal joint of toe" -201763001,Inflammatory polyarthropathy: (& [rheumatoid arthritis] or [other]) -201801009,Other juvenile arthritis -201803007,Polyarticular onset juvenile chronic arthritis -201809006,Pauciarticular onset juvenile chronic arthritis -201812009,Other specified inflammatory polyarthropathy -201816007,Other specified inflammatory polyarthropathy NOS -201817003,Inflammatory polyarthropathy NOS -201818008,Osteoarthritis (& [allied disorders]) -201819000,Generalized osteoarthritis -201820006,Generalized osteoarthritis of unspecified site -201821005,(Heberdens' nodes) or (Bouchards' nodes) or (generalised osteoarthritis of the hand) -201822003,Generalized osteoarthritis of multiple sites -201823008,Bouchard's nodes with arthropathy -201824002,Idiopathic osteoarthritis -201827009,Heberden's nodes with arthropathy -201828004,Generalized osteoarthritis NOS -201829007,"Localized, primary osteoarthritis" -201830002,"Localized, primary osteoarthritis of unspecified site" -201831003,"Localized, primary osteoarthritis of the shoulder region" -201832005,"Localized, primary osteoarthritis of the upper arm" -201833000,"Localized, primary osteoarthritis of the forearm" -201834006,"Localized, primary osteoarthritis of the hand" -201835007,"Localized, primary osteoarthritis of the pelvic region and thigh" -201836008,"Localized, primary osteoarthritis of the lower leg" -201837004,"Localized, primary osteoarthritis of the ankle and/or foot" -201838009,"Localized, primary osteoarthritis of other specified site" -201839001,"Primary coxarthrosis, bilateral" -201841000,"Primary gonarthrosis, bilateral" -201842007,"Primary arthrosis of first carpometacarpal joints, bilateral" -201843002,"Localised, primary osteoarthritis of the wrist" -201844008,"Localised, primary osteoarthritis of toe" -201845009,"Localised, primary osteoarthritis of elbow" -201846005,"Localized, primary osteoarthritis NOS" -201862004,"Localized osteoarthritis, unspecified" -201863009,"Localized osteoarthritis, unspecified, of unspecified site" -201864003,"Localized osteoarthritis, unspecified, of the shoulder region" -201865002,"Localized osteoarthritis, unspecified, of the upper arm" -201866001,"Localized osteoarthritis, unspecified, of the forearm" -201867005,"Localized osteoarthritis, unspecified, of the hand" -201868000,"(Otto's pelvis) or (hip osteoarthitis NOS) or (localised osteoarthritis, unspecified, of the pelvic region and thigh)" -201869008,"Osteoarthritis: [localised of the lower leg, unspecified] or [patellofemoral]" -201870009,"Localized osteoarthritis, unspecified, of the ankle and foot" -201871008,"Localized osteoarthritis, unspecified, of other specified site" -201872001,"Arthrosis of first carpometacarpal joint, unspecified" -201873006,"Localized osteoarthritis, unspecified, NOS" -201874000,"Oligoarticular osteoarthritis, unspecified" -201875004,"Oligoarticular osteoarthritis, unspecified, of unspecified sites" -201876003,"Oligoarticular osteoarthritis, unspecified, of the shoulder region" -201877007,"Oligoarticular osteoarthritis, unspecified, of upper arm" -201878002,"Oligoarticular osteoarthritis, unspecified, of forearm" -201879005,"Oligoarticular osteoarthritis, unspecified, of hand" -201880008,"Oligoarticular osteoarthritis, unspecified, of the pelvic region and thigh" -201881007,"Oligoarticular osteoarthritis, unspecified, of lower leg" -201882000,"Oligoarticular osteoarthritis, unspecified, of ankle and foot" -201883005,"Oligoarticular osteoarthritis, unspecified, of other specified sites" -201884004,"Oligoarticular osteoarthritis, unspecified, of multiple sites" -201885003,"Osteoarthritis of more than one site, unspecified, NOS" -201886002,[Joint degeneration] or [osteoarthritis NOS] -201887006,"Osteoarthritis NOS, of unspecified site" -201888001,"Osteoarthritis NOS, of shoulder region" -201889009,Osteoarthritis NOS: [of the upper arm] or [elbow] -201890000,Osteoarthritis NOS: [of the forearm] or [wrist] -201891001,Osteoarthritis NOS: [hand] or [finger] or [thumb] -201892008,Osteoarthritis NOS: [pelvic region and/or thigh] or [hip] -201893003,Osteoarthritis NOS: [lower leg] or [knee] -201894009,Osteoarthritis NOS: [ankle &/or foot] or [toe] -201895005,"Osteoarthritis NOS, other specified site" -201896006,"Osteoarthritis NOS, of shoulder" -201897002,"Osteoarthritis NOS, of sternoclavicular joint" -201898007,"Osteoarthritis NOS, of acromioclavicular joint" -201899004,"Osteoarthritis NOS, of elbow" -201900009,"Osteoarthritis NOS, of distal radioulnar joint" -201901008,"Osteoarthritis NOS, of wrist" -201902001,"Osteoarthritis NOS, of metacarpophalangeal joint" -201903006,"Osteoarthritis NOS, of proximal interphalangeal joint of finger" -201904000,"Osteoarthritis NOS, of distal interphalangeal joint of finger" -201905004,"Osteoarthritis NOS, of hip" -201906003,"Osteoarthritis NOS, of sacroiliac joint" -201908002,"Osteoarthritis NOS, of knee" -201909005,"Osteoarthritis NOS, of tibiofibular joint" -201910000,"Osteoarthritis NOS, of ankle" -201911001,"Osteoarthritis NOS, of subtalar joint" -201912008,"Osteoarthritis NOS, of talonavicular joint" -201913003,"Osteoarthritis NOS, of other tarsal joint" -201914009,"Osteoarthritis NOS, of 1st metatarsophalangeal joint" -201915005,"Osteoarthritis NOS, of lesser metatarsophalangeal joint" -201916006,"Osteoarthritis NOS, of interphalangeal joint of toe" -201917002,Osteoarthritis NOS -201975003,Climacteric arthritis -201976002,Climacteric arthritis of unspecified site -201977006,Climacteric arthritis of the shoulder region -201978001,Climacteric arthritis of the upper arm -201979009,Climacteric arthritis of the forearm -201980007,Climacteric arthritis of the hand -201981006,Climacteric arthritis of the pelvic region and thigh -201982004,Climacteric arthritis of the lower leg -201983009,Climacteric arthritis of the ankle and/or foot -201984003,Climacteric arthritis of other specified site -201985002,Climacteric arthritis of multiple sites -201986001,Climacteric arthritis NOS -201987005,Transient arthropathy of unspecified site -201988000,Transient arthropathy of shoulder region -201989008,Transient arthropathy of the upper arm -201990004,Transient arthropathy of the forearm -201991000,Transient arthropathy of hand -201992007,Transient arthropathy of the pelvic region and thigh -201993002,Transient arthropathy of the lower leg -201994008,Transient arthropathy of the ankle and/or foot -201995009,Transient arthropathy of other specified site -201996005,Transient arthropathy of multiple sites -201997001,Transient arthropathy of shoulder -201998006,Transient arthropathy of sternoclavicular joint -201999003,Transient arthropathy of acromioclavicular joint -202001008,Transient arthropathy of elbow joint -202002001,Transient arthropathy of distal radioulnar joint -202003006,Transient arthropathy of wrist -202004000,Transient arthropathy of metacarpophalangeal joint -202005004,Transient arthropathy of proximal interphalangeal joint of finger -202006003,Transient arthropathy of distal interphalangeal joint of finger -202007007,(Transient arthropathy of the hip) or (irritable hip) -202009005,Transient arthropathy of sacroiliac joint -202010000,Transient arthropathy of knee -202011001,Transient arthropathy of tibiofibular joint -202012008,Transient arthropathy of ankle joint -202013003,Transient arthropathy of subtalar joint -202014009,Transient arthropathy of talonavicular joint -202015005,Transient arthropathy of other tarsal joint -202016006,Transient arthropathy of first metatarsophalangeal joint -202017002,Transient arthropathy of lesser metatarsophalangeal joint -202018007,Transient arthropathy of interphalangeal joint of toe -202019004,Transient arthropathy NOS -202020005,(Polyarthropathy: [unspecified] or [NEC]) or (polyarthritis) -202021009,Unspecified polyarthropathy of unspecified site -202022002,Unspecified polyarthropathy of the shoulder region -202023007,Unspecified polyarthropathy of the upper arm -202024001,Unspecified polyarthropathy of the forearm -202025000,Unspecified polyarthropathy of the hand -202026004,Unspecified polyarthropathy of the pelvic region and thigh -202027008,Unspecified polyarthropathy of the lower leg -202028003,Unspecified polyarthropathy of the ankle and foot -202029006,Unspecified polyarthropathy of other specified site -202030001,Unspecified polyarthropathy of multiple sites -202031002,Generalized arthritis -202032009,(Unspecified polyarthropathy or polyarthritis NOS) or (polyarthritis) -202033004,Unspecified monoarthritis (& [coxitis]) -202034005,Unspecified monoarthritis of unspecified site -202035006,Unspecified monoarthritis of the shoulder region -202036007,Unspecified monoarthritis of the upper arm -202037003,Unspecified monoarthritis of the forearm -202038008,Unspecified monoarthritis of the hand -202039000,Unspecified monoarthritis of the pelvic region and thigh -202040003,Unspecified monoarthritis of the lower leg -202041004,Unspecified monoarthritis of the ankle and foot -202042006,Unspecified monoarthritis of other specified site -202043001,Unspecified monoarthritis NOS -202047000,Other specified arthropathy -202048005,Other specified arthropathy of unspecified site -202049002,Other specified arthropathy of the shoulder region -202050002,Other specified arthropathy of the upper arm -202051003,Other specified arthropathy of the forearm -202052005,Other specified arthropathy of the hand -202053000,Other specified arthropathy of the pelvic region and thigh -202054006,Other specified arthropathy of the lower leg -202055007,Other specified arthropathy of the ankle and foot -202056008,Other specified arthropathy of other specified site -202057004,Other specified arthropathy of multiple sites -202058009,Other specified arthropathy NOS -202059001,(Arthropathy NOS) or (arthritis) -202061005,"Arthropathy NOS, of unspecified site" -202062003,"Arthropathy NOS, of the shoulder region" -202063008,"(Arthropathy NOS, of the upper arm) or (elbow arthritis NOS)" -202064002,"(Arthropathy NOS, of the forearm) or (wrist arthritis NOS)" -202065001,"Arthropathy NOS, of the hand" -202066000,(Arthropathy NOS of the pelvic region and thigh) or (hip arthritis NOS) -202067009,(Arthropathy NOS of the lower leg) or (knee arthritis NOS) -202068004,(Arthropathy NOS of the ankle and foot) or (arthritis NOS: [ankle] or [foot]) -202069007,"Arthropathy NOS, of other specified site" -202070008,"Arthropathy NOS, of multiple sites" -202071007,Acute arthritis -202072000,Chronic arthritis -202073005,Arthropathy NOS -202126001,Adhesions of knee joint -202143003,Articular cartilage disorder of other joints of the shoulder girdle -202455001,(Palindromic rheumatism) or (intermittent joint effusion) -202456000,Palindromic rheumatism of unspecified site -202457009,Palindromic rheumatism of shoulder region -202458004,Palindromic rheumatism of the upper arm -202459007,Palindromic rheumatism of the forearm -202460002,Palindromic rheumatism of hand -202461003,Palindromic rheumatism of pelvic region and thigh -202462005,Palindromic rheumatism of the lower leg -202463000,Palindromic rheumatism of ankle and/or foot -202464006,Palindromic rheumatism of other specified site -202465007,Palindromic rheumatism of multiple sites -202466008,Palindromic rheumatism NOS -202467004,Joint: [pain - arthralgia] or [ache] -202468009,Arthralgia of unspecified site -202469001,Arthralgia of the shoulder region (& [shoulder joint]) -202470000,Arthralgia of the upper arm (& [elbow]) -202471001,Arthralgia of the forearm (& [wrist]) -202472008,Hand joint pain -202473003,(Arthralgia of the pelvic region and thigh) or (coxalgia) or (hip joint pain) or (irritable hip) -202474009,Arthralgia of the lower leg (& [knee]) -202475005,Arthralgia of the ankle &/or foot -202476006,Arthralgia of other specified site -202477002,Shoulder joint pain -202478007,Sternoclavicular joint pain -202479004,Acromioclavicular joint pain -202480001,Elbow joint pain -202481002,Distal radioulnar joint pain -202482009,Wrist joint pain -202483004,Metacarpophalangeal joint pain -202484005,Proximal interphalangeal joint of finger pain -202485006,Distal interphalangeal joint of finger pain -202486007,Hip pain -202487003,Sacroiliac joint pain -202488008,Knee joint pain -202489000,Tibiofibular joint pain -202490009,Ankle joint pain -202491008,Subtalar joint pain -202493006,Talonavicular joint pain -202494000,Arthralgia of other tarsal joint -202495004,First metatarsophalangeal joint pain -202496003,Lesser metatarsophalangeal joint pain -202497007,Interphalangeal joint of toe pain -202498002,Anterior knee pain -202499005,Arthralgia NOS -202533006,(Other joint symptoms) or (joint crepitus) or (musculoskeletal pain in joints) -202576008,Synovial osteochondromatosis of sternoclavicular joint -202577004,Synovial osteochondromatosis of acromioclavicular joint -202579001,Synovial osteochondromatosis of distal radioulnar joint -202581004,Synovial osteochondromatosis of metacarpophalangeal joint -202582006,Synovial osteochondromatosis of proximal interphalangeal joint of finger -202583001,Synovial osteochondromatosis of distal interphalangeal joint of finger -202585008,Synovial osteochondromatosis of sacroiliac joint -202587000,Synovial osteochondromatosis of tibiofibular joint -202589002,Synovial osteochondromatosis of subtalar joint -202590006,Synovial osteochondromatosis of talonavicular joint -202591005,Synovial osteochondromatosis of other tarsal joint -202592003,Synovial osteochondromatosis of first metatarsophalangeal joint -202593008,Synovial osteochondromatosis of lesser metatarsophalangeal joint -202595001,Synovial osteochondromatosis of interphalangeal joint of toe -202655008,(Spondylosis and allied disorders) or (arthritis of spine) or -202656009,Cervical spondylosis (& [without myelopathy]) or (osteoarthritis cervical spine) -202683005,Cervical spondylosis with radiculopathy -202684004,Single-level cervical spondylosis with radiculopathy -202685003,Two-level cervical spondylosis with radiculopathy -202686002,Multiple-level cervical spondylosis with radiculopathy -202688001,Thoracic spondylosis with radiculopathy -202689009,Single-level thoracic spondylosis with radiculopathy -202690000,Two-level thoracic spondylosis with radiculopathy -202692008,Multiple-level thoracic spondylosis with radiculopathy -202693003,Lumbosacral spondylosis with radiculopathy -202694009,Single-level lumbosacral spondylosis with radiculopathy -202695005,Two-level lumbosacral spondylosis with radiculopathy -202696006,Multiple-level lumbosacral spondylosis with radiculopathy -202701004,(Spondylosis NOS) or (osteoarthritis spine) -202705008,(Intervertebral disc: [disorders] or [displacement] or [slipped]) or (acute back pain) -202732003,Disc prolapse with radiculopathy -202733008,Cervical disc prolapse with radiculopathy -202734002,Thoracic disc prolapse with radiculopathy -202735001,Lumbar disc prolapse with radiculopathy -202737009,Prolapsed lumbar intervertebral disc with sciatica -202757008,Cervical disc disorder with radiculopathy -202764005,Pain in neck (& [cervical spine]) -202765006,(Neuritis: [brachial - cervical] or [ulnar]) or (radiculitis: [brachial] or [cervical]) or (cervical root pain) -202769000,Neck: [wry] or [torticollis NOS] or [stiff NOS] -202775009,Crick in neck -202792000,Thoracic pain: [spine] or [acute back] -202793005,(Back pain: [lumbar spine] or [low] or [acute lumbar]) or (lumbalgia) or (lumbago) -202794004,Lumbago with sciatica -202795003,Acute back pain &/or sciatica -202797006,"Thoracic: [neuritis, unspecified] or [nerve root pain]" -202800008,(Backache unspecified) or (back pain unspecified & [acute]) -202803005,Lumbosacral: [instability] or [strain] -202805003,Sacroiliac disorder -202806002,(Sacroiliac strain) or (disorders of the sacrum NOS) -202833003,"Rheumatism, excluding the back" -202834009,Polymyalgia (& [rheumatica]) -202836006,Peripheral enthesopathies and allied syndromes -202837002,Shoulder: (frozen) or (adhesive capsulitis) or (bursitis) -202839004,(Rotator cuff syndrome unspecified) or (supraspinatus syndrome) -202840002,Bicipital tenosynovitis -202841003,Supraspinatus tendinitis -202844006,Bursitis of shoulder -202845007,(Rotator cuff syndrome NOS) or (painful arc syndrome) or (subacromial bursitis) -202852009,Shoulder tendinitis -202854005,Elbow enthesopathy unspecified -202855006,Lateral epicondylitis -202856007,Biceps tendinitis -202857003,Triceps tendinitis -202858008,Elbow enthesopathy NOS -202859000,Enthesopathy of the wrist and/or carpus -202860005,Wrist or carpus enthesopathy NOS -202861009,Enthesopathy of the hip region -202862002,"Hip enthesopathy, unspecified" -202866004,Hip enthesopathy NOS -202867008,Bursitis: [knee NOS] or [semi-membranosus] or [popliteal] -202868003,Pes anserinus tendinitis and bursitis -202869006,(Tibial collateral ligament bursitis) or (Pellegrini-Stieda syndrome) -202870007,Fibular collateral ligament bursitis -202871006,Subpatellar bursitis -202872004,Biceps femoris tendinitis -202873009,Semimembranosus tendinitis -202874003,(Suprapatellar bursitis) or (knee enthesopathy NOS) -202875002,Enthesopathy of the ankle &/or tarsus -202876001,Enthesopathy of the ankle unspecified -202877005,Enthesopathy of the tarsus unspecified -202878000,Metatarsalgia NOS -202879008,Achilles bursitis -202880006,Tibialis anterior tendinitis -202881005,Tibialis posterior tendinitis -202886000,Ankle or tarsus enthesopathy NOS -202887009,Other peripheral enthesopathies -202890003,Enthesopathy NOS -202891004,Capsulitis NOS -202892006,Periarthritis NOS -202893001,Tendinitis: [NOS] or [bicepital] or [adductor] or [supraspinatus] -202898005,Peripheral enthesopathy NOS -202900007,Synovitis and tenosynovitis -202901006,Synovitis or tenosynovitis NOS -202905002,(Radial styloid tenosynovitis) or (De Quervain's disease) or (trigger thumb [& acquired]) -202906001,"(Tensynovitis: [fingers] or [other, of hand or wrist]) or (tendonitis of thumb)" -202907005,Tenosynovitis of ankle -202908000,Tenosynovitis of foot -202911004,Flexor tenosynovitis of wrist -202912006,Flexor tenosynovitis of finger -202913001,Flexor tenosynovitis of thumb -202914007,Extensor tenosynovitis of wrist -202915008,Extensor tenosynovitis of finger -202916009,Extensor tenosynovitis of thumb -202917000,Achilles tenosynovitis -202918005,Tibialis anterior tenosynovitis -202919002,Tibialis posterior tenosynovitis -202920008,Extensor hallucis longus tenosynovitis -202921007,Extensor digitorum longus tenosynovitis -202922000,Peroneus longus tenosynovitis -202923005,Peroneus brevis tenosynovitis -202924004,Transient synovitis -202925003,Chronic crepitant synovitis of hand and wrist -202926002,Synovitis of hip -202927006,(Synovitis: [knee] or [elbow] or [shoulder]) or (other synovitis and tenosynovitis) -202930004,Olecranon bursitis -202931000,Prepatellar bursitis -202935009,Bursitis: [NOS] or [postcalcaneal] -203082005,Fibromyalgia -203090005,Calcific tendinitis -203094001,Muscle strain -203099006,Rheumatism and fibrositis unspecified -203100003,Rheumatism unspecified -203102006,Muscular rheumatism -203103001,Rheumatic pain -203106009,Hand rheumatism -203107000,Rheumatism or fibrositis NOS -203108005,Myalgia and myositis unspecified -203109002,(Myalgia: [unspecified] or [intercostal myalgia]) or (muscle pain) -203113009,Myalgia or myositis NOS -203114003,"Neuralgia, neuritis and radiculitis unspecified" -203115002,Neuralgia unspecified -203117005,Radiculitis unspecified -203118000,"(Neuralgia, neuritis or radiculitis NOS) or (policeman's disease)" -203124006,Pain in limb (& [ankle] or [arm] or [foot] or [hand] or [heel] or [leg] or [shoulder] or [thigh] or [buttock]) -203125007,Hand pain (& [thumb] or [finger]) -203126008,Foot pain (& [toe]) -203127004,Pain in leg (& [aching leg syndrome]) -203128009,Pain in upper limb -203129001,Pain in calf -203130006,Pain in axilla -203131005,Tender heel pad -203132003,Shoulder pain -203138004,Fibromyalgia -203139007,(Soft tissue disorders NOS) or (polyalgia) -203142001,Other specified nonarticular rheumatism -203143006,Nonarticular rheumatism NOS -203367009,(Perthes' disease) or (Coxa plana) -203490000,Reflex sympathetic dystrophy -203507006,Bone pain -203508001,Bony pelvic pain -203509009,Clavicle pain -20361002,Alteration in comfort: pain -203722004,[X]Other streptococcal arthritis and polyarthritis -203735008,[X]Other juvenile arthritis -203736009,[X]Juvenile arthritis in other diseases classified elsewhere -203741001,[X]Other specified arthritis -203747002,[X]Arthrosis -203748007,[X]Other polyarthrosis -203749004,[X]Other primary coxarthrosis -203753002,[X] Primary gonarthrosis: [other] or [unilateral] -203757001,[X]Other primary arthrosis of first carpometacarpal joint -203761007,[X]Other specified arthrosis -203814001,[X]Other spondylosis with radiculopathy -203825005,[X]Lumbar and other intervertebral disc disorders with radiculopathy -203831008,[X]Other dorsalgia -203848000,[X]Other synovitis and tenosynovitis -203856002,[X]Other bursitis of elbow -203857006,[X]Other bursitis of knee -203858001,[X]Other bursitis of hip -203862007,"[X]Other bursitis, not elsewhere classified" -203868006,"[X]Other enthesopathies of lower limb, excluding foot" -203869003,[X]Other enthesopathy of foot -203870002,"[X]Other enthesopathies, not elsewhere classified" -203875007,"[X]Enthesopathy of lower limb, unspecified" -203898004,[X]Other hypertrophic osteoarthropathy -204001000000104,Synovitis NOS -20502007,Pain in scrotum -206786009,"[D]Pain, generalized" -206795001,[D]Acute pain -206796000,[D]Chronic intractable pain -20680006,Sprain AND/OR strain of sacroiliac region -206842008,[D]Growing pains - limbs -206843003,[D]Musculoskeletal pain -206947001,[D]Facial pain -206948006,([D]Pain: (in head NOS) or (jaw)) -207078009,[D]Chest pain -207079001,[D](Chest pain: (unspecified) or (retrosternal)) -207080003,[D]Precordial pain -207081004,[D]Anterior chest wall pain -207082006,[D]Painful respiration NOS -207083001,[D]Pleuritic pain -207088005,[D]Parasternal chest pain -207089002,[D]Musculoskeletal chest pain -207090006,[D]Non-cardiac chest pain -207091005,[D]Retrosternal chest pain -207093008,[D]Chest pain NOS -207124007,"[D]Flatulence, eructation and gas pain" -207131006,"[D]Flatulence, eructation and gas pain NOS" -207148003,[D] Defecation painful -207149006,[D]Pain in esophagus -207200008,[D]Vesical pain -207214008,[D]Suprapubic pain -207217001,[D]Groin pain -207218006,[D]Loin pain -207222001,[D]Pelvic and perineal pain -207224000,[D] Right upper quadrant pain -207225004,[D] Left upper quadrant pain -207226003,[D]Left lower quadrant pain -207227007,[D]Right lower quadrant pain -207583009,[X]Other chest pain -207621000,[X]Other chronic pain -20793008,Scapulalgia -208941000000108,Synovitis NOS -208951000000106,Synovitis of knee -208961000000109,Synovitis of elbow -208971000000102,Shoulder synovitis -209409002,Sprains and strains of joints and adjacent muscles -209410007,Sprain of shoulder and upper arm -209411006,Sprain of ligament of acromioclavicular joint -209412004,"Sprain, coracoclavicular ligament" -209413009,Coracohumeral sprain -209414003,Strain of infraspinatus tendon -209415002,Strain of subscapularis tendon -209416001,Strain of supraspinatus tendon -209417005,"Sprain, shoulder joint, anterior" -209418000,"Sprain, shoulder joint, posterior" -209419008,"Sprain, biceps tendon" -209420002,Strain of long head of biceps -209421003,"Sprain, triceps tendon" -209422005,[X]Sprain and strain of other and unspecified parts of shoulder girdle -209423000,Shoulder strain (& other) -209424006,(Other upper arm sprain) or (traumatic rupture of biceps tendon) -209425007,Shoulder sprain NOS -209426008,Upper arm sprain NOS -209427004,Sprain of elbow &/or forearm -209428009,"Sprain, elbow joint, lateral collateral ligament" -209429001,"Sprain, elbow joint, medial collateral ligament" -209430006,Radiohumeral sprain -209431005,Ulnohumeral sprain -209432003,Other elbow sprain -209433008,Other forearm sprain -209434002,Elbow sprain NOS -209435001,Forearm sprain NOS -209436000,Sprain of wrist and/or hand -209437009,Sprain of ligament of wrist -209438004,Wrist sprain unspecified -209439007,Carpal joint sprain -209440009,Sprain proximal radiocarpal ligament nonspecific -209441008,Distal radioulnar joint sprain -209442001,Sprain of collateral carpal radial ligament -209443006,Sprain volar radiocarpal ligament nonspecific -209444000,Sprain volar radiocarpal ligament superficial -209445004,Sprain of radioscaphocapitate ligament -209446003,Sprain of radiolunate ligament -209447007,Sprain of radioscapholunate ligament -209448002,Sprain dorsal radiocarpal ligament -209449005,Sprain ulnar carpal complex nonspecific -209450005,Sprain ulnar-carpal meniscus -209451009,Sprain triangular fibrocartilage -209452002,Sprain of ulnolunate ligament -209453007,Sprain of ulnar collateral ligament of wrist joint -209454001,Sprain short intrinsic ligament nonspecific -209455000,Sprain of scaphotrapezium ligament -209456004,Sprain of lunotriquetral ligament -209457008,Sprain of scapholunate ligament -209458003,Sprain volar intercarpal ligament or V ligament -209459006,Sprain dorsal intercarpal ligament -209460001,Wrist sprain NOS -209461002,(Hand sprain) or (tendon injury of hand) -209462009,Sprain: [hand unspecified] or [finger] or [thumb] -209463004,Carpometacarpal sprain -209464005,Metacarpophalangeal sprain -209465006,Interphalangeal sprain -209466007,Midcarpal joint sprain -209467003,Hand sprain NOS -209468008,Sprain of thumb joint -209469000,"Sprain thumb, carpometacarpal joint" -209470004,"Sprain thumb, metacarpophalangeal joint nonspecific" -209471000,"Sprain thumb, metacarpophalangeal joint, radial collateral ligament" -209472007,"Sprain thumb, metacarpophalangeal joint, ulnar collateral ligament" -209473002,"Sprain thumb, interphalangeal joint, nonspecific" -209474008,"Sprain thumb, interphalangeal joint, radial collateral ligament" -209476005,"Sprain thumb, interphalangeal joint, ulnar collateral ligament" -209477001,Sprain of finger joint -209478006,"Sprain finger, carpometacarpal joint" -209479003,"Sprain finger, metacarpophalangeal joint, nonspecific" -209480000,"Sprain finger, metacarpophalangeal joint, radial collateral ligament" -209481001,"Sprain finger, metacarpophalangeal joint, ulnar collateral ligament" -209482008,"Sprain finger, proximal interphalangeal joint, nonspecific" -209483003,"Sprain finger, proximal interphalangeal joint, radial collateral ligament" -209484009,"Sprain finger, proximal interphalangeal joint, ulnar collateral ligament" -209485005,"Sprain finger, distal interphalangeal joint, nonspecific" -209486006,"Sprain finger, distal interphalangeal joint, radial collateral ligament" -209487002,"Sprain finger, distal interphalangeal joint, ulnar collateral ligament" -209493005,Sprain tendon wrist or hand -209494004,Sprain wrist extensors -209495003,Sprain wrist flexors -209496002,Sprain tendon of thumb -209497006,"Sprain, flexor pollicis longus tendon" -209498001,"Sprain, extensor pollicis longus tendon" -209499009,Sprain tendon of finger -209500000,"Sprain, flexor digitorum superficialis tendon" -209501001,"Sprain, flexor digitorum profundus tendon" -209502008,"Sprain, extensor digitorum tendon" -209503003,Wrist and hand sprain NOS -209504009,Sprain: [hip and/or thigh] or [groin] or [hamstring] -209505005,Iliofemoral sprain -209506006,Ischiocapsular sprain -209507002,Strain of quadriceps tendon -209508007,Strain of patellar tendon -209509004,Strain of hamstring tendon -209510009,Other hip sprain -209511008,Other thigh sprain -209512001,Hip sprain NOS -209513006,Thigh sprain NOS -209514000,Sprain: [knee] &/or [leg] -209515004,"Sprain or partial tear, knee, lateral collateral ligament" -209518002,Sprain of medial collateral ligament of knee joint -209522007,Sprain of superior tibiofibular ligament -209523002,"Sprain, plantaris tendon" -209524008,Other specified knee sprain -209525009,Other specified leg sprain -209526005,Gastrocnemius: [sprain] or [torn] -209527001,Knee sprain NOS -209528006,Leg sprain NOS -209529003,Sprain of ankle and/or foot -209530008,"Ankle sprain, unspecified" -209531007,"Sprain, ankle joint, medial" -209532000,"Sprain, ankle joint, lateral" -209533005,Distal tibiofibular sprain -209534004,"(Sprain, tendocalcaneus (Achilles tendon)) or (achilles tendon: [ruptured, traumatic] or [torn])" -209537006,Ankle sprain NOS -209538001,"Foot sprain, unspecified" -209539009,"Sprain, tarsometatarsal joint" -209540006,"Sprain, metatarsophalangeal joint" -209541005,"Sprain: [inter-phalangeal joint, toe] or [toe]" -209542003,Sprain of midtarsal joint -209543008,"Sprain, flexor tendon, foot" -209544002,"Sprain, extensor tendon, foot" -209545001,Foot sprain NOS -209546000,Ankle and foot sprain NOS -209547009,Sprain pelvic ligament -209548004,Sprain of ligament of lumbosacral joint -209549007,Sprain of anterior sacroiliac ligament -209550007,Sprain of posterior sacroiliac ligament -209551006,"Sprain, sacrospinous ligament" -209552004,"Sprain, sacrotuberous ligament" -209553009,Sprain of iliolumbar ligament -209554003,Other specified sacroiliac sprains -209555002,Sacroiliac sprain NOS -209556001,Sprain: [other parts of back] or [back sprain excluding lumbosacral] -209557005,Neck sprain -209558000,"(Neck sprain, unspecified) or (traumatic torticollis) or (whiplash injury)" -209559008,Cervical anterior longitudinal ligament sprain -209560003,Atlantoaxial joint sprain -209561004,Atlanto-occipital joint sprain -209563001,Neck sprain NOS -209564007,Thoracic sprain -209565008,Lumbar sprain -209566009,Sacrum sprain -209567000,"Sacral sprain, unspecified" -209568005,Sacrococcygeal sprain -209569002,Sacrum sprain NOS -209571002,Coccyx sprain -209572009,[X]Sprain and strain of other and unspecified parts of lumbar spine and pelvis -209573004,Back sprain NOS -209788006,Other and ill-defined sprains and strains -209789003,Septal cartilage nose sprain -209790007,"Jaw sprain, unspecified" -209791006,Sprain of temporomandibular joint -209792004,Jaw sprain NOS -209793009,Thyroid region sprain -209794003,"Thyroid region sprain, unspecified" -209795002,Cricoarytenoid sprain -209796001,Cricothyroid sprain -209797005,Thyroid cartilage sprain -209798000,Thyroid region sprain NOS -209799008,Sprain of costal cartilage -209800007,Rib sprain unspecified -209801006,Chondrocostal joint sprain -209802004,Sprain of costal cartilage -209803009,Rib sprain NOS -209804003,Sternum sprain -209805002,Sternum sprain unspecified -209806001,Sternoclavicular sprain -209807005,Chondrosternal sprain -209808000,Xiphoid cartilage sprain -209809008,Sternum sprain NOS -209810003,Pelvis sprain or complete tear -209811004,"Sprain of pelvis, unspecified" -209812006,"Sprain, symphysis pubis" -209819002,Sprain of pelvis NOS -209820008,[X]Sprain and strain of other and unspecified parts of thorax -209821007,Other specified sprains and strains -209822000,Other and ill-defined sprains and strains NOS -209824004,(Sprains and strains NOS) or (sprain: [joint NOS] or [ligament NOS] or [muscle NOS] or [rectus sprain] or [tendon NOS]) or (tendon rupture NOS) -21142001,Sprain of sacrospinatus ligament -213399005,[X]Sprain and strain of joints and ligaments of other and unspecified parts of head -2134003,Diffuse pain -213425007,[X]Sprain and strain of joints and ligaments of other and unspecified parts of neck -213443006,[X]Sprain and strain of other and unspecified parts of thorax -213461002,[X]Sprain and strain of other and unspecified parts of lumbar spine and pelvis -213482008,[X]Sprain and strain of other and unspecified parts of shoulder girdle -213517007,[X]Sprain and strain of other and unspecified parts of wrist and hand -213548004,[X]Sprain and strain of other and unspecified parts of knee -213567000,[X]Sprain and strain of other and unspecified parts of foot -213661000000108,Ankle pain -213671000000101,Ankle pain -21409006,Enthesopathy of ankle AND/OR tarsus -21545007,Tenalgia -21621000119107,Pain in female perineum -2169001,Thoracic radiculitis -21794005,Radial styloid tenosynovitis -21954000,Herpes zoster auricularis -220000,Unspecified monoarthritis -22166009,Skeletal muscle tender -221695002,Bursitis of calcaneal tendon bursa -22193007,Degenerative joint disease of hand -22253000,Pain -2237002,Pleuritic pain -224729007,Proliferative arthritis -22531000119104,Prolapse of cervical intervertebral disc without radiculopathy -225399009,Pain assessment -225564006,Pain of nose -225565007,Perineal pain -225595004,Pain associated with defecation -225655006,Degenerative polyarthritis -225782006,Pain control -225783001,Minimizing pain -225912009,Unable to cope with pain -226586002,Degenerative arthropathy -227588009,Osteoarthrosis -22817005,Strain of Achilles tendon -22913005,Dorsalgia -230537000,Idiopathic trigeminal neuralgia -23056005,Sciatica -230654000,Painful legs and moving toes -23096007,Cranial neuralgia -231488009,Delusional pain -232399005,Acute herpes simplex pharyngitis -23285006,Painful sexual act of male -233845001,Cardiac syndrome X -23415000,Sprain of jaw -23680005,Enthesopathy -237067000,Chronic pain in female pelvis -237135001,Painful menorrhea -238777005,Erythromelalgia -239166000,Persistent wound pain -239191000000102,Pain radiating to centre of chest -239201000000100,Pain radiating to head -239211000000103,Pain radiating to jaw -239221000000109,Pain radiating to left arm -239231000000106,Pain radiating to left flank -239241000000102,Pain radiating to left leg -239251000000104,Pain radiating to left shoulder -239261000000101,Pain radiating to left side of chest -239281000000105,Pain radiating to lumbar region of back -239301000000106,Pain radiating to neck -239311000000108,Pain radiating to right arm -239321000000102,Pain radiating to right flank -239331000000100,Pain radiating to right leg -239341000000109,Pain radiating to right shoulder -239351000000107,Pain radiating to right side of chest -239361000000105,Pain radiating to thoracic region left side -239371000000103,Pain radiating to thoracic region right side -239641000000100,Finding of geographic location of pain -239651000000102,Pain characterised by relieving factor -239711009,Foot arthritis NOS -239712002,Ankle arthritis NOS -239713007,Knee arthritis NOS -239714001,Hip arthritis NOS -239715000,Wrist arthritis NOS -239716004,Elbow arthritis NOS -239733006,Anterior knee pain -239789002,Post-immunization arthritis -239796000,Juvenile chronic arthritis -239797009,Early onset pauciarticular chronic arthritis -239799007,Early onset polyarticular juvenile chronic arthritis -239816008,Synovitis of elbow -239817004,Synovitis of knee -239818009,Shoulder synovitis -239819001,Undifferentiated inflammatory oligoarthritis -239820007,Undifferentiated inflammatory monoarthritis -239828000,Apatite-associated destructive arthritis -239831004,Calcific periarthritis -239832006,Calcium pyrophosphate deposition disease -239835008,Idiopathic pyrophosphate arthritis -239853002,Toe osteoarthritis NOS -239854008,Foot osteoarthritis NOS -239855009,Ankle osteoarthritis NOS -239856005,"Osteoarthritis NOS, of knee" -239857001,"Osteoarthritis NOS, of hip" -239858006,Thumb osteoarthritis NOS -239859003,Finger osteoarthritis NOS -239860008,"Osteoarthritis NOS, of wrist" -239861007,"Osteoarthritis NOS, of elbow" -239862000,Idiopathic osteoarthritis -239863005,Osteoarthritis of spinal facet joint -239864004,Osteoarthritis of shoulder joint -239865003,Osteoarthritis of acromioclavicular joint -239866002,Osteoarthritis of elbow -239867006,Osteoarthritis of wrist -239868001,Osteoarthritis of finger joint -239869009,Osteoarthritis of distal interphalangeal joint -239870005,Osteoarthritis of proximal interphalangeal joint -239871009,Osteoarthritis of metacarpophalangeal joint of finger -239872002,Osteoarthritis of hip -239873007,Osteoarthritis of knee -239874001,Osteoarthritis of ankle -239876004,Osteoarthritis of subtalar joint -239877008,Osteoarthritis of first metatarsophalangeal joint -239878003,Osteoarthritis of toe joint -239880009,Lumbar spondylosis -239949003,Polyalgia -239955008,Tendinitis AND/OR tenosynovitis of the shoulder region -239956009,Infraspinatus tendinitis -239957000,Calcific tendinitis of shoulder -239958005,Painful arc syndrome -239961006,Bursitis of shoulder -239965002,Tendinitis AND/OR tenosynovitis of the elbow region -239968000,Bursitis of elbow region -239973006,Tendinitis AND/OR tenosynovitis of wrist AND/OR hand -239974000,Other tenosynovitis of the wrist -239975004,Other tenosynovitis of the hand -239976003,Extensor carpi radialis tenosynovitis -239991001,Tendinitis AND/OR tenosynovitis of the pelvic region -239992008,Bursitis of pelvic region -239993003,Ischial bursitis -239994009,Enthesopathy of pelvic region -240000001,Tendinitis AND/OR tenosynovitis of the knee region -240002009,Popliteal bursitis -240003004,Suprapatellar bursitis -240004005,Semimembranosus bursitis -240011009,Tibialis posterior tenosynovitis -240012002,Tibialis anterior tenosynovitis -240017008,Bursitis of ankle region -240018003,Tarsus enthesopathy -240027002,Bursitis of foot region -240028007,Enthesopathy of foot region -240033006,Bursitis of retrocalcaneal bursa -240034000,Tendinitis AND/OR tenosynovitis -240035004,Tenosynovitis -240036003,Tenosynovitis of fingers -240117006,Trichinosis myositis -240223006,Degenerative arthropathy of spinal facet joint -241102002,Skeletal survey - arthritis -24133009,Lateral epicondylitis of elbow joint -241401000000103,Patient unable to rate pain -2415007,Lumbosacral radiculopathy -242061000000100,Gradual onset of pain -242071000000107,Pain onset at rest -242081000000109,Pain onset during exertion -242091000000106,Pain onset during moderate exercise -242101000000103,Pain onset during sleep -242111000000101,Pattern of onset of pain -242121000000107,Constant pain -243331000000103,Squeezing pain -243341000000107,Vague pain -243911000000107,Pain characterised by provoking factor -243921000000101,Pain relieved by analgesics -243951000000106,Pain relieved by patient medication -243961000000109,Pain relieved by patient position -243971000000102,Pain relieved by rest -243981000000100,Pain relieved by sitting up -243991000000103,Pain relieved by slowing respiration -244001000000108,Pain relieved by supine position -244011000000105,Pain relieved by walking -244021000000104,Pain commenced at home -244031000000102,Pain commenced in clinic -244041000000106,Pain commenced in construction area -244051000000109,Pain commenced in educational area -244071000000100,Pain commenced in hospital -244081000000103,Pain commenced in industrial area -244091000000101,Pain commenced on motorway -244101000000109,Pain commenced at office -244111000000106,Pain commenced in residential home -244121000000100,Pain commenced in sports/athletic area -244131000000103,Pain commenced in street -244141000000107,Pain commenced at industrial site -244151000000105,Pain commenced outdoors -244161000000108,Pain commenced in public building -244401000000101,Pain provoked by altercation -244411000000104,Pain provoked by breathing -244421000000105,Pain provoked by coughing -244431000000107,Pain provoked by eating -244441000000103,Pain provoked by exertion -244451000000100,Pain provoked by light -244461000000102,Pain provoked by movement -244471000000109,Pain provoked by rest -244481000000106,Pain provoked by running -244511000000100,Spontaneous pain -244521000000106,Pain provoked by lifting -244531000000108,Pain provoked by walking -24693007,Fibromyositis -24730004,Sprain of calcaneofibular ligament -247345006,Sore gums -247346007,Sore mouth -247348008,Tenderness -247349000,Painful teething -247352008,Subcostal pain -247355005,Flank pain -247363006,Musculoskeletal pain disorder -247364000,Psychosomatic rheumatism -247365004,Fibromyalgia -247366003,Acute back pain with sciatica -247368002,Posterior compartment low back pain -247369005,Facet joint pain -247373008,Ankle pain -247375001,Arc of pain in joint -247376000,Beginning of painful arc -247377009,End of painful arc -247380005,Phantom pain -247381009,Limb stump pain -247384001,Neurological pain disorder -247385000,Lateral femoral cutaneous neuralgia -247386004,Obturator neuralgia -247387008,Cruralgia -247388003,Segmental peripheral neuralgia -247389006,Intercostal neuralgia -247391003,Perineal neuralgia -247393000,Ilioinguinal nerve neuralgia -247395007,Genitofemoral nerve neuralgia -247397004,Causalgia -247398009,Neuropathic pain -247399001,Pseudothalamic pain -247400008,Painful arms and moving fingers -247404004,Allodynia -247409009,Specific body function causing pain -247410004,Painful cough -247411000,Talking painful -247416005,Defecation painful -247417001,Pain on intercourse -247418006,Superficial pain on intercourse -247419003,Deep pain on intercourse -247738008,Hallucinations of pain -24864009,Sprain of interphalangeal joint of toe -249123005,Onset of contractions -24928009,Strain of infraspinatus muscle AND/OR tendon -249919003,Muscle stiffness -249921008,Stiff back -250125001,Arthritis by pattern of joint involvement -250126000,Symmetrical arthritis -250127009,Asymmetrical arthritis -250128004,Small joint arthritis -250129007,Large joint arthritis -250130002,Small and large joint arthritis -250131003,Lower limb joint arthritis -25064002,Headache -25416002,Peripheral neuralgia -25428005,Sprain of carpometacarpal joint -254779008,Osteoarthritis deformans -25616007,Acute arthropathy -262962009,Rectus muscle sprain -262963004,Muscle sprain NOS -262964005,Strain of neck muscle -262965006,Strain of back muscle -262972007,Tendon strain -262973002,Tendon sprain NOS -262974008,Strain of tendon of neck -262975009,Strain of tendon of back -262976005,Strain of tendon of adductor longus -262977001,Strain of peroneal tendon -262990008,Forearm sprain -262991007,Thigh sprain -262992000,Hamstring sprain -262993005,Hip sprain -262994004,Leg sprain -262995003,Back sprain excluding lumbosacral -262996002,Joint sprain NOS -262997006,Sprain of sacroiliac joint -262998001,Sprain of toe joint -263000005,Joint capsule sprain -263127006,Ligament sprain NOS -263128001,Sprain of ligament of elbow -263129009,Sprain of ligament of finger -263130004,Sprain of ligament of thumb -263131000,Sprain of ligament of knee joint -263132007,Sprain of ligament of ankle joint -263133002,Sprain of lateral ligament of ankle joint -266492006,(Temporomandibular joint dis) or (snapping jaw) or (temporomandibular syndrome) -266599000,Dysmenorrhea -267067009,Lumbar ache - renal -267104002,Complaining of a pain -267165003,Pain: [site of GIT] or [abdominal site symptom] or [flank] or [subcostal] or [iliac fossa] -267169009,(Pain: [lumbar] or [renal] or [loin]) or (lumbar renal ache) -267182001,C/O: [a pain] or [an ache] -267348004,Pelvic joint/ligament damage -267699004,(Cluster headaches) or (migrainous neuralgia) or (migraine NOS) -267705008,Other mononeuritis upper limb &/or causalgia -267888004,Osteoarthritis -267889007,Generalized osteoarthritis of the hand -267891004,"Localized osteoarthritis, unspecified, of the pelvic region and thigh" -267892006,"Localized osteoarthritis, unspecified, of the lower leg" -267893001,Osteoarthritis NOS -267894007,"Osteoarthritis NOS, of the upper arm" -267895008,"Osteoarthritis NOS, of the forearm" -267896009,"Osteoarthritis NOS, of the hand" -267897000,"Osteoarthritis NOS, pelvic region/thigh" -267898005,"Osteoarthritis NOS, of the lower leg" -267899002,"Osteoarthritis NOS, of ankle and foot" -267900007,Transient arthropathy of hip -267902004,Unspecified polyarthropathy or polyarthritis NOS -267903009,Unspecified monoarthritis -267904003,Arthropathy NOS -267905002,"Arthropathy NOS, of the upper arm" -267906001,"Arthropathy NOS, of the forearm" -267907005,"Arthropathy NOS, of the pelvic region and thigh" -267908000,"Arthropathy NOS, of the lower leg" -267909008,"Arthropathy NOS, of the ankle and foot" -267949000,Shoulder joint pain -267950000,Arthralgia of the upper arm -267951001,Arthralgia of the forearm -267952008,Arthralgia of the pelvic region and thigh -267953003,Arthralgia of the lower leg -267954009,Arthralgia of the ankle and/or foot -267973008,Spondylosis NOS -267977009,Brachial (cervical) neuritis -267981009,Pain in thoracic spine -267982002,Pain in lumbar spine -267984001,"Backache, unspecified" -267988003,Polymyalgia rheumatica -267990002,Peripheral enthesopathies -267991003,"Rotator cuff syndrome, unspecified" -267992005,Rotator cuff syndrome NOS -267993000,Bursitis of the knee NOS -267994006,Knee enthesopathy NOS -267995007,Enthesopathy of the ankle and/or tarsus -267996008,Tendinitis NOS -267998009,Other tenosynovitis of hand or wrist -267999001,Other synovitis and tenosynovitis -268000007,Bursitis NOS -268010003,Myalgia unspecified -268011004,"Neuralgia, neuritis or radiculitis NOS" -268043004,[X]Other primary gonarthrosis -268051001,(Arthritis/arthrosis) or (arthropathy) or (joint disorders) -268053003,Polyarthropathy (& [inflammatory]) NOS -268054009,Osteoarthritis of multiple joints -268056006,(Arthropathy NOS) or (arthrosis) or (Charcot's joint) or (Otto's pelvis) or (polyarthritis NOS) -268065004,(Pain in joint) or (coxalgia) -268066003,Joint pain: [shoulder] or [acromioclavicular] -268068002,Ankle and/or foot joint stiffness -268070006,(Joint: [disorder NOS] or [unstable]) or (polyarthralgia) -268074002,(Spondyloses: [cervical] or [lumbar] or [sacral]) or (arthritis - spine) or (osteoarthritis - spine) -268078004,(Cervicalgia) or (neck pain NOS) -268083007,(Backache NOS) or (back pain [& low]) -268086004,(Peripheral enthesopathies) or (capsulitis) -268087008,(Shoulder: [syndrome (& [painful arc][rotator cuff])][bicipital tendinit][bursitis][frozen][pericapsulit][adhes capsulit]) or (tendinitis: [subscapular][supraspinat][infraspinat][bicep long head]) -268088003,(Epicondylitis &/or tennis elbow) or (golfers' elbow) -268089006,(Patellar tendinitis) or (Pellegrini-Stieda syndrome) -268090002,(Tendinitis: [ankle/tarsus] or [achilles] or [ankle]) or (calcaneal spur) or (metatarsalgia) -268091003,(Peripheral enthesopathy NOS) or (exostosis NOS) or (periarthritis NOS) or (semi-membranosus bursa) or (tendinitis NOS) -268092005,Synovitis &/or tenosynovitis -268093000,Synovitis and/or tenosyn.- multiple -268094006,(Synovitis/tenosynovitis - wrist) or (de Quervain's tenosynovitis) -268095007,(Synovitis/tenosynovitis - hand) or (finger: [snapping] or [trigger]) -268096008,(Bursitis: [knee] or [pre-patellar]) or (house-maid's knee) -268097004,(Bursitis - ankle/foot) or (painful heel syndrome) -268107007,Rheumatism &/or fibrositis: [NOS] -268108002,Myalgia &/or myositis: [NOS] -268109005,(Myalgia/myositis NOS) or (intercostal myalgia) -268110000,(Neuralgia/neuritis - ankle/foot) or (policemans' disease) -268111001,(Neuralgia/neuritis - NOS) or (nerve root pain NEC) -268112008,Pain in limb &/or NOS -268122002,(Nonarticular rheumatism NOS) or (panniculitis) -268718003,[X]Persistent somatoform pain disorder -268777004,Psychalgia: [tension backache] or [other] -268994009,On examination - tenderness/pain -269018004,O/E pain: [abdominal (& on palpation)] or [epigastric] or [iliac] or [lumbar] or [umbilical] -269019007,O/E - right iliac: [abdominal pain] or [tender] -269020001,O/E - left iliac: [abdominal pain] or [tender] -269046002,O/E - maxillary sinus: [tenderness] or [pain] -269047006,O/E - frontal sinus: [tenderness] or [pain] -269132000,Other shoulder sprain -269133005,Other upper arm sprain -269134004,Sprain of elbow and forearm -269135003,Hand sprain unspecified -269136002,Sprain of hip and thigh -269137006,Sprain of knee and leg -269138001,Strain of gastrocnemius tendon -269139009,Sprain of interphalangeal joint of toe -269140006,Sprain of other parts of back -269141005,"Neck sprain, unspecified" -269143008,Sprains and strains NOS -269324003,[Dislocations &/or sprains &/or strains] or subluxations -269328000,Sprain: [shoulder] or [upper arm] -269329008,Arm sprain - upper -269330003,Sprain: [hand] or [finger] -269331004,Sprained finger &/or thumb -269332006,Sprained upper leg (& [thigh]) -269333001,(Sprain - ankle NOS) or (twisted ankle) -269334007,(Sprained neck) or (whiplash injury) -269335008,Sacral &/or coccyx sprain -269336009,Pelvic sprain (& [pubic symphisis]) -269337000,Other sprains NOS -270506005,Unspecified polyarthropathy or polyarthritis -270534003,Proctalgia fugax (& anal spasm): disorder or observation -270542002,Elbow bursitis (& olecranon) -271329006,[D]Pain in head NOS -271330001,"[D]Chest pain, unspecified" -271681002,Stomach ache -27182002,Sprain of acromioclavicular ligament -271843009,Painful straining for stool -271856002,Groin pain -271857006,Loin pain -272047006,Complaining of loin pain -272048001,C/O - lumbar pain (context-dependent category) -272049009,Complaining of renal pain -2733002,Heel pain -27355003,Toothache -273685000,Pain diary -274135002,Arthritis/arthrosis -274140005,Subscapularis tendinitis -274161003,Back sprain -274162005,Thoracic back sprain -274163000,Lumbosacral sprain -274253004,[D]Retrosternal pain -274279008,Renal pain -274289007,On examination - iliac pain - abdominal -274290003,On examination - lumbar pain abdominal -274305000,On examination - maxillary sinus pain -274306004,On examination - frontal sinus pain -274663001,Acute pain -274664007,Chest pain on breathing -274665008,Chronic intractable pain -274666009,Face ache -274667000,Jaw pain -274668005,Non-cardiac chest pain -274669002,Other chronic pain -274671002,Pelvic and perineal pain -274796008,Examination of pain sensation -275315004,On examination - iliac pain on palpation -275316003,On examination - lumbar pain on palpation -275317007,Finger pain -275324008,Osteoarthritis of metacarpophalangeal joint -275334004,Shoulder strain -275446004,Gardner-Diamond syndrome -275449006,Sore bottom -275875002,On examination - painful arc -275895008,On examination - tenderness -275896009,On examination - pain -27635008,Aching pain -276435006,Pain / sensation finding -276889001,Eponymous strains A-L -277167007,Tenderness in ear canal -277168002,Tenderness in ear canal on distracting pinna -277210007,Tender mastoid -277238004,Tenderness over maxillary sinus -277241008,Tenderness over frontal sinus -277247007,Tender larynx -277285005,Thalamic pain -27741009,Calcific tendinitis of shoulder -277467000,Eponymous strain -277514002,Eponymous strains M-Z -277802001,Notalgia paresthetica -278018006,Tender muscles -27830001,Brachial radiculitis -278525009,Enthesopathy -278860009,Chronic low back pain -278862001,Acute low back pain -278995006,Facial tenderness -278997003,Bone tenderness -279001004,Pain finding at anatomical site -279019008,Central crushing chest pain -279021003,Epididymal pain -279028009,Ovarian pain -279029001,Pain in cervical spine -279030006,Myofascial pain syndrome of neck -279032003,Chronic pelvic pain without obvious pathology -279035001,Acute thoracic back pain -279036000,Myofascial pain syndrome of thorax -279038004,Thoracic back pain -279039007,Low back pain -279040009,Mechanical low back pain -279041008,Myofascial pain syndrome of lower back -279043006,Pain in buttock -279044000,Total body pain syndrome -279047007,Persistent pain following procedure -279052002,Sympathetically independent pain -279053007,Sympathetically maintained pain -279056004,Pain on penetration -279058003,Neurogenic pain -279059006,Hypoglossal neuralgia -279061002,Pain of anatomical structure -279062009,Myofascial pain -279063004,Lumbar facet joint pain -279066007,Foot joint pain -279067003,Metatarsophalangeal joint pain -279069000,Musculoskeletal pain -279070004,Muscle tension pain -279072007,Sore lip -279073002,Sore nostril -279075009,Pain finding -279087002,Painful spasm of anus -279093005,Cramping pain -279095003,Heavy pain -279096002,Sore pain -279097006,Splitting pain -279098001,Crushing pain -279114001,Character of pain -279980002,Peripheral neurogenic pain -279981003,Peripheral neuropathic pain -281245003,Musculoskeletal chest pain -281352004,Iliopsoas bursitis -281537007,Strain of tendon of head and neck -281538002,Strain of tendon of trunk -281539005,Strain of tendon of upper limb -281540007,Strain of tendon of upper arm -281541006,"Strain of tendon of forearm, wrist, hand" -281542004,Strain of tendon of lower limb -281543009,Strain of tendon of medial thigh muscle -281544003,Strain of tendon of foot and ankle -281598004,Sprain of spinal ligament -281599007,Sprain of ligament of lower limb -282743009,Malignant bone pain -285365001,Pain in toe -285375003,Pain in penis -285385002,Left sided chest pain -285386001,Right sided chest pain -285389008,Upper chest pain -285391000,Strain of muscle of lower limb -285393002,Strain of muscle of upper limb -285394008,Strain of muscle of trunk -285395009,Strain of calf muscle -287011007,Osteoarthritis - hand joint -287012000,Osteoarthritis - ankle and/or foot -287013005,Osteoarthritis - other joint -287016002,Synovitis/tenosynovitis - multiple joints -287017006,Synovitis/tenosynovitis - shoulder -287018001,Synovitis/tenosynovitis - elbow -287019009,Synovitis/tenosynovitis - wrist -287020003,Synovitis/tenosynovitis - hip -287021004,Synovitis/tenosynovitis - knee -287022006,Synovitis and/or tenosynovitis - ankle and/or foot -287023001,Bursitis of multiple bursa -287024007,Bursitis - knee -287025008,Bursitis of bursa of ankle and/or foot -287042002,Rheumatism hip NOS -287043007,Rheumatism knee NOS -287044001,Rheumatism ankle/foot NOS -287045000,Pain in left arm -287046004,Pain in right arm -287047008,Pain in left lower limb -287048003,Pain in right lower limb -287049006,Pain in limb NOS -287097007,Sprained finger/thumb -287098002,Sprained toe -287099005,Other sprains -28729000,Proliferative synovitis -28736004,Primary localized osteoarthrosis of multiple sites -287495009,On examination - Site of pain -288213002,Synovitis/tenosynovitis - hand -288220009,Rheumatism multiple NOS -288221008,Rheumatism shoulder NOS -288222001,Rheumatism elbow NOS -288223006,Rheumatism wrist NOS -288224000,Rheumatism hand NOS -288225004,Myalgia/myositis - multiple -288226003,Myalgia/myositis - shoulder -288227007,Myalgia/myositis - upper arm -288228002,Myalgia/myositis - forearm -288229005,Myalgia/myositis - hand -288230000,Myalgia/myositis -pelvis/thigh -288231001,Myalgia/myositis - lower leg -288232008,Myalgia/myositis - ankle/foot -288233003,Neuralgia/neuritis - multiple -288234009,Neuralgia/neuritis - shoulder -288235005,Neuralgia/neuritis - upper arm -288236006,Neuralgia/neuritis - forearm -288237002,Neuralgia/neuritis - hand -288238007,Neuralgia/neuritis - pelvis/thigh -288239004,Neuralgia/neuritis - lower leg -288240002,Neuralgia/neuritis - ankle/foot -288241003,Pain in limb - multiple -289817003,Pain of cervix -289818008,Pain on movement of cervix -289842007,Ovary tender -289844008,Pain of ovary -289845009,Pain on movement of ovary -289900009,Period pain present -289901008,Period pain absent -291761000119107,Complex regional pain syndrome type II of left upper limb -291771000119101,Complex regional pain syndrome type II of right upper limb -291781000119103,Complex regional pain syndrome type II of left lower limb -291791000119100,Complex regional pain syndrome type II of right lower limb -29207008,Tenderness -29210001,Trochanteric tendinitis -292481000119104,Neuralgia of right pudendal nerve -292491000119101,Neuralgia of left pudendal nerve -292521000119104,Neuralgia of nerve of right lower limb -292531000119101,Neuralgia of nerve of left lower limb -293921000119104,Complex regional pain syndrome type I of bilateral upper limbs -293931000119101,Complex regional pain syndrome type I of left lower limb -293941000119105,Complex regional pain syndrome type I of left upper limb -293951000119107,Complex regional pain syndrome type I of bilateral lower limbs -293961000119109,Complex regional pain syndrome type I of right lower limb -293971000119103,Complex regional pain syndrome type I of right upper limb -29695002,Throbbing pain -297128006,Nuchal pain -297217002,Rib pain -298160000,Inflamed joint -298161001,Temporomandibular joint inflamed -298162008,Shoulder joint inflamed -298163003,Elbow joint inflamed -298164009,Wrist joint inflamed -298165005,Hand joint inflamed -298166006,Metacarpophalangeal joint inflamed -298167002,Finger joint inflamed -298168007,Inflammation of thumb joint -298169004,Hip joint inflamed -298170003,Knee joint inflamed -298171004,Ankle joint inflamed -298172006,Foot joint inflamed -298173001,Subtalar joint inflamed -298174007,Metatarsophalangeal joint inflamed -298175008,Interphalangeal joint of toe inflamed -298176009,Cervical spine joint inflamed -298177000,Thoracic spine joint inflamed -298178005,Lumbar spine joint inflamed -298240000,Sacroiliac joint stiff -298250004,Joint tender -298251000,Tenderness of sacroiliac joint -298252007,Joint non-tender -298253002,Cervical facet joint pain -298254008,Thoracic facet joint pain -298255009,Pain on joint movement -298268001,Tenderness of tendon -298288002,Diffuse muscle tenderness -298289005,Muscle tender point -298290001,Tenderness at muscle insertion -298291000000107,Pain with no relieving factor -298292009,Pain on movement of skeletal muscle -298301000000106,Right sided thoracic back pain -298311000000108,Left sided thoracic back pain -298351000000107,Pain on passive stretch of joint -29837005,Dysmenorrhea -298375002,Tenderness of temporomandibular joint -298376001,Temporomandibular joint painful on movement -298477006,Cervical spine tender -298478001,Pain on movement of cervical spine -29857009,Chest pain -298578004,Thoracic spine - tender -298579007,Pain on movement of thoracic spine -298673002,Lumbar spine - tender -298674008,Pain on movement of lumbar spine -298729007,Sternum tender -298731003,Pain of sternum -298740004,Rib tender -298741000,Rib non-tender -298751004,Tenderness of upper limb -298752006,Pain in upper limb -298856001,Tenderness of shoulder joint -298857005,Shoulder joint painful on movement -298858000,Shoulder joint - painful arc -298928007,Tenderness of elbow joint -298929004,Elbow joint - painful on movement -299017002,Tenderness of wrist joint -299018007,Wrist joint painful on movement -299111003,Tenderness of finger joint -299112005,Finger joint painful on movement -29913006,Rheumatism -29918002,Cervical spondylosis without myelopathy -299198008,Tenderness of thumb joint -299199000,Thumb joint painful on movement -29930001000004103,Intractable low back pain -299307002,Tenderness of hip joint -299308007,Hip joint painful on movement -299372009,Tenderness of knee joint -299373004,Tenderness on medial joint line of knee -299374005,Tenderness on lateral joint line of knee -299375006,Infrapatellar tenderness -299376007,Tenderness in popliteal fossa -299377003,Knee joint painful on movement -299446004,Tenderness of ankle joint -299447008,Ankle joint - painful on movement -299512002,Tenderness of foot joint -299513007,Foot joint - painful on movement -299553005,Tenderness of subtalar joint -299554004,Subtalar joint painful on movement -299632005,Tenderness of toe joint -299633000,Toe joint painful on movement -300103004,Pinna tender -300104005,Generalized tenderness in pinna -300105006,Focal tenderness in pinna -300107003,Pain on movement of pinna -300348008,Gallbladder tender -300349000,Gallbladder non-tender -300446008,Kidney tender -300447004,Kidney non-tender -300459000,Bladder tender -300460005,Bladder non-tender -300501005,Epididymis tender -300502003,Epididymis non-tender -300566002,Spleen tender -30077003,Somatoform pain disorder -300820003,Tender -30085007,Morton's metatarsalgia -300942003,Tender lymph node -300947009,Deltoid tendinitis -300953009,Pain in axilla -300954003,Pain in calf -300955002,Pain in thumb -300956001,Low back strain -300957005,Postural low back pain -300960003,Psychogenic back pain -301353005,Pain of eye structure -301354004,Pain of ear -301355003,Pain of respiratory structure -301356002,Maxillary sinus pain -301357006,Frontal sinus pain -301358001,Pain of cardiovascular structure -301359009,Pain of lymphoreticular structure -301361000,Pain of oral cavity structure -301362007,Pain of digestive structure -301363002,Pain of endocrine structure -301365009,Pain of head and neck region -301366005,Pain of truncal structure -301369003,Finding of pattern of pain -301370002,Finding of sensory dimension of pain -301371003,Gnawing pain -301372005,Finding of affective dimension of pain -301373000,Tiring with pain -301375007,Sickening with pain -301376008,Fearful with pain -301377004,Punishing with pain -301378009,Finding of present pain intensity -301380003,Mild present pain -301381004,Discomforting present pain -301382006,Distressing present pain -301383001,Horrible present pain -301384007,Excruciating present pain -301385008,Tenderness finding -301386009,Tenderness of body structure -301387000,Tenderness of eye structure -301388005,Tenderness of ear structure -301389002,Tenderness of respiratory structure -301390006,Tenderness of cardiovascular structure -301391005,Tenderness of lymphoreticular structure -301392003,Tenderness of oral cavity structure -301393008,Tenderness of digestive structure -301396000,Tenderness of male genital structure -301397009,Tenderness of female genital structure -301398004,Tenderness of endocrine structure -301399007,Musculoskeletal tenderness -301400000,Tenderness of body region -301401001,Tenderness of head and neck region -301402008,Tenderness of truncal structure -301406006,Tenderness of central region -301407002,Tenderness of right lumbar -301408007,Tenderness of left lumbar -301421000,Tenderness in limb -301422007,Tenderness in upper limb -301423002,Tenderness in lower limb -301715003,Left upper quadrant pain -301716002,Left lower quadrant pain -301717006,Right upper quadrant pain -301754002,Right lower quadrant pain -301773003,Pain in femur -301864002,Transient synovitis of hip -302017001,Sore eye -302072004,Pain in thyroid -302073009,Tenderness of thyroid -302219006,Ear pain -302241006,[D]Jaw pain -30233002,Swallowing painful -302934007,Disorder of spine -302936009,Enthesopathy of wrist and/or hand -302937000,Enthesopathy of lower leg and ankle region -302938005,Tendinitis AND/OR tenosynovitis of the ankle region -302939002,Tendinitis AND/OR tenosynovitis of the foot region -303041000119104,Osteoarthritis of bilateral first carpometacarpal joints -303191000119108,Calcific tendinitis of left shoulder -303211000119109,Calcific tendinitis of left upper arm -303261000119107,Calcific tendinitis of right shoulder -303281000119103,Calcific tendinitis of right upper arm -30473006,Pain in pelvis -3061000119102,Chronic nonmalignant pain -30701005,Inflammatory polyarthropathy -307176005,Acute sciatica -307177001,Chronic sciatica -30731004,Glossodynia -307499004,Cricoarytenoid joint fixation -307500008,Cricoarytenoid joint arthritis -307722004,[D] Right upper quadrant pain -307724003,[D] Left upper quadrant pain -308150007,[D]Retrosternal chest pain -308497004,Strain - lesion -308601000000105,Pain in face -308761000119108,Tendinitis of left gluteal tendon -308771000119102,Tendinitis of right gluteal tendon -308927000,Pain / sensation symptom finding -308941000119107,Calcific tendinitis of left ankle -308951000119109,Calcific tendinitis of left elbow -308961000119106,Calcific tendinitis of left hip -308971000119100,Calcific tendinitis of left knee -308991000119104,Calcific tendinitis of right ankle -309001000119104,Calcific tendinitis of right elbow -309021000000104,Pain in face -309021000119108,Calcific tendinitis of right hip -309031000119106,Calcific tendinitis of right knee -309246000,Osteoarthritis of foot joint -30936004,Enthesopathy of hip region -309471000000109,Complex regional pain syndrome type II -309522006,Tenderness of neck -309552003,[D]Painful respiration -309678000,On examination - pain and sensation -309710005,Lumbosacral strain -30989003,Knee pain -310072004,Acute pain service -310482008,On examination - snuff box tenderness -310483003,Complaining of pain in toe -310484009,Complaining of pain in hallux -310631000000103,Suspected inflammatory arthritis -310641000000107,Suspected inflammatory arthritis -310651000000105,Suspected inflammatory arthritis -311804006,Prolapsed lumbar intervertebral disc with sciatica -311811005,[D]Left lower quadrant pain -311812003,[D]Right lower quadrant pain -312411000119100,Lateral epicondylitis of left humerus -312421000119107,Lateral epicondylitis of right humerus -312785002,Tendinitis -312836001,Enthesopathy of lower limb -313257005,"Localized, primary osteoarthritis of the wrist" -313258000,"Localized, primary osteoarthritis of toe" -313259008,"Localized, primary osteoarthritis of elbow" -313631000119104,Monoarthritis of left knee -313701000119100,Monoarthritis of right knee -314108007,Adhesions of knee joint -314591000119101,Bursitis of olecranon of left elbow -314601000119108,Bursitis of olecranon of right elbow -314642004,Intermittent pain -314716005,Acute pelvic pain -314884009,Sprain of ligament of hand -31490007,Nasociliary neuralgia -316761000119109,Pain of left forearm -316801000119101,Pain of left lower leg -31681005,Trigeminal neuralgia -316841000119104,Pain of left upper arm -316941000119108,Pain of right lower leg -316981000119103,Pain of right upper arm -317741000119107,Peroneal tendinitis of left lower limb -317751000119109,Peroneal tendinitis of right lower limb -318171000119100,Tendinitis of left posterior tibial tendon -318181000119102,Tendinitis of right posterior tibial tendon -31829008,Strain of lumbar region -318641000119101,Osteoarthritis of joint of left ankle -318651000119104,Osteoarthritis of joint of left elbow -318661000119102,Osteoarthritis of joint of left hand -318671000119108,Osteoarthritis of joint of left shoulder region -318681000119106,Osteoarthritis of joint of left wrist -318691000119109,Osteoarthritis of joint of right ankle and/or foot -318701000119109,Osteoarthritis of joint of right elbow -318711000119107,Osteoarthritis of joint of right hand -318721000119100,Osteoarthritis of joint of right shoulder region -318731000119102,Osteoarthritis of joint of right wrist -318771000119104,Tendinitis of left psoas tendon -318781000119101,Tendinitis of right psoas tendon -3199001,Sprain of shoulder -3200003,Sacrocoxalgia -32128001,Sprain of metacarpophalangeal joint -322521000119104,Transient synovitis of left elbow -322531000119101,Transient synovitis of left hand -322541000119105,Transient synovitis of left hip -322571000119103,Transient synovitis of left wrist -322601000119109,Transient synovitis of right elbow -322611000119107,Transient synovitis of right hand -322621000119100,Transient synovitis of right hip -322651000119108,Transient synovitis of right wrist -322769008,Trigeminal neuralgia [no drugs here] -323291000119108,Osteoarthritis of left hip joint -323301000119109,Osteoarthritis of left knee joint -323311000119107,Osteoarthritis of right hip joint -323321000119100,Osteoarthritis of right knee joint -323850000,Sore pain -330275003,Other preps for inflamed joints -331000119106,Tendinitis of elbow or forearm -33262002,Osteoarthrosis involving multiple sites but not designated as generalized -33275002,Degenerative joint disease of upper arm -33439002,Enthesopathy of wrist AND/OR carpus -3368006,Dull chest pain -33952002,Localized osteoarthrosis -34789001,Pain in coccyx -34791000119103,Chest pain due to pericarditis -34840004,Tendinitis -35185008,Enthesopathy of elbow region -35496009,Femoral neuralgia -35635000,Cervicobrachial neuralgia -35678005,Multiple joint pain -357182002,Spondyloarthropathy -35726004,Sprain of lateral collateral ligament of knee -35908007,Chronic arthritis -359173000,Seronegative arthritis -359643005,Enthesitis -360437006,Strain of tendon of neck -360450007,Strain of neck muscle -361197009,Sarcoid arthropathy -361198004,Sarcoid arthritis -36163009,Night pain -36186002,Polyarthropathy -36241000119108,Sprain of ligament of cervical spine region -36269003,Cheilodynia -363178003,Inflammatory disorder of joint -36349006,Burning pain -364624006,Pain / sensation observable -364625007,Characteristic of pain -364626008,Characteristic of pain at anatomical site -364627004,Characteristics of pain of head and neck region -364629001,Characteristics of pain of truncal structure -364631005,Pattern of pain -364632003,Pain character -364635001,Feature of present pain intensity -36527001,Periarthritis of shoulder -365882001,Backache -36630001,Deep pain -36657004,Sprain of radial collateral ligament -366948003,Exacerbation of backache -366958004,Chest wall pain -366981002,Pain -366982009,Pain in upper limb -367127009,Muscle strain -367130002,Joint sprain -367173006,Exacerbation of backache -367183005,Chest wall pain -367206007,Pain -367207003,Pain in upper limb -36729000,Pain of prostate -367433008,Dysmenorrhea -367539009,Disorder of the vertebral column -36859004,Esophageal chest pain -369001000000109,Neck pain -369021000000100,Complex regional pain syndrome type I -371030007,Squeezing chest pain -371081002,Arthritis of knee -371082009,Arthritis of spine -37151006,Erythromelalgia -371921000000105,Tendinitis of rotator cuff -372091005,Arthritis -372109003,Disorder of joint of spine -37226004,Pain co-occurrent with tenderness -3723001,Arthritis -37358006,Autoerythrocyte sensitivity disorder -373589003,Backache -373598000,Hand arthritis NOS -373609007,Shoulder arthritis NOS -373621006,Chronic pain syndrome -373623009,Osteoarthritis of glenohumeral joint -373634007,Backache -373644009,Back pain -373673007,Disorder characterized by pain -37440001,Kashin-Bek disease -37475001,Synesthesialgia -37616004,Pharyngitis -37785001,Patellar tendonitis -37895003,Osteoarthrosis of the carpometacarpal joint of the thumb -37913005,Sprain of other specified site of sacroiliac region -381000119107,Pain disorder with psychological factor -38343000,Vaginal pain -384709000,Sprain -384710005,Sprain of radiocarpal ligament -38540001,Sprain of interphalangeal joint of finger -386207004,Temporomandibular joint-pain-dysfunction syndrome -387800004,Cervical spondylosis -387801000,Cervical arthritis -387802007,Thoracic spondylosis -38800000,Acute serous synovitis -38850007,Chronic arthropathy -389320000,Chronic low back pain -389331008,Right upper quadrant pain -389342004,Pain in lower limb -389343009,Knee pain -389344003,Foot pain -390055001,Chronic low back pain -390064006,Right upper quadrant pain -390075005,Pain in lower limb -390076006,Knee pain -390077002,Foot pain -390421000000103,[X]Other bursitis of knee -393602007,Exacerbation of osteoarthritis -39386008,Thoracic spondylosis without myelopathy -39402007,Pelvic congestion syndrome -394640000,Radiculopathy -394991004,Exacerbation of osteoarthritis -39510005,Neurogenic ossifying arthropathy -39511000000109,Anterior knee pain -39547005,Enthesopathy of knee -39565009,Pain crisis -396159001,Referral to rheumatology service for osteoarthritis -396275006,Osteoarthritis -396332003,Rheumatism -396333008,Non-articular rheumatism -397704003,"Pain sensation, function" -397721000000106,[D]Chest pain NOS -39848009,Whiplash injury to neck -398878007,Sprain of ligament -398997008,Vertebrogenic pain syndrome -399044006,Glossopyrosis -399079008,Back pain -399114005,Adhesive capsulitis of shoulder -399194009,Disorder characterized by back pain -399269003,Arthropathy -400601000000103,[D]Pain in head NOS -40129004,Sprain of ligament of lumbosacral joint -40196000,Mild pain -402751000000105,[X]Sprain and strain of other and unspecified parts of shoulder girdle -403390002,Primary erythromelalgia -403391003,Secondary erythromelalgia -405059008,Pain level: psychological effects -405160001,Pain level: disruptive effects -405161002,Pain level -406127006,Pain intensity -406189006,Pain observable -40709005,Lumbago -40799003,Subacromial bursitis -408749000,"Complex regional pain syndrome, type II, lower limb" -408750000,"Complex regional pain syndrome, type II, upper limb" -408751001,"Complex regional pain syndrome, type II" -408950005,Acute pain control -408951009,Acute pain control management -408952002,Acute pain control assessment -408953007,Acute pain control education -409021000000106,[X]Other specified arthrosis -40913006,Primary localized osteoarthrosis of hand -409871000000103,[X]Other dorsalgia -41000119109,Strain of foot -410481000000109,[X]Other hypertrophic osteoarthropathy -4106009,Rotator cuff syndrome -410713007,Sore sensation quality -410720000,Pain by sensation quality -410793008,Chronic arthritis of juvenile onset -41137001,Bicipital tenosynovitis -412021000000101,[X]Sprain and strain of joints and ligaments of other and unspecified parts of neck -41226008,Exquisite pain -412714008,Myalgia/myositis of neck -41321000119101,Myofascial pain syndrome of thoracic spine -41397009,Polyarthritis -414001000000101,[X] Somatoform pain disorder (& [persistent] or [psychalgia] or [psychogenic backache] or [psychogenic headache]) -414881000000100,[X]Other bursitis of hip -414971000000105,[X]Sprain and strain of other and unspecified parts of lumbar spine and pelvis -4151000119102,Facial neuralgia -415352004,Rotator cuff tear arthropathy -416209007,Synovitis -41652007,Pain in eye -416816003,Ligamentous strain -416956002,Undifferentiated inflammatory polyarthritis -417009006,Tender point -417021005,Sclerotomal pain -417180005,Undifferentiated inflammatory arthritis -417310005,Sphenobasilar synchondrosis lateral strain -417373000,Inflammatory polyarthropathy -417643003,Ligamentous articular strain -417704008,Membranous articular strain -41771000000105,Anterior knee pain -41821000119108,Strain of intercostal muscle -418237007,Pain in hallux -41888000,Temporomandibular joint disorder -418958006,Complaining of backache -419258005,Back pain -419411000000109,[X]Sprain and strain of other and unspecified parts of knee -419891000000102,[X]Other primary coxarthrosis -420454001,Consultation for chronic pain -420650002,Consultation for pain -421946003,Consultation for acute pain -422965008,Compensated movement at site of pain -423093000,Tendinitis of flexor tendon of hand -423184003,Adult pain assessment -423226005,Tendinitis of finger -423401003,Pediatric pain assessment -423417009,Tendinitis of hand -423778009,Tenosynovitis of hand -423810002,Tendinitis of wrist -424010006,Tendinitis of hip -424295009,Pain behavior present -42452002,Thoracic radiculopathy -424548006,Elbow hygroma -4248008,Synovitis AND/OR tenosynovitis associated with another disease -424806009,Stated pain intensity within acceptable range -425421000000105,[X]Other chest pain -425423002,Pain provoked by movement -42545001,Subacute arthritis -425473004,Pain radiating to left shoulder -42561004,Reminiscent neuralgia -425677008,Pain radiating to left arm -425746004,Pain provoked by light -425772008,Tendinitis of foot -425781002,Pain provoked by running -425831002,Pain characterized by relieving factor -425834005,Pain radiating to right flank -425839000,Pain radiating to head -425908001,Pain radiating to thoracic region right side -425940002,Inflammation of bursa of olecranon -426068005,Pain provoked by altercation -426120002,Pain provoked by rest -426135001,Chronic prostatitis - chronic pelvic pain syndrome -426142001,Pain radiating to right shoulder -426206001,Constant pain -426218005,Tendinitis of flexor hallucis longus -426277009,Pain provoked by eating -426351003,Pain provoked by lifting -426394008,Calcific tendinitis of achilles tendon -426466001,Pain radiating to left flank -426469008,Pain radiating to left leg -42647000,"Pain sensation, function" -426483005,Pain radiating to thoracic region left side -426555006,Pain radiating to jaw -426566004,Central pain syndrome -426628005,Chronic vaginal pain -426702003,Pain in female pelvis -426774001,Pain characterized by provoking factor -426803004,Pain radiating to right arm -426829004,Temporomandibular joint capsulitis -426845002,Bursitis of finger -426899007,Pain provoked by walking -426976009,Pain provoked by breathing -427128002,Gradual onset of pain -427146008,Pain provoked by coughing -427191004,Bursitis of intermetatarsal bursa -427252003,Pain radiating to right side of chest -427293006,Pain radiating to left side of chest -427310006,Pain radiating to neck -427341007,Pain provoked by exertion -427365005,Pain radiating to center of chest -427475007,Pain radiating to lumbar region of back -427500003,Arthropathy of cervical spine facet joint -427653003,Pain radiating to right leg -427878002,Arthropathy of the hand associated with a neurological disorder -427925000,Arthropathy of the wrist associated with a neurological disorder -427935006,Pain relief by rest -427947000,Monoarthritis of hip joint -427972000,Pudendal neuralgia -428097001,Disorder of hip joint -428104002,Arthritis of midtarsal joint -428107009,Disorder of wrist joint -428143003,Arthritis of joint of toe -428264009,Painful gait -428339009,Disorder of joint of foot -428346000,Pain relief by medication -428360003,Arthropathy of joint of hand -428432004,Spontaneous pain -428460002,Arthropathy of thoracic facet joint -428539005,Strain of triceps brachii muscle -428557006,Squeezing pain -428643002,Pain relief by supine position -428671008,Arthropathy of lumbar facet joint -428724006,Arthropathy of knee joint -428779003,Arthropathy of the knee associated with a neurological disorder -428911004,Pain relief by walking -428926002,Pain onset at rest -42898009,Acute polyarthritis -429038000,Pain onset during sleep -429051000000106,[D]Pain in head NOS -429056000,Pain onset during exertion -429147006,Pain relief related to position -429298008,Climacteric arthritis of spine -429350001,Arthropathy of spinal facet joint -429360005,Tendinitis of knee -429422002,Rheumatic arthritis of temporomandibular joint -429459001,Arthritis of acromioclavicular joint -429492007,Pain relief by sitting up -429501000000104,[X]Other spondylosis with radiculopathy -429531000,Pain on passive stretch of joint -429554009,Arthropathy of elbow -429555005,Sacral arthritis -429643006,Arthropathy of the elbow associated with a neurological disorder -429661000000101,[X]Sprain and strain of other and unspecified parts of wrist and hand -429722003,Strain of flexor muscle of hip -429742007,Pain onset during moderate exercise -430428000,Arthropathy of the ankle AND/OR foot associated with a neurological disorder -430474001,Secondary adhesive capsulitis -430879002,Posterior auricular pain -430894003,Strain of muscle of chest wall -430906009,Strain of rectus femoris muscle -430968008,Pain in male perineum -431956005,Suspected inflammatory arthritis -432463002,Arthropathy of the hip associated with a neurological disorder -432615008,Chronic pain in face -432733005,Acute degenerative joint disease of shoulder region -433159008,Acute pain in female pelvis -43470008,Pain in heart -43548008,Mittelschmerz -4368004,Strain of back -43751000119109,Periorbital and/or eye pain -43763009,Glossopharyngeal neuralgia -43781007,"Other specified arthropathy, NEC" -43800000,Bursitis of wrist -43829003,Chronic osteoarthritis -438505003,Strain of trapezius muscle -438551000000106,[X]Other enthesopathy of foot -439071000000104,[X]Other synovitis and tenosynovitis -43915000,Sprain of superior tibiofibular joint AND/OR ligament -439656005,Arthritis of elbow -440341000000101,[X]Persistent somatoform pain disorder -440571000000100,[D]Painful respiration NOS -441702008,Strain of muscle and/or tendon of wrist -441711008,Chronic psychogenic pain -441761004,Sprain of ligament of face -441932009,Strain of muscle and/or tendon of hand -441933004,Strain of muscle and/or tendon of lower leg -442048005,Tenosynovitis of wrist -442092007,Strain of muscle of face -442130003,Strain of muscle and/or tendon of elbow region -44221002,Idiopathic polyarthritis -442246002,Disorder of joint of ankle and/or foot -442265005,Strain of muscle and/or tendon of forearm -442372009,Strain of muscle and/or tendon of thigh -44245003,Tibial collateral ligament bursitis -442520000,Inflammation of rotator cuff tendon -443341000000106,([D]Pain: (in head NOS) or (jaw)) -443798008,Inflammation of joint of shoulder region -444381000000100,[X]Sprain and strain of other and unspecified parts of thorax -444561000000102,[X]Arthrosis -44465007,Sprain of ankle -444899003,Pain in forearm -444971006,Inflammation of extensor tendon of hand -444972004,Inflammation of tendon of metatarsophalangeal joint of second toe -444979008,Inflammation of flexor carpi ulnaris muscle tendon -445117007,Inflammation of flexor carpi radialis muscle tendon -445247000,Inflammation of bursa of patella -445271007,Villous arthritis -445276002,Inflammation of extensor carpi ulnaris muscle tendon -445290004,Inflammation of extensor pollicis longus muscle tendon -445335008,Inflammation of extensor indicis muscle tendon -445422000,Joint pain in ankle and foot -445478004,Degenerative joint disease of pelvis -445760005,Acute sprain of ligament of neck -446198006,Strain of infraspinatus muscle -446199003,Strain of supraspinatus muscle -448394006,Inflammation of joint of foot -448589005,Inflammation of joint of hand -449313005,Referred pain in face -449823005,Tenosynovitis of thumb -449941000000105,"[X]Other bursitis, not elsewhere classified" -450101000000104,[X]Lumbar and other intervertebral disc disorders with radiculopathy -450321000000106,"[X]Other enthesopathies of lower limb, excluding foot" -450331000000108,"[X]Other enthesopathies, not elsewhere classified" -450521003,Osteoarthritis of patellofemoral joint -45064008,Primary localized osteoarthrosis of thigh -450721000000107,[X]Other bursitis of elbow -451201000000104,[X]Other primary arthrosis of first carpometacarpal joint -452131000000106,[X]Other primary gonarthrosis -45231001,Infrapatellar bursitis -45326000,Shoulder pain -4568003,Retrosternal pain -45861001,Pes anserinus tendinitis -45979003,Abdominal wind pain -462691000000108,"[D]Flatulence, eructation and gas pain NOS" -463331000000107,[X]Other specified arthritis -464831000000100,[X]Sprain and strain of joints and ligaments of other and unspecified parts of head -464921000000107,[X]Juvenile arthritis in other diseases classified elsewhere -46578006,Lumbosacral radiculitis -467271000000108,[X] Primary gonarthrosis: [other] or [unilateral] -468091000000102,[X]Other polyarthrosis -46860007,Sprain of ligament of cricothyroid joint -468971000000100,[X]Sprain and strain of other and unspecified parts of lumbar spine and pelvis -469101000000100,[X]Sprain and strain of other and unspecified parts of shoulder girdle -471000119102,Somatic dysfunction of sacroiliac joint -471371000000100,[X]Sprain and strain of other and unspecified parts of foot -471551000000103,[D]Chest pain NOS -473007007,Cervical discogenic pain -473008002,Pain in cheek -473009005,Pain in palate -473434003,Pain in chin -477931000000109,"[X]Enthesopathy of lower limb, unspecified" -478421000000104,[X]Other chronic pain -478451000000109,[X]Other juvenile arthritis -478731000000105,[X]Other streptococcal arthritis and polyarthritis -47874006,Sprain of arm -47933007,Foot pain -479711000000108,[X]Sprain and strain of other and unspecified parts of thorax -481000119104,Strain of hamstring muscle -48210000,Lumbosacral spondylosis without myelopathy -48274004,Sprain of thyroid cartilage -48429009,Somatic pain -48532005,Muscle strain -48926009,Pain in spine -491431000000104,Cervical spondylosis -491441000000108,Fibromyalgia -49218002,Hip pain -49388007,Sprain of foot -49575005,Shooting pain -495911000000100,"[D]Pain, generalised" -496001000000108,[D]Acute pain -496011000000105,[D]Chronic intractable pain -496291000000107,[D]Growing pains - limbs -496301000000106,[D]Musculoskeletal pain -49650001,Dysuria -4969004,Sinus headache -497111000000109,[D]Facial pain -498151000000109,[D]Chest pain -498161000000107,[D]Precordial pain -498171000000100,[D]Anterior chest wall pain -498181000000103,[D]Pleuritic pain -498231000000105,[D]Parasternal chest pain -498241000000101,[D]Musculoskeletal chest pain -498251000000103,[D]Non-cardiac chest pain -498491000000107,"[D]Flatulence, eructation and gas pain" -498671000000105,[D]Defaecation painful -498681000000107,[D]Pain in oesophagus -499071000000107,[D]Vesical pain -499191000000105,[D]Suprapubic pain -499221000000103,[D]Groin pain -499231000000101,[D]Loin pain -499271000000104,[D]Pelvic and perineal pain -49986002,Central pain -50127006,Tibialis tendinitis -502141000000102,"[D]Chest pain, unspecified" -502361000000104,[D]Retrosternal pain -502561000000106,[D]Jaw pain -502571000000104,[D]Right upper quadrant pain -502581000000102,[D]Left upper quadrant pain -502641000000109,[D]Retrosternal chest pain -502711000000102,[D]Painful respiration -502821000000101,[D]Left lower quadrant pain -502831000000104,[D]Right lower quadrant pain -50415004,Moderate pain -50442003,Palindromic rheumatism -50642008,Algodystrophy -50818007,Painful ejaculation -50921008,Periarthritis -51049005,Primary localized osteoarthrosis of ankle AND/OR foot -513131000000100,Pain in wrist -51388003,Pharyngeal pain -51428002,Bog spavin -5150003,Sprain of symphysis pubis -515481000000109,Pain or discomfort -515491000000106,Symptoms such as pain -51736007,Sprain of septal cartilage of nose -51741000119105,Acute ankle pain -51777006,"Pain self-management deficit, chronic" -51881000119109,Chronic ankle pain -52084006,Sprain of carpal joint -52598005,Rest pain -53057004,Hand pain -53208009,Peroneal tendinitis -53332000,Spinal arthritis deformans -534221000000101,On examination - painful ear NOS -53574006,Girdle pain -536851000000100,Backache symptom NOS -540501000000100,On examination - abdominal pain on palpation NOS -54314008,Putti-Chavany syndrome -54404000,Cervical radiculopathy -544491000000101,Bursitis of the knee NOS -544501000000107,Knee enthesopathy NOS -544511000000109,Tendinitis NOS -54617005,Tibialis posticus tendinitis -54848004,Sprain of other specified site of knee and leg -54888009,Sprain of knee -54942004,Sprain of sternum -551151000000104,Other and ill-defined sprains and strains -551161000000101,"Jaw sprain, unspecified" -551171000000108,Jaw sprain NOS -551181000000105,"Thyroid region sprain, unspecified" -551191000000107,Thyroid region sprain NOS -551201000000109,Rib sprain unspecified -551211000000106,Rib sprain NOS -551221000000100,Sternum sprain unspecified -551231000000103,Sternum sprain NOS -551241000000107,"Sprain of pelvis, unspecified" -551251000000105,Sprain of pelvis NOS -551261000000108,Other specified sprains and strains -55145008,Stabbing pain -55146009,Inflammation of sacroiliac joint -55350005,Hungry -55406008,Hyperalgesia -55865003,Cluster headache -558651000000104,"Localized osteoarthritis, unspecified, of the ankle and foot" -558661000000101,"Localized osteoarthritis, unspecified, of other specified site" -558671000000108,"Arthrosis of first carpometacarpal joint, unspecified" -558681000000105,"Localized osteoarthritis, unspecified, NOS" -558691000000107,"Oligoarticular osteoarthritis, unspecified" -558701000000107,"Oligoarticular osteoarthritis, unspecified, of unspecified sites" -558711000000109,Unspecified monoarthritis of unspecified site -558721000000103,Unspecified monoarthritis of the shoulder region -559961000000104,Chest pain NOS -564151000000108,Back pain without radiation NOS -564211000000101,On examination - pain sensation NOS -565041000000108,On examination - sign painful NOS -56608008,Pain in wrist -566891000000100,Other general diseases with associated arthropathy -566901000000104,Shoulder sprain NOS -566911000000102,Upper arm sprain NOS -566921000000108,Other elbow sprain -568161000000104,"Arthritis associated with other disease, distal radioulnar joint" -568201000000107,"Arthritis associated with other disease, distal interphalangeal joint of finger" -568561000000109,Earache symptom NOS -57149003,"Tenosynovitis of hand and wrist, NEC" -572971000000100,Pain character NOS -57356000,Bursitis of hand -576511000000100,"Osteoarthritis NOS, of elbow" -576531000000108,Forearm sprain NOS -576541000000104,Wrist sprain unspecified -576571000000105,Hand sprain NOS -57676002,Joint pain -57693002,Degenerative joint disease of pelvic region -5771000119106,Phantom limb syndrome with pain -581171000000104,Enthesopathy of the ankle unspecified -581181000000102,Enthesopathy of the tarsus unspecified -58156007,Primary localized osteoarthrosis -58278007,"Other enthesopathy of ankle and tarsus, NEC" -5853003,Sprain of lower extremity -587181000000107,"Osteoarthritis NOS, of distal radioulnar joint" -587191000000109,Other specified arthropathy of the forearm -587201000000106,"Osteoarthritis NOS, of proximal interphalangeal joint of finger" -587211000000108,"Osteoarthritis NOS, of distal interphalangeal joint of finger" -587221000000102,Other specified arthropathy of other specified site -587231000000100,"Osteoarthritis NOS, of hip" -58769002,Subacute rheumatic arthritis -58772009,Sprain of sacrum -58781003,Gluteal tendinitis -588301000000104,"Arthritis associated with other disease, sternoclavicular joint" -588311000000102,"Arthritis associated with other disease, wrist" -588321000000108,"Arthritis associated with other disease, metacarpophalangeal joint" -588331000000105,"Arthritis associated with other disease, proximal interphalangeal joint of finger" -588341000000101,"Oligoarticular osteoarthritis, unspecified, of the shoulder region" -588351000000103,"Arthritis associated with other disease, hip" -588361000000100,"Arthritis associated with other disease, sacroiliac joint" -588371000000107,"Arthritis associated with other disease, knee" -588381000000109,"Oligoarticular osteoarthritis, unspecified, of hand" -590901000000104,Generalized osteoarthritis of unspecified site -590911000000102,Generalized osteoarthritis NOS -590921000000108,"Localized, primary osteoarthritis of unspecified site" -59139008,Crushing chest pain -59185006,Primary localized osteoarthrosis of lower leg -59201007,Sprain of chondrosternal joint -594431000000107,"Localized, primary osteoarthritis of other specified site" -594441000000103,"Osteoarthritis NOS, of 1st metatarsophalangeal joint" -594451000000100,"Localized, primary osteoarthritis NOS" -594841000000101,Wrist or carpus enthesopathy NOS -594861000000100,Elbow enthesopathy unspecified -594871000000107,Elbow enthesopathy NOS -59603003,Phantom limb syndrome -597331000000105,Ankle and foot sprain NOS -600131000000101,Other sprains -600411000000102,Temporomandibular joint disorder NOS -60058008,Sprain of cruciate ligament of knee -6011000119108,Transient arthritis -604841000000108,Other forearm sprain -604851000000106,Elbow sprain NOS -607681000000107,Other chronic pain -608830002,Discogenic pain -608831003,Thoracic discogenic pain -608832005,Lumbar discogenic pain -60932006,Buttock pain -609495006,Sprain of ankle grade III -611721000000109,Eye pain NOS -61203005,Lumbar AND/OR sacral arthritis -61264001,"Pain self-management deficit, acute" -614491000000104,Other shoulder sprain -614501000000105,Other upper arm sprain -614511000000107,Hand sprain unspecified -614601000000109,Unspecified monoarthritis of the hand -614611000000106,Unspecified monoarthritis of the pelvic region and thigh -614721000000106,"Osteoarthritis NOS, of interphalangeal joint of toe" -614801000000108,Articular cartilage disorder of other joints of the shoulder girdle -614831000000102,Palindromic rheumatism of unspecified site -61486003,Sacral back pain -616461000000101,"Neck sprain, unspecified" -616471000000108,Sprains and strains NOS -61830005,Sphenopalatine neuralgia -620541000000106,Other sprains NOS -62171003,Plantar heel pain -625131000000101,"Localized osteoarthritis, unspecified, of the pelvic region and thigh" -625461000000100,"Hip enthesopathy, unspecified" -625471000000107,Hip enthesopathy NOS -625481000000109,Metatarsalgia NOS -625491000000106,Ankle or tarsus enthesopathy NOS -625501000000100,Other peripheral enthesopathies -625511000000103,Enthesopathy NOS -625521000000109,Periarthritis NOS -625531000000106,Peripheral enthesopathy NOS -625651000000100,Trigeminal neuralgia NOS -625671000000109,Other specified trigeminal neuralgia -62647006,Painful spasm of anus -627841000000108,Other and ill-defined sprains and strains NOS -629821000000108,Arthralgia of unspecified site -629831000000105,Arthralgia of other specified site -630071000000107,Synovial osteochondromatosis of other tarsal joint -630321000000105,Capsulitis NOS -63052008,Sprain of atlanto-axial joint -631000119102,Chronic back pain greater than three months duration -631091000000104,Wrist and hand sprain NOS -631101000000107,Other hip sprain -63117002,Sprain of elbow -635131000000103,Unspecified polyarthropathy of the lower leg -635141000000107,Unspecified polyarthropathy of the ankle and foot -635361000000105,Palindromic rheumatism NOS -637091000000105,"Osteoarthritis NOS, of the lower leg" -637101000000102,"Osteoarthritis NOS, of ankle and foot" -637111000000100,Unspecified polyarthropathy or polyarthritis NOS -637121000000106,Arthropathy NOS -637131000000108,"Arthropathy NOS, of the upper arm" -637141000000104,"Arthropathy NOS, of the forearm" -637151000000101,"Arthropathy NOS, of the pelvic region and thigh" -637161000000103,"Arthropathy NOS, of the lower leg" -637171000000105,"Arthropathy NOS, of the ankle and foot" -637211000000108,Other tenosynovitis of the hand -638451000000105,Rheumatism shoulder NOS -64166009,Subpatellar bursitis -643261000000101,"Backache, unspecified" -643801000000104,Unspecified otalgia -647101000000103,"Localized osteoarthritis, unspecified, of the lower leg" -647111000000101,Osteoarthritis NOS -647121000000107,"Osteoarthritis NOS, of the hand" -647131000000109,"Osteoarthritis NOS, pelvic region/thigh" -648401000000105,Other pelvic pain - female -650141000000104,"Osteoarthritis NOS, of the upper arm" -65259006,Sprain of atlanto-occipital joint -65323003,Polymyalgia rheumatica -653461000000100,"Osteoarthritis NOS, of wrist" -653471000000107,"Osteoarthritis NOS, of metacarpophalangeal joint" -653481000000109,Other specified arthropathy of the ankle and foot -653491000000106,Other specified inflammatory polyarthropathy -653521000000109,Other specified inflammatory polyarthropathy NOS -653531000000106,Inflammatory polyarthropathy NOS -6561007,Pain in urethra -656661000000109,"Osteoarthritis NOS, of sternoclavicular joint" -65684000,Sprain of neck -657001000000102,"Neuralgia, neuritis or radiculitis NOS" -657461000000108,"Oligoarticular osteoarthritis, unspecified, of lower leg" -657471000000101,Unspecified monoarthritis of the upper arm -657481000000104,Unspecified monoarthritis of the forearm -65761003,Inflammatory pain -659571000000106,"Localized osteoarthritis, unspecified" -659591000000105,"Localized osteoarthritis, unspecified, of the shoulder region" -659601000000104,"Localized osteoarthritis, unspecified, of the upper arm" -659621000000108,"Localized osteoarthritis, unspecified, of the forearm" -659631000000105,"Localized osteoarthritis, unspecified, of the hand" -659641000000101,Transient arthropathy of unspecified site -66056001,Causalgia -661531000000103,"Localized osteoarthritis, unspecified, of unspecified site" -661561000000108,Climacteric arthritis of unspecified site -661571000000101,Climacteric arthritis of other specified site -661581000000104,Climacteric arthritis NOS -661601000000108,Transient arthropathy of other specified site -661611000000105,Transient arthropathy of other tarsal joint -661621000000104,Transient arthropathy NOS -6617009,Referred pain -66191007,Transient arthropathy -66405000,Sprain of radiohumeral joint -664241000000106,"Osteoarthritis NOS, of ankle" -664251000000109,"Osteoarthritis NOS, of other tarsal joint" -664261000000107,"Arthropathy NOS, of multiple sites" -664271000000100,"Osteoarthritis NOS, of lesser metatarsophalangeal joint" -66452006,Stenosing tenosynovitis -66540002,Back strain of thoracic region -665941000000104,Psychogenic pain unspecified -665951000000101,Psychalgia NOS -666351000000107,Palindromic rheumatism of other specified site -666411000000104,"Arthritis associated with other disease, subtalar joint" -666421000000105,"Arthritis associated with other disease, interphalangeal joint of toe" -666431000000107,"Osteoarthritis NOS, of unspecified site" -666441000000103,"Osteoarthritis NOS, of shoulder region" -666451000000100,"Osteoarthritis NOS, other specified site" -666611000000101,Spondylosis NOS -666681000000108,"Rotator cuff syndrome, unspecified" -666691000000105,Rotator cuff syndrome NOS -667071000000103,Synovitis or tenosynovitis NOS -667141000000105,"Osteoarthritis NOS, of talonavicular joint" -667511000000103,"Osteoarthritis NOS, of sacroiliac joint" -667531000000106,"Osteoarthritis NOS, of knee" -667541000000102,"Osteoarthritis NOS, of tibiofibular joint" -667551000000104,"Osteoarthritis NOS, of subtalar joint" -667611000000104,Myalgia and myositis unspecified -667631000000107,Myalgia or myositis NOS -667651000000100,"Neuralgia, neuritis and radiculitis unspecified" -667681000000106,Neuralgia unspecified -667691000000108,Radiculitis unspecified -66822008,Subacute arthropathy -669081000000109,Other specified nonarticular rheumatism -671901000000107,Other thigh sprain -671911000000109,Hip sprain NOS -671921000000103,Thigh sprain NOS -671931000000101,Other specified knee sprain -671941000000105,Other specified leg sprain -671951000000108,Knee sprain NOS -671961000000106,Leg sprain NOS -671971000000104,"Ankle sprain, unspecified" -671981000000102,Ankle sprain NOS -671991000000100,"Foot sprain, unspecified" -672001000000102,Foot sprain NOS -67315001,Degenerative joint disease of shoulder region -674051000119103,Chronic neck pain for greater than 3 months -674241000000100,Rheumatism elbow NOS -674251000000102,Rheumatism wrist NOS -674261000000104,Rheumatism hand NOS -6744007,Painful bladder spasm -674731000000102,Trigeminal neuralgia [no drugs here] -67536000,Arthropathy associated with a neurological disorder -675541000000101,Myalgia unspecified -67577001,Degenerative joint disease of thigh -675861000000102,Rheumatism knee NOS -675871000000109,Rheumatism ankle/foot NOS -675881000000106,Pain in limb NOS -676871000000104,Rheumatism hip NOS -677991000000108,Other synovitis and tenosynovitis -678001000000104,Bursitis NOS -67801009,Tenosynovitis -678131000000109,Rheumatism and fibrositis unspecified -67849003,Excruciating pain -679341000000108,"Osteoarthritis NOS, of the forearm" -680151000000109,Unspecified polyarthropathy of the upper arm -680161000000107,Unspecified polyarthropathy of the forearm -680171000000100,Unspecified polyarthropathy of the hand -680181000000103,Unspecified polyarthropathy of the pelvic region and thigh -680231000000105,Unspecified monoarthritis of the ankle and foot -680241000000101,Unspecified monoarthritis of other specified site -680271000000107,Other specified arthropathy of the upper arm -68172002,Disorder of tendon -682021000000102,"Arthritis associated with other disease, shoulder" -682031000000100,"Arthritis associated with other disease, acromioclavicular joint" -682041000000109,"Arthritis associated with other disease, elbow" -682051000000107,"Oligoarticular osteoarthritis, unspecified, of upper arm" -682061000000105,"Oligoarticular osteoarthritis, unspecified, of forearm" -682071000000103,Unspecified polyarthropathy of other specified site -682081000000101,Unspecified polyarthropathy of multiple sites -682091000000104,"Oligoarticular osteoarthritis, unspecified, of the pelvic region and thigh" -683441000000109,Nonarticular rheumatism NOS -684471000000101,Sprain of other parts of back -68449006,Coxitis -684511000000105,Other specified sacroiliac sprains -684521000000104,Sacroiliac sprain NOS -684531000000102,Neck sprain NOS -684541000000106,"Sacral sprain, unspecified" -684551000000109,Sacrum sprain NOS -684561000000107,Back sprain NOS -685061000000104,Other tenosynovitis of hand or wrist -685331000000106,Rheumatism or fibrositis NOS -685371000000108,Rheumatism unspecified -6858004,Capsulitis -68693003,Degenerative joint disease involving multiple joints -687001000000108,Arthralgia of other tarsal joint -687011000000105,Arthralgia NOS -68718000,Cervical spondylarthritis -68744000,"Other enthesopathy of elbow, NEC" -688471000000105,"Oligoarticular osteoarthritis, unspecified, of other specified sites" -688481000000107,"Oligoarticular osteoarthritis, unspecified, of multiple sites" -688501000000103,"Osteoarthritis NOS, of shoulder" -688511000000101,Other specified arthropathy -688521000000107,Unspecified monoarthritis NOS -688561000000104,Other specified arthropathy of the hand -688571000000106,Other specified arthropathy of the pelvic region and thigh -688581000000108,Other specified arthropathy of the lower leg -68859000,Spondylosis without myelopathy -688601000000104,Other specified arthropathy of multiple sites -688611000000102,Other specified arthropathy NOS -688631000000105,"Arthropathy NOS, of unspecified site" -688641000000101,"Arthropathy NOS, of the shoulder region" -688661000000100,"Arthropathy NOS, of the hand" -688671000000107,"Arthropathy NOS, of other specified site" -689531000000101,"Arthritis associated with other disease, other tarsal joint" -689541000000105,"Arthritis associated with other disease, 1st metatarsophalangeal joint" -689551000000108,"Arthritis associated with other disease, lesser metatarsophalangeal joint" -68962001,Muscle pain -689661000000105,Other juvenile arthritis -691671000000103,Unspecified polyarthropathy or polyarthritis -693081000000105,Wrist sprain NOS -694141000000104,Otalgia NOS -695071000000107,"Arthritis associated with other disease, tibiofibular joint" -695081000000109,"Arthritis associated with other disease, ankle" -69521007,Chronic crepitant synovitis of wrist -696271000000106,Unspecified polyarthropathy of unspecified site -696281000000108,Unspecified polyarthropathy of the shoulder region -697681000000109,"Arthritis associated with other disease, talonavicular joint" -697691000000106,"Oligoarticular osteoarthritis, unspecified, of ankle and foot" -697701000000106,"Osteoarthritis of more than one site, unspecified, NOS" -697711000000108,Unspecified monoarthritis of the lower leg -697721000000102,Other specified arthropathy of unspecified site -698006004,Pulpalgia -698014005,Mentalis strain -698121000000102,Rheumatism multiple NOS -698474005,Monoarthritis of knee -698475006,Monoarthritis of hand -698476007,Monoarthritis of wrist -698477003,Monoarthritis of joint of shoulder region -698478008,Monoarthritis of elbow -698479000,Monoarthritis of ankle and/or foot -69896004,Rheumatoid arthritis -699046000,Craniofacial pain -699190008,Paroxysmal extreme pain disorder -699207005,Arthritis of pelvis -699261008,Post infectious osteoarthritis -699302001,Lumbar arthritis -699462004,Monoarthritis -699682009,Localized masticatory muscle soreness -699911000000101,Foot arthritis NOS -699921000000107,Ankle arthritis NOS -699931000000109,Knee arthritis NOS -699941000000100,Hip arthritis NOS -699951000000102,Wrist arthritis NOS -699961000000104,Elbow arthritis NOS -699971000000106,Toe osteoarthritis NOS -699981000000108,Foot osteoarthritis NOS -699991000000105,Ankle osteoarthritis NOS -700001000000101,Thumb osteoarthritis NOS -700011000000104,Finger osteoarthritis NOS -700021000000105,Muscle sprain NOS -700031000000107,Tendon sprain NOS -700051000000100,Joint sprain NOS -700061000000102,Ligament sprain NOS -700111000000103,Other specified arthropathy of the shoulder region -700121000000109,"Osteoarthritis NOS, of acromioclavicular joint" -700293006,Primary osteoarthritis of ankle -700304006,Primary osteoarthritis of calcaneocuboid joint -700305007,Osteoarthritis of calcaneocuboid joint -700313008,Primary osteoarthritis of subtalar joint -700324005,Osteoarthritis of talonavicular joint -700325006,Primary osteoarthritis of talonavicular joint -700333007,Primary osteoarthritis of first metatarsophalangeal joint -700354000,Disorder of peroneal tendon -700380004,Insertional Achilles tendinopathy -700381000,Non-insertional Achilles tendinopathy -700469003,Frequency of pain symptom -700503001,Extracorporeal shockwave lithotripsy for calcific tendinitis of shoulder -700669005,Arthritis transcutaneous electrical nerve stimulation system -702191000000108,Osteoarthritis - other joint -702549002,Centrally mediated myalgia -702567009,Disorder of posterior tibial muscle tendon -702605005,Disorder of Achilles tendon -702812003,Acute pain clinic -702976005,Retrodiscitis of temporomandibular joint -703051004,Osteoarthritis of midfoot -703052006,Primary osteoarthritis of midfoot -703619001,Pelvic girdle pain -704174008,Chronic synovitis -704571000000108,Shoulder arthritis NOS -704631000000107,Myalgia/myositis of neck -704675005,Inadequate pain control -704677002,Tarsalgia -704871000000105,Hand arthritis NOS -705641000000102,Other tenosynovitis of the wrist -706955002,Pain relieved by analgesic -70704007,Sprain of wrist -708020008,Pain in lower limb on elevation -709591000000108,Pain in wrist -710110008,Phantom pain -710134003,Acute muscle stiffness of neck -710230000,Painful os peroneum syndrome -710302002,Radionuclide scan of joint of lower limb -711331000000102,Leg pain on elevation -711511000000102,Pain relieved by lowering leg -712482006,Bursitis of lower limb -712483001,Bursitis of upper limb -712484007,Bursitis of elbow -712537009,Complex regional pain syndrome of upper limb -712752004,Myalgia of pelvic floor -712885003,Strain of biceps brachii muscle and/or tendon -71303008,Atypical facial pain -71315007,Dyspareunia -713413001,Joint pain of pelvic region -713482002,Osteoarthritis of facet joint of thoracic spine -713777005,Non-radiographic axial spondyloarthritis -713826008,Osteoarthritis of lumbar spinal facet joint -713829001,Postinfective intercostal neuralgia -713831005,Postinfective peripheral neuralgia -713837009,Postinfective segmental peripheral neuralgia -713858003,Peroneal tenosynovitis -71393004,Soreness -71508003,Nodular tenosynovitis -715835003,Periodontal ligament strain -716102003,Strain of muscle of hand -716189005,Osteoporosis and macrocephaly with blindness and joint hypermobility syndrome -71644003,Degenerative joint disease of forearm -717253001,Drilling quality pain -71760005,Cervico-occipital neuralgia -717717002,Non-cyclic pelvic pain -718519003,Entrapment of superficial branch of radial nerve -71884009,Precordial pain -719061006,Diurnal variation of pain -720363008,Arthritis of lumbosacral spine -720753002,Cranioosteoarthropathy -721148005,Hip dysplasia Beukes type -721156008,Cyclic pelvic pain -721908003,Strain of muscle of anterior chest wall -72274001,Nerve root disorder -722812008,Strain of muscle of wrist -722813003,Strain of tendon of wrist -722829006,Acute pain of scrotum -723070002,Variation of pain -723116002,Axial spondyloarthritis -723300005,Freezing pain -723316007,Electric shock type pain -723322003,Somatic dysfunction of scapulothoracic joint -724606001,Peripheral spondyloarthritis -724883005,Strain of muscle at thorax level -724884004,Strain of fascia at thorax level -724885003,Strain of tendon at thorax level -724891001,Strain of fascia of lower back -724892008,Strain of tendon of lower back -724893003,Strain of muscle of pelvis -724894009,Strain of fascia of pelvis -724895005,Strain of tendon of pelvis -724916006,Strain of muscle of long head of biceps brachii -724917002,Strain of fascia of long head of biceps brachii -724924001,Strain of biceps brachii muscle -724925000,Strain of fascia of biceps brachii -724926004,Strain of tendon of biceps brachii -724933004,Strain of fascia of triceps brachii -724934005,Strain of tendon of triceps brachii -724956008,Strain of flexor muscle of finger at forearm level -724957004,Strain of fascia of flexor muscle of finger at forearm level -724958009,Strain of flexor tendon of finger at forearm level -724965001,Strain of flexor muscle at forearm level -724966000,Strain of fascia of flexor muscle at forearm level -724967009,Strain of flexor tendon at forearm level -724974004,Strain of extensor muscle of finger at forearm level -724975003,Strain of fascia of extensor muscle of finger at forearm level -724976002,Strain of tendon of extensor muscle of finger at forearm level -724983009,Strain of extensor muscle at forearm level -724984003,Strain of fascia of extensor muscle at forearm level -724985002,Strain of tendon of extensor muscle at forearm level -725006009,Strain of muscle of head -725007000,Strain of fascia of head -725008005,Strain of tendon of head -725016001,Strain of fascia of neck -726193003,Strain of intrinsic muscle of thumb -726194009,Strain of fascia of intrinsic muscle of thumb -726195005,Strain of tendon of intrinsic muscle of thumb -726202009,Strain of intrinsic muscle of finger -726203004,Strain of fascia of intrinsic muscle of finger -726204005,Strain of tendon of intrinsic muscle of finger -726219006,Strain of muscle of hip -726220000,Strain of fascia of muscle of hip -726221001,Strain of tendon of muscle of hip -726228007,Strain of adductor muscle of thigh -726229004,Strain of fascia of adductor muscle of thigh -726230009,Strain of tendon of adductor muscle of thigh -726325008,Strain of intrinsic muscle of foot -726326009,Strain of fascia of intrinsic muscle of foot -726327000,Strain of tendon of intrinsic muscle of foot -72634002,Sprain of ligament of tarsometatarsal joint -726531007,Myofascial pain syndrome -72702002,Bucked shins -73063007,Colicky pain -73096009,Sprain of other specified site of hip and thigh -73105000,Pes anserinus bursitis -73180008,Sprain of ligament of cricoarytenoid joint -733259007,Strain of carpal joint -733260002,Strain of carpometacarpal joint -733261003,Strain of finger -734947007,Complex regional pain syndrome type I -734986006,Complex regional pain syndrome of lower limb -734987002,Complex regional pain syndrome of foot -734988007,Complex regional pain syndrome of knee -734989004,Complex regional pain syndrome of hand -735598004,Oligoosteoarthritis -735644008,Chronic nociceptive pain -735766007,Sprain of sternocostal ligament -73583000,Epicondylitis -735830000,Strain of thumb -735839004,Strain of quadriceps muscle -735888004,Sprain of interphalangeal joint of lesser toe -735889007,Strain of lesser toe -735890003,Strain of great toe -735891004,Sprain of metatarsophalangeal joint of great toe -735892006,Sprain of collateral ligament of interphalangeal joint of great toe -735893001,Sprain of metatarsophalangeal joint of lesser toe -735903009,Sprain of ligament of trunk -735936005,Chronic neuropathic pain -735937001,Acute pain in face -735940001,Pain of intercostal space -736428003,Chronic arthralgia of temporomandibular joint -736447000,Infrequent episodic arthralgia of temporomandibular joint -73645008,Visceral pain -736464002,Chronic idiopathic pain syndrome -737057000,Osteoarthritis of joint of left ankle and/or foot -737214003,Enthesopathy of upper limb -737305006,Primary chronic pain -737306007,Chronic visceral pain -737607009,Infrapatellar bursitis of left knee -737608004,Infrapatellar bursitis of right knee -738068003,Pain relief by lowering leg -74050005,Orf virus disease -74123003,Otogenic otalgia -74323005,Pain in elbow -74383007,Sprain of distal tibiofibular ligament -74391003,Pauciarticular juvenile rheumatoid arthritis -7441009,Juvenile chronic polyarthritis -74779009,Strain of rotator cuff capsule -74885006,Interphalangeal osteoarthritis -74991000000108,Anterior knee pain -75111000,Painful ophthalmoplegia -75483001,Breathing painful -75572007,Polyradiculopathy -75680005,Psoas tendinitis -75851004,Scalp tenderness -75983009,Vidian neuralgia -761957004,Scapulothoracic bursitis -762239006,Myofascial pain with referral -762452003,Chronic musculoskeletal pain -762454002,Chronic orofacial pain -762589002,Chronic primary visceral pain -762590006,Chronic primary generalized pain -762591005,Chronic primary musculoskeletal pain -762593008,Chronic primary orofacial pain -762596000,Chronic pain following radiotherapy -762599007,Chronic mechanical visceral pain -762602002,Chronic central neuropathic pain -762603007,Chronic peripheral neuropathic pain -762607008,Orofacial neuropathic pain -76660003,Chronic articular rheumatism -76691009,Brachial plexus neuralgia -767051000000100,Arthritis of foot -767061000000102,Arthritis of hand -767071000000109,Arthritis of hip -767189000,Synovial cyst of multiple joints -7674000,Greater trochanteric pain syndrome -76807004,Cervicobrachialgia -76948002,Severe pain -770639006,Magnetic resonance arthrography of carpometacarpal joint -771083005,Pain in upper arm -771545003,Painful and cold lower limb -771546002,Painful and cold upper limb -77299006,Olecranon bursitis -77323000,Inflammation of subtendinous bursa of biceps femoris inferior muscle -773968006,Bursitis of right hip -773969003,Bursitis of left hip -774129008,Arthropathy of left knee joint -774130003,Arthropathy of right knee joint -774131004,Arthropathy of joint of right hand -774132006,Arthropathy of joint of left hand -774133001,Pain of right forearm -774134007,Pain of right shoulder blade -774135008,Pain of left shoulder blade -774136009,Pain of right acromioclavicular joint -774137000,Pain of left acromioclavicular joint -77538000,Superficial pain -77602000,Charcot's arthropathy -77841000119108,Thoracolumbar radiculopathy -77880009,Rectal pain -77888002,Climacteric arthritis -77994009,Primary localized osteoarthrosis of pelvic region -781021000000103,Chronic idiopathic pain syndrome -781239004,Tendinitis of left pes anserinus tendon -781240002,Tendinitis of right pes anserinus tendon -781241003,Tendinitis of long head of biceps brachii of right shoulder -781242005,Tendinitis of long head of biceps brachii of left shoulder -781387006,Strain of thumb tendon -781439002,Strain of finger tendon -781440000,Strain of plantaris tendon -781442008,Strain of extensor digitorum tendon -781444009,Strain of extensor pollicis longus tendon -781445005,Strain of flexor digitorum profundus tendon -781446006,Strain of flexor digitorum superficialis tendon -781447002,Strain of foot flexor tendon -781448007,Strain of foot extensor tendon -781449004,Strain of flexor pollicis longus tendon -781455009,Strain of wrist extensor tendon -781456005,Strain of wrist flexor tendon -78162001,Sprain of radiocarpal joint AND/OR ligament -782538005,Tendinitis of ankle -782661001,Chronic sacroiliac joint pain -784332006,Spondyloarthritis -784545009,Synovitis of ankle joint -784546005,Synovitis of joint of foot -78514002,Thigh pain -785723001,Persistent idiopathic facial pain -78631000000108,De Quervain's tenosynovitis -786837007,Tingling pain -786961001,Strain of tendon of hand -78715003,Subdeltoid bursitis -789021004,Radiculopathy due to spondylosis -789394007,Tendinitis of shoulder region -789754007,Tendinitis of rotator cuff tendon -789758005,Strain of rotator cuff of shoulder -7921000119104,Anterior pleuritic pain -79231000000101,Anterior knee pain -792886009,Pain in pinna -7942009,Sprain of coracoclavicular ligament -804671000000107,Patellofemoral osteoarthritis -804701000000106,Tenosynovitis of thumb -80780008,Subcoracoid bursitis -80843008,Degenerative joint disease -80852004,"Tenosynovitis of foot and ankle, NEC" -81077008,Acute rheumatic fever with acute arthritis -81455003,Primary localized osteoarthrosis of forearm -81498004,Bursitis of hip -8161000119106,Arthritis co-occurrent and due to Crohn's disease -816641000000106,Constant pain -81680005,Neck pain -81712001,Pain in female genitalia on intercourse -81902001,Sprain of medial collateral ligament of knee -8191000119104,Arthropathy of wrist due to neurological disorder -81953000,Chest pain on exertion -82116008,Hallucinatory neuralgia -82300000,Degenerative joint disease of ankle AND/OR foot -82304009,Kissing spine -82423001,Chronic pain -82473003,Radiculitis -82695005,Sprain of xiphoid cartilage -82991003,Generalized aches and pains -830068003,Sphenobasilar synchondrosis vertical strain -830292003,Pain in left lumbar region -830293008,Pain in right lumbar region -8316001,Arthropathy -833289001,Tenderness of anatomical snuffbox -83576001,Sprain of metatarsophalangeal joint -83644001,Dull pain -838412000,Pain in lumbar region on palpation -838491000000108,Rheumatism -83921000119106,"Complex regional pain syndrome, Type I, of head and/or trunk" -84017003,Bursitis -84172003,Spondylitis -846645002,Tenosynovitis of elbow -847561000000101,Low back pain clinical pathway -847571000000108,Following low back pain clinical pathway protocol -84801008,Jaccoud's syndrome -85007004,Meralgia paresthetica -85011000119101,Pain in male pelvis -850791000000102,Osteoarthritis of sternoclavicular joint -850811000000101,Osteoarthritis of talonavicular joint -855871000000104,Complex regional pain syndrome -85611000119105,Undifferentiated spondyloarthropathy -85651000000102,Mechanical low back pain -85878006,Sprain of leg -86260003,Pain around eye -86278008,Sprain of coccyx -86319008,Strain of subscapularis muscle -86345004,Bertolotti's syndrome -866043000,Neuralgia of twelfth thoracic nerve -870393001,Strain of tendon of foot -870394007,Strain of tendon of ankle -870767005,Sprain of palmar radiocarpal ligament -870768000,Sprain of ulnar carpal complex ligament -8708008,Sharp pain -871492003,Sprain of sacrospinous ligament -87381000119101,Vertebral joint pain -874561000000109,Osteoarthritis of spinal facet joint -87494005,Achilles bursitis -8753005,Adhesive capsulitis of shoulder -87548005,Dyspepsia -876351000000106,Pelvic girdle pain -87778004,Sprain of hand -879181000000107,Primary osteoarthritis of ankle -879221000000102,Primary osteoarthritis of talonavicular joint -879261000000105,Primary osteoarthritis of subtalar joint -879301000000100,Osteoarthritis of calcaneocuboid joint -879311000000103,Primary osteoarthritis of calcaneocuboid joint -879351000000104,Osteoarthritis of midfoot -879371000000108,Primary osteoarthritis of midfoot -879411000000107,Primary osteoarthritis of first metatarsophalangeal joint -879611000000105,Achilles tendinopathy -879621000000104,Insertional Achilles tendinopathy -879631000000102,Non-insertional Achilles tendinopathy -879651000000109,Tendinopathy of tibialis posterior tendon -8799007,Posterior heel pain -879931000000105,Tendinopathy of peroneal tendon -879969009,Breakthrough pain -880087005,Strain of muscle of lower leg -880088000,Strain of tendon of lower leg -880089008,Strain of muscle and tendon of lower leg -881461000000104,Extracorporeal shockwave lithotripsy for calcific tendinopathy of shoulder -88201009,Sprain of other specified site of elbow and forearm -88220006,Pachydermoperiostosis syndrome -88230002,Disorder of skeletal system -88269008,Thalamic syndrome -88305002,Disorder of the vertebral column -8847002,Spondylosis -885251000000103,Private referral to pain management service -885261000000100,Private referral to pain management service -88638003,Sprain of ischiocapsular ligament -88906006,Sprain of deltoid ligament of ankle -890351008,Distal symphalangism of bilateral distal interphalangeal joints -8971008,Psychalgia -89813001,"Other peripheral enthesopathy, NEC" -89874002,Xiphoidalgia syndrome -905331000000109,Calcific bursitis -905501000000107,Nonspecific polyarthritis -90631008,Sprain of sacrococcygeal ligament -90654004,Sprain of iliofemoral ligament -90682006,Sprain of sternoclavicular joint AND/OR ligament -90834002,Pain in limb -91866004,Adhesions of temporomandibular joint -91943004,Arthralgia of temporomandibular joint -91944005,Arthritis of temporomandibular joint -91945006,Articular disc disorder of temporomandibular joint -919541000000106,Axial spondyloarthritis -919551000000109,Axial spondyloarthritis -921261000000101,Shoulder joint painful on external rotation -921271000000108,Shoulder joint painful on external rotation -9267009,Chest pain at rest -92823009,Articular crepitus of temporomandibular joint -934571000000105,Pain assessment tool completed -936361000000103,Sprain or strain of joint of head -936371000000105,Sprain or strain of joint of thorax -937141000000103,Splitting pain -937151000000100,Heavy pain -937161000000102,Gnawing pain -937171000000109,Cramping pain -937181000000106,Throbbing pain -937191000000108,Sore pain -937201000000105,Intermittent pain -937211000000107,Shoulder joint painful on movement -937221000000101,Observation of pattern of pain -937231000000104,Constant pain -937241000000108,Observation of affective dimension of pain -937251000000106,Punishing with pain -937261000000109,Fearful with pain -937271000000102,Sickening with pain -937281000000100,Tiring with pain -941000119103,Strain of knee -943471000000108,Intervertebral disc disorder with radiculopathy -95412009,Pigmented villonodular synovitis -95414005,Calcific tendinitis -95415006,Polymyalgia -95417003,Primary fibromyalgia syndrome -95419000,Acute muscle stiffness of neck -95421005,Intercostal myalgia -95523006,Pain of jaw -95668009,Pain in face -95669001,Superior laryngeal neuralgia -95670000,Nervus intermedius neuralgia -957321000000107,Flexor digitorum tenosynovitis of foot -957391000000105,Gluteal bursitis -957401000000108,Cubital bursitis -957411000000105,Subcutaneous calcaneal bursitis -957911000000100,Enthesitis of lower limb -957921000000106,Enthesitis of upper limb -957931000000108,Enthesitis of elbow -957941000000104,Enthesitis of triceps tendon -957951000000101,Enthesitis of knee -957961000000103,Enthesitis of patellar tendon -957971000000105,Enthesitis of medial collateral ligament of knee -957981000000107,Enthesitis of lateral collateral ligament of knee -957991000000109,Enthesitis of proximal end of patellar tendon -958001000000100,Enthesitis of distal end of patellar tendon -958011000000103,Enthesitis of quadriceps tendon -958021000000109,Enthesitis of Achilles tendon -958031000000106,Enthesitis of foot and ankle -961000119104,Sprain of shoulder rotator cuff -9626006,Mechanical pain -97001000119106,Localized chest pain -975221000000105,Chronic pain -98071000119100,Arthropathy of shoulder due to neurological disorder -990471000000108,Chronic pain -9972008,Radiating pain -999001581000000106,Pain finding simple reference set -999002471000000100,Pain aggravating factors simple reference set -999002521000000103,Pain easing factors simple reference set diff --git a/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-opioids-for-analgesia-dmd.csv b/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-opioids-for-analgesia-dmd.csv index bf6986b4a..1becef299 100644 --- a/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-opioids-for-analgesia-dmd.csv +++ b/tests/acceptance/external_studies/waiting-list/codelists/user-anschaf-opioids-for-analgesia-dmd.csv @@ -1358,6 +1358,8 @@ code,term,dmd_id,dmd_type,bnf_code 15105811000001106,Diamorphine hydrochloride powder,15105811000001106,AMP,0407020K0AAFPFP 37514111000001109,Diamorphine hydrochloride powder,37514111000001109,AMP,0407020K0AAFPFP 4306811000001100,Diamorphine hydrochloride powder,4306811000001100,AMP,0407020K0AAFPFP +42477011000001103,Diamorphine 500mg oral powder sachets,42477011000001103,VMP,0407020K0AAFQFQ +42447811000001108,Diamorphine 500mg oral powder sachets,42447811000001108,AMP,0407020K0AAFQFQ 39718711000001107,Meptazinol 100mg/1ml solution for injection ampoules,39718711000001107,VMP,0407020L0AAAAAA 39700411000001101,Meptazinol 200mg tablets,39700411000001101,VMP,0407020L0AAABAB 234611000001101,Meptid 200mg tablets,234611000001101,AMP,0407020L0BBAAAB