diff --git a/Modules/Internal/Http/Controllers/Api/DiagnosisController.php b/Modules/Internal/Http/Controllers/Api/DiagnosisController.php new file mode 100644 index 00000000..1d49b710 --- /dev/null +++ b/Modules/Internal/Http/Controllers/Api/DiagnosisController.php @@ -0,0 +1,82 @@ +filter($request->toArray())->paginate(); + + return $diagnosis; + } + + /** + * Show the form for creating a new resource. + * @return Renderable + */ + public function create() + { + return view('internal::create'); + } + + /** + * Store a newly created resource in storage. + * @param Request $request + * @return Renderable + */ + public function store(Request $request) + { + // + } + + /** + * Show the specified resource. + * @param int $id + * @return Renderable + */ + public function show($id) + { + return view('internal::show'); + } + + /** + * Show the form for editing the specified resource. + * @param int $id + * @return Renderable + */ + public function edit($id) + { + return view('internal::edit'); + } + + /** + * Update the specified resource in storage. + * @param Request $request + * @param int $id + * @return Renderable + */ + public function update(Request $request, $id) + { + // + } + + /** + * Remove the specified resource from storage. + * @param int $id + * @return Renderable + */ + public function destroy($id) + { + // + } +} diff --git a/Modules/Internal/Http/Controllers/Api/DiagnosisExclusionController.php b/Modules/Internal/Http/Controllers/Api/DiagnosisExclusionController.php new file mode 100644 index 00000000..5ca0a2aa --- /dev/null +++ b/Modules/Internal/Http/Controllers/Api/DiagnosisExclusionController.php @@ -0,0 +1,220 @@ +where('corporate_id', $corporate_id) + ->with(['exclusionable', 'rules']) + ->filter($request->toArray()) + ->paginate(); + + return response()->json(DiagnosisExclusionResource::collection($exclusions)->response()->getData(true)); + } + + /** + * Show the form for creating a new resource. + * @return Renderable + */ + public function create() + { + return view('internal::create'); + } + + /** + * Store a newly created resource in storage. + * @param Request $request + * @return Renderable + */ + public function store(Request $request) + { + // + } + + /** + * Show the specified resource. + * @param int $id + * @return Renderable + */ + public function show($id) + { + return view('internal::show'); + } + + /** + * Show the form for editing the specified resource. + * @param int $id + * @return Renderable + */ + public function edit($id) + { + return view('internal::edit'); + } + + /** + * Update the specified resource in storage. + * @param Request $request + * @param int $id + * @return Renderable + */ + public function update(Request $request, $id) + { + // + } + + /** + * Remove the specified resource from storage. + * @param int $id + * @return Renderable + */ + public function destroy($id) + { + // + } + + public function import(Request $request, $corporate_id) + { + $request->validate([ + 'file' => 'required|file|mimes:xls,xlsx,csv,txt', + ]); + // dd($request->toArray()); + $file_name = now()->getPreciseTimestamp(3).'-'.$request->file('file')->getClientOriginalName(); + $file = $request->file('file')->storeAs('temp', $file_name); + $corporate = Corporate::findOrFail($corporate_id); + + $importLog = $corporate->importLogs()->create([ + 'type' => 'diagnosis-exclusions', + 'file_path' => $file, + 'status' => 'pending', + 'progress' => 0, + ]); + + $import = new ImportService(); + $import->read(Storage::path('temp/'.$file_name)); + $import->write(Storage::disk('public')->path('temp/result-'.$file_name), 'xsls'); + + foreach ($import->sheetsIterator() as $sheetIndex => $sheet) { + $doc_headers_indexes = []; + foreach ($sheet->getRowIterator() as $index => $row) { + if ($index == 1) { // First Row Must be Header + foreach ($row->getCells() as $index => $cell) { + $title = $cell->getValue(); + $title = preg_replace( "/\r|\n/", " ", $title ); + $title = preg_replace('/\xc2\xa0/', " ", $title ); + $title = rtrim($title); + $title = ltrim($title); + $doc_headers_indexes[$index] = $title; + } + + // Write Header to File + $result_headers = array_merge($doc_headers_indexes, ['Ingest Code', 'Ingest Note']); + $import->addArrayToRow($result_headers); + + // TODO Validate if First Row not Header + } else { // Next Row Should be Data + $row_data = []; + $row_map = [ + 0 => 'code', + 1 => 'description', + 2 => 'ip_exclusion', + 3 => 'op_exclusion', + 4 => 'de_exclusion', + 5 => 'ma_exclusion', + 6 => 'sp_exclusion', + 7 => 'pre_exist_exclusion', + 8 => 'op_de_exclusion', + 9 => 'keterangan', + 10 => 'maternity_waiting' + ]; + + foreach ($row->getCells() as $header_index => $cell) { + if (isset($row_map[$header_index])) { + $value = $cell->getValue(); + $value = preg_replace( "/\r|\n/", " ", $value ); + $value = preg_replace('/\xc2\xa0/', " ", $value ); + $value = rtrim($value); + $value = ltrim($value); + $row_data[$row_map[$header_index]] = $cell->getValue(); + } + } + + try { // Process the Row Data + if ( + // empty($row_data['code']) && + // empty($row_data['description']) && + empty($row_data['ip_exclusion']) && + empty($row_data['op_exclusion']) && + empty($row_data['de_exclusion']) && + empty($row_data['ma_exclusion']) && + empty($row_data['sp_exclusion']) && + empty($row_data['pre_exis_exclusion']) && + empty($row_data['op_de_exclusion']) && + empty($row_data['maternity_waiting'])) { + continue; + } + + // Save the Row + $exclusionService = new ExclusionService(); + $exclusionService->handleDiagnosisExclusionRow($corporate, $row_data); + + // Write Success Result to File + $import->addArrayToRow(array_merge($row_data, [ + 'Ingest Code' => 200, + 'Ingest Note' => 'Success', + ]), $sheet->getName()); + + } catch (ImportRowException $e) { + // Write Data Validation Error to File + $import->addArrayToRow(array_merge($row_data, [ + 'Ingest Code' => $e->getCode(), + 'Ingest Note' => $e->getMessage(), + ]), $sheet->getName()); + } catch (\Exception $e) { + throw new \Exception($e); + // Write Server Error to File + $import->addArrayToRow(array_merge($row_data, [ + 'Ingest Code' => 500, + 'Ingest Note' => env('APP_DEBUG') ? $e->getMessage() : 'Server Error', + ]), $sheet->getName()); + } + } + } + + break; // Only Read First Row + } + $import->reader->close(); + Storage::delete('temp/'.$file_name); + $import->writer->close(); + + return [ + // 'total_successed_row' => $imported_plan_data, + // 'total_failed_row' => count($failed_plan_data), + // 'failed_row' => $failed_plan_data, + 'result_file' => [ + 'url' => Storage::disk('public')->url('temp/result-'.$file_name), + 'name' => 'result-'.$file_name, + ] + ]; + } +} diff --git a/Modules/Internal/Routes/api.php b/Modules/Internal/Routes/api.php index 85e31a5b..4ffe50e9 100644 --- a/Modules/Internal/Routes/api.php +++ b/Modules/Internal/Routes/api.php @@ -6,6 +6,8 @@ use Modules\Internal\Http\Controllers\Api\BenefitController; use Modules\Internal\Http\Controllers\Api\CorporateBenefitController; use Modules\Internal\Http\Controllers\Api\CorporateController; use Modules\Internal\Http\Controllers\Api\CorporatePlanController; +use Modules\Internal\Http\Controllers\Api\DiagnosisController; +use Modules\Internal\Http\Controllers\Api\DiagnosisExclusionController; use Modules\Internal\Http\Controllers\Api\DivisionController; use Modules\Internal\Http\Controllers\Api\MemberController; use Modules\Internal\Http\Controllers\Api\PlanController; @@ -63,5 +65,16 @@ Route::prefix('internal')->group(function () { Route::get('corporates/{corporate_id}/members', [MemberController::class, 'index']); Route::post('corporates/{corporate_id}/members/import', [MemberController::class, 'import']); + Route::get('corporates/{corporate_id}/diagnosis-exclusions', [DiagnosisExclusionController::class, 'index']); + Route::post('corporates/{corporate_id}/diagnosis-exclusions/import', [DiagnosisExclusionController::class, 'import']); + + // Route::get('corporates/{corporate_id}/diagnosis-exclusions', [DiagnosisExclusionController::class, 'index']); + // Route::get('corporates/{corporate_id}/diagnosis-exclusions/import', [DiagnosisExclusionController::class, 'import']); + + Route::get('master/diagnosis', [DiagnosisController::class, 'index']); + + }); + + // Route::get('something', [DiagnosisExclusionController::class, 'index']); }); diff --git a/Modules/Internal/Services/ExclusionService.php b/Modules/Internal/Services/ExclusionService.php new file mode 100644 index 00000000..1c166fae --- /dev/null +++ b/Modules/Internal/Services/ExclusionService.php @@ -0,0 +1,220 @@ +validateDiagnosisExclusionRow($row); + + if (!empty($row['ip_exclusion'])) { + $excl_array = explode('|', $row['ip_exclusion']); + if ($excl_array[0] == '3') { + $icd = Icd::where('code', $row['code'])->first(); + $exclusion = $icd->exclusions()->create([ + 'corporate_id' => $corporate->id, + 'service_code' => 'OP', + 'type' => 'diagnosis' + ]); + + if (!empty($excl_array[1])) { //msc + $msc = explode(',', $excl_array[1]); + collect($msc)->each(function($m) use ($exclusion) { + $exclusion->rules()->create([ + 'name' => 'msc', + 'values' => $m + ]); + }); + } + if (!empty($excl_array[2])) { //genders + $genders = explode(',', $excl_array[2]); + collect($genders)->each(function($gender) use ($exclusion) { + $exclusion->rules()->create([ + 'name' => 'gender', + 'values' => $gender + ]); + }); + } + if (!empty($excl_array[3])) { //min_age + $exclusion->rules()->create([ + 'name' => 'min_age', + 'values' => $excl_array[3] + ]); + } + if (!empty($excl_array[4])) { //max_age + $exclusion->rules()->create([ + 'name' => 'max_age', + 'values' => $excl_array[4] + ]); + } + if (!empty($excl_array[5])) { //plans + $exclusion->rules()->create([ + 'name' => 'plan', + 'values' => $excl_array[5] + ]); + } + } + } + + if (!empty($row['op_exclusion'])) { + $excl_array = explode('|', $row['op_exclusion']); + if ($excl_array[0] == '3') { + $icd = Icd::where('code', $row['code'])->first(); + if (!$icd) { + throw new ImportRowException(__('icd.NOT_FOUND'), 0, NULL, $row); + } + $exclusion = $icd->exclusions()->create([ + 'corporate_id' => $corporate->id, + 'service_code' => 'OP', + 'type' => 'diagnosis' + ]); + + if (!empty($excl_array[1])) { //msc + $msc = explode(',', $excl_array[1]); + collect($msc)->each(function($m) use ($exclusion) { + $exclusion->rules()->create([ + 'name' => 'msc', + 'values' => $m + ]); + }); + } + if (!empty($excl_array[2])) { //genders + $genders = explode(',', $excl_array[2]); + collect($genders)->each(function($gender) use ($exclusion) { + $exclusion->rules()->create([ + 'name' => 'gender', + 'values' => $gender + ]); + }); + } + if (!empty($excl_array[3])) { //min_age + $exclusion->rules()->create([ + 'name' => 'min_age', + 'values' => $excl_array[3] + ]); + } + if (!empty($excl_array[4])) { //max_age + $exclusion->rules()->create([ + 'name' => 'max_age', + 'values' => $excl_array[4] + ]); + } + if (!empty($excl_array[5])) { //plans + $exclusion->rules()->create([ + 'name' => 'plan', + 'values' => $excl_array[5] + ]); + } + } + } + + if (!empty($row['de_exclusion'])) { + $excl_array = explode('|', $row['de_exclusion']); + if ($excl_array[0] == '3') { + $icd = Icd::where('code', $row['code'])->first(); + $exclusion = $icd->exclusions()->create([ + 'corporate_id' => $corporate->id, + 'service_code' => 'OP', + 'type' => 'diagnosis' + ]); + + if (!empty($excl_array[1])) { //msc + $msc = explode(',', $excl_array[1]); + collect($msc)->each(function($m) use ($exclusion) { + $exclusion->rules()->create([ + 'name' => 'msc', + 'values' => $m + ]); + }); + } + if (!empty($excl_array[2])) { //genders + $genders = explode(',', $excl_array[2]); + collect($genders)->each(function($gender) use ($exclusion) { + $exclusion->rules()->create([ + 'name' => 'gender', + 'values' => $gender + ]); + }); + } + if (!empty($excl_array[3])) { //min_age + $exclusion->rules()->create([ + 'name' => 'min_age', + 'values' => $excl_array[3] + ]); + } + if (!empty($excl_array[4])) { //max_age + $exclusion->rules()->create([ + 'name' => 'max_age', + 'values' => $excl_array[4] + ]); + } + if (!empty($excl_array[5])) { //plans + $exclusion->rules()->create([ + 'name' => 'plan', + 'values' => $excl_array[5] + ]); + } + } + } + + if (!empty($row['ma_exclusion'])) { + $excl_array = explode('|', $row['ma_exclusion']); + dd($excl_array); + if ($excl_array[0]) { + + } + } + + if (!empty($row['sp_exclusion'])) { + $excl_array = explode('|', $row['sp_exclusion']); + dd($excl_array); + if ($excl_array[0]) { + + } + } + + if (!empty($row['pre_exist_exclusion'])) { + $excl_array = explode('|', $row['pre_exist_exclusion']); + dd($excl_array); + if ($excl_array[0]) { + + } + } + + if (!empty($row['op_de_exclusion'])) { + $excl_array = explode('|', $row['op_de_exclusion']); + dd($excl_array); + if ($excl_array[0]) { + + } + } + + if (!empty($row['maternity_waiting'])) { + $excl_array = explode('|', $row['maternity_waiting']); + dd($excl_array); + if ($excl_array[0]) { + + } + } + return true; + } catch (\Exception $e) { + throw $e; + } + } +} diff --git a/Modules/Internal/Transformers/DiagnosisExclusionResource.php b/Modules/Internal/Transformers/DiagnosisExclusionResource.php new file mode 100644 index 00000000..04fd00a9 --- /dev/null +++ b/Modules/Internal/Transformers/DiagnosisExclusionResource.php @@ -0,0 +1,29 @@ + $this->id, + 'code' => $this->exclusionable->code, + 'name' => $this->exclusionable->name, + 'diagnosis_type' => $this->exclusionable->type, + 'service_code' => $this->service_code, + 'type' => $this->type, + 'rules' => $this->rules->mapToGroups(function ($item, $key) { + return [$item['name'] => $item['values']]; + }) + ]; + } +} diff --git a/app/Models/Corporate.php b/app/Models/Corporate.php index 1d96786f..c1a02146 100644 --- a/app/Models/Corporate.php +++ b/app/Models/Corporate.php @@ -62,4 +62,9 @@ class Corporate extends Model { return $this->hasMany(CorporateDivision::class, 'corporate_id'); } + + public function importLogs() + { + return $this->morphMany(ImportLog::class, 'importable'); + } } diff --git a/app/Models/Exclusion.php b/app/Models/Exclusion.php new file mode 100644 index 00000000..4aaff7e4 --- /dev/null +++ b/app/Models/Exclusion.php @@ -0,0 +1,43 @@ +hasMany(ExclusionRules::class, 'exclusion_id'); + } + + public function exclusionable() + { + return $this->morphTo(); + } + + public function scopeFilter($query, Array $filters) + { + $query->when($filters['search'] ?? false, function ($query, $search) { + return $query + ->whereHasMorph('exclusionable', [Icd::class], function ($query) use ($search) { + $query->where('code', 'like', "%" . $search . "%") + ->orWhere('name', 'like', "%" . $search . "%"); + }) + ; + }); + } +} diff --git a/app/Models/ExclusionRules.php b/app/Models/ExclusionRules.php new file mode 100644 index 00000000..86bca428 --- /dev/null +++ b/app/Models/ExclusionRules.php @@ -0,0 +1,24 @@ +belongsTo(Exclusion::class, 'exclusion_id'); + } +} diff --git a/app/Models/Icd.php b/app/Models/Icd.php new file mode 100644 index 00000000..40115736 --- /dev/null +++ b/app/Models/Icd.php @@ -0,0 +1,65 @@ +rev; + } + + public function getActiveAttribute() + { + return empty($this->deleted_at); + } + + public function subCategories() + { + return $this->hasMany(Icd::class, 'parent_code', 'code'); + } + + public function category() + { + return $this->belongsTo(Icd::class, 'parent_code', 'code'); + } + + public function exclusions() + { + return $this->morphMany(Exclusion::class, 'exclusionable'); + } + + public function scopeFilter($query, Array $filters) + { + $query->when($filters['search'] ?? false, function ($query, $search) { + return $query + ->where('code', 'like', "%" . $search . "%") + ->orWhere('name', 'like', "%" . $search . "%") + ; + }); + } + +} diff --git a/app/Models/ImportLog.php b/app/Models/ImportLog.php index 1f7de000..b1a02df0 100644 --- a/app/Models/ImportLog.php +++ b/app/Models/ImportLog.php @@ -2,12 +2,28 @@ namespace App\Models; +use App\Traits\Blameable; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; +use Illuminate\Database\Eloquent\SoftDeletes; +use Illuminate\Support\Str; class ImportLog extends Model { - use HasFactory; + use HasFactory, SoftDeletes, Blameable; + + protected static function boot() + { + parent::boot(); + + static::creating(function ($model) { + try { + $model->uuid = (string) Str::orderedUuid(); // generate uuid + } catch (\Exception $e) { + abort(500, $e->getMessage()); + } + }); + } protected $fillable = [ 'importable_type', diff --git a/database/migrations/2022_07_04_074656_create_import_logs_table.php b/database/migrations/2022_07_04_074656_create_import_logs_table.php index 70af7bee..c19a176a 100644 --- a/database/migrations/2022_07_04_074656_create_import_logs_table.php +++ b/database/migrations/2022_07_04_074656_create_import_logs_table.php @@ -14,7 +14,7 @@ return new class extends Migration public function up() { Schema::create('import_logs', function (Blueprint $table) { - $table->uuid(); + $table->uuid()->primary(); $table->morphs('importable'); $table->string('type')->nullable(); $table->string('file_path')->nullable(); diff --git a/database/migrations/2022_07_28_032235_create_icd_table.php b/database/migrations/2022_07_28_032235_create_icd_table.php new file mode 100644 index 00000000..2d3938cd --- /dev/null +++ b/database/migrations/2022_07_28_032235_create_icd_table.php @@ -0,0 +1,43 @@ +id(); + $table->string('rev'); + $table->string('version')->nullable(); + $table->string('code'); + $table->string('name'); + $table->text('description')->nullable(); + $table->string('parent_code')->nullable()->index(); + + $table->timestamps(); + $table->softDeletes(); + + $table->unsignedBigInteger('created_by')->nullable(); + $table->unsignedBigInteger('updated_by')->nullable(); + $table->unsignedBigInteger('deleted_by')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('icd_x'); + } +}; diff --git a/database/migrations/2022_08_02_061122_create_exclusions_table.php b/database/migrations/2022_08_02_061122_create_exclusions_table.php new file mode 100644 index 00000000..1c2ac7ea --- /dev/null +++ b/database/migrations/2022_08_02_061122_create_exclusions_table.php @@ -0,0 +1,41 @@ +id(); + $table->foreignId('corporate_id'); + $table->string('service_code')->index(); + $table->string('type'); + $table->morphs('exclusionable'); + + $table->timestamps(); + $table->softDeletes(); + + $table->unsignedBigInteger('created_by')->nullable(); + $table->unsignedBigInteger('updated_by')->nullable(); + $table->unsignedBigInteger('deleted_by')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('exclusions'); + } +}; diff --git a/database/migrations/2022_08_02_061127_create_exclusion_rules_table.php b/database/migrations/2022_08_02_061127_create_exclusion_rules_table.php new file mode 100644 index 00000000..8ad76a60 --- /dev/null +++ b/database/migrations/2022_08_02_061127_create_exclusion_rules_table.php @@ -0,0 +1,40 @@ +id(); + $table->foreignId('exclusion_id'); + $table->string('name'); + $table->text('values'); + + $table->timestamps(); + $table->softDeletes(); + + $table->unsignedBigInteger('created_by')->nullable(); + $table->unsignedBigInteger('updated_by')->nullable(); + $table->unsignedBigInteger('deleted_by')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('exclusion_rules'); + } +}; diff --git a/database/seeders/IcdSeeder.php b/database/seeders/IcdSeeder.php new file mode 100644 index 00000000..842f8a3b --- /dev/null +++ b/database/seeders/IcdSeeder.php @@ -0,0 +1,64 @@ +open($file_path); + + Icd::truncate(); + + $chunks = []; + $time = now(); + foreach ($reader->getSheetIterator() as $sheet) { + foreach ($sheet->getRowIterator() as $index => $row) { + if ($index != 1) { + $row_data = [ + 'rev' => 'X', + 'version' => 'Halodoc', + 'created_at' => $time, + ]; + foreach ($row->getCells() as $cell_index => $cell) { + if ($cell_index == 0) { + $row_data['code'] = $cell->getValue(); + } else if ($cell_index == 1) { + $row_data['name'] = $cell->getValue(); + } + } + + $exploded_code = explode('.', $row_data['code']); + if (count($exploded_code) > 1) { + $row_data['parent_code'] = $exploded_code[0]; + } else { + $row_data['parent_code'] = NULL; + } + + $chunks[] = $row_data; + } + + if ($chunks && count($chunks) == 1000) { + Icd::insert($chunks); + $chunks = []; + } + } + } + if ($chunks && count($chunks) > 0) { + Icd::insert($chunks); + $chunks = []; + } + } +} diff --git a/frontend/dashboard/src/@types/diagnosis.ts b/frontend/dashboard/src/@types/diagnosis.ts new file mode 100644 index 00000000..a33734b5 --- /dev/null +++ b/frontend/dashboard/src/@types/diagnosis.ts @@ -0,0 +1,11 @@ +export type Icd = { + id: number; + type: string; + rev: string; + version?: string; + code: string; + name: string; + description?: any; + childs?: Icd[]; + status: string; +}; diff --git a/frontend/dashboard/src/components/BasePagination.tsx b/frontend/dashboard/src/components/BasePagination.tsx new file mode 100644 index 00000000..f099aa1a --- /dev/null +++ b/frontend/dashboard/src/components/BasePagination.tsx @@ -0,0 +1,17 @@ +import { Pagination } from "@mui/material"; +import { Box } from "@mui/system"; +import { LaravelPaginatedData } from "../@types/paginated-data"; + + +export interface Props { + paginationData?: LaravelPaginatedData; + onPageChange: any; +} + +export default function BasePagination({ paginationData, onPageChange }: Props) { + return ( + + + + ) +} diff --git a/frontend/dashboard/src/pages/Corporates/CorporateTabNavigations.tsx b/frontend/dashboard/src/pages/Corporates/CorporateTabNavigations.tsx index b404c5e5..788da2e3 100644 --- a/frontend/dashboard/src/pages/Corporates/CorporateTabNavigations.tsx +++ b/frontend/dashboard/src/pages/Corporates/CorporateTabNavigations.tsx @@ -43,6 +43,10 @@ export default function CorporateTabNavigations({ position }: Props) { 'path' : 'members', 'label': 'Member List', }, + { + 'path' : 'diagnosis-exclusions', + 'label': 'Exclusion', + }, { 'path' : 'hospitals', 'label': 'Hospital', diff --git a/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/Create.tsx b/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/Create.tsx new file mode 100644 index 00000000..5e9fccdf --- /dev/null +++ b/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/Create.tsx @@ -0,0 +1,241 @@ +import * as Yup from 'yup'; +import { yupResolver } from "@hookform/resolvers/yup"; +import { Card, Collapse, Divider, Grid, Stack, Typography } from "@mui/material"; +import { useForm } from "react-hook-form"; +import { useParams } from "react-router-dom"; +import HeaderBreadcrumbs from "../../../components/HeaderBreadcrumbs"; +import { FormProvider, RHFCheckbox, RHFSelect, RHFTextField } from "../../../components/hook-form"; +import Page from "../../../components/Page"; +import useSettings from "../../../hooks/useSettings"; +import CorporateTabNavigations from "../CorporateTabNavigations"; +import DivisionsList from "./List"; +import { useMemo, useState } from 'react'; + + + +export default function Divisions() { + const { themeStretch } = useSettings(); + + const { corporate_id } = useParams(); + + const NewDivisionSchema = Yup.object().shape({ + name: Yup.string().required('Name is required'), + code: Yup.string().required('Corporate Code is required'), + active: Yup.boolean().required('Corporate Status is required'), + }); + + const defaultValues = useMemo( + () => ({ + code: '', + }), + [] + ); + + const methods = useForm({ + resolver: yupResolver(NewDivisionSchema), + defaultValues, + }); + + const { + reset, + watch, + control, + setValue, + getValues, + setError, + handleSubmit, + formState: { isSubmitting }, + } = methods; + + const onSubmit = async (data: any) => { + console.log(data); + }; + + const [open, setOpen] = useState(false); + + const benefits = [ + { + 'category' : 'General Practitioner', + 'childs' : [ + { + 'name' : 'External Doctor Online', + 'code' : 'gp-external-doctor-online' + }, + { + 'name' : 'External Doctor Offline', + 'code' : 'gp-external-doctor-offline' + }, + { + 'name' : 'Internal Doctor Online', + 'code' : 'gp-internal-doctor-online' + }, + { + 'name' : 'Internal Doctor Offline', + 'code' : 'gp-internal-doctor-offline' + }, + ] + }, + { + 'category' : 'Specialist', + 'childs' : [ + { + 'name' : 'External Doctor Online', + 'code' : 'sp-external-doctor-online' + }, + { + 'name' : 'External Doctor Offline', + 'code' : 'sp-external-doctor-offline' + }, + { + 'name' : 'Internal Doctor Online', + 'code' : 'sp-internal-doctor-online' + }, + { + 'name' : 'Internal Doctor Offline', + 'code' : 'sp-internal-doctor-offline' + }, + ] + }, + { + 'category' : 'Medicines', + 'childs' : [ + { + 'name' : 'Vitamins', + 'code' : 'medicines-vitamins' + }, + { + 'name' : 'Delivery Fee', + 'code' : 'medicines-delivery-fee' + }, + ] + }, + ]; + + const products = [ + { + 'name' : 'Inpatient', + 'code' : 'IP', + }, + { + 'name' : 'Outpatient', + 'code' : 'OP', + }, + { + 'name' : 'Dental', + 'code' : 'DT', + }, + { + 'name' : 'Dental', + 'code' : 'DTL', + }, + { + 'name' : 'Matternity', + 'code' : 'MT', + }, + { + 'name' : 'Special Benefit', + 'code' : 'SB', + }, + ]; + + return ( + + + + + + + + + + + + Benefit Detail + + + + + + Benefit Configuration + + + }> + + + {benefits.map(row => ( + + {row.category} + + {row.childs.map(benefit => ( + + + + ))} + + + ))} + Admin Fee + + {benefits.map(row => ( + + + + ))} + + + + + + + {benefits.map(row => ( + + {row.category} + + {row.childs.map(benefit => ( + + + + ))} + + + ))} + Admin Fee + + {benefits.map(row => ( + + + + ))} + + + + + + + + + + + ); +} diff --git a/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/Index.tsx b/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/Index.tsx new file mode 100644 index 00000000..81ce66a0 --- /dev/null +++ b/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/Index.tsx @@ -0,0 +1,45 @@ +import { Card, Grid } from "@mui/material"; +import { useParams } from "react-router-dom"; +import HeaderBreadcrumbs from "../../../components/HeaderBreadcrumbs"; +import Page from "../../../components/Page"; +import useSettings from "../../../hooks/useSettings"; +import CorporateTabNavigations from "../CorporateTabNavigations"; +import List from "./List"; + + + +export default function Divisions() { + const { themeStretch } = useSettings(); + + const { corporate_id } = useParams(); + + const pageTitle = 'Diagnosis Exclusion'; + return ( + + + + + + + + + + + ); +} diff --git a/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/List.tsx b/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/List.tsx new file mode 100644 index 00000000..f5ed40b7 --- /dev/null +++ b/frontend/dashboard/src/pages/Corporates/DiagnosisExclusion/List.tsx @@ -0,0 +1,319 @@ +// @mui +import { Box, Button, Card, Collapse, IconButton, InputLabel, MenuItem, OutlinedInput, Paper, Select, SelectChangeEvent, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, TextField, Typography, Badge, Tab, Tabs, CardHeader, Stack, Menu, ButtonGroup } from '@mui/material'; +import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown'; +import KeyboardArrowRightIcon from '@mui/icons-material/KeyboardArrowRight'; +import AddIcon from '@mui/icons-material/Add'; +import UploadIcon from '@mui/icons-material/Upload'; +import CancelIcon from '@mui/icons-material/Cancel'; +// hooks +import React, { Component, useEffect, useRef, useState } from 'react'; +import useSettings from '../../../hooks/useSettings'; +import { useParams, useSearchParams } from 'react-router-dom'; +// components +import axios from '../../../utils/axios'; +import { LaravelPaginatedData } from '../../../@types/paginated-data'; +import { Icd } from '../../../@types/diagnosis'; + +export default function List() { + const { themeStretch } = useSettings(); + const { corporate_id } = useParams(); + const [searchParams, setSearchParams] = useSearchParams(); + const [importResult, setImportResult] = useState(null); + + function SearchInput(props: any) { + // SEARCH + const searchInput = useRef(null); + const [searchText, setSearchText] = useState(""); + + const handleSearchChange = (event: any) => { + const newSearchText = event.target.value ?? '' + setSearchText(newSearchText); + } + + const handleSearchSubmit = (event: any) => { + event.preventDefault(); + props.onSearch(searchText); // Trigger to Parent + } + + useEffect(() => { // Trigger First Search + setSearchText(searchParams.get('search') ?? ''); + }, [searchParams]) + + return ( +
+ + + ); + } + + function ImportForm(props: any) { + // IMPORT + // Create Button Menu + const [anchorEl, setAnchorEl] = React.useState(null); + const createMenu = Boolean(anchorEl); + const importForm = useRef(null) + const [currentImportFileName, setCurrentImportFileName] = useState(null) + + const handleClick = (event: React.MouseEvent) => { + setAnchorEl(event.currentTarget); + }; + + const handleClose = () => { + setAnchorEl(null); + }; + + const handleImportButton = () => { + if (importForm?.current) { + handleClose(); + importForm.current ? importForm.current.click() : console.log('No File selected'); + } else { + alert('No file selected') + } + } + + const handleCancelImportButton = () => { + importForm.current.value = ""; + importForm.current.dispatchEvent(new Event("change", { bubbles: true })); + } + + const handleImportChange = (event: any) => { + if (event.target.files[0]) { + setCurrentImportFileName(event.target.files[0].name) + } else { + setCurrentImportFileName(null); + } + } + + const handleUpload = () => { + if (importForm.current?.files.length) { + const formData = new FormData(); + formData.append("file", importForm.current?.files[0]) + axios.post(`corporates/${corporate_id}/diagnosis-exclusions/import`, formData ) + .then(response => { + handleCancelImportButton(); + loadDataTableData(); + setImportResult(response.data) + // alert('Succesfully read '+ response.data.total_successed_row + ' with ' + response.data.total_failed_row + ' failed rows'); + }) + .catch(response => { + alert('Looks like something went wrong. Please check your data and try again. ' + response.message) + }) + } else { + alert('No File Selected') + } + } + + return ( +
+ + {( !currentImportFileName && + + {/*

kjasndkjandskjasndkjansdkjansd

*/} + + + Import + Download Template + +
+ )} + + {( currentImportFileName && + + + + + + + + )} + {( importResult && + + Last Import Result Report : {importResult.result_file?.name ?? "-"} + + )} +
+ ); + } + + // Called on every row to map the data to the columns + function createData( icd: Icd ): Icd { + return { + ...icd, + } + } + + // Generate the every row of the table + function Row(props: { row: ReturnType }) { + const { row } = props; + const [open, setOpen] = React.useState(false); + + return ( + + *': { borderBottom: 'unset' } }}> + + setOpen(!open)} + > + {open ? : } + + + {row.service_code} + {row.code} + {row.name} + {Object.keys(row.rules).length ? 'With Rules' : 'All'} + + + + + {/* COLLAPSIBLE ROW */} + + + + + { Object.keys(row.rules).length ? ( +
+ + Excluded Only for : + + { row.rules.msc && ( + MSC : {row.rules.msc.join(', ') ?? "-"} + )} + { row.rules.gender && ( + Gender : {row.rules.gender.join(', ') ?? "-"} + )} + { (row.rules.min_age || row.rules.max_age) && ( + Age : {row.rules.min_age ?? "-"} - {row.rules.max_age ?? "-"} + )} + { row.rules.plan && ( + Plan : {row.rules.plan.join(', ') ?? "-"} + )} +
+ ) : ( + + Excluded for All + + )} +
+
+
+
+
+ ); + } + + // Dummy Default Data + const [dataTableIsLoading, setDataTableLoading] = useState(true); + const [dataTableLastRequest, setDataTableLastRequest] = useState(0); + const [dataTableResponseState, setDataTableResponseState] = useState('idle'); + const [dataTableData, setDataTableData] = useState({ + current_page: 1, + data: [], + path: "", + first_page_url: "", + last_page: 1, + last_page_url: "", + next_page_url: "", + prev_page_url: "", + per_page: 10, + from: 0, + to: 0, + total: 0 + }); + + const loadDataTableData = async (appliedFilter : any | null = null) => { + setDataTableLoading(true); + const filter = appliedFilter ? appliedFilter : Object.fromEntries([...searchParams.entries()]); + const response = await axios.get('/corporates/'+corporate_id+'/diagnosis-exclusions', { params: filter }); + setDataTableLoading(false); + + setDataTableData(response.data); + } + + const headStyle = { + fontWeight: 'bold', + }; + + const applyFilter = async (searchFilter: any) => { + await loadDataTableData({ "search" : searchFilter }); + setSearchParams({ "search" : searchFilter }); + } + + useEffect(() => { + loadDataTableData(); + }, []) + + return ( + + + + + {/* The Main Table */} + + + + + + Service + Code + Name + Rules + Status + Action + + + {dataTableIsLoading ? + ( + + + Loading + + + ) : ( + dataTableData.data.length == 0 ? + ( + + + No Data + + + ) : ( + + {dataTableData.data.map(row => ( + + ))} + + ) + )} +
+
+
+
+ ); +} diff --git a/frontend/dashboard/src/pages/Master/Diagnosis/Create.tsx b/frontend/dashboard/src/pages/Master/Diagnosis/Create.tsx new file mode 100644 index 00000000..5e9fccdf --- /dev/null +++ b/frontend/dashboard/src/pages/Master/Diagnosis/Create.tsx @@ -0,0 +1,241 @@ +import * as Yup from 'yup'; +import { yupResolver } from "@hookform/resolvers/yup"; +import { Card, Collapse, Divider, Grid, Stack, Typography } from "@mui/material"; +import { useForm } from "react-hook-form"; +import { useParams } from "react-router-dom"; +import HeaderBreadcrumbs from "../../../components/HeaderBreadcrumbs"; +import { FormProvider, RHFCheckbox, RHFSelect, RHFTextField } from "../../../components/hook-form"; +import Page from "../../../components/Page"; +import useSettings from "../../../hooks/useSettings"; +import CorporateTabNavigations from "../CorporateTabNavigations"; +import DivisionsList from "./List"; +import { useMemo, useState } from 'react'; + + + +export default function Divisions() { + const { themeStretch } = useSettings(); + + const { corporate_id } = useParams(); + + const NewDivisionSchema = Yup.object().shape({ + name: Yup.string().required('Name is required'), + code: Yup.string().required('Corporate Code is required'), + active: Yup.boolean().required('Corporate Status is required'), + }); + + const defaultValues = useMemo( + () => ({ + code: '', + }), + [] + ); + + const methods = useForm({ + resolver: yupResolver(NewDivisionSchema), + defaultValues, + }); + + const { + reset, + watch, + control, + setValue, + getValues, + setError, + handleSubmit, + formState: { isSubmitting }, + } = methods; + + const onSubmit = async (data: any) => { + console.log(data); + }; + + const [open, setOpen] = useState(false); + + const benefits = [ + { + 'category' : 'General Practitioner', + 'childs' : [ + { + 'name' : 'External Doctor Online', + 'code' : 'gp-external-doctor-online' + }, + { + 'name' : 'External Doctor Offline', + 'code' : 'gp-external-doctor-offline' + }, + { + 'name' : 'Internal Doctor Online', + 'code' : 'gp-internal-doctor-online' + }, + { + 'name' : 'Internal Doctor Offline', + 'code' : 'gp-internal-doctor-offline' + }, + ] + }, + { + 'category' : 'Specialist', + 'childs' : [ + { + 'name' : 'External Doctor Online', + 'code' : 'sp-external-doctor-online' + }, + { + 'name' : 'External Doctor Offline', + 'code' : 'sp-external-doctor-offline' + }, + { + 'name' : 'Internal Doctor Online', + 'code' : 'sp-internal-doctor-online' + }, + { + 'name' : 'Internal Doctor Offline', + 'code' : 'sp-internal-doctor-offline' + }, + ] + }, + { + 'category' : 'Medicines', + 'childs' : [ + { + 'name' : 'Vitamins', + 'code' : 'medicines-vitamins' + }, + { + 'name' : 'Delivery Fee', + 'code' : 'medicines-delivery-fee' + }, + ] + }, + ]; + + const products = [ + { + 'name' : 'Inpatient', + 'code' : 'IP', + }, + { + 'name' : 'Outpatient', + 'code' : 'OP', + }, + { + 'name' : 'Dental', + 'code' : 'DT', + }, + { + 'name' : 'Dental', + 'code' : 'DTL', + }, + { + 'name' : 'Matternity', + 'code' : 'MT', + }, + { + 'name' : 'Special Benefit', + 'code' : 'SB', + }, + ]; + + return ( + + + + + + + + + + + + Benefit Detail + + + + + + Benefit Configuration + + + }> + + + {benefits.map(row => ( + + {row.category} + + {row.childs.map(benefit => ( + + + + ))} + + + ))} + Admin Fee + + {benefits.map(row => ( + + + + ))} + + + + + + + {benefits.map(row => ( + + {row.category} + + {row.childs.map(benefit => ( + + + + ))} + + + ))} + Admin Fee + + {benefits.map(row => ( + + + + ))} + + + + + + + + + + + ); +} diff --git a/frontend/dashboard/src/pages/Master/Diagnosis/Index.tsx b/frontend/dashboard/src/pages/Master/Diagnosis/Index.tsx new file mode 100644 index 00000000..ba5a4ce8 --- /dev/null +++ b/frontend/dashboard/src/pages/Master/Diagnosis/Index.tsx @@ -0,0 +1,38 @@ +import { Card, Grid } from "@mui/material"; +import { useParams } from "react-router-dom"; +import HeaderBreadcrumbs from "../../../components/HeaderBreadcrumbs"; +import Page from "../../../components/Page"; +import useSettings from "../../../hooks/useSettings"; +import List from "./List"; + + + +export default function Divisions() { + const { themeStretch } = useSettings(); + + const { corporate_id } = useParams(); + + const pageTitle = 'Benefit'; + return ( + + + + + + + + + ); +} diff --git a/frontend/dashboard/src/pages/Master/Diagnosis/List.tsx b/frontend/dashboard/src/pages/Master/Diagnosis/List.tsx new file mode 100644 index 00000000..48eaad24 --- /dev/null +++ b/frontend/dashboard/src/pages/Master/Diagnosis/List.tsx @@ -0,0 +1,310 @@ +// @mui +import { Box, Button, Card, Collapse, IconButton, InputLabel, MenuItem, OutlinedInput, Paper, Select, SelectChangeEvent, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, TextField, Typography, Badge, Tab, Tabs, CardHeader, Stack, Menu, ButtonGroup, Pagination } from '@mui/material'; +import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown'; +import KeyboardArrowRightIcon from '@mui/icons-material/KeyboardArrowRight'; +import AddIcon from '@mui/icons-material/Add'; +import UploadIcon from '@mui/icons-material/Upload'; +import CancelIcon from '@mui/icons-material/Cancel'; +// hooks +import React, { ChangeEvent, Component, useEffect, useRef, useState } from 'react'; +import useSettings from '../../../hooks/useSettings'; +import { useParams, useSearchParams } from 'react-router-dom'; +// components +import axios from '../../../utils/axios'; +import { LaravelPaginatedData } from '../../../@types/paginated-data'; +import { Icd } from '../../../@types/diagnosis'; +import BasePagination from '../../../components/BasePagination'; + +export default function List() { + const { themeStretch } = useSettings(); + const { corporate_id } = useParams(); + const [searchParams, setSearchParams] = useSearchParams(); + const [importResult, setImportResult] = useState(null); + + function SearchInput(props: any) { + // SEARCH + const searchInput = useRef(null); + const [searchText, setSearchText] = useState(""); + + const handleSearchChange = (event: any) => { + const newSearchText = event.target.value ?? '' + setSearchText(newSearchText); + } + + const handleSearchSubmit = (event: any) => { + event.preventDefault(); + props.onSearch(searchText); // Trigger to Parent + } + + useEffect(() => { // Trigger First Search + setSearchText(searchParams.get('search') ?? ''); + }, [searchParams]) + + return ( +
+ + + ); + } + + function ImportForm(props: any) { + // IMPORT + // Create Button Menu + const [anchorEl, setAnchorEl] = React.useState(null); + const createMenu = Boolean(anchorEl); + const importForm = useRef(null) + const [currentImportFileName, setCurrentImportFileName] = useState(null) + + const handleClick = (event: React.MouseEvent) => { + setAnchorEl(event.currentTarget); + }; + + const handleClose = () => { + setAnchorEl(null); + }; + + const handleImportButton = () => { + if (importForm?.current) { + handleClose(); + importForm.current ? importForm.current.click() : console.log('No File selected'); + } else { + alert('No file selected') + } + } + + const handleCancelImportButton = () => { + importForm.current.value = ""; + importForm.current.dispatchEvent(new Event("change", { bubbles: true })); + } + + const handleImportChange = (event: any) => { + if (event.target.files[0]) { + setCurrentImportFileName(event.target.files[0].name) + } else { + setCurrentImportFileName(null); + } + } + + const handleUpload = () => { + if (importForm.current?.files.length) { + const formData = new FormData(); + formData.append("file", importForm.current?.files[0]) + axios.post(`corporates/${corporate_id}/import-plan-benefit`, formData ) + .then(response => { + handleCancelImportButton(); + loadDataTableData(); + setImportResult(response.data) + // alert('Succesfully read '+ response.data.total_successed_row + ' with ' + response.data.total_failed_row + ' failed rows'); + }) + .catch(response => { + alert('Looks like something went wrong. Please check your data and try again. ' + response.message) + }) + } else { + alert('No File Selected') + } + } + + return ( +
+ + {( !currentImportFileName && + + {/*

kjasndkjandskjasndkjansdkjansd

*/} + + + Import + Download Template + +
+ )} + + {( currentImportFileName && + + + + + + + + )} + {( importResult && + + Last Import Result Report : {importResult.result_file?.name ?? "-"} + + )} +
+ ); + } + + // Called on every row to map the data to the columns + function createData( icd: Icd ): Icd { + return { + ...icd, + } + } + + // Generate the every row of the table + function Row(props: { row: ReturnType }) { + const { row } = props; + const [open, setOpen] = React.useState(false); + + return ( + + *': { borderBottom: 'unset' } }}> + + setOpen(!open)} + > + {open ? : } + + + {row.type} + {row.code} + {row.name} + {row.version} + + + + + {/* COLLAPSIBLE ROW */} + + + + + + Description : {row.description} + + + + + + + ); + } + + // Dummy Default Data + const [dataTableIsLoading, setDataTableLoading] = useState(true); + const [dataTableLastRequest, setDataTableLastRequest] = useState(0); + const [dataTableResponseState, setDataTableResponseState] = useState('idle'); + const [dataTableData, setDataTableData] = useState({ + current_page: 1, + data: [], + path: "", + first_page_url: "", + last_page: 1, + last_page_url: "", + next_page_url: "", + prev_page_url: "", + per_page: 10, + from: 0, + to: 0, + total: 0 + }); + const [dataTablePage, setDataTablePage] = useState(5); + + const loadDataTableData = async (appliedFilter : any | null = null) => { + setDataTableLoading(true); + const filter = appliedFilter ? appliedFilter : Object.fromEntries([...searchParams.entries()]); + const response = await axios.get('/master/diagnosis', { params: filter }); + // console.log(response.data); + setDataTableLoading(false); + + setDataTableData(response.data); + } + + const headStyle = { + fontWeight: 'bold', + }; + + const applyFilter = async (searchFilter: any) => { + await loadDataTableData({ "search" : searchFilter }); + setSearchParams({ "search" : searchFilter }); + } + + const handlePageChange = (event : ChangeEvent, value: number) => { + const filter = Object.fromEntries([...searchParams.entries(), ["page", value]]); + loadDataTableData(filter); + setSearchParams(filter); + } + + useEffect(() => { + loadDataTableData(); + }, []) + + return ( + + + + + {/* The Main Table */} + + + + + + Type + Code + Name + Version + Status + Action + + + {dataTableIsLoading ? + ( + + + Loading + + + ) : ( + dataTableData.data.length == 0 ? + ( + + + No Data + + + ) : ( + + {dataTableData.data.map(row => ( + + ))} + + ) + )} +
+
+ + +
+
+ ); +} diff --git a/frontend/dashboard/src/routes/index.tsx b/frontend/dashboard/src/routes/index.tsx index d9b289c2..4d68c2cc 100644 --- a/frontend/dashboard/src/routes/index.tsx +++ b/frontend/dashboard/src/routes/index.tsx @@ -95,6 +95,7 @@ export default function Router() { path: 'corporates/:corporate_id/edit', element: , }, + { path: 'corporates/:corporate_id/divisions', element: , @@ -107,10 +108,12 @@ export default function Router() { path: 'corporates/:corporate_id/divisions/:id/edit', element: , }, + { path: 'corporates/:corporate_id/members', element: , }, + { path: 'corporates/:corporate_id/plans/create', element: , @@ -119,6 +122,7 @@ export default function Router() { path: 'corporates/:corporate_id/plans', element: , }, + { path: 'corporates/:corporate_id/corporate-plans/create', element: , @@ -131,6 +135,7 @@ export default function Router() { path: 'corporates/:corporate_id/corporate-plans', element: , }, + { path: 'corporates/:corporate_id/benefits/create', element: , @@ -139,6 +144,7 @@ export default function Router() { path: 'corporates/:corporate_id/benefits', element: , }, + { path: 'corporates/:corporate_id/corporate-benefits/create', element: , @@ -151,6 +157,16 @@ export default function Router() { path: 'corporates/:corporate_id/corporate-benefits/:id/edit', element: , }, + + { + path: 'corporates/:corporate_id/diagnosis-exclusions', + element: , + }, + + { + path: 'master/diagnosis', + element: , + }, ] }, // { @@ -216,3 +232,7 @@ const CorporatePlans = Loadable(lazy(() => import('../pages/Corporates/Corporate const PlanCreate = Loadable(lazy(() => import('../pages/Corporates/Plan/Create'))); const Plans = Loadable(lazy(() => import('../pages/Corporates/Plan/Index'))); + +const DiagnosisExclusions = Loadable(lazy(() => import('../pages/Corporates/DiagnosisExclusion/Index'))); + +const MasterDiagnosis = Loadable(lazy(() => import('../pages/Master/Diagnosis/Index'))); diff --git a/resources/files/ICD-X-Halodoc.csv b/resources/files/ICD-X-Halodoc.csv new file mode 100644 index 00000000..155d9426 --- /dev/null +++ b/resources/files/ICD-X-Halodoc.csv @@ -0,0 +1,18555 @@ +"ICD_Code ","Description" +"A00","CHOLERA" +"A00.0","Cholera due to vibrio cholerae 01, biovar cholerae" +"A00.1","Cholera due to vibrio cholerae 01, biovar eltor" +"A00.9","Cholera, unspecified" +"A01","TYPHOID AND PARATYPHOID FEVERS" +"A01.0","Typhoid fever" +"A01.1","Paratyphoid fever A" +"A01.2","Paratyphoid fever B" +"A01.3","Paratyphoid fever C" +"A01.4","Paratyphoid fever, unspecified" +"A02","OTHER SALMONELLA INFECTIONS" +"A02.0","Salmonella enteritis" +"A02.1","Salmonella septicaemia" +"A02.2","Localized salmonella infections" +"A02.8","Other specified salmonella infections" +"A02.9","Salmonella infection, unspecified" +"A03","SHIGELLOSIS" +"A03.0","Shigellosis due to shigella dysenteriae" +"A03.1","Shigellosis due to shigella flexneri" +"A03.2","Shigellosis due to shigella boydii" +"A03.3","Shigellosis due to shigella sonnei" +"A03.8","Other shigellosis" +"A03.9","Shigellosis, unspecified" +"A04","OTHER BACTERIAL INTESTINAL INFECTIONS" +"A04.0","Enteropathogenic escherichia coli infection" +"A04.1","Enterotoxigenic escherichia coli infection" +"A04.2","Enteroinvasive escherichia coli infection" +"A04.3","Enterohaemorrhagic escherichia coli infection" +"A04.4","Other intestinal escherichia coli infections" +"A04.5","Campylobacter enteritis" +"A04.6","Enteritis due to yersinia enterocolitica" +"A04.7","Enterocolitis due to clostridium difficile" +"A04.8","Other specified bacterial intestinal infections" +"A04.9","Bacterial intestinal infection, unspecified" +"A05","Other bacterial foodborne intoxications, not elsewhere classified" +"A05.0","Foodborne staphylococcal intoxication" +"A05.1","Botulism" +"A05.2","Foodborne clostridium perfringens intoxication" +"A05.3","Foodborne vibrio parahaemolyticus intoxication" +"A05.4","Foodborne bacillus cereus intoxication" +"A05.8","Other specified bacterial foodborne intoxications" +"A05.9","Bacterial foodborne intoxication, unspecified" +"A06","AMOEBIASIS" +"A06.0","Acute amoebic dysentery" +"A06.1","Chronic intestinal amoebiasis" +"A06.2","Amoebic nondysenteric colitis" +"A06.3","Amoeboma of intestine" +"A06.4","Amoebic liver abscess" +"A06.5","Amoebic lung abscess" +"A06.6","Amoebic brain abscess" +"A06.7","Cutaneous amoebiasis" +"A06.8","Amoebic Infection of other sites" +"A06.9","Amoebiasis, unspecified" +"A07","OTHER PROTOZOAL INTESTINAL DISEASES" +"A07.0","Balantidiasis" +"A07.1","Giardiasis [lambliasis]" +"A07.2","Cryptosporidiosis" +"A07.3","Isosporiasis" +"A07.8","Other specified protozoal intestinal diseases" +"A07.9","Protozoal intestinal disease, unspecified" +"A08","VIRAL AND OTHER SPECIFIED INTESTINAL INFECTIONS" +"A08.0","Rotaviral enteritis" +"A08.1","Acute gastroenteropathy due to Norwalk agent" +"A08.2","Adenoviral enteritis" +"A08.3","Other viral enteritis" +"A08.4","Viral intestinal infection, unspecified" +"A08.5","Other specified intestinal infections" +"A09","Diarrhoea and gastroenteritis of presumed infectious origin" +"A09.0","Other and unspecified gastroenteritis and colitis of infectious origin" +"A09.9","Gastroenteritis and colitis of unspecified origin" +"A15","RESPIRATORY TUBERCULOSIS, BACTERIOLOGICALLY AND HISTOLOGICALLY CONFIRMED" +"A15.0","Tb lung confirm sputum microscopy with or without culture" +"A15.1","Tuberculosis of lung, confirmed by culture only" +"A15.2","Tuberculosis of lung, confirmed histologically" +"A15.3","Tuberculosis of lung, confirmed by unspecified means" +"A15.4","Tb intrathoracic lymph nodes confirm bact histologically" +"A15.5","Tuberculosis of larynx, trachea & bronchus conf bact/hist'y" +"A15.6","Tuberculous pleurisy, conf bacteriologically/his'y" +"A15.7","Primary respiratory tb confirm bact and histologically" +"A15.8","Other respiratory tb confirm bact and histologically" +"A15.9","Respiratory tb unspec confirm bact and histologically" +"A16","RESPIRATORY TUBERCULOSIS, NOT CONFIRMED BACTERIOLOGICALLY OR HISTOLOGICALLY" +"A16.0","Tuberculosis of lung, bacteriologically & histolog'y neg" +"A16.1","Tuberculosis lung bact and histological examin not done" +"A16.2","Tb lung without mention of bact or histological confirm" +"A16.3","Tb intrathoracic lymph node without bact or hist confirm" +"A16.4","Tb larynx trachea and bronchus without bact or hist confirm" +"A16.5","Tb pleurisy without mention of bact or histological confirm" +"A16.7","Prim respiratory tb without mention of bact or hist confirm" +"A16.8","Oth respiratory tb without mention of bact or hist confirm" +"A16.9","Resp tb unspec without mention of bact or hist confirm" +"A17","TUBERCULOSIS OF NERVOUS SYSTEM" +"A17.0","Tuberculous meningitis" +"A17.1","Meningeal tuberculoma" +"A17.8","Other tuberculosis of nervous system" +"A17.9","Tuberculosis of nervous system unspecified" +"A18","TUBERCULOSIS OF OTHER ORGANS" +"A18.0","Tuberculosis of bones and joints" +"A18.1","Tuberculosis of genitourinary system" +"A18.2","Tuberculous peripheral lymphadenopathy" +"A18.3","Tuberculosis of intestines, peritoneum and mesenteric glands" +"A18.4","Tuberculosis of skin and subcutaneous tissue" +"A18.5","Tuberculosis of eye" +"A18.6","Tuberculosis of ear" +"A18.7","Tuberculosis of adrenal glands" +"A18.8","Tuberculosis of other specified organs" +"A19","MILIARY TUBERCULOSIS" +"A19.0","Acute miliary tuberculosis of a single specified site" +"A19.1","Acute miliary tuberculosis of multiple sites" +"A19.2","Acute miliary tuberculosis, unspecified" +"A19.8","Other miliary tuberculosis" +"A19.9","Miliary tuberculosis, unspecified" +"A20","PLAGUE" +"A20.0","Bubonic plague" +"A20.1","Cellulocutaneous plague" +"A20.2","Pneumonic plague" +"A20.3","Plague meningitis" +"A20.7","Septicaemic plague" +"A20.8","Other forms of plague" +"A20.9","Plague, unspecified" +"A21","TULARAEMIA" +"A21.0","Ulceroglandular tularaemia" +"A21.1","Oculoglandular tularaemia" +"A21.2","Pulmonary tularaemia" +"A21.3","Gastrointestinal tularaemia" +"A21.7","Generalized tularaemia" +"A21.8","Other forms of tularaemia" +"A21.9","Tularaemia, unspecified" +"A22","ANTHRAX" +"A22.0","Cutaneous anthrax" +"A22.1","Pulmonary anthrax" +"A22.2","Gastrointestinal anthrax" +"A22.7","Anthrax septicaemia" +"A22.8","Other forms of anthrax" +"A22.9","Anthrax, unspecified" +"A23","BRUCELLOSIS" +"A23.0","Brucellosis due to brucella melitensis" +"A23.1","Brucellosis due to brucella abortus" +"A23.2","Brucellosis due to brucella suis" +"A23.3","Brucellosis due to brucella canis" +"A23.8","Other brucellosis" +"A23.9","Brucellosis, unspecified" +"A24","GLANDERS AND MELIOIDOSIS" +"A24.0","Glanders" +"A24.1","Acute and fulminating melioidosis" +"A24.2","Subacute and chronic melioidosis" +"A24.3","Other melioidosis" +"A24.4","Melioidosis, unspecified" +"A25","RAT-BITE FEVERS" +"A25.0","Spirillosis" +"A25.1","Streptobacillosis" +"A25.9","Rat-bite fever, unspecified" +"A26","ERYSIPELOID" +"A26.0","Cutaneous erysipeloid" +"A26.7","Erysipelothrix septicaemia" +"A26.8","Other forms of erysipeloid" +"A26.9","Erysipeloid, unspecified" +"A27","LEPTOSPIROSIS" +"A27.0","Leptospirosis icterohaemorrhagica" +"A27.8","Other forms of leptospirosis" +"A27.9","Leptospirosis, unspecified" +"A28","OTHER ZOONOTIC BACTERIAL DISEASES, NOT ELSEWHERE CLASSIFIED" +"A28.0","Pasteurellosis" +"A28.1","Cat-scratch disease" +"A28.2","Extraintestinal yersiniosis" +"A28.8","Other specified zoonotic bacterial diseases nec" +"A28.9","Zoonotic bacterial disease, unspecified" +"A30","Leprosy [Hansen disease]" +"A30.0","Indeterminate leprosy" +"A30.1","Tuberculoid leprosy" +"A30.2","Borderline tuberculoid leprosy" +"A30.3","Borderline leprosy" +"A30.4","Borderline lepromatous leprosy" +"A30.5","Lepromatous leprosy" +"A30.8","Other forms of leprosy" +"A30.9","Leprosy, unspecified" +"A31","INFECTION DUE TO OTHER MYCOBACTERIA" +"A31.0","Pulmonary mycobacterial infection" +"A31.1","Cutaneous mycobacterial infection" +"A31.8","Other mycobacterial infections" +"A31.9","Mycobacterial infection, unspecified" +"A32","LISTERIOSIS" +"A32.0","Cutaneous listeriosis" +"A32.1","Listerial meningitis and meningoencephalitis" +"A32.7","Listerial septicaemia" +"A32.8","Other forms of listeriosis" +"A32.9","Listeriosis, unspecified" +"A33","TETANUS NEONATORUM" +"A34","OBSTETRICAL TETANUS" +"A35","OTHER TETANUS" +"A36","DIPHTHERIA" +"A36.0","Pharyngeal diphtheria" +"A36.1","Nasopharyngeal diphtheria" +"A36.2","Laryngeal diphtheria" +"A36.3","Cutaneous diphtheria" +"A36.8","Other diphtheria" +"A36.9","Diphtheria, unspecified" +"A37","WHOOPING COUGH" +"A37.0","Whooping cough due to bordetella pertussis" +"A37.1","Whooping cough due to bordetella parapertussis" +"A37.8","Whooping cough due to other bordetella species" +"A37.9","Whooping cough, unspecified" +"A38","SCARLET FEVER" +"A39","MENINGOCOCCAL INFECTION" +"A39.0","Meningococcal meningitis" +"A39.1","Waterhouse-friderichsen syndrome" +"A39.2","Acute meningococcaemia" +"A39.3","Chronic meningococcaemia" +"A39.4","Meningococcaemia, unspecified" +"A39.5","Meningococcal heart disease" +"A39.8","Other meningococcal infections" +"A39.9","Meningococcal infection, unspecified" +"A40","Streptococcal sepsis" +"A40.0","Septicaemia due to streptococcus, group A" +"A40.1","Septicaemia due to streptococcus, group b" +"A40.2","Septicaemia due to streptococcus, group d" +"A40.3","Septicaemia due to streptococcus pneumoniae" +"A40.8","Other streptococcal septicaemia" +"A40.9","Streptococcal septicaemia, unspecified" +"A41","Other sepsis" +"A41.0","Septicaemia due to staphylococcus aureus" +"A41.1","Septicaemia due to other specified staphylococcus" +"A41.2","Septicaemia due to unspecified staphylococcus" +"A41.3","Septicaemia due to haemophilus influenzae" +"A41.4","Septicaemia due to anaerobes" +"A41.5","Septicaemia due to other gram-negative organisms" +"A41.8","Other specified septicaemia" +"A41.9","Septicaemia, unspecified" +"A42","ACTINOMYCOSIS" +"A42.0","Pulmonary actinomycosis" +"A42.1","Abdominal actinomycosis" +"A42.2","Cervicofacial actinomycosis" +"A42.7","Actinomycotic septicaemia" +"A42.8","Other forms of actinomycosis" +"A42.9","Actinomycosis, unspecified" +"A43","NOCARDIOSIS" +"A43.0","Pulmonary nocardiosis" +"A43.1","Cutaneous nocardiosis" +"A43.8","Other forms of nocardiosis" +"A43.9","Nocardiosis, unspecified" +"A44","BARTONELLOSIS" +"A44.0","Systemic bartonellosis" +"A44.1","Cutaneous and mucocutaneous bartonellosis" +"A44.8","Other forms of bartonellosis" +"A44.9","Bartonellosis, unspecified" +"A46","ERYSIPELAS" +"A48","OTHER BACTERIAL DISEASES, NOT ELSEWHERE CLASSIFIED" +"A48.0","Gas gangrene" +"A48.1","Legionnaires' disease" +"A48.2","Nonpneumonic legionnaires' disease [pontiac fever]" +"A48.3","Toxic shock syndrome" +"A48.4","Brazilian purpuric fever" +"A48.8","Other specified bacterial diseases" +"A49","Bacterial infection of unspecified site" +"A49.0","Staphylococcal infection, unspecified" +"A49.1","Streptococcal infection, unspecified" +"A49.2","Haemophilus influenzae infection, unspecified" +"A49.3","Mycoplasma infection, unspecified" +"A49.8","Other bacterial infections of unspecified site" +"A49.9","Bacterial infection, unspecified" +"A50","CONGENITAL SYPHILIS" +"A50.0","Early congenital syphilis, symptomatic" +"A50.1","Early congenital syphilis, latent" +"A50.2","Early congenital syphilis, unspecified" +"A50.3","Late congenital syphilitic oculopathy" +"A50.4","Late congenital neurosyphilis [juvenile neurosyphilis]" +"A50.5","Other late congenital syphilis, symptomatic" +"A50.6","Late congenital syphilis, latent" +"A50.7","Late congenital syphilis, unspecified" +"A50.9","Congenital syphilis, unspecified" +"A51","EARLY SYPHILIS" +"A51.0","Primary genital syphilis" +"A51.1","Primary anal syphilis" +"A51.2","Primary syphilis of other sites" +"A51.3","Secondary syphilis of skin and mucous membranes" +"A51.4","Other secondary syphilis" +"A51.5","Early syphilis, latent" +"A51.9","Early syphilis, unspecified" +"A52","LATE SYPHILIS" +"A52.0","Cardiovascular syphilis" +"A52.1","Symptomatic neurosyphilis" +"A52.2","Asymptomatic neurosyphilis" +"A52.3","Neurosyphilis, unspecified" +"A52.7","Other symptomatic late syphilis" +"A52.8","Late syphilis, latent" +"A52.9","Late syphilis, unspecified" +"A53","Other and unspecified syphilis" +"A53.0","Latent syphilis, unspecified as early or late" +"A53.9","Syphilis, unspecified" +"A54","GONOCOCCAL INFECTION" +"A54.0","Gonococcal infection lower genitourinary tract without periurethral / accessory gland abscess" +"A54.1","Gonococcal infection lower genitourinary tract with periurethral / accessory gland abscess" +"A54.2","Gonococcal pelviperitonitis and other Gonococcal genitourinary infections" +"A54.3","Gonococcal infection of eye" +"A54.4","Gonococcal infection of musculoskeletal system" +"A54.5","Gonococcal pharyngitis" +"A54.6","Gonococcal infection of anus and rectum" +"A54.8","Other gonococcal infections" +"A54.9","Gonococcal infection, unspecified" +"A55","CHLAMYDIAL LYMPHOGRANULOMA (VENEREUM)" +"A56","OTHER SEXUALLY TRANSMITTED CHLAMYDIAL DISEASES" +"A56.0","Chlamydial infection of lower genitourinary tract" +"A56.1","Chlamydial infection of pelviperitoneum other genitourinary organs" +"A56.2","Chlamydial infection of genitourinary tract, unspecified" +"A56.3","Chlamydial infection of anus and rectum" +"A56.4","Chlamydial infection of pharynx" +"A56.8","Sexually transmitted chlamydial infection of other sites" +"A57","CHANCROID" +"A58","GRANULOMA INGUINALE" +"A59","TRICHOMONIASIS" +"A59.0","Urogenital trichomoniasis" +"A59.8","Trichomoniasis of other sites" +"A59.9","Trichomoniasis, unspecified" +"A60","Anogenital herpesviral [herpes simplex] infection" +"A60.0","Herpesviral infection of genitalia and urogenital tract" +"A60.1","Herpesviral infection of perianal skin and rectum" +"A60.9","Anogenital herpesviral infection, unspecified" +"A63","Other predominantly sexually transmitted diseases, not elsewhere classified" +"A63.0","Anogenital (venereal) warts" +"A63.8","Other specified predominantly sexually transmitted diseases" +"A64","Unspecified sexually transmitted disease" +"A65","NONVENEREAL SYPHILIS" +"A66","YAWS" +"A66.0","Initial lesions of yaws" +"A66.1","Multiple papillomata and wet crab yaws" +"A66.2","Other early skin lesions of yaws" +"A66.3","Hyperkeratosis of yaws" +"A66.4","Gummata and ulcers of yaws" +"A66.5","Gangosa" +"A66.6","Bone and joint lesions of yaws" +"A66.7","Other manifestations of yaws" +"A66.8","Latent yaws" +"A66.9","Yaws, unspecified" +"A67","PINTA [CARATE]" +"A67.0","Primary lesions of pinta" +"A67.1","Intermediate lesions of pinta" +"A67.2","Late lesions of pinta" +"A67.3","Mixed lesions of pinta" +"A67.9","Pinta, unspecified" +"A68","RELAPSING FEVERS" +"A68.0","Louse-borne relapsing fever" +"A68.1","Tick-borne relapsing fever" +"A68.9","Relapsing fever, unspecified" +"A69","OTHER SPIROCHAETAL INFECTIONS" +"A69.0","Necrotizing ulcerative stomatitis" +"A69.1","Other vincent's infections" +"A69.2","Lyme disease" +"A69.8","Other specified spirochaetal infections" +"A69.9","Spirochaetal infection, unspecified" +"A70","CHLAMYDIA PSITTACI INFECTION" +"A71","TRACHOMA" +"A71.0","Initial stage of trachoma" +"A71.1","Active stage of trachoma" +"A71.9","Trachoma, unspecified" +"A74","OTHER DISEASES CAUSED BY CHLAMYDIAE" +"A74.0","Chlamydial conjunctivitis" +"A74.8","Other chlamydial diseases" +"A74.9","Chlamydial infection, unspecified" +"A75","TYPHUS FEVER" +"A75.0","Epidemic louse-borne typhus fever due to rickettsia prowazekii" +"A75.1","Recrudescent typhus [Brill's disease]" +"A75.2","Typhus fever due to rickettsia typhi" +"A75.3","Typhus fever due to rickettsia tsutsugamushi" +"A75.9","Typhus fever, unspecified" +"A77","SPOTTED FEVER [TICK-BORNE RICKETTSIOSES]" +"A77.0","Spotted fever due to rickettsia rickettsii" +"A77.1","Spotted fever due to rickettsia conorii" +"A77.2","Spotted fever due to rickettsia sibirica" +"A77.3","Spotted fever due to rickettsia australis" +"A77.8","Other spotted fevers" +"A77.9","Spotted fever, unspecified" +"A78","Q FEVER" +"A79","OTHER RICKETTSIOSES" +"A79.0","Trench fever" +"A79.1","Rickettsialpox due to rickettsia akari" +"A79.8","Other specified rickettsioses" +"A79.9","Rickettsiosis, unspecified" +"A80","ACUTE POLIOMYELITIS" +"A80.0","Acute paralytic poliomyelitis, vaccine-associated" +"A80.1","Acute paralytic poliomyelitis, wild virus, imported" +"A80.2","Acute paralytic poliomyelitis, wild virus, indigenous" +"A80.3","Acute paralytic poliomyelitis, other and unspecified" +"A80.4","Acute nonparalytic poliomyelitis" +"A80.9","Acute poliomyelitis, unspecified" +"A81","Atypical virus infections of central nervous system" +"A81.0","Creutzfeldt-Jakob disease" +"A81.1","Subacute sclerosing panencephalitis" +"A81.2","Progressive multifocal leukoencephalopathy" +"A81.8","Other atypical virus infections of central nervous system" +"A81.9","Atypical virus infection of central nervous system, unspecified" +"A82","RABIES" +"A82.0","Sylvatic rabies" +"A82.1","Urban rabies" +"A82.9","Rabies, unspecified" +"A83","MOSQUITO-BORNE VIRAL ENCEPHALITIS" +"A83.0","Japanese encephalitis" +"A83.1","Western equine encephalitis" +"A83.2","Eastern equine encephalitis" +"A83.3","St Louis encephalitis" +"A83.4","Australian encephalitis" +"A83.5","California encephalitis" +"A83.6","Rocio virus disease" +"A83.8","Other mosquito-borne viral encephalitis" +"A83.9","Mosquito-borne viral encephalitis, unspecified" +"A84","TICK-BORNE VIRAL ENCEPHALITIS" +"A84.0","Far east tick-born enceph-russn spring-summ enceph" +"A84.1","Central european tick-borne encephalitis" +"A84.8","Other tick-borne viral encephalitis" +"A84.9","Tick-borne viral encephalitis, unspecified" +"A85","OTHER VIRAL ENCEPHALITIS, NOT ELSEWHERE CLASSIFIED" +"A85.0","Enteroviral encephalitis" +"A85.1","Adenoviral encephalitis" +"A85.2","Arthropod-borne viral encephalitis, unspecified" +"A85.8","Other specified viral encephalitis" +"A86","Unspecified viral encephalitis" +"A87","VIRAL MENINGITIS" +"A87.0","Enteroviral meningitis" +"A87.1","Adenoviral meningitis" +"A87.2","Lymphocytic choriomeningitis" +"A87.8","Other viral meningitis" +"A87.9","Viral meningitis, unspecified" +"A88","OTHER VIRAL INFECTIONS OF CENTRAL NERVOUS SYSTEM, NOT ELSEWHERE CLASSIFIED" +"A88.0","Enteroviral exanthematous fever [Boston exanthem]" +"A88.1","Epidemic vertigo" +"A88.8","Other specified viral infections of central nervous system" +"A89","Unspecified viral infection of central nervous system" +"A90","DENGUE FEVER [CLASSICAL DENGUE]" +"A91","DENGUE HAEMORRHAGIC FEVER" +"A92","OTHER MOSQUITO-BORNE VIRAL FEVERS" +"A92.0","Chikungunya virus disease" +"A92.1","O'nyong-nyong fever" +"A92.2","Venezuelan equine fever" +"A92.3","West Nile fever" +"A92.4","Rift valley fever" +"A92.8","Other specified mosquito-borne viral fevers" +"A92.9","Mosquito-borne viral fever, unspecified" +"A93","OTHER ARTHROPOD-BORNE VIRAL FEVERS, NOT ELSEWHERE CLASSIFIED" +"A93.0","Oropouche virus disease" +"A93.1","Sandfly fever" +"A93.2","Colorado tick fever" +"A93.8","Other specified arthropod-borne viral fevers" +"A94","Unspecified arthropod-borne viral fever" +"A95","YELLOW FEVER" +"A95.0","Sylvatic yellow fever" +"A95.1","Urban yellow fever" +"A95.9","Yellow fever, unspecified" +"A96","ARENAVIRAL HAEMORRHAGIC FEVER" +"A96.0","Junin haemorrhagic fever" +"A96.1","Machupo haemorrhagic fever" +"A96.2","Lassa fever" +"A96.8","Other arenaviral haemorrhagic fevers" +"A96.9","Arenaviral haemorrhagic fever, unspecified" +"A98","OTHER VIRAL HAEMORRHAGIC FEVERS, NOT ELSEWHERE CLASSIFIED" +"A98.0","Crimean-congo haemorrhagic fever" +"A98.1","Omsk haemorrhagic fever" +"A98.2","Kyasanur forest disease" +"A98.3","Marburg virus disease" +"A98.4","Ebola virus disease" +"A98.5","Haemorrhagic fever with renal syndrome" +"A98.8","Other specified viral haemorrhagic fevers" +"A99","Unspecified viral haemorrhagic fever" +"B00","HERPESVIRAL [HERPES SIMPLEX] INFECTIONS" +"B00.0","Eczema herpeticum" +"B00.1","Herpesviral vesicular dermatitis" +"B00.2","Herpesviral gingivostomatitis and pharyngotonsillitis" +"B00.3","Herpesviral meningitis" +"B00.4","Herpesviral encephalitis" +"B00.5","Herpesviral ocular disease" +"B00.7","Disseminated herpesviral disease" +"B00.8","Other forms of herpesviral infection" +"B00.9","Herpesviral infection, unspecified" +"B01","Varicella [chickenpox]" +"B01.0","Varicella meningitis" +"B01.1","Varicella encephalitis" +"B01.2","Varicella pneumonia" +"B01.8","Varicella with other complications" +"B01.9","Varicella without complication" +"B02","ZOSTER [HERPES ZOSTER]" +"B02.0","Zoster encephalitis" +"B02.1","Zoster meningitis" +"B02.2","Zoster with other nervous system involvement" +"B02.3","Zoster ocular disease" +"B02.7","Disseminated zoster" +"B02.8","Zoster with other complications" +"B02.9","Zoster without complication" +"B03","SMALLPOX" +"B04","MONKEYPOX" +"B05","MEASLES" +"B05.0","Measles complicated by encephalitis" +"B05.1","Measles complicated by meningitis" +"B05.2","Measles complicated by pneumonia" +"B05.3","Measles complicated by otitis media" +"B05.4","Measles with intestinal complications" +"B05.8","Measles with other complications" +"B05.9","Measles without complication" +"B06","RUBELLA [GERMAN MEASLES]" +"B06.0","Rubella with neurological complications" +"B06.8","Rubella with other complications" +"B06.9","Rubella without complication" +"B07","VIRAL WARTS" +"B08","Other viral infections characterized by skin and mucous membrane lesions, not elsewhere classified" +"B08.0","Other orthopoxvirus infections" +"B08.1","Molluscum contagiosum" +"B08.2","Exanthema subitum [sixth disease]" +"B08.3","Erythema infectiosum [fifth disease]" +"B08.4","Enteroviral vesicular stomatitis with exanthem" +"B08.5","Enteroviral vesicular pharyngitis" +"B08.6","Exanthematic febrile disease (MEXICO)" +"B08.8","Other specified viral infections characterized skin / mucous membrane lesions" +"B09","Unspecified viral infection characterized skin / mucous membrane lesions" +"B15","ACUTE HEPATITIS A" +"B15.0","Hepatitis A with hepatic coma" +"B15.9","Hepatitis A without hepatic coma" +"B16","ACUTE HEPATITIS B" +"B16.0","Acute hepatitis b with delta-agent (coinfection) with hepatitis coma" +"B16.1","Acute hepatitis b with delta-agent (coinfection) without hepatitis coma" +"B16.2","Acute hepatitis B without delta-agent with hepatic coma" +"B16.9","Acute hepatitis b without delta-agent and without hepatatitis coma" +"B17","OTHER ACUTE VIRAL HEPATITIS" +"B17.0","Acute delta-(super)infection of hepatitis b carrier" +"B17.1","Acute hepatitis C" +"B17.2","Acute hepatitis E" +"B17.8","Other specified acute viral hepatitis" +"B17.9","Acute viral hepatitis, unspecified" +"B18","CHRONIC VIRAL HEPATITIS" +"B18.0","Chronic viral hepatitis B with delta-agent" +"B18.1","Chronic viral hepatitis B without delta-agent" +"B18.2","Chronic viral hepatitis C" +"B18.8","Other chronic viral hepatitis" +"B18.9","Chronic viral hepatitis, unspecified" +"B19","Unspecified viral hepatitis" +"B19.0","Unspecified viral hepatitis hepatic with coma" +"B19.9","Unspecified viral hepatitis without hepatic coma" +"B20","Human immunodeficiency virus [HIV] disease resulting in infectious and parasitic diseases" +"B20.0","HIV disease resulting in mycobacterial infection" +"B20.1","HIV disease resulting in other bacterial infections" +"B20.2","HIV disease resulting in cytomegaloviral disease" +"B20.3","HIV disease resulting in other viral infections" +"B20.4","HIV disease resulting in candidiasis" +"B20.5","HIV disease resulting in other mycoses" +"B20.6","HIV disease resulting in pneumocystis carinii pneumonia" +"B20.7","HIV disease resulting in multiple infections" +"B20.8","HIV disease resulting in other infectious and parasitic disease" +"B20.9","HIV disease resulting in unspecified infectious or parasitic disease" +"B21","HUMAN IMMUNODEFICIENCY VIRUS [HIV] DISEASE RESULTING IN MALIGNANT NEOPLASMS" +"B21.0","HIV disease resulting in kaposi's sarcoma" +"B21.1","HIV disease resulting in burkitt's lymphoma" +"B21.2","HIV dis resulting oth types of non-hodgkin's lymphoma" +"B21.3","HIV dis result oth mal neo lymphoid haematopoietic rel tis" +"B21.7","HIV disease resulting in multiple malignant neoplasms" +"B21.8","HIV disease resulting in other malignant neoplasms" +"B21.9","HIV disease resulting in unspecified malignant neoplasm" +"B22","HUMAN IMMUNODEFICIENCY VIRUS [HIV] DISEASE RESULTING IN OTHER SPECIFIED DISEASES" +"B22.0","HIV disease resulting in encephalopathy" +"B22.1","HIV disease resulting in lymphoid interstitial pneumonitis" +"B22.2","HIV disease resulting in wasting syndrome" +"B22.7","HIV dis resulting in multiple diseases classif elsewhere" +"B23","HUMAN IMMUNODEFICIENCY VIRUS [HIV] DISEASE RESULTING IN OTHER CONDITIONS" +"B23.0","Acute HIV infection syndrome" +"B23.1","HIV dis result (persistent) generalized lymphadenopathy" +"B23.2","HIV dis result haematologic / immunologic abnorm nec" +"B23.8","HIV disease resulting in other specified conditions" +"B24","Unspecified human immunodeficiency virus [hiv] disease" +"B25","CYTOMEGALOVIRAL DISEASE" +"B25.0","Cytomegaloviral pneumonitis" +"B25.1","Cytomegaloviral hepatitis" +"B25.2","Cytomegaloviral pancreatitis" +"B25.8","Other cytomegaloviral diseases" +"B25.9","Cytomegaloviral disease, unspecified" +"B26","MUMPS" +"B26.0","Mumps orchitis" +"B26.1","Mumps meningitis" +"B26.2","Mumps encephalitis" +"B26.3","Mumps pancreatitis" +"B26.8","Mumps with other complications" +"B26.9","Mumps without complication" +"B27","INFECTIOUS MONONUCLEOSIS" +"B27.0","Gammaherpesviral mononucleosis" +"B27.1","Cytomegaloviral mononucleosis" +"B27.8","Other infectious mononucleosis" +"B27.9","Infectious mononucleosis, unspecified" +"B30","Viral conjunctivitis" +"B30.0","Keratoconjunctivitis due to adenovirus" +"B30.1","Conjunctivitis due to adenovirus" +"B30.2","Viral pharyngoconjunctivitis" +"B30.3","Acute epid haemorrhagic conjunctivitis (enteroviral)" +"B30.8","Other viral conjunctivitis" +"B30.9","Viral conjunctivitis, unspecified" +"B33","OTHER VIRAL DISEASES, NOT ELSEWHERE CLASSIFIED" +"B33.0","Epidemic myalgia" +"B33.1","Ross River disease" +"B33.2","Viral carditis" +"B33.3","Retrovirus infections, not elsewhere classified" +"B33.4","Hantavirus (cardio-)pulmonary syndrome [HPS] [HCPS]" +"B33.8","Other specified viral diseases" +"B34","Viral infection of unspecified site" +"B34.0","Adenovirus infection, unspecified" +"B34.1","Enterovirus infection, unspecified" +"B34.2","Coronavirus infection, unspecified" +"B34.3","Parvovirus infection, unspecified" +"B34.4","Papovavirus infection, unspecified" +"B34.8","Other viral infections of unspecified site" +"B34.9","Viral infection, unspecified" +"B35","DERMATOPHYTOSIS" +"B35.0","Tinea barbae and tinea capitis" +"B35.1","Tinea unguium" +"B35.2","Tinea manuum" +"B35.3","Tinea pedis" +"B35.4","Tinea corporis" +"B35.5","Tinea imbricata" +"B35.6","Tinea cruris" +"B35.8","Other dermatophytoses" +"B35.9","Dermatophytosis, unspecified" +"B36","OTHER SUPERFICIAL MYCOSES" +"B36.0","Pityriasis versicolor" +"B36.1","Tinea nigra" +"B36.2","White piedra" +"B36.3","Black piedra" +"B36.8","Other specified superficial mycoses" +"B36.9","Superficial mycosis, unspecified" +"B37","CANDIDIASIS" +"B37.0","Candidal stomatitis" +"B37.1","Pulmonary candidiasis" +"B37.2","Candidiasis of skin and nail" +"B37.3","Candidiasis of vulva and vagina" +"B37.4","Candidiasis of other urogenital sites" +"B37.5","Candidal meningitis" +"B37.6","Candidal endocarditis" +"B37.7","Candidal septicaemia" +"B37.8","Candidiasis of other sites" +"B37.9","Candidiasis, unspecified" +"B38","COCCIDIOIDOMYCOSIS" +"B38.0","Acute pulmonary coccidioidomycosis" +"B38.1","Chronic pulmonary coccidioidomycosis" +"B38.2","Pulmonary coccidioidomycosis, unspecified" +"B38.3","Cutaneous coccidioidomycosis" +"B38.4","Coccidioidomycosis meningitis" +"B38.7","Disseminated coccidioidomycosis" +"B38.8","Other forms of coccidioidomycosis" +"B38.9","Coccidioidomycosis, unspecified" +"B39","HISTOPLASMOSIS" +"B39.0","Acute pulmonary histoplasmosis capsulati" +"B39.1","Chronic pulmonary histoplasmosis capsulati" +"B39.2","Pulmonary histoplasmosis capsulati, unspecified" +"B39.3","Disseminated histoplasmosis capsulati" +"B39.4","Histoplasmosis capsulati, unspecified" +"B39.5","Histoplasmosis duboisii" +"B39.9","Histoplasmosis, unspecified" +"B40","BLASTOMYCOSIS" +"B40.0","Acute pulmonary blastomycosis" +"B40.1","Chronic pulmonary blastomycosis" +"B40.2","Pulmonary blastomycosis, unspecified" +"B40.3","Cutaneous blastomycosis" +"B40.7","Disseminated blastomycosis" +"B40.8","Other forms of blastomycosis" +"B40.9","Blastomycosis, unspecified" +"B41","PARACOCCIDIOIDOMYCOSIS" +"B41.0","Pulmonary paracoccidioidomycosis" +"B41.7","Disseminated paracoccidioidomycosis" +"B41.8","Other forms of paracoccidioidomycosis" +"B41.9","Paracoccidioidomycosis, unspecified" +"B42","SPOROTRICHOSIS" +"B42.0","Pulmonary sporotrichosis" +"B42.1","Lymphocutaneous sporotrichosis" +"B42.7","Disseminated sporotrichosis" +"B42.8","Other forms of sporotrichosis" +"B42.9","Sporotrichosis, unspecified" +"B43","CHROMOMYCOSIS AND PHAEOMYCOTIC ABSCESS" +"B43.0","Cutaneous chromomycosis" +"B43.1","Phaeomycotic brain abscess" +"B43.2","Subcutaneous phaeomycotic abscess and cyst" +"B43.8","Other forms of chromomycosis" +"B43.9","Chromomycosis, unspecified" +"B44","ASPERGILLOSIS" +"B44.0","Invasive pulmonary aspergillosis" +"B44.1","Other pulmonary aspergillosis" +"B44.2","Tonsillar aspergillosis" +"B44.7","Disseminated aspergillosis" +"B44.8","Other forms of aspergillosis" +"B44.9","Aspergillosis, unspecified" +"B45","CRYPTOCOCCOSIS" +"B45.0","Pulmonary cryptococcosis" +"B45.1","Cerebral cryptococcosis" +"B45.2","Cutaneous cryptococcosis" +"B45.3","Osseous cryptococcosis" +"B45.7","Disseminated cryptococcosis" +"B45.8","Other forms of cryptococcosis" +"B45.9","Cryptococcosis, unspecified" +"B46","Zygomycosis" +"B46.0","Pulmonary mucormycosis" +"B46.1","Rhinocerebral mucormycosis" +"B46.2","Gastrointestinal mucormycosis" +"B46.3","Cutaneous mucormycosis" +"B46.4","Disseminated mucormycosis" +"B46.5","Mucormycosis, unspecified" +"B46.8","Other zygomycoses" +"B46.9","Zygomycosis, unspecified" +"B47","MYCETOMA" +"B47.0","Eumycetoma" +"B47.1","Actinomycetoma" +"B47.9","Mycetoma, unspecified" +"B48","Other mycoses, not elsewhere classified" +"B48.0","Lobomycosis" +"B48.1","Rhinosporidiosis" +"B48.2","Allescheriasis" +"B48.3","Geotrichosis" +"B48.4","Penicillosis" +"B48.7","Opportunistic mycoses" +"B48.8","Other specified mycoses" +"B49","Unspecified mycosis" +"B50","PLASMODIUM FALCIPARUM MALARIA" +"B50.0","Plasmodium falciparum malaria with cerebral complications" +"B50.8","Other severe and complicated plasmodium falciparum malaria" +"B50.9","Plasmodium falciparum malaria, unspecified" +"B51","PLASMODIUM VIVAX MALARIA" +"B51.0","Plasmodium vivax malaria with rupture of spleen" +"B51.8","Plasmodium vivax malaria with other complications" +"B51.9","Plasmodium vivax malaria without complication" +"B52","PLASMODIUM MALARIAE MALARIA" +"B52.0","Plasmodium malariae malaria with nephropathy" +"B52.8","Plasmodium malariae malaria with other complications" +"B52.9","Plasmodium malariae malaria without complication" +"B53","Other parasitologically confirmed malaria" +"B53.0","Plasmodium ovale malaria" +"B53.1","Malaria due to simian plasmodia" +"B53.8","Other parasitologically confirmed malaria nec" +"B54","Unspecified malaria" +"B55","LEISHMANIASIS" +"B55.0","Visceral leishmaniasis" +"B55.1","Cutaneous leishmaniasis" +"B55.2","Mucocutaneous leishmaniasis" +"B55.9","Leishmaniasis, unspecified" +"B56","AFRICAN TRYPANOSOMIASIS" +"B56.0","Gambiense trypanosomiasis" +"B56.1","Rhodesiense trypanosomiasis" +"B56.9","African trypanosomiasis, unspecified" +"B57","Chagas disease" +"B57.0","Acute chagas' disease with heart involvement" +"B57.1","Acute chagas' disease without heart involvement" +"B57.2","Chagas' disease (chronic) with heart involvement" +"B57.3","Chagas' disease (chronic) with digestive system involvement" +"B57.4","Chagas' disease (chronic) with nervous system involvement" +"B57.5","Chagas' disease (chronic) with other organ involvement" +"B58","TOXOPLASMOSIS" +"B58.0","Toxoplasma oculopathy" +"B58.1","Toxoplasma hepatitis" +"B58.2","Toxoplasma meningoencephalitis" +"B58.3","Pulmonary toxoplasmosis" +"B58.8","Toxoplasmosis with other organ involvement" +"B58.9","Toxoplasmosis, unspecified" +"B59","PNEUMOCYSTOSIS" +"B60","OTHER PROTOZOAL DISEASES, NOT ELSEWHERE CLASSIFIED" +"B60.0","Babesiosis" +"B60.1","Acanthamoebiasis" +"B60.2","Naegleriasis" +"B60.8","Other specified protozoal diseases" +"B64","Unspecified protozoal disease" +"B65","SCHISTOSOMIASIS [BILHARZIASIS]" +"B65.0","Schistosom due schis haematobium [urin schistosom]" +"B65.1","Schistosom due schis mansoni [intest schistosom]" +"B65.2","Schistosomiasis due to Schistosoma japonicum" +"B65.3","Cercarial dermatitis" +"B65.8","Other schistosomiases" +"B65.9","Schistosomiasis, unspecified" +"B66","OTHER FLUKE INFECTIONS" +"B66.0","Opisthorchiasis" +"B66.1","Clonorchiasis" +"B66.2","Dicrocoeliasis" +"B66.3","Fascioliasis" +"B66.4","Paragonimiasis" +"B66.5","Fasciolopsiasis" +"B66.8","Other specified fluke infections" +"B66.9","Fluke infection, unspecified" +"B67","ECHINOCOCCOSIS" +"B67.0","Echinococcus granulosus infection of liver" +"B67.1","Echinococcus granulosus infection of lung" +"B67.2","Echinococcus granulosus infection of bone" +"B67.3","Echinococcus granulosus infection, other and multiple sites" +"B67.4","Echinococcus granulosus infection, unspecified" +"B67.5","Echinococcus multilocularis infection of liver" +"B67.6","Echinococcus multilocularis infection oth / multiple sites" +"B67.7","Echinococcus multilocularis infection, unspecified" +"B67.8","Echinococcosis, unspecified, of liver" +"B67.9","Echinococcosis, other and unspecified" +"B68","TAENIASIS" +"B68.0","Taenia solium taeniasis" +"B68.1","Taenia saginata taeniasis" +"B68.9","Taeniasis, unspecified" +"B69","CYSTICERCOSIS" +"B69.0","Cysticercosis of central nervous system" +"B69.1","Cysticercosis of eye" +"B69.8","Cysticercosis of other sites" +"B69.9","Cysticercosis, unspecified" +"B70","DIPHYLLOBOTHRIASIS AND SPARGANOSIS" +"B70.0","Diphyllobothriasis" +"B70.1","Sparganosis" +"B71","OTHER CESTODE INFECTIONS" +"B71.0","Hymenolepiasis" +"B71.1","Dipylidiasis" +"B71.8","Other specified cestode infections" +"B71.9","Cestode infection, unspecified" +"B72","Dracunculiasis" +"B73","ONCHOCERCIASIS" +"B74","FILARIASIS" +"B74.0","Filariasis due to wuchereria bancrofti" +"B74.1","Filariasis due to brugia malayi" +"B74.2","Filariasis due to brugia timori" +"B74.3","Loiasis" +"B74.4","Mansonelliasis" +"B74.8","Other filariases" +"B74.9","Filariasis, unspecified" +"B75","TRICHINELLOSIS" +"B76","HOOKWORM DISEASES" +"B76.0","Ancylostomiasis" +"B76.1","Necatoriasis" +"B76.8","Other hookworm diseases" +"B76.9","Hookworm disease, unspecified" +"B77","ASCARIASIS" +"B77.0","Ascariasis with intestinal complications" +"B77.8","Ascariasis with other complications" +"B77.9","Ascariasis, unspecified" +"B78","STRONGYLOIDIASIS" +"B78.0","Intestinal strongyloidiasis" +"B78.1","Cutaneous strongyloidiasis" +"B78.7","Disseminated strongyloidiasis" +"B78.9","Strongyloidiasis, unspecified" +"B79","TRICHURIASIS" +"B80","ENTEROBIASIS" +"B81","Other intestinal helminthiases, not elsewhere classified" +"B81.0","Anisakiasis" +"B81.1","Intestinal capillariasis" +"B81.2","Trichostrongyliasis" +"B81.3","Intestinal angiostrongyliasis" +"B81.4","Mixed intestinal helminthiases" +"B81.8","Other specified intestinal helminthiases" +"B82","Unspecified intestinal parasitism" +"B82.0","Intestinal helminthiasis, unspecified" +"B82.9","Intestinal parasitism, unspecified" +"B83","OTHER HELMINTHIASES" +"B83.0","Visceral larva migrans" +"B83.1","Gnathostomiasis" +"B83.2","Angiostrongyliasis due to parastrongylus cantonensis" +"B83.3","Syngamiasis" +"B83.4","Internal hirudiniasis" +"B83.8","Other specified helminthiases" +"B83.9","Helminthiasis, unspecified" +"B85","PEDICULOSIS AND PHTHIRIASIS" +"B85.0","Pediculosis due to pediculus humanus capitis" +"B85.1","Pediculosis due to Pediculus humanus corporis" +"B85.2","Pediculosis, unspecified" +"B85.3","Phthiriasis" +"B85.4","Mixed pediculosis and phthiriasis" +"B86","SCABIES" +"B87","Myiasis" +"B87.0","Cutaneous myiasis" +"B87.1","Wound myiasis" +"B87.2","Ocular myiasis" +"B87.3","Nasopharyngeal myiasis" +"B87.4","Aural myiasis" +"B87.8","Myiasis of other sites" +"B87.9","Myiasis, unspecified" +"B88","OTHER INFESTATIONS" +"B88.0","Other acariasis" +"B88.1","Tungiasis [sandflea infestation]" +"B88.2","Other arthropod infestations" +"B88.3","External hirudiniasis" +"B88.8","Other specified infestations" +"B88.9","Infestation, unspecified" +"B89","Unspecified parasitic disease" +"B90","SEQUELAE OF TUBERCULOSIS" +"B90.0","Sequelae of central nervous system tuberculosis" +"B90.1","Sequelae of genitourinary tuberculosis" +"B90.2","Sequelae of tuberculosis of bones and joints" +"B90.8","Sequelae of tuberculosis of other organs" +"B90.9","Sequelae of respiratory and unspecified tuberculosis" +"B91","SEQUELAE OF POLIOMYELITIS" +"B92","SEQUELAE OF LEPROSY" +"B94","Sequelae of other and unspecified infectious and parasitic diseases" +"B94.0","Sequelae of trachoma" +"B94.1","Sequelae of viral encephalitis" +"B94.2","Sequelae of viral hepatitis" +"B94.8","Sequelae of other specified infectious and parasitic diseases" +"B94.9","Sequelae of unspecified infectious or parasitic disease" +"B95","Streptococcus and staphylococcus as the cause of diseases classified to other chapters" +"B95.0","Streptococcus group A as cause of diseases classified to other chapters" +"B95.1","Streptococcus group B as cause of diseases classified to other chapters" +"B95.2","Streptococcus group D as cause of diseases classified to other chapters" +"B95.3","Streptococcus pneumoniae as cause of diseases classified other chapters" +"B95.4","Other streptococcus as cause of diseases classified to other chapters" +"B95.5","Unspecified streptococcus as cause of diseases classified to other chapters" +"B95.6","Staphylococcus aureus as cause of disease classified to other chapters" +"B95.7","Other staphylococcus as cause of diseases classified to other chapters" +"B95.8","Unspecified staphylococcus as cause of diseases classified to other chapters" +"B96","Other specified bacterial agents as the cause of diseases classified to other chapters" +"B96.0","Mycoplasma pneumoniae as cause diseases classified to other chapters" +"B96.1","Klebsiella pneumoniae as cause diseases classified to other chapters" +"B96.2","Escherichia coli as cause diseases classified to other chapters" +"B96.3","Haemophilus influenzae as cause diseases classified to other chapters" +"B96.4","Proteus (mirabilis)(morganii) as cause diseases classified to other chapters" +"B96.5","P.(aerugin)(mallei)(pseudomallei)as cause diseases classified to other chapters" +"B96.6","Bacillus fragilis as cause diseases classified to other chapters" +"B96.7","Clostridium perfringens as cause diseases classified to other chapters" +"B96.8","Other spec bact agents as cause diseases classified to other chapters" +"B97","VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSIFIED TO OTHER CHAPTERS" +"B97.0","Adenovirus as the cause of diseases classified to other chapters" +"B97.1","Enterovirus as the cause of diseases classified to other chapters" +"B97.2","Coronavirus as the cause of diseases classified to other chapters" +"B97.3","Retrovirus as the cause of diseases classified to other chapters" +"B97.4","Resp syncytial virusas the cause of diseases classified to other chapters" +"B97.5","Reovirus as the cause of diseases classified to other chapters" +"B97.6","Parvovirus as the cause of diseases classified to other chapters" +"B97.7","Papillomavirus as the cause of diseases classified to other chapters" +"B97.8","Oth viral agents as the cause of diseases classified to other chapters" +"B98","Other specified infectious agents as the cause of diseases classified to other chapters" +"B98.0","Helicobacter pylori [H.pylori] as the cause of diseases classified to other chapters" +"B98.1","Vibrio vulnificus as the cause of diseases classified to other chapters" +"B99","Other and unspecified infectious diseases" +"C00","MALIGNANT NEOPLASM OF LIP" +"C00.0","Malignant neoplasm, external upper lip" +"C00.1","Malignant neoplasm, external lower lip" +"C00.2","Malignant neoplasm, external lip, unspecified" +"C00.3","Malignant neoplasm, upper lip, inner aspect" +"C00.4","Malignant neoplasm, lower lip, inner aspect" +"C00.5","Malignant neoplasm, lip, unspecified, inner aspect" +"C00.6","Malignant neoplasm, commissure of lip" +"C00.8","Malignant neoplasm, overlapping lesion of lip" +"C00.9","Malignant neoplasm, lip, unspecified" +"C01","MALIGNANT NEOPLASM OF BASE OF TONGUE" +"C02","Malignant neoplasm of other and unspecified parts of tongue" +"C02.0","Malignant neoplasm, dorsal surface of tongue" +"C02.1","Malignant neoplasm, border of tongue" +"C02.2","Malignant neoplasm, ventral surface of tongue" +"C02.3","Malignant neoplasm, anterior two-thirds of tongue, part unspecified" +"C02.4","Malignant neoplasm, lingual tonsil" +"C02.8","Malignant neoplasm, overlapping lesion of tongue" +"C02.9","Malignant neoplasm, tongue, unspecified" +"C03","MALIGNANT NEOPLASM OF GUM" +"C03.0","Malignant neoplasm, upper gum" +"C03.1","Malignant neoplasm, lower gum" +"C03.9","Malignant neoplasm, gum, unspecified" +"C04","MALIGNANT NEOPLASM OF FLOOR OF MOUTH" +"C04.0","Malignant neoplasm, anterior floor of mouth" +"C04.1","Malignant neoplasm, lateral floor of mouth" +"C04.8","Malignant neoplasm, overlapping lesion of floor of mouth" +"C04.9","Malignant neoplasm, floor of mouth, unspecified" +"C05","MALIGNANT NEOPLASM OF PALATE" +"C05.0","Malignant neoplasm, hard palate" +"C05.1","Malignant neoplasm, soft palate" +"C05.2","Malignant neoplasm, uvula" +"C05.8","Malignant neoplasm, overlapping lesion of palate" +"C05.9","Malignant neoplasm, palate, unspecified" +"C06","Malignant neoplasm of other and unspecified parts of mouth" +"C06.0","Malignant neoplasm, cheek mucosa" +"C06.1","Malignant neoplasm, vestibule of mouth" +"C06.2","Malignant neoplasm, retromolar area" +"C06.8","Malignant neoplasm, overlapping lesion of other and unspecified parts of mouth" +"C06.9","Malignant neoplasm, mouth, unspecified" +"C07","MALIGNANT NEOPLASM OF PAROTID GLAND" +"C08","Malignant neoplasm of other and unspecified major salivary glands" +"C08.0","Malignant neoplasm, submandibular gland" +"C08.1","Malignant neoplasm, sublingual gland" +"C08.8","Malignant neoplasm, overlapping lesion of major salivary glands" +"C08.9","Malignant neoplasm, major salivary gland, unspecified" +"C09","MALIGNANT NEOPLASM OF TONSIL" +"C09.0","Malignant neoplasm, tonsillar fossa" +"C09.1","Malignant neoplasm, tonsillar pillar (anterior)(posterior)" +"C09.8","Malignant neoplasm, overlapping lesion of tonsil" +"C09.9","Malignant neoplasm, tonsil, unspecified" +"C10","Malignant neoplasm of oropharynx" +"C10.0","Malignant neoplasm, vallecula" +"C10.1","Malignant neoplasm, anterior surface of epiglottis" +"C10.2","Malignant neoplasm, lateral wall of oropharynx" +"C10.3","Malignant neoplasm, posterior wall of oropharynx" +"C10.4","Malignant neoplasm, branchial cleft" +"C10.8","Malignant neoplasm, overlapping lesion of oropharynx" +"C10.9","Malignant neoplasm, oropharynx, unspecified" +"C11","MALIGNANT NEOPLASM OF NASOPHARYNX" +"C11.0","Malignant neoplasm, superior wall of nasopharynx" +"C11.1","Malignant neoplasm, posterior wall of nasopharynx" +"C11.2","Malignant neoplasm, lateral wall of nasopharynx" +"C11.3","Malignant neoplasm, anterior wall of nasopharynx" +"C11.8","Malignant neoplasm, overlapping lesion of nasopharynx" +"C11.9","Malignant neoplasm, nasopharynx, unspecified" +"C12","MALIGNANT NEOPLASM OF PYRIFORM SINUS" +"C13","MALIGNANT NEOPLASM OF HYPOPHARYNX" +"C13.0","Malignant neoplasm, postcricoid region" +"C13.1","Malignant neoplasm, aryepiglottic fold, hypopharyngeal aspect" +"C13.2","Malignant neoplasm, posterior wall of hypopharynx" +"C13.8","Malignant neoplasm, overlapping lesion of hypopharynx" +"C13.9","Malignant neoplasm, hypopharynx, unspecified" +"C14","MALIGNANT NEOPLASM OF OTHER AND ILL-DEFINED SITES IN THE LIP, ORAL CAVITY AND PHARYNX" +"C14.0","Malignant neoplasm, pharynx, unspecified" +"C14.1","Malignant neoplasm of laryngopharynx" +"C14.2","Malignant neoplasm, waldeyer's ring" +"C14.8","Malignant neoplasm, overlapping lesion of lip, oral cavity and pharynx" +"C15","MALIGNANT NEOPLASM OF OESOPHAGUS" +"C15.0","Malignant neoplasm, cervical part of oesophagus" +"C15.1","Malignant neoplasm, thoracic part of oesophagus" +"C15.2","Malignant neoplasm, abdominal part of oesophagus" +"C15.3","Malignant neoplasm, upper third of oesophagus" +"C15.4","Malignant neoplasm, middle third of oesophagus" +"C15.5","Malignant neoplasm, lower third of oesophagus" +"C15.8","Malignant neoplasm, overlapping lesion of oesophagus" +"C15.9","Malignant neoplasm, oesophagus, unspecified" +"C16","MALIGNANT NEOPLASM OF STOMACH" +"C16.0","Malignant neoplasm, cardia" +"C16.1","Malignant neoplasm, fundus of stomach" +"C16.2","Malignant neoplasm, body of stomach" +"C16.3","Malignant neoplasm, pyloric antrum" +"C16.4","Malignant neoplasm, pylorus" +"C16.5","Malignant neoplasm, lesser curvature of stomach, unspecified" +"C16.6","Malignant neoplasm, greater curvature of stomach, unspecified" +"C16.8","Malignant neoplasm, overlapping lesion of stomach" +"C16.9","Malignant neoplasm, stomach, unspecified" +"C17","MALIGNANT NEOPLASM OF SMALL INTESTINE" +"C17.0","Malignant neoplasm, duodenum" +"C17.1","Malignant neoplasm, jejunum" +"C17.2","Malignant neoplasm, ileum" +"C17.3","Malignant neoplasm, meckel's diverticulum" +"C17.8","Malignant neoplasm, overlapping lesion of small intestine" +"C17.9","Malignant neoplasm, small intestine, unspecified" +"C18","MALIGNANT NEOPLASM OF COLON" +"C18.0","Malignant neoplasm, caecum" +"C18.1","Malignant neoplasm, appendix" +"C18.2","Malignant neoplasm, ascending colon" +"C18.3","Malignant neoplasm, hepatic flexure" +"C18.4","Malignant neoplasm, transverse colon" +"C18.5","Malignant neoplasm, splenic flexure" +"C18.6","Malignant neoplasm, descending colon" +"C18.7","Malignant neoplasm, sigmoid colon" +"C18.8","Malignant neoplasm, overlapping lesion of colon" +"C18.9","Malignant neoplasm, colon, unspecified" +"C19","MALIGNANT NEOPLASM OF RECTOSIGMOID JUNCTION" +"C20","MALIGNANT NEOPLASM OF RECTUM" +"C21","MALIGNANT NEOPLASM OF ANUS AND ANAL CANAL" +"C21.0","Malignant neoplasm, anus, unspecified" +"C21.1","Malignant neoplasm, anal canal" +"C21.2","Malignant neoplasm, cloacogenic zone" +"C21.8","Malignant neoplasm, overlapping lesion of rectum, anus and anal canal" +"C22","MALIGNANT NEOPLASM OF LIVER AND INTRAHEPATIC BILE DUCTS" +"C22.0","Malignant neoplasm, liver cell carcinoma" +"C22.1","Malignant neoplasm, intrahepatic bile duct carcinoma" +"C22.2","Malignant neoplasm, hepatoblastoma" +"C22.3","Malignant neoplasm, angiosarcoma of liver" +"C22.4","Malignant neoplasm, other sarcomas of liver" +"C22.7","Malignant neoplasm, other specified carcinomas of liver" +"C22.9","Malignant neoplasm, liver, unspecified" +"C23","MALIGNANT NEOPLASM OF GALLBLADDER" +"C24","Malignant neoplasm of other and unspecified parts of biliary tract" +"C24.0","Malignant neoplasm, extrahepatic bile duct" +"C24.1","Malignant neoplasm, ampulla of vater" +"C24.8","Malignant neoplasm, overlapping lesion of biliary tract" +"C24.9","Malignant neoplasm, biliary tract, unspecified" +"C25","MALIGNANT NEOPLASM OF PANCREAS" +"C25.0","Malignant neoplasm, head of pancreas" +"C25.1","Malignant neoplasm, body of pancreas" +"C25.2","Malignant neoplasm, tail of pancreas" +"C25.3","Malignant neoplasm, pancreatic duct" +"C25.4","Malignant neoplasm, endocrine pancreas" +"C25.7","Malignant neoplasm, other parts of pancreas" +"C25.8","Malignant neoplasm, overlapping lesion of pancreas" +"C25.9","Malignant neoplasm, pancreas, unspecified" +"C26","MALIGNANT NEOPLASM OF OTHER AND ILL-DEFINED DIGESTIVE ORGANS" +"C26.0","Malignant neoplasm, intestinal tract, part unspecified" +"C26.1","Malignant neoplasm, spleen" +"C26.8","Malignant neoplasm, overlapping lesion of digestive system" +"C26.9","Malignant neoplasm, ill-defined sites within the digestive system" +"C30","MALIGNANT NEOPLASM OF NASAL CAVITY AND MIDDLE EAR" +"C30.0","Malignant neoplasm, nasal cavity" +"C30.1","Malignant neoplasm, middle ear" +"C31","MALIGNANT NEOPLASM OF ACCESSORY SINUSES" +"C31.0","Malignant neoplasm, maxillary sinus" +"C31.1","Malignant neoplasm, ethmoidal sinus" +"C31.2","Malignant neoplasm, frontal sinus" +"C31.3","Malignant neoplasm, sphenoidal sinus" +"C31.8","Malignant neoplasm, overlapping lesion of accessory sinuses" +"C31.9","Malignant neoplasm, accessory sinus, unspecified" +"C32","MALIGNANT NEOPLASM OF LARYNX" +"C32.0","Malignant neoplasm, glottis" +"C32.1","Malignant neoplasm, supraglottis" +"C32.2","Malignant neoplasm, subglottis" +"C32.3","Malignant neoplasm, laryngeal cartilage" +"C32.8","Malignant neoplasm, overlapping lesion of larynx" +"C32.9","Malignant neoplasm, larynx, unspecified" +"C33","MALIGNANT NEOPLASM OF TRACHEA" +"C34","MALIGNANT NEOPLASM OF BRONCHUS AND LUNG" +"C34.0","Malignant neoplasm, main bronchus" +"C34.1","Malignant neoplasm, upper lobe, bronchus or lung" +"C34.2","Malignant neoplasm, middle lobe, bronchus or lung" +"C34.3","Malignant neoplasm, lower lobe, bronchus or lung" +"C34.8","Malignant neoplasm, overlapping lesion of bronchus and lung" +"C34.9","Malignant neoplasm, bronchus or lung, unspecified" +"C37","MALIGNANT NEOPLASM OF THYMUS" +"C38","Malignant neoplasm of heart, mediastinum and pleura" +"C38.0","Malignant neoplasm, heart" +"C38.1","Malignant neoplasm, anterior mediastinum" +"C38.2","Malignant neoplasm, posterior mediastinum" +"C38.3","Malignant neoplasm, mediastinum, part unspecified" +"C38.4","Malignant neoplasm, pleura" +"C38.8","Malignant neoplasm, overlapping lesion of heart, mediastinum and pleura" +"C39","Malignant neoplasm of other and ill-defined sites in the respiratory system and intrathoracic organs" +"C39.0","Malignant neoplasm, upper respiratory tract, part unspecified" +"C39.8","Malignant neoplasm, overlapping lesion of respiratory and intrathoracic organs" +"C39.9","Malignant neoplasm, ill-defined sites within the respiratory system" +"C40","Malignant neoplasm of bone and articular cartilage of limbs" +"C40.0","Malignant neoplasm, scapula and long bones of upper limb" +"C40.1","Malignant neoplasm, short bones of upper limb" +"C40.2","Malignant neoplasm, long bones of lower limb" +"C40.3","Malignant neoplasm, short bones of lower limb" +"C40.8","Malignant neoplasm, overlapping lesion of bone and articular cartilage of limbs" +"C40.9","Malignant neoplasm, bone and articular cartilage of limb, unspecified" +"C41","Malignant neoplasm of bone and articular cartilage of other and unspecified sites" +"C41.0","Malignant neoplasm, bones of skull and face" +"C41.1","Malignant neoplasm, mandible" +"C41.2","Malignant neoplasm, vertebral column" +"C41.3","Malignant neoplasm, ribs, sternum and clavicle" +"C41.4","Malignant neoplasm, pelvic bones, sacrum and coccyx" +"C41.8","Malignant neoplasm, overlapping lesion of bone and articular cartilage" +"C41.9","Malignant neoplasm, bone and articular cartilage, unspecified" +"C43","Malignant melanoma of skin" +"C43.0","Malignant melanoma of lip" +"C43.1","Malignant melanoma of eyelid, including canthus" +"C43.2","Malignant melanoma of ear and external auricular canal" +"C43.3","Malignant melanoma of other and unspecified parts of face" +"C43.4","Malignant melanoma of scalp and neck" +"C43.5","Malignant melanoma of trunk" +"C43.6","Malignant melanoma of upper limb, including shoulder" +"C43.7","Malignant melanoma of lower limb, including hip" +"C43.8","Malignant neoplasm, overlapping malignant melanoma of skin" +"C43.9","Malignant melanoma of skin, unspecified" +"C44","Other malignant neoplasms of skin" +"C44.0","Malignant neoplasm, skin of lip" +"C44.1","Malignant neoplasm, skin of eyelid, including canthus" +"C44.2","Malignant neoplasm, skin of ear and external auricular canal" +"C44.3","Malignant neoplasm, skin of other and unspecified parts of face" +"C44.4","Malignant neoplasm, skin of scalp and neck" +"C44.5","Malignant neoplasm, skin of trunk" +"C44.6","Malignant neoplasm, skin of upper limb, including shoulder" +"C44.7","Malignant neoplasm, skin of lower limb, including hip" +"C44.8","Malignant neoplasm, overlapping lesion of skin" +"C44.9","Malignant neoplasm of skin, unspecified" +"C45","MESOTHELIOMA" +"C45.0","Mesothelioma of pleura" +"C45.1","Mesothelioma of peritoneum" +"C45.2","Mesothelioma of pericardium" +"C45.7","Mesothelioma of other sites" +"C45.9","Mesothelioma, unspecified" +"C46","Kaposi sarcoma" +"C46.0","Kaposi's sarcoma of skin" +"C46.1","Kaposi's sarcoma of soft tissue" +"C46.2","Kaposi's sarcoma of palate" +"C46.3","Kaposi's sarcoma of lymph nodes" +"C46.7","Kaposi's sarcoma of other sites" +"C46.8","Kaposi's sarcoma of multiple organs" +"C46.9","Kaposi's sarcoma, unspecified" +"C47","MALIGNANT NEOPLASM OF PERIPHERAL NERVES AND AUTONOMIC NERVOUS SYSTEM" +"C47.0","Malignant neoplasm, peripheral nerves of head, face and neck" +"C47.1","Malignant neoplasm, peripheral nerves of upper limb, including shoulder" +"C47.2","Malignant neoplasm, peripheral nerves of lower limb, including hip" +"C47.3","Malignant neoplasm, peripheral nerves of thorax" +"C47.4","Malignant neoplasm, peripheral nerves of abdomen" +"C47.5","Malignant neoplasm, peripheral nerves of pelvis" +"C47.6","Malignant neoplasm, peripheral nerves of trunk, unspecified" +"C47.8","Malignant neoplasm, overlapping lesion peripheral nerve/autonomic nervous syst" +"C47.9","Malignant neoplasm, peripheral nerves and autonomic nervous system, unspecified" +"C48","Malignant neoplasm of retroperitoneum and peritoneum" +"C48.0","Malignant neoplasm, retroperitoneum" +"C48.1","Malignant neoplasm, specified parts of peritoneum" +"C48.2","Malignant neoplasm, peritoneum, unspecified" +"C48.8","Malignant neoplasm, overlapping lesion of retroperitoneum and peritoneum" +"C49","Malignant neoplasm of other connective and soft tissue" +"C49.0","Malignant neoplasm, connective and soft tissue of head, face and neck" +"C49.1","Malignant neoplasm, connective and soft tissue of upper limb, including shoulder" +"C49.2","Malignant neoplasm, connective and soft tissue of lower limb, including hip" +"C49.3","Malignant neoplasm, connective and soft tissue of thorax" +"C49.4","Malignant neoplasm, connective and soft tissue of abdomen" +"C49.5","Malignant neoplasm, connective and soft tissue of pelvis" +"C49.6","Malignant neoplasm, connective and soft tissue of trunk, unspecified" +"C49.8","Malignant neoplasm, overlapping lesion of connective and soft tissue" +"C49.9","Malignant neoplasm, connective and soft tissue, unspecified" +"C50","MALIGNANT NEOPLASM OF BREAST" +"C50.0","Malignant neoplasm, nipple and areola" +"C50.1","Malignant neoplasm, central portion of breast" +"C50.2","Malignant neoplasm, upper-inner quadrant of breast" +"C50.3","Malignant neoplasm, lower-inner quadrant of breast" +"C50.4","Malignant neoplasm, upper-outer quadrant of breast" +"C50.5","Malignant neoplasm, lower-outer quadrant of breast" +"C50.6","Malignant neoplasm, axillary tail of breast" +"C50.8","Malignant neoplasm, overlapping lesion of breast" +"C50.9","Malignant neoplasm, breast, unspecified" +"C51","Malignant neoplasm of vulva" +"C51.0","Malignant neoplasm, labium majus" +"C51.1","Malignant neoplasm, labium minus" +"C51.2","Malignant neoplasm, clitoris" +"C51.8","Malignant neoplasm, overlapping lesion of vulva" +"C51.9","Malignant neoplasm, vulva, unspecified" +"C52","Malignant neoplasm of vagina" +"C53","Malignant neoplasm of cervix uteri" +"C53.0","Malignant neoplasm, endocervix" +"C53.1","Malignant neoplasm, exocervix" +"C53.8","Malignant neoplasm, overlapping lesion of cervix uteri" +"C53.9","Malignant neoplasm, cervix uteri, unspecified" +"C54","Malignant neoplasm of corpus uteri" +"C54.0","Malignant neoplasm, isthmus uteri" +"C54.1","Malignant neoplasm, endometrium" +"C54.2","Malignant neoplasm, myometrium" +"C54.3","Malignant neoplasm, fundus uteri" +"C54.8","Malignant neoplasm, overlapping lesion of corpus uteri" +"C54.9","Malignant neoplasm, corpus uteri, unspecified" +"C55","Malignant neoplasm of uterus, part unspecified" +"C56","Malignant neoplasm of ovary" +"C57","Malignant neoplasm of other and unspecified female genital organs" +"C57.0","Malignant neoplasm, fallopian tube" +"C57.1","Malignant neoplasm, broad ligament" +"C57.2","Malignant neoplasm, round ligament" +"C57.3","Malignant neoplasm, parametrium" +"C57.4","Malignant neoplasm, uterine adnexa, unspecified" +"C57.7","Malignant neoplasm, other specified female genital organs" +"C57.8","Malignant neoplasm, overlapping lesion of female genital organs" +"C57.9","Malignant neoplasm, female genital organ, unspecified" +"C58","MALIGNANT NEOPLASM OF PLACENTA" +"C60","MALIGNANT NEOPLASM OF PENIS" +"C60.0","Malignant neoplasm, prepuce" +"C60.1","Malignant neoplasm, glans penis" +"C60.2","Malignant neoplasm, body of penis" +"C60.8","Malignant neoplasm, overlapping lesion of penis" +"C60.9","Malignant neoplasm, penis, unspecified" +"C61","MALIGNANT NEOPLASM OF PROSTATE" +"C62","MALIGNANT NEOPLASM OF TESTIS" +"C62.0","Malignant neoplasm, undescended testis" +"C62.1","Malignant neoplasm, descended testis" +"C62.9","Malignant neoplasm, testis, unspecified" +"C63","Malignant neoplasm of other and unspecified male genital organs" +"C63.0","Malignant neoplasm, epididymis" +"C63.1","Malignant neoplasm, spermatic cord" +"C63.2","Malignant neoplasm, scrotum" +"C63.7","Malignant neoplasm, other specified male genital organs" +"C63.8","Malignant neoplasm, overlapping lesion of male genital organs" +"C63.9","Malignant neoplasm, male genital organ, unspecified" +"C64","Malignant neoplasm of kidney, except renal pelvis" +"C65","MALIGNANT NEOPLASM OF RENAL PELVIS" +"C66","MALIGNANT NEOPLASM OF URETER" +"C67","MALIGNANT NEOPLASM OF BLADDER" +"C67.0","Malignant neoplasm, trigone of bladder" +"C67.1","Malignant neoplasm, dome of bladder" +"C67.2","Malignant neoplasm, lateral wall of bladder" +"C67.3","Malignant neoplasm, anterior wall of bladder" +"C67.4","Malignant neoplasm, posterior wall of bladder" +"C67.5","Malignant neoplasm, bladder neck" +"C67.6","Malignant neoplasm, ureteric orifice" +"C67.7","Malignant neoplasm, urachus" +"C67.8","Malignant neoplasm, overlapping lesion of bladder" +"C67.9","Malignant neoplasm, bladder, unspecified" +"C68","Malignant neoplasm of other and unspecified urinary organs" +"C68.0","Malignant neoplasm, urethra" +"C68.1","Malignant neoplasm, paraurethral gland" +"C68.8","Malignant neoplasm, overlapping lesion of urinary organs" +"C68.9","Malignant neoplasm, urinary organ, unspecified" +"C69","MALIGNANT NEOPLASM OF EYE AND ADNEXA" +"C69.0","Malignant neoplasm, conjunctiva" +"C69.1","Malignant neoplasm, cornea" +"C69.2","Malignant neoplasm, retina" +"C69.3","Malignant neoplasm, choroid" +"C69.4","Malignant neoplasm, ciliary body" +"C69.5","Malignant neoplasm, lacrimal gland and duct" +"C69.6","Malignant neoplasm, orbit" +"C69.8","Malignant neoplasm, overlapping lesion of eye and adnexa" +"C69.9","Malignant neoplasm, eye, unspecified" +"C70","MALIGNANT NEOPLASM OF MENINGES" +"C70.0","Malignant neoplasm, cerebral meninges" +"C70.1","Malignant neoplasm, spinal meninges" +"C70.9","Malignant neoplasm, meninges, unspecified" +"C71","MALIGNANT NEOPLASM OF BRAIN" +"C71.0","Malignant neoplasm, cerebrum, except lobes and ventricles" +"C71.1","Malignant neoplasm, frontal lobe" +"C71.2","Malignant neoplasm, temporal lobe" +"C71.3","Malignant neoplasm, parietal lobe" +"C71.4","Malignant neoplasm, occipital lobe" +"C71.5","Malignant neoplasm, cerebral ventricle" +"C71.6","Malignant neoplasm, cerebellum" +"C71.7","Malignant neoplasm, brain stem" +"C71.8","Malignant neoplasm, overlapping lesion of brain" +"C71.9","Malignant neoplasm, brain, unspecified" +"C72","Malignant neoplasm of spinal cord, cranial nerves and other parts of central nervous system" +"C72.0","Malignant neoplasm, spinal cord" +"C72.1","Malignant neoplasm, cauda equina" +"C72.2","Malignant neoplasm, olfactory nerve" +"C72.3","Malignant neoplasm, optic nerve" +"C72.4","Malignant neoplasm, acoustic nerve" +"C72.5","Malignant neoplasm, other and unspecified cranial nerves" +"C72.8","Malignant neoplasm, overlapping lesion of brain and other parts of cns" +"C72.9","Malignant neoplasm, central nervous system, unspecified" +"C73","MALIGNANT NEOPLASM OF THYROID GLAND" +"C74","MALIGNANT NEOPLASM OF ADRENAL GLAND" +"C74.0","Malignant neoplasm, cortex of adrenal gland" +"C74.1","Malignant neoplasm, medulla of adrenal gland" +"C74.9","Malignant neoplasm, adrenal gland, unspecified" +"C75","MALIGNANT NEOPLASM OF OTHER ENDOCRINE GLANDS AND RELATED STRUCTURES" +"C75.0","Malignant neoplasm, parathyroid gland" +"C75.1","Malignant neoplasm, pituitary gland" +"C75.2","Malignant neoplasm, craniopharyngeal duct" +"C75.3","Malignant neoplasm, pineal gland" +"C75.4","Malignant neoplasm, carotid body" +"C75.5","Malignant neoplasm, aortic body and other paraganglia" +"C75.8","Malignant neoplasm, pluriglandular involvement, unspecified" +"C75.9","Malignant neoplasm, endocrine gland, unspecified" +"C76","MALIGNANT NEOPLASM OF OTHER AND ILL-DEFINED SITES" +"C76.0","Malignant neoplasm, head, face and neck" +"C76.1","Malignant neoplasm, thorax" +"C76.2","Malignant neoplasm, abdomen" +"C76.3","Malignant neoplasm, pelvis" +"C76.4","Malignant neoplasm, upper limb" +"C76.5","Malignant neoplasm, lower limb" +"C76.7","Malignant neoplasm, other ill-defined sites" +"C76.8","Malignant neoplasm, overlapping lesion of other and ill-defined sites" +"C77","Secondary and unspecified malignant neoplasm of lymph nodes" +"C77.0","Secondary malignant neoplasm, lymph nodes of head, face and neck" +"C77.1","Secondary malignant neoplasm, intrathoracic lymph nodes" +"C77.2","Secondary malignant neoplasm, intra-abdominal lymph nodes" +"C77.3","Secondary malignant neoplasm, axillary and upper limb lymph nodes" +"C77.4","Secondary malignant neoplasm, inguinal and lower limb lymph nodes" +"C77.5","Secondary malignant neoplasm, intrapelvic lymph nodes" +"C77.8","Secondary malignant neoplasm, lymph nodes of multiple regions" +"C77.9","Secondary malignant neoplasm, lymph node, unspecified" +"C78","Secondary malignant neoplasm of respiratory and digestive organs" +"C78.0","Secondary malignant neoplasm of lung" +"C78.1","Secondary malignant neoplasm of mediastinum" +"C78.2","Secondary malignant neoplasm of pleura" +"C78.3","Secondary malignant neoplasm, other and unspecified respiratory organs" +"C78.4","Secondary malignant neoplasm of small intestine" +"C78.5","Secondary malignant neoplasm of large intestine and rectum" +"C78.6","Sec malignant neoplasm of retroperitoneum and peritoneum" +"C78.7","Secondary malignant neoplasm of liver" +"C78.8","Sec malignant neoplasm of other and unspec digestive organs" +"C79","Secondary malignant neoplasm of other and unspecified sites" +"C79.0","Secondary malignant neoplasm of kidney and renal pelvis" +"C79.1","Sec malignant neo bladder and oth and unspec urinary organ" +"C79.2","Secondary malignant neoplasm of skin" +"C79.3","Secondary malignant neoplasm of brain and cerebral meninges" +"C79.4","Sec malignant neo of other and unspec parts of nervous sys" +"C79.5","Secondary malignant neoplasm of bone and bone marrow" +"C79.6","Secondary malignant neoplasm of ovary" +"C79.7","Secondary malignant neoplasm of adrenal gland" +"C79.8","Secondary malignant neoplasm of other specified sites" +"C79.9","Secondary malignant neoplasm, unspecified site" +"C80","Malignant neoplasm without specification of site" +"C80.0","Malignant neoplasm, primary site unknown, so stated" +"C80.9","Malignant neoplasm, unspecified" +"C81","Hodgkin lymphoma" +"C81.0","Hodgkin's disease, Lymphocytic predominance" +"C81.1","Hodgkin's disease, Nodular sclerosis" +"C81.2","Hodgkin's disease, Mixed cellularity" +"C81.3","Hodgkin's disease, Lymphocytic depletion" +"C81.4","Lymphocyte-rich classical Hodgkin lymphoma" +"C81.7","Other Hodgkin's disease" +"C81.9","Hodgkin's disease, unspecified" +"C82","Follicular lymphoma" +"C82.0","Follicular non-hodgkin's lymphoma, Small cleaved cell, follicular" +"C82.1","Follicular non-hodgkin's lymphoma, Mixed small cleaved and large cell, follicular" +"C82.2","Follicular non-hodgkin's lymphoma, Large cell, follicular" +"C82.3","Follicular lymphoma grade IIIa" +"C82.4","Follicular lymphoma grade IIIb" +"C82.5","Diffuse follicle centre lymphoma" +"C82.6","Cutaneous follicle centre lymphoma" +"C82.7","Other types of follicular non-Hodgkin's lymphoma" +"C82.9","Follicular non-Hodgkin's lymphoma, unspecified" +"C83","Non-follicular lymphoma" +"C83.0","Diffuse non-hodgkin's lymphoma, Small cell (diffuse)" +"C83.1","Diffuse non-hodgkin's lymphoma, Small cleaved cell (diffuse)" +"C83.2","Diffuse non-hodgkin's lymphoma, Mixed small and large cell (diffuse)" +"C83.3","Diffuse non-hodgkin's lymphoma, Large cell (diffuse)" +"C83.4","Diffuse non-hodgkin's lymphoma, Immunoblastic (diffuse)" +"C83.5","Diffuse non-hodgkin's lymphoma, Lymphoblastic (diffuse)" +"C83.6","Diffuse non-hodgkin's lymphoma, Undifferentiated (diffuse)" +"C83.7","Diffuse non-hodgkin's lymphoma, Burkitt's tumour" +"C83.8","Other types of diffuse non-Hodgkin's lymphoma" +"C83.9","Diffuse non-hodgkin's lymphoma, unspecified" +"C84","Mature T/NK-cell lymphomas" +"C84.0","Peripheral and cutaneous T-cell lymphoma, Mycosis fungoides" +"C84.1","Peripheral and cutaneous T-cell lymphoma, Sezary's disease" +"C84.2","Peripheral and cutaneous T-cell lymphoma, T-zone lymphoma" +"C84.3","Peripheral and cutaneous T-cell lymphoma, Lymphoepithelioid lymphoma" +"C84.4","Peripheral T-cell lymphoma" +"C84.5","Other and unspecified T-cell lymphomas" +"C84.6","Anaplastic large cell lymphoma, ALK-positive" +"C84.7","Anaplastic large cell lymphoma, ALK-negative" +"C84.8","Cutaneous T-cell lymphoma, unspecified" +"C84.9","Mature T/NK-cell lymphoma, unspecified" +"C85","Other and unspecified types of non-Hodgkin lymphoma" +"C85.0","Lymphosarcoma" +"C85.1","B-cell lymphoma, unspecified" +"C85.2","Mediastinal (thymic) large B-cell lymphoma" +"C85.7","Other specified types of non-Hodgkin's lymphoma" +"C85.9","non-Hodgkin's lymphoma, unspecified type" +"C86","Other specified types of T/NK-cell lymphoma" +"C86.0","Extranodal NK/T-cell lymphoma, nasal type" +"C86.1","Hepatosplenic T-cell lymphoma" +"C86.2","Enteropathy-type (intestinal) T-cell lymphoma" +"C86.3","Subcutaneous panniculitis-like T-cell lymphoma" +"C86.4","Blastic NK-cell lymphoma" +"C86.5","Angioimmunoblastic T-cell lymphoma" +"C86.6","Primary cutaneous CD30-positive T-cell proliferations" +"C88","MALIGNANT IMMUNOPROLIFERATIVE DISEASES" +"C88.0","Waldenstram's macroglobulinaemia" +"C88.1","Alpha heavy chain disease" +"C88.2","Gamma heavy chain disease" +"C88.3","Immunoproliferative small intestinal disease" +"C88.4","Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue [MALT-lyphoma]" +"C88.7","Other malignant immunoproliferative diseases" +"C88.9","Malignant immunoproliferative diseases, unspecified" +"C90","MULTIPLE MYELOMA AND MALIGNANT PLASMA CELL NEOPLASMS" +"C90.0","Multiple myeloma" +"C90.1","Plasma cell leukaemia" +"C90.2","Plasmacytoma, extramedullary" +"C90.3","Solitary plasmacytoma" +"C91","Lymphoid leukaemia" +"C91.0","Acute lymphoblastic leukaemia" +"C91.1","Chronic lymphocytic leukaemia" +"C91.2","Subacute lymphocytic leukaemia" +"C91.3","Prolymphocytic leukaemia" +"C91.4","Hairy-cell leukaemia" +"C91.5","Adult T-cell leukaemia" +"C91.6","Prolymphocytic leukaemia of T-cell type" +"C91.7","Other lymphoid leukaemia" +"C91.8","Mature B-cell leukaemia Burkitt-type" +"C91.9","Lymphoid leukaemia, unspecified" +"C92","MYELOID LEUKAEMIA" +"C92.0","Acute myeloid leukaemia" +"C92.1","Chronic myeloid leukaemia" +"C92.2","Subacute myeloid leukaemia" +"C92.3","Myeloid sarcoma" +"C92.4","Acute promyelocytic leukaemia" +"C92.5","Acute myelomonocytic leukaemia" +"C92.6","Acute myeloid leukaemia with 11q23-abnormality" +"C92.7","Other myeloid leukaemia" +"C92.8","Acute myeloid leukaemia with multilineage dysplasia" +"C92.9","Myeloid leukaemia, unspecified" +"C93","MONOCYTIC LEUKAEMIA" +"C93.0","Acute monocytic leukaemia" +"C93.1","Chronic monocytic leukaemia" +"C93.2","Subacute monocytic leukaemia" +"C93.3","Juvenile myelomonocytic leukaemia" +"C93.7","Other monocytic leukaemia" +"C93.9","Monocytic leukaemia, unspecified" +"C94","OTHER LEUKAEMIAS OF SPECIFIED CELL TYPE" +"C94.0","Acute erythraemia and erythroleukaemia" +"C94.1","Chronic erythraemia" +"C94.2","Acute megakaryoblastic leukaemia" +"C94.3","Mast cell leukaemia" +"C94.4","Acute panmyelosis" +"C94.5","Acute myelofibrosis" +"C94.6","Myelodysplastic and myeloproliferative disease, not elsewhere classified" +"C94.7","Other specified leukaemias" +"C95","Leukaemia of unspecified cell type" +"C95.0","Acute leukaemia of unspecified cell type" +"C95.1","Chronic leukaemia of unspecified cell type" +"C95.2","Subacute leukaemia of unspecified cell type" +"C95.7","Other leukaemia of unspecified cell type" +"C95.9","Leukaemia, unspecified" +"C96","Other and unspecified malignant neoplasms of lymphoid, haematopoietic and related tissue" +"C96.0","Letterer-siwe disease" +"C96.1","Malignant histiocytosis" +"C96.2","Malignant mast cell tumour" +"C96.3","True histiocytic lymphoma" +"C96.4","Sarcoma of dendritic cells (accessory cells)" +"C96.5","Multifocal and unisystemic Langerhans-cell histiocytosis" +"C96.6","Unifocal Langerhans-cell histiocytosis" +"C96.7","Other specified malignant neoplasm lymphoid, hematopoietic & related tissue" +"C96.8","Histiocytic sarcoma" +"C96.9","Malignant neoplasm of lymphoid, haematopoietic and related tissue, unspecified" +"C97","MALIGNANT NEOPLASMS OF INDEPENDENT (PRIMARY) MULTIPLE SITES" +"D00","Carcinoma in situ of oral cavity, oesophagus and stomach" +"D00.0","Carcinoma in situ of lip, oral cavity and pharynx" +"D00.1","Carcinoma in situ of oesophagus" +"D00.2","Carcinoma in situ of stomach" +"D01","Carcinoma in situ of other and unspecified digestive organs" +"D01.0","Carcinoma in situ of colon" +"D01.1","Carcinoma in situ of rectosigmoid junction" +"D01.2","Carcinoma in situ of rectum" +"D01.3","Carcinoma in situ of anus and anal canal" +"D01.4","Carcinoma in situ of other and unspecified parts of intestine" +"D01.5","Carcinoma in situ of liver, gallbladder and bile ducts" +"D01.7","Carcinoma in situ of other specified digestive organs" +"D01.9","Carcinoma in situ of digestive organ, unspecified" +"D02","Carcinoma in situ of middle ear and respiratory system" +"D02.0","Carcinoma in situ of larynx" +"D02.1","Carcinoma in situ of trachea" +"D02.2","Carcinoma in situ of bronchus and lung" +"D02.3","Carcinoma in situ of other parts of respiratory system" +"D02.4","Carcinoma in situ of respiratory system, unspecified" +"D03","Melanoma in situ" +"D03.0","Melanoma in situ of lip" +"D03.1","Melanoma in situ of eyelid, including canthus" +"D03.2","Melanoma in situ of ear and external auricular canal" +"D03.3","Melanoma in situ of other and unspecified parts of face" +"D03.4","Melanoma in situ of scalp and neck" +"D03.5","Melanoma in situ of trunk" +"D03.6","Melanoma in situ of upper limb, including shoulder" +"D03.7","Melanoma in situ of lower limb, including hip" +"D03.8","Melanoma in situ of other sites" +"D03.9","Melanoma in situ, unspecified" +"D04","Carcinoma in situ of skin" +"D04.0","Carcinoma in situ skin of lip" +"D04.1","Carcinoma in situ skin of eyelid, including canthus" +"D04.2","Carcinoma in situ skin of ear and external auricular canal" +"D04.3","Carcinoma in situ skin of other and unspecified parts of face" +"D04.4","Carcinoma in situ skin of scalp and neck" +"D04.5","Carcinoma in situ skin of trunk" +"D04.6","Carcinoma in situ skin of upper limb, including shoulder" +"D04.7","Carcinoma in situ skin of lower limb, including hip" +"D04.8","Carcinoma in situ skin of other sites" +"D04.9","Carcinoma in situ skin, unspecified" +"D05","Carcinoma in situ of breast" +"D05.0","Lobular carcinoma in situ" +"D05.1","Intraductal carcinoma in situ" +"D05.7","Other carcinoma in situ of breast" +"D05.9","Carcinoma in situ of breast, unspecified" +"D06","Carcinoma in situ of cervix uteri" +"D06.0","Carcinoma in situ of endocervix" +"D06.1","Carcinoma in situ of exocervix" +"D06.7","Carcinoma in situ of other parts of cervix" +"D06.9","Carcinoma in situ of cervix, unspecified" +"D07","Carcinoma in situ of other and unspecified genital organs" +"D07.0","Carcinoma in situ of endometrium" +"D07.1","Carcinoma in situ of vulva" +"D07.2","Carcinoma in situ of vagina" +"D07.3","Carcinoma in situ of other and unspecified female genital organs" +"D07.4","Carcinoma in situ of penis" +"D07.5","Carcinoma in situ of prostate" +"D07.6","Carcinoma in situ of other and unspecified male genital organs" +"D09","Carcinoma in situ of other and unspecified sites" +"D09.0","Carcinoma in situ of bladder" +"D09.1","Carcinoma in situ of other and unspecified urinary organs" +"D09.2","Carcinoma in situ of eye" +"D09.3","Carcinoma in situ of thyroid and other endocrine glands" +"D09.7","Carcinoma in situ of other specified sites" +"D09.9","Carcinoma in situ, unspecified" +"D10","BENIGN NEOPLASM OF MOUTH AND PHARYNX" +"D10.0","Benign neoplasm, lip" +"D10.1","Benign neoplasm, tongue" +"D10.2","Benign neoplasm, floor of mouth" +"D10.3","Benign neoplasm, other and unspecified parts of mouth" +"D10.4","Benign neoplasm, tonsil" +"D10.5","Benign neoplasm, other parts of oropharynx" +"D10.6","Benign neoplasm, nasopharynx" +"D10.7","Benign neoplasm, hypopharynx" +"D10.9","Benign neoplasm, pharynx, unspecified" +"D11","BENIGN NEOPLASM OF MAJOR SALIVARY GLANDS" +"D11.0","Benign neoplasm, parotid gland" +"D11.7","Benign neoplasm, other major salivary glands" +"D11.9","Benign neoplasm, major salivary gland, unspecified" +"D12","BENIGN NEOPLASM OF COLON, RECTUM, ANUS AND ANAL CANAL" +"D12.0","Benign neoplasm, caecum" +"D12.1","Benign neoplasm, appendix" +"D12.2","Benign neoplasm, ascending colon" +"D12.3","Benign neoplasm, transverse colon" +"D12.4","Benign neoplasm, descending colon" +"D12.5","Benign neoplasm, sigmoid colon" +"D12.6","Benign neoplasm, colon, unspecified" +"D12.7","Benign neoplasm, rectosigmoid junction" +"D12.8","Benign neoplasm, rectum" +"D12.9","Benign neoplasm, anus and anal canal" +"D13","Benign neoplasm of other and ill-defined parts of digestive system" +"D13.0","Benign neoplasm, oesophagus" +"D13.1","Benign neoplasm, stomach" +"D13.2","Benign neoplasm, duodenum" +"D13.3","Benign neoplasm, other and unspecified parts of small intestine" +"D13.4","Benign neoplasm, liver" +"D13.5","Benign neoplasm, extrahepatic bile ducts" +"D13.6","Benign neoplasm, pancreas" +"D13.7","Benign neoplasm, endocrine pancreas" +"D13.9","Benign neoplasm, ill-defined sites within the digestive system" +"D14","BENIGN NEOPLASM OF MIDDLE EAR AND RESPIRATORY SYSTEM" +"D14.0","Benign neoplasm, middle ear, nasal cavity and accessory sinuses" +"D14.1","Benign neoplasm, larynx" +"D14.2","Benign neoplasm, trachea" +"D14.3","Benign neoplasm, bronchus and lung" +"D14.4","Benign neoplasm, respiratory system, unspecified" +"D15","Benign neoplasm of other and unspecified intrathoracic organs" +"D15.0","Benign neoplasm, thymus" +"D15.1","Benign neoplasm, heart" +"D15.2","Benign neoplasm, mediastinum" +"D15.7","Benign neoplasm, other specified intrathoracic organs" +"D15.9","Benign neoplasm, intrathoracic organ, unspecified" +"D16","BENIGN NEOPLASM OF BONE AND ARTICULAR CARTILAGE" +"D16.0","Benign neoplasm, scapula and long bones of upper limb" +"D16.1","Benign neoplasm, short bones of upper limb" +"D16.2","Benign neoplasm, long bones of lower limb" +"D16.3","Benign neoplasm, short bones of lower limb" +"D16.4","Benign neoplasm, bones of skull and face" +"D16.5","Benign neoplasm, lower jaw bone" +"D16.6","Benign neoplasm, vertebral column" +"D16.7","Benign neoplasm, ribs, sternum and clavicle" +"D16.8","Benign neoplasm, pelvic bones, sacrum and coccyx" +"D16.9","Benign neoplasm, bone and articular cartilage, unspecified" +"D17","BENIGN LIPOMATOUS NEOPLASM" +"D17.0","Benign lipomatous neopl skin/subcut tis head face & neck" +"D17.1","Benign lipomatous neoplasm skin and subcut tissue of trunk" +"D17.2","Benign lipomatous neoplasm skin and subcut tissue of limbs" +"D17.3","Benign lipomatous neopl skin/subcut tis other/unspec sites" +"D17.4","Benign lipomatous neoplasm of intrathoracic organs" +"D17.5","Benign lipomatous neoplasm of intra-abdominal organs" +"D17.6","Benign lipomatous neoplasm of spermatic cord" +"D17.7","Benign lipomatous neoplasm of other sites" +"D17.9","Benign lipomatous neoplasm, unspecified" +"D18","Haemangioma and lymphangioma, any site" +"D18.0","Haemangioma, any site" +"D18.1","Lymphangioma, any site" +"D19","BENIGN NEOPLASM OF MESOTHELIAL TISSUE" +"D19.0","Benign neoplasm, mesothelial tissue of pleura" +"D19.1","Benign neoplasm, mesothelial tissue of peritoneum" +"D19.7","Benign neoplasm, mesothelial tissue of other sites" +"D19.9","Benign neoplasm, mesothelial tissue, unspecified" +"D20","BENIGN NEOPLASM OF SOFT TISSUE OF RETROPERITONEUM AND PERITONEUM" +"D20.0","Benign neoplasm, retroperitoneum" +"D20.1","Benign neoplasm, peritoneum" +"D21","Other benign neoplasms of connective and other soft tissue" +"D21.0","Benign neoplasm, connective and other soft tissue of head, face and neck" +"D21.1","Benign neoplasm, connective and other soft tis of upper limb, inc shoulder" +"D21.2","Benign neoplasm, connective and other soft tissue of lower limb, inc hip" +"D21.3","Benign neoplasm, connective and other soft tissue of thorax" +"D21.4","Benign neoplasm, connective and other soft tissue of abdomen" +"D21.5","Benign neoplasm, connective and other soft tissue of pelvis" +"D21.6","Benign neoplasm, connective and other soft tissue of trunk, unspecified" +"D21.9","Benign neoplasm, connective and other soft tissue, unspecified" +"D22","MELANOCYTIC NAEVI" +"D22.0","Melanocytic naevi of lip" +"D22.1","Melanocytic naevi of eyelid, including canthus" +"D22.2","Melanocytic naevi of ear and external auricular canal" +"D22.3","Melanocytic naevi of other and unspecified parts of face" +"D22.4","Melanocytic naevi of scalp and neck" +"D22.5","Melanocytic naevi of trunk" +"D22.6","Melanocytic naevi of upper limb, including shoulder" +"D22.7","Melanocytic naevi of lower limb, including hip" +"D22.9","Melanocytic naevi, unspecified" +"D23","OTHER BENIGN NEOPLASMS OF SKIN" +"D23.0","Benign neoplasm, skin of lip" +"D23.1","Benign neoplasm, skin of eyelid, including canthus" +"D23.2","Benign neoplasm, skin of ear and external auricular canal" +"D23.3","Benign neoplasm, skin of other and unspecified parts of face" +"D23.4","Benign neoplasm, skin of scalp and neck" +"D23.5","Benign neoplasm, skin of trunk" +"D23.6","Benign neoplasm, skin of upper limb, including shoulder" +"D23.7","Benign neoplasm, skin of lower limb, including hip" +"D23.9","Benign neoplasm, skin, unspecified" +"D24","BENIGN NEOPLASM OF BREAST" +"D25","LEIOMYOMA OF UTERUS" +"D25.0","Submucous leiomyoma of uterus" +"D25.1","Intramural leiomyoma of uterus" +"D25.2","Subserosal leiomyoma of uterus" +"D25.9","Leiomyoma of uterus, unspecified" +"D26","OTHER BENIGN NEOPLASMS OF UTERUS" +"D26.0","Benign neoplasm, cervix uteri" +"D26.1","Benign neoplasm, corpus uteri" +"D26.7","Benign neoplasm, other parts of uterus" +"D26.9","Benign neoplasm, uterus, unspecified" +"D27","BENIGN NEOPLASM OF OVARY" +"D28","Benign neoplasm of other and unspecified female genital organs" +"D28.0","Benign neoplasm, vulva" +"D28.1","Benign neoplasm, vagina" +"D28.2","Benign neoplasm, uterine tubes and ligaments" +"D28.7","Benign neoplasm, other specified female genital organs" +"D28.9","Benign neoplasm, female genital organ, unspecified" +"D29","BENIGN NEOPLASM OF MALE GENITAL ORGANS" +"D29.0","Benign neoplasm, penis" +"D29.1","Benign neoplasm, prostate" +"D29.2","Benign neoplasm, testis" +"D29.3","Benign neoplasm, epididymis" +"D29.4","Benign neoplasm, scrotum" +"D29.7","Benign neoplasm, other male genital organs" +"D29.9","Benign neoplasm, male genital organ, unspecified" +"D30","BENIGN NEOPLASM OF URINARY ORGANS" +"D30.0","Benign neoplasm, kidney" +"D30.1","Benign neoplasm, renal pelvis" +"D30.2","Benign neoplasm, ureter" +"D30.3","Benign neoplasm, bladder" +"D30.4","Benign neoplasm, urethra" +"D30.7","Benign neoplasm, other urinary organs" +"D30.9","Benign neoplasm, urinary organ, unspecified" +"D31","BENIGN NEOPLASM OF EYE AND ADNEXA" +"D31.0","Benign neoplasm, conjunctiva" +"D31.1","Benign neoplasm, cornea" +"D31.2","Benign neoplasm, retina" +"D31.3","Benign neoplasm, choroid" +"D31.4","Benign neoplasm, ciliary body" +"D31.5","Benign neoplasm, lacrimal gland and duct" +"D31.6","Benign neoplasm, orbit, unspecified" +"D31.9","Benign neoplasm, eye, unspecified" +"D32","BENIGN NEOPLASM OF MENINGES" +"D32.0","Benign neoplasm, cerebral meninges" +"D32.1","Benign neoplasm, spinal meninges" +"D32.9","Benign neoplasm, meninges, unspecified" +"D33","Benign neoplasm of brain and other parts of central nervous system" +"D33.0","Benign neoplasm, brain, supratentorial" +"D33.1","Benign neoplasm, brain, infratentorial" +"D33.2","Benign neoplasm, brain, unspecified" +"D33.3","Benign neoplasm, cranial nerves" +"D33.4","Benign neoplasm, spinal cord" +"D33.7","Benign neoplasm, other specified parts of central nervous system" +"D33.9","Benign neoplasm, central nervous system, unspecified" +"D34","BENIGN NEOPLASM OF THYROID GLAND" +"D35","Benign neoplasm of other and unspecified endocrine glands" +"D35.0","Benign neoplasm, adrenal gland" +"D35.1","Benign neoplasm, parathyroid gland" +"D35.2","Benign neoplasm, pituitary gland" +"D35.3","Benign neoplasm, craniopharyngeal duct" +"D35.4","Benign neoplasm, pineal gland" +"D35.5","Benign neoplasm, carotid body" +"D35.6","Benign neoplasm, aortic body and other paraganglia" +"D35.7","Benign neoplasm, other specified endocrine glands" +"D35.8","Benign neoplasm, pluriglandular involvement" +"D35.9","Benign neoplasm, endocrine gland, unspecified" +"D36","Benign neoplasm of other and unspecified sites" +"D36.0","Benign neoplasm, lymph nodes" +"D36.1","Benign neoplasm, peripheral nerves and autonomic nervous system" +"D36.7","Benign neoplasm, other specified sites" +"D36.9","Benign neoplasm of unspecified site" +"D37","NEOPLASM OF UNCERTAIN OR UNKNOWN BEHAVIOUR OF ORAL CAVITY AND DIGESTIVE ORGANS" +"D37.0","Neoplasm of uncertain or unknown behaviour of lip, oral cavity and pharynx" +"D37.1","Neoplasm of uncertain or unknown behaviour of stomach" +"D37.2","Neoplasm of uncertain or unknown behaviour of small intestine" +"D37.3","Neoplasm of uncertain or unknown behaviour of appendix" +"D37.4","Neoplasm of uncertain or unknown behaviour of colon" +"D37.5","Neoplasm of uncertain or unknown behaviour of rectum" +"D37.6","Neoplasm of uncertain or unknown behaviour of liver, gallbladder and bile ducts" +"D37.7","Neoplasm of uncertain or unknown behaviour of other digestive organs" +"D37.9","Neoplasm of uncertain or unknown behaviour of digestive organ, unspecified" +"D38","Neoplasm of uncertain or unknown behaviour of middle ear and respiratory and intrathoracic organs" +"D38.0","Neoplasm of uncertain or unknown behaviour of larynx" +"D38.1","Neoplasm of uncertain or unknown behaviour of trachea, bronchus and lung" +"D38.2","Neoplasm of uncertain or unknown behaviour of pleura" +"D38.3","Neoplasm of uncertain or unknown behaviour of mediastinum" +"D38.4","Neoplasm of uncertain or unknown behaviour of thymus" +"D38.5","Neoplasm of uncertain or unknown behaviour of other respiratory organs" +"D38.6","Neoplasm of uncertain or unknown behaviour of respiratory organ, unspecified" +"D39","Neoplasm of uncertain or unknown behaviour of female genital organs" +"D39.0","Neoplasm of uncertain or unknown behaviour of uterus" +"D39.1","Neoplasm of uncertain or unknown behaviour of ovary" +"D39.2","Neoplasm of uncertain or unknown behaviour of placenta" +"D39.7","Neoplasm of uncertain or unknown behaviour of other female genital organs" +"D39.9","Neoplasm of uncertain or unknown behaviour of female genital organ, unspecified" +"D40","Neoplasm of uncertain or unknown behaviour of male genital organs" +"D40.0","Neoplasm of uncertain or unknown behaviour of prostate" +"D40.1","Neoplasm of uncertain or unknown behaviour of testis" +"D40.7","Neoplasm of uncertain or unknown behaviour of other male genital organs" +"D40.9","Neoplasm of uncertain or unknown behaviour of male genital organ, unspecified" +"D41","Neoplasm of uncertain or unknown behaviour of urinary organs" +"D41.0","Neoplasm of uncertain or unknown behaviour of kidney" +"D41.1","Neoplasm of uncertain or unknown behaviour of renal pelvis" +"D41.2","Neoplasm of uncertain or unknown behaviour of ureter" +"D41.3","Neoplasm of uncertain or unknown behaviour of urethra" +"D41.4","Neoplasm of uncertain or unknown behaviour of bladder" +"D41.7","Neoplasm of uncertain or unknown behaviour of other urinary organs" +"D41.9","Neoplasm of uncertain or unknown behaviour of urinary organ, unspecified" +"D42","NEOPLASM OF UNCERTAIN OR UNKNOWN BEHAVIOUR OF MENINGES" +"D42.0","Neoplasm of uncertain or unknown behaviour of cerebral meninges" +"D42.1","Neoplasm of uncertain or unknown behaviour of spinal meninges" +"D42.9","Neoplasm of uncertain or unknown behaviour of meninges, unspecified" +"D43","Neoplasm of uncertain or unknown behaviour of brain and central nervous system" +"D43.0","Neoplasm of uncertain or unknown behaviour of brain, supratentorial" +"D43.1","Neoplasm of uncertain or unknown behaviour of brain, infratentorial" +"D43.2","Neoplasm of uncertain or unknown behaviour of brain, unspecified" +"D43.3","Neoplasm of uncertain or unknown behaviour of cranial nerves" +"D43.4","Neoplasm of uncertain or unknown behaviour of spinal cord" +"D43.7","Neoplasm of uncertain or unknown behaviour of other parts of central nervous system" +"D43.9","Neoplasm of uncertain or unknown behaviour of central nervous system, unspecified" +"D44","Neoplasm of uncertain or unknown behaviour of endocrine glands" +"D44.0","Neoplasm of uncertain or unknown behaviour of thyroid gland" +"D44.1","Neoplasm of uncertain or unknown behaviour of adrenal gland" +"D44.2","Neoplasm of uncertain or unknown behaviour of parathyroid gland" +"D44.3","Neoplasm of uncertain or unknown behaviour of pituitary gland" +"D44.4","Neoplasm of uncertain or unknown behaviour of craniopharyngeal duct" +"D44.5","Neoplasm of uncertain or unknown behaviour of pineal gland" +"D44.6","Neoplasm of uncertain or unknown behaviour of carotid body" +"D44.7","Neoplasm of uncertain or unknown behaviour of aortic body and other paraganglia" +"D44.8","Neoplasm of uncertain or unknown behaviour of pluriglandular involvement" +"D44.9","Neoplasm of uncertain or unknown behaviour of endocrine gland, unspecified" +"D45","POLYCYTHAEMIA VERA" +"D46","MYELODYSPLASTIC SYNDROMES" +"D46.0","Refractory anaemia without sideroblasts, so stated" +"D46.1","Refractory anaemia with sideroblasts" +"D46.2","Refractory anaemia with excess of blasts" +"D46.3","Refractory anaemia with excess of blasts with transformation" +"D46.4","Refractory anaemia, unspecified" +"D46.5","Refractory anaemia with multi-lineage dysplasia" +"D46.6","Myelodysplastic syndrome with isolated del(5q) chromosomal abnormality" +"D46.7","Other myelodysplastic syndromes" +"D46.9","Myelodysplastic syndrome, unspecified" +"D47","Other neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue" +"D47.0","Histiocytic and mast cell tumours uncertain and unknown behaviour" +"D47.1","Chronic myeloproliferative disease" +"D47.2","Monoclonal gammopathy" +"D47.3","Essential (haemorrhagic) thrombocythaemia" +"D47.4","Osteomyelofibrosis" +"D47.5","Chronic eosinophilic leukaemia [hypereosinophilic syndrome]" +"D47.7","Other specified neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue" +"D47.9","Neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue, unspecified" +"D48","Neoplasm of uncertain or unknown behaviour of other and unspecified sites" +"D48.0","Neoplasms of uncertain or unknown behaviour of bone and articular cartilage" +"D48.1","Neoplasms of uncertain or unknown behaviour of connective and other soft tissue" +"D48.2","Neoplasms of uncertain or unknown behaviour of peripheral nerves and autonomic nervous system" +"D48.3","Neoplasms of uncertain or unknown behaviour of retroperitoneum" +"D48.4","Neoplasms of uncertain or unknown behaviour of peritoneum" +"D48.5","Neoplasms of uncertain or unknown behaviour of skin" +"D48.6","Neoplasms of uncertain or unknown behaviour of breast" +"D48.7","Neoplasms of uncertain or unknown behaviour of other specified sites" +"D48.9","Neoplasm of uncertain or unknown behaviour, unspecified" +"D50","IRON DEFICIENCY ANAEMIA" +"D50.0","Iron deficiency anaemia secondary to blood loss (chronic)" +"D50.1","Sideropenic dysphagia" +"D50.8","Other iron deficiency anaemias" +"D50.9","Iron deficiency anaemia, unspecified" +"D51","VITAMIN B12 DEFICIENCY ANAEMIA" +"D51.0","Vitamin b12 defic anaemia due to intrinsic factor deficiency" +"D51.1","Vit b12 def anaem select vit b12 malabsorp with proteinuria" +"D51.2","Transcobalamin ii deficiency" +"D51.3","Other dietary vitamin B12 deficiency anaemia" +"D51.8","Other vitamin B12 deficiency anaemias" +"D51.9","Vitamin B12 deficiency anaemia, unspecified" +"D52","FOLATE DEFICIENCY ANAEMIA" +"D52.0","Dietary folate deficiency anaemia" +"D52.1","Drug-induced folate deficiency anaemia" +"D52.8","Other folate deficiency anaemias" +"D52.9","Folate deficiency anaemia, unspecified" +"D53","OTHER NUTRITIONAL ANAEMIAS" +"D53.0","Protein deficiency anaemia" +"D53.1","Other megaloblastic anaemias, not elsewhere classified" +"D53.2","Scorbutic anaemia" +"D53.8","Other specified nutritional anaemias" +"D53.9","Nutritional anaemia, unspecified" +"D55","Anaemia due to enzyme disorders" +"D55.0","Anaemia due to glucose-6-phosphate dehydrogenase deficiency" +"D55.1","Anaemia due to other disorders of glutathione metabolism" +"D55.2","Anaemia due to disorders of glycolytic enzymes" +"D55.3","Anaemia due to disorders of nucleotide metabolism" +"D55.8","Other anaemias due to enzyme disorders" +"D55.9","Anaemia due to enzyme disorder, unspecified" +"D56","THALASSAEMIA" +"D56.0","Alpha thalassaemia" +"D56.1","Beta thalassaemia" +"D56.2","Delta-beta thalassaemia" +"D56.3","Thalassaemia trait" +"D56.4","Hereditary persistence of fetal haemoglobin [HPFH]" +"D56.8","Other thalassaemias" +"D56.9","Thalassaemia, unspecified" +"D57","SICKLE-CELL DISORDERS" +"D57.0","Sickle-cell anaemia with crisis" +"D57.1","Sickle-cell anaemia without crisis" +"D57.2","Double heterozygous sickling disorders" +"D57.3","Sickle-cell trait" +"D57.8","Other sickle-cell disorders" +"D58","OTHER HEREDITARY HAEMOLYTIC ANAEMIAS" +"D58.0","Hereditary spherocytosis" +"D58.1","Hereditary elliptocytosis" +"D58.2","Other haemoglobinopathies" +"D58.8","Other specified hereditary haemolytic anaemias" +"D58.9","Hereditary haemolytic anaemia, unspecified" +"D59","ACQUIRED HAEMOLYTIC ANAEMIA" +"D59.0","Drug-induced autoimmune haemolytic anaemia" +"D59.1","Other autoimmune haemolytic anaemias" +"D59.2","Drug-induced nonautoimmune haemolytic anaemia" +"D59.3","Haemolytic-uraemic syndrome" +"D59.4","Other nonautoimmune haemolytic anaemias" +"D59.5","Paroxysmal nocturnal haemoglobinuria [Marchiafava-Micheli]" +"D59.6","Haemoglobinuria due to haemolysis from other external causes" +"D59.8","Other acquired haemolytic anaemias" +"D59.9","Acquired haemolytic anaemia, unspecified" +"D60","Acquired pure red cell aplasia [erythroblastopenia]" +"D60.0","Chronic acquired pure red cell aplasia" +"D60.1","Transient acquired pure red cell aplasia" +"D60.8","Other acquired pure red cell aplasias" +"D60.9","Acquired pure red cell aplasia, unspecified" +"D61","OTHER APLASTIC ANAEMIAS" +"D61.0","Constitutional aplastic anaemia" +"D61.1","Drug-induced aplastic anaemia" +"D61.2","Aplastic anaemia due to other external agents" +"D61.3","Idiopathic aplastic anaemia" +"D61.8","Other specified aplastic anaemias" +"D61.9","Aplastic anaemia, unspecified" +"D62","Acute posthaemorrhagic anaemia" +"D63","Anaemia in chronic diseases classified elsewhere" +"D63.0","Anaemia in neoplastic disease" +"D63.8","Anaemia in other chronic diseases classified elsewhere" +"D64","OTHER ANAEMIAS" +"D64.0","Hereditary sideroblastic anaemia" +"D64.1","Secondary sideroblastic anaemia due to disease" +"D64.2","Secondary sideroblastic anaemia due to drugs and toxins" +"D64.3","Other sideroblastic anaemias" +"D64.4","Congenital dyserythropoietic anaemia" +"D64.8","Other specified anaemias" +"D64.9","Anaemia, unspecified" +"D65","Dissem intravascular coagulation [defibrination syndrome]" +"D66","HEREDITARY FACTOR VIII DEFICIENCY" +"D67","HEREDITARY FACTOR IX DEFICIENCY" +"D68","OTHER COAGULATION DEFECTS" +"D68.0","Von Willebrand's disease" +"D68.1","Hereditary factor XI deficiency" +"D68.2","Hereditary deficiency of other clotting factors" +"D68.3","Haemorrhagic disorder due to circulating anticoagulants" +"D68.4","Acquired coagulation factor deficiency" +"D68.5","Primary Thrombophilia" +"D68.6","Other Thrombophilia" +"D68.8","Other specified coagulation defects" +"D68.9","Coagulation defect, unspecified" +"D69","Purpura and other haemorrhagic conditions" +"D69.0","Allergic purpura" +"D69.1","Qualitative platelet defects" +"D69.2","Other nonthrombocytopenic purpura" +"D69.3","Idiopathic thrombocytopenic purpura" +"D69.4","Other primary thrombocytopenia" +"D69.5","Secondary thrombocytopenia" +"D69.6","Thrombocytopenia, unspecified" +"D69.8","Other specified haemorrhagic conditions" +"D69.9","Haemorrhagic condition, unspecified" +"D70","AGRANULOCYTOSIS" +"D71","Functional disorders of polymorphonuclear neutrophils" +"D72","OTHER DISORDERS OF WHITE BLOOD CELLS" +"D72.0","Genetic anomalies of leukocytes" +"D72.1","Eosinophilia" +"D72.8","Other specified disorders of white blood cells" +"D72.9","Disorder of white blood cells, unspecified" +"D73","DISEASES OF SPLEEN" +"D73.0","Hyposplenism" +"D73.1","Hypersplenism" +"D73.2","Chronic congestive splenomegaly" +"D73.3","Abscess of spleen" +"D73.4","Cyst of spleen" +"D73.5","Infarction of spleen" +"D73.8","Other diseases of spleen" +"D73.9","Disease of spleen, unspecified" +"D74","METHAEMOGLOBINAEMIA" +"D74.0","Congenital methaemoglobinaemia" +"D74.8","Other methaemoglobinaemias" +"D74.9","Methaemoglobinaemia, unspecified" +"D75","Other diseases of blood and blood-forming organs" +"D75.0","Familial erythrocytosis" +"D75.1","Secondary polycythaemia" +"D75.2","Essential thrombocytosis" +"D75.8","Other specified diseases of blood and blood-forming organs" +"D75.9","Disease of blood and blood-forming organs, unspecified" +"D76","Other specified diseases with participation of lymphoreticular and reticulohistiocytic tissue" +"D76.0","Langerhans' cell histiocytosis, not elsewhere classified" +"D76.1","Haemophagocytic lymphohistiocytosis" +"D76.2","Haemophagocytic syndrome, infection-associated" +"D76.3","Other histiocytosis syndromes" +"D77","Other disorders of blood and blood-forming organs in dis ce" +"D80","Immunodeficiency with predominantly antibody defects" +"D80.0","Hereditary hypogammaglobulinaemia" +"D80.1","Nonfamilial hypogammaglobulinaemia" +"D80.2","Selective deficiency of immunoglobulin A [IgA]" +"D80.3","Selective deficiency of immunoglobulin G [IgG] subclasses" +"D80.4","Selective deficiency of immunoglobulin M [IgM]" +"D80.5","Immunodeficiency with increased immunoglobulin m [igm]" +"D80.6","Antibod def with near-norm imunoglob/hyperimmunoglobulinaemia" +"D80.7","Transient hypogammaglobulinaemia of infancy" +"D80.8","Other immunodeficiencies with predominantly antibody defects" +"D80.9","Immunodeficiency with predominantly antibody defects, unspec act" +"D81","Combined immunodeficiencies" +"D81.0","Severe combined immunodeficiency with reticular dysgenesis" +"D81.1","Severe combined immunodef with low t- and b-cell numbers" +"D81.2","Severe combined immunodef with low or normal b-cell numbers" +"D81.3","Adenosine deaminase [ADA] deficiency" +"D81.4","Nezelof's syndrome" +"D81.5","Purine nucleoside phosphorylase [pnp] deficiency" +"D81.6","Major histocompatibility complex class I deficiency" +"D81.7","Major histocompatibility complex class II deficiency" +"D81.8","Other combined immunodeficiencies" +"D81.9","Combined immunodeficiency, unspecified" +"D82","Immunodeficiency associated with other major defects" +"D82.0","Wiskott-Aldrich syndrome" +"D82.1","Di George's syndrome" +"D82.2","Immunodeficiency with short-limbed stature" +"D82.3","Immunodef follow hereditary defect respon epstein-barr virus" +"D82.4","Hyperimmunoglobulin e [ige] syndrome" +"D82.8","Immunodeficiency assoc with other specified major defects" +"D82.9","Immunodeficiency associated with major defect, unspecified" +"D83","COMMON VARIABLE IMMUNODEFICIENCY" +"D83.0","Com var immunodef with predom abn b-cell numb and function" +"D83.1","Common var immunodef predom immunoregulatory t-cell disorder" +"D83.2","Common variable immunodef autoantibodies to b- or t-cells" +"D83.8","Other common variable immunodeficiencies" +"D83.9","Common variable immunodeficiency, unspecified" +"D84","OTHER IMMUNODEFICIENCIES" +"D84.0","Lymphocyte function antigen-1 [LFA-1] defect" +"D84.1","Defects in the complement system" +"D84.8","Other specified immunodeficiencies" +"D84.9","Immunodeficiency, unspecified" +"D86","SARCOIDOSIS" +"D86.0","Sarcoidosis of lung" +"D86.1","Sarcoidosis of lymph nodes" +"D86.2","Sarcoidosis of lung with sarcoidosis of lymph nodes" +"D86.3","Sarcoidosis of skin" +"D86.8","Sarcoidosis of other and combined sites" +"D86.9","Sarcoidosis, unspecified" +"D89","Other disorders involving the immune mechanism, not elsewhere classified" +"D89.0","Polyclonal hypergammaglobulinaemia" +"D89.1","Cryoglobulinaemia" +"D89.2","Hypergammaglobulinaemia, unspecified" +"D89.3","Immune reconstitution syndrome" +"D89.8","Oth specified disorders involving the immune mechanism nec" +"D89.9","Disorder involving the immune mechanism, unspecified" +"E00","CONGENITAL IODINE-DEFICIENCY SYNDROME" +"E00.0","Congenital iodine-deficiency syndrome, neurological type" +"E00.1","Congenital iodine-deficiency syndrome, myxoedematous type" +"E00.2","Congenital iodine-deficiency syndrome, mixed type" +"E00.9","Congenital iodine-deficiency syndrome, unspecified" +"E01","IODINE-DEFICIENCY-RELATED THYROID DISORDERS AND ALLIED CONDITIONS" +"E01.0","Iodine-deficiency-related diffuse (endemic) goitre" +"E01.1","Iodine-deficiency-related multinodular (endemic) goitre" +"E01.2","Iodine-deficiency-related (endemic) goitre, unspecified" +"E01.8","Other iodine-def-related thyroid disorders and allied conds" +"E02","SUBCLINICAL IODINE-DEFICIENCY HYPOTHYROIDISM" +"E03","OTHER HYPOTHYROIDISM" +"E03.0","Congenital hypothyroidism with diffuse goitre" +"E03.1","Congenital hypothyroidism without goitre" +"E03.2","Hypothyroidism due medicaments and oth exogenous substances" +"E03.3","Postinfectious hypothyroidism" +"E03.4","Atrophy of thyroid (acquired)" +"E03.5","Myxoedema coma" +"E03.8","Other specified hypothyroidism" +"E03.9","Hypothyroidism, unspecified" +"E04","OTHER NONTOXIC GOITRE" +"E04.0","Nontoxic diffuse goitre" +"E04.1","Nontoxic single thyroid nodule" +"E04.2","Nontoxic multinodular goitre" +"E04.8","Other specified nontoxic goitre" +"E04.9","Nontoxic goitre, unspecified" +"E05","THYROTOXICOSIS [HYPERTHYROIDISM]" +"E05.0","Thyrotoxicosis with diffuse goitre" +"E05.1","Thyrotoxicosis with toxic single thyroid nodule" +"E05.2","Thyrotoxicosis with toxic multinodular goitre" +"E05.3","Thyrotoxicosis from ectopic thyroid tissue" +"E05.4","Thyrotoxicosis factitia" +"E05.5","Thyroid crisis or storm" +"E05.8","Other thyrotoxicosis" +"E05.9","Thyrotoxicosis, unspecified" +"E06","THYROIDITIS" +"E06.0","Acute thyroiditis" +"E06.1","Subacute thyroiditis" +"E06.2","Chronic thyroiditis with transient thyrotoxicosis" +"E06.3","Autoimmune thyroiditis" +"E06.4","Drug-induced thyroiditis" +"E06.5","Other chronic thyroiditis" +"E06.9","Thyroiditis, unspecified" +"E07","OTHER DISORDERS OF THYROID" +"E07.0","Hypersecretion of calcitonin" +"E07.1","Dyshormogenetic goitre" +"E07.8","Other specified disorders of thyroid" +"E07.9","Disorder of thyroid, unspecified" +"E10","INSULIN-DEPENDENT DIABETES MELLITUS" +"E10.0","Insulin-dependent diabetes mellitus with coma" +"E10.1","Insulin-dependent diabetes mellitus with ketoacidosis" +"E10.2","Insulin-dependent diabetes mellitus with renal complications" +"E10.3","Insulin-dependent diabetes mellitus with ophthalmic complications" +"E10.4","Insulin-dependent diabetes mellitus with neurological complications" +"E10.5","Insulin-dependent diabetes mellitus with peripheral circulatory complications" +"E10.6","Insulin-dependent diabetes mellitus with other specified complications" +"E10.7","Insulin-dependent diabetes mellitus with multiple complications" +"E10.8","Insulin-dependent diabetes mellitus with unspecified complications" +"E10.9","Insulin-dependent diabetes mellitus without complications" +"E11","Non-insulin-dependent diabetes mellitus" +"E11.0","Non-insulin-dependent diabetes mellitus with coma" +"E11.1","Non-insulin-dependent diabetes mellitus with ketoacidosis" +"E11.2","Non-insulin-dependent diabetes mellitus with renal complications" +"E11.3","Non-insulin-dependent diabetes mellitus with ophthalmic complications" +"E11.4","Non-insulin-dependent diabetes mellitus with neurological complications" +"E11.5","Non-insulin-dependent diabetes mellitus with peripheral circulatory complications" +"E11.6","Non-insulin-dependent diabetes mellitus with other specified complications" +"E11.7","Non-insulin-dependent diabetes mellitus with multiple complications" +"E11.8","Non-insulin-dependent diabetes mellitus with unspecified complications" +"E11.9","Non-insulin-dependent diabetes mellitus without complications" +"E12","MALNUTRITION-RELATED DIABETES MELLITUS" +"E12.0","Malnutrition-related diabetes mellitus with coma" +"E12.1","Malnutrition-related diabetes mellitus with ketoacidosis" +"E12.2","Malnutrition-related diabetes mellitus with renal complications" +"E12.3","Malnutrition-related diabetes mellitus with ophthalmic complications" +"E12.4","Malnutrition-related diabetes mellitus with neurological complications" +"E12.5","Malnutrition-related diabetes mellitus with peripheral circulatory complications" +"E12.6","Malnutrition-related diabetes mellitus with other specified complications" +"E12.7","Malnutrition-related diabetes mellitus with multiple complications" +"E12.8","Malnutrition-related diabetes mellitus with unspecified complications" +"E12.9","Malnutrition-related diabetes mellitus without complications" +"E13","OTHER SPECIFIED DIABETES MELLITUS" +"E13.0","Other specified diabetes mellitus with coma" +"E13.1","Other specified diabetes mellitus with ketoacidosis" +"E13.2","Other specified diabetes mellitus with renal complications" +"E13.3","Other specified diabetes mellitus with ophthalmic complications" +"E13.4","Other specified diabetes mellitus with neurological complications" +"E13.5","Other specified diabetes mellitus with peripheral circulatory complications" +"E13.6","Other specified diabetes mellitus with other specified complications" +"E13.7","Other specified diabetes mellitus with multiple complications" +"E13.8","Other specified diabetes mellitus with unspecified complications" +"E13.9","Other specified diabetes mellitus without complications" +"E14","Unspecified diabetes mellitus" +"E14.0","Unspecified diabetes mellitus with coma" +"E14.1","Unspecified diabetes mellitus with ketoacidosis" +"E14.2","Unspecified diabetes mellitus with renal complications" +"E14.3","Unspecified diabetes mellitus with ophthalmic complications" +"E14.4","Unspecified diabetes mellitus with neurological complications" +"E14.5","Unspecified diabetes mellitus with peripheral circulatory complications" +"E14.6","Unspecified diabetes mellitus with other specified complications" +"E14.7","Unspecified diabetes mellitus with multiple complications" +"E14.8","Unspecified diabetes mellitus with unspecified complications" +"E14.9","Unspecified diabetes mellitus without complications" +"E15","NONDIABETIC HYPOGLYCAEMIC COMA" +"E16","OTHER DISORDERS OF PANCREATIC INTERNAL SECRETION" +"E16.0","Drug-induced hypoglycaemia without coma" +"E16.1","Other hypoglycaemia" +"E16.2","Hypoglycaemia, unspecified" +"E16.3","Increased secretion of glucagon" +"E16.4","Abnormal secretion of gastrin" +"E16.8","Other specified disorders of pancreatic internal secretion" +"E16.9","Disorder of pancreatic internal secretion, unspecified" +"E20","HYPOPARATHYROIDISM" +"E20.0","Idiopathic hypoparathyroidism" +"E20.1","Pseudohypoparathyroidism" +"E20.8","Other hypoparathyroidism" +"E20.9","Hypoparathyroidism, unspecified" +"E21","Hyperparathyroidism and other disorders of parathyroid gland" +"E21.0","Primary hyperparathyroidism" +"E21.1","Secondary hyperparathyroidism, not elsewhere classified" +"E21.2","Other hyperparathyroidism" +"E21.3","Hyperparathyroidism, unspecified" +"E21.4","Other specified disorders of parathyroid gland" +"E21.5","Disorder of parathyroid gland, unspecified" +"E22","Hyperfunction of pituitary gland" +"E22.0","Acromegaly and pituitary gigantism" +"E22.1","Hyperprolactinaemia" +"E22.2","Syndrome of inappropriate secretion of antidiuretic hormone" +"E22.8","Other hyperfunction of pituitary gland" +"E22.9","Hyperfunction of pituitary gland, unspecified" +"E23","Hypofunction and other disorders of pituitary gland" +"E23.0","Hypopituitarism" +"E23.1","Drug-induced hypopituitarism" +"E23.2","Diabetes insipidus" +"E23.3","Hypothalamic dysfunction, not elsewhere classified" +"E23.6","Other disorders of pituitary gland" +"E23.7","Disorder of pituitary gland, unspecified" +"E24","Cushing syndrome" +"E24.0","Pituitary-dependent cushing's disease" +"E24.1","Nelson's syndrome" +"E24.2","Drug-induced cushing's syndrome" +"E24.3","Ectopic ACTH syndrome" +"E24.4","Alcohol-induced pseudo-cushing's syndrome" +"E24.8","Other cushing's syndrome" +"E24.9","Cushing's syndrome, unspecified" +"E25","ADRENOGENITAL DISORDERS" +"E25.0","Congenital adrenogenital disorders associated enzyme def" +"E25.8","Other adrenogenital disorders" +"E25.9","Adrenogenital disorder, unspecified" +"E26","HYPERALDOSTERONISM" +"E26.0","Primary hyperaldosteronism" +"E26.1","Secondary hyperaldosteronism" +"E26.8","Other hyperaldosteronism" +"E26.9","Hyperaldosteronism, unspecified" +"E27","OTHER DISORDERS OF ADRENAL GLAND" +"E27.0","Other adrenocortical overactivity" +"E27.1","Primary adrenocortical insufficiency" +"E27.2","Addisonian crisis" +"E27.3","Drug-induced adrenocortical insufficiency" +"E27.4","Other and unspecified adrenocortical insufficiency" +"E27.5","Adrenomedullary hyperfunction" +"E27.8","Other specified disorders of adrenal gland" +"E27.9","Disorder of adrenal gland, unspecified" +"E28","OVARIAN DYSFUNCTION" +"E28.0","Estrogen excess" +"E28.1","Androgen excess" +"E28.2","Polycystic ovarian syndrome" +"E28.3","Primary ovarian failure" +"E28.8","Other ovarian dysfunction" +"E28.9","Ovarian dysfunction, unspecified" +"E29","TESTICULAR DYSFUNCTION" +"E29.0","Testicular hyperfunction" +"E29.1","Testicular hypofunction" +"E29.8","Other testicular dysfunction" +"E29.9","Testicular dysfunction, unspecified" +"E30","DISORDERS OF PUBERTY, NOT ELSEWHERE CLASSIFIED" +"E30.0","Delayed puberty" +"E30.1","Precocious puberty" +"E30.8","Other disorders of puberty" +"E30.9","Disorder of puberty, unspecified" +"E31","POLYGLANDULAR DYSFUNCTION" +"E31.0","Autoimmune polyglandular failure" +"E31.1","Polyglandular hyperfunction" +"E31.8","Other polyglandular dysfunction" +"E31.9","Polyglandular dysfunction, unspecified" +"E32","Diseases of thymus" +"E32.0","Persistent hyperplasia of thymus" +"E32.1","Abscess of thymus" +"E32.8","Other diseases of thymus" +"E32.9","Disease of thymus, unspecified" +"E34","OTHER ENDOCRINE DISORDERS" +"E34.0","Carcinoid syndrome" +"E34.1","Other hypersecretion of intestinal hormones" +"E34.2","Ectopic hormone secretion, not elsewhere classified" +"E34.3","Short stature, not elsewhere classified" +"E34.4","Constitutional tall stature" +"E34.5","Androgen resistance syndrome" +"E34.8","Other specified endocrine disorders" +"E34.9","Endocrine disorder, unspecified" +"E35","Disorders of endocrine glands in diseases classified elsewhere" +"E35.0","Disorders of thyroid gland in diseases classified elsewhere" +"E35.1","Disorders of adrenal glands in diseases classified elsewhere" +"E35.8","Disorders other endocrine glands in disease class elsewhere" +"E40","KWASHIORKOR" +"E41","NUTRITIONAL MARASMUS" +"E42","MARASMIC KWASHIORKOR" +"E43","Unspecified severe protein-energy malnutrition" +"E44","PROTEIN-ENERGY MALNUTRITION OF MODERATE AND MILD DEGREE" +"E44.0","Moderate protein-energy malnutrition" +"E44.1","Mild protein-energy malnutrition" +"E45","Retarded development following protein-energy malnutrition" +"E46","Unspecified protein-energy malnutrition" +"E50","VITAMIN A DEFICIENCY" +"E50.0","Vitamin A deficiency with conjunctival xerosis" +"E50.1","Vitamin A deficiency with Bitot's spot and conjunctival xerosis" +"E50.2","Vitamin A deficiency with corneal xerosis" +"E50.3","Vitamin A deficiency with corneal ulceration and xerosis" +"E50.4","Vitamin A deficiency with keratomalacia" +"E50.5","Vitamin A deficiency with night blindness" +"E50.6","Vitamin A deficiency with xerophthalmic scars of cornea" +"E50.7","Other ocular manifestations of vitamin A deficiency" +"E50.8","Other manifestations of vitamin A deficiency" +"E50.9","Vitamin A deficiency, unspecified" +"E51","THIAMINE DEFICIENCY" +"E51.1","Beriberi" +"E51.2","Wernicke's encephalopathy" +"E51.8","Other manifestations of thiamine deficiency" +"E51.9","Thiamine deficiency, unspecified" +"E52","NIACIN DEFICIENCY [PELLAGRA]" +"E53","DEFICIENCY OF OTHER B GROUP VITAMINS" +"E53.0","Riboflavin deficiency" +"E53.1","Pyridoxine deficiency" +"E53.8","Deficiency of other specified B group vitamins" +"E53.9","Vitamin B deficiency, unspecified" +"E54","ASCORBIC ACID DEFICIENCY" +"E55","VITAMIN D DEFICIENCY" +"E55.0","Rickets, active" +"E55.9","Vitamin D deficiency, unspecified" +"E56","OTHER VITAMIN DEFICIENCIES" +"E56.0","Deficiency of vitamin E" +"E56.1","Deficiency of vitamin K" +"E56.8","Deficiency of other vitamins" +"E56.9","Vitamin deficiency, unspecified" +"E58","DIETARY CALCIUM DEFICIENCY" +"E59","DIETARY SELENIUM DEFICIENCY" +"E60","DIETARY ZINC DEFICIENCY" +"E61","DEFICIENCY OF OTHER NUTRIENT ELEMENTS" +"E61.0","Copper deficiency" +"E61.1","Iron deficiency" +"E61.2","Magnesium deficiency" +"E61.3","Manganese deficiency" +"E61.4","Chromium deficiency" +"E61.5","Molybdenum deficiency" +"E61.6","Vanadium deficiency" +"E61.7","Deficiency of multiple nutrient elements" +"E61.8","Deficiency of other specified nutrient elements" +"E61.9","Deficiency of nutrient element, unspecified" +"E63","OTHER NUTRITIONAL DEFICIENCIES" +"E63.0","Essential fatty acid [EFA] deficiency" +"E63.1","Imbalance of constituents of food intake" +"E63.8","Other specified nutritional deficiencies" +"E63.9","Nutritional deficiency, unspecified" +"E64","SEQUELAE OF MALNUTRITION AND OTHER NUTRITIONAL DEFICIENCIES" +"E64.0","Sequelae of protein-energy malnutrition" +"E64.1","Sequelae of vitamin A deficiency" +"E64.2","Sequelae of vitamin C deficiency" +"E64.3","Sequelae of rickets" +"E64.8","Sequelae of other nutritional deficiencies" +"E64.9","Sequelae of unspecified nutritional deficiency" +"E65","LOCALIZED ADIPOSITY" +"E66","OBESITY" +"E66.0","Obesity due to excess calories" +"E66.1","Drug-induced obesity" +"E66.2","Extreme obesity with alveolar hypoventilation" +"E66.8","Other obesity" +"E66.9","Obesity, unspecified" +"E67","OTHER HYPERALIMENTATION" +"E67.0","Hypervitaminosis A" +"E67.1","Hypercarotenaemia" +"E67.2","Megavitamin-B6 syndrome" +"E67.3","Hypervitaminosis D" +"E67.8","Other specified hyperalimentation" +"E68","SEQUELAE OF HYPERALIMENTATION" +"E70","DISORDERS OF AROMATIC AMINO-ACID METABOLISM" +"E70.0","Classical phenylketonuria" +"E70.1","Other hyperphenylalaninaemias" +"E70.2","Disorders of tyrosine metabolism" +"E70.3","Albinism" +"E70.8","Other disorders of aromatic amino-acid metabolism" +"E70.9","Disorder of aromatic amino-acid metabolism, unspecified" +"E71","Disorders of branched-chain amino-acid metabolism and fatty-acid metabolism" +"E71.0","Maple-syrup-urine disease" +"E71.1","Other disorders of branched-chain amino-acid metabolism" +"E71.2","Disorder of branched-chain amino-acid metabolism, unspec act" +"E71.3","Disorders of fatty-acid metabolism" +"E72","OTHER DISORDERS OF AMINO-ACID METABOLISM" +"E72.0","Disorders of amino-acid transport" +"E72.1","Disorders of sulfur-bearing amino-acid metabolism" +"E72.2","Disorders of urea cycle metabolism" +"E72.3","Disorders of lysine and hydroxylysine metabolism" +"E72.4","Disorders of ornithine metabolism" +"E72.5","Disorders of glycine metabolism" +"E72.8","Other specified disorders of amino-acid metabolism" +"E72.9","Disorder of amino-acid metabolism, unspecified" +"E73","LACTOSE INTOLERANCE" +"E73.0","Congenital lactase deficiency" +"E73.1","Secondary lactase deficiency" +"E73.8","Other lactose intolerance" +"E73.9","Lactose intolerance, unspecified" +"E74","OTHER DISORDERS OF CARBOHYDRATE METABOLISM" +"E74.0","Glycogen storage disease" +"E74.1","Disorders of fructose metabolism" +"E74.2","Disorders of galactose metabolism" +"E74.3","Other disorders of intestinal carbohydrate absorption" +"E74.4","Disorders of pyruvate metabolism and gluconeogenesis" +"E74.8","Other specified disorders of carbohydrate metabolism" +"E74.9","Disorder of carbohydrate metabolism, unspecified" +"E75","DISORDERS OF SPHINGOLIPID METABOLISM AND OTHER LIPID STORAGE DISORDERS" +"E75.0","GM2 gangliosidosis" +"E75.1","Other gangliosidosis" +"E75.2","Other sphingolipidosis" +"E75.3","Sphingolipidosis, unspecified" +"E75.4","Neuronal ceroid lipofuscinosis" +"E75.5","Other lipid storage disorders" +"E75.6","Lipid storage disorder, unspecified" +"E76","DISORDERS OF GLYCOSAMINOGLYCAN METABOLISM" +"E76.0","Mucopolysaccharidosis, type i" +"E76.1","Mucopolysaccharidosis, type ii" +"E76.2","Other mucopolysaccharidoses" +"E76.3","Mucopolysaccharidosis, unspecified" +"E76.8","Other disorders of glucosaminoglycan metabolism" +"E76.9","Disorder of glucosaminoglycan metabolism, unspecified" +"E77","DISORDERS OF GLYCOPROTEIN METABOLISM" +"E77.0","Defects in post-translational modif'n of lysosomal enzymes" +"E77.1","Defects in glycoprotein degradation" +"E77.8","Other disorders of glycoprotein metabolism" +"E77.9","Disorder of glycoprotein metabolism, unspecified" +"E78","Disorders of lipoprotein metabolism and other lipidaemias" +"E78.0","Pure hypercholesterolaemia" +"E78.1","Pure hyperglyceridaemia" +"E78.2","Mixed hyperlipidaemia" +"E78.3","Hyperchylomicronaemia" +"E78.4","Other hyperlipidaemia" +"E78.5","Hyperlipidaemia, unspecified" +"E78.6","Lipoprotein deficiency" +"E78.8","Other disorders of lipoprotein metabolism" +"E78.9","Disorder of lipoprotein metabolism, unspecified" +"E79","DISORDERS OF PURINE AND PYRIMIDINE METABOLISM" +"E79.0","Hyperuricaem without sign inflamm arthritis+tophaceous dis" +"E79.1","Lesch-Nyhan syndrome" +"E79.8","Other disorders of purine and pyrimidine metabolism" +"E79.9","Disorder of purine and pyrimidine metabolism, Unspecified" +"E80","DISORDERS OF PORPHYRIN AND BILIRUBIN METABOLISM" +"E80.0","Hereditary erythropoietic porphyria" +"E80.1","Porphyria cutanea tarda" +"E80.2","Other porphyria" +"E80.3","Defects of catalase and peroxidase" +"E80.4","Gilbert's syndrome" +"E80.5","Crigler-najjar syndrome" +"E80.6","Other disorders of bilirubin metabolism" +"E80.7","Disorder of bilirubin metabolism, unspecified" +"E83","DISORDERS OF MINERAL METABOLISM" +"E83.0","Disorders of copper metabolism" +"E83.1","Disorders of iron metabolism" +"E83.2","Disorders of zinc metabolism" +"E83.3","Disorders of phosphorus metabolism" +"E83.4","Disorders of magnesium metabolism" +"E83.5","Disorders of calcium metabolism" +"E83.8","Other disorders of mineral metabolism" +"E83.9","Disorder of mineral metabolism, unspecified" +"E84","CYSTIC FIBROSIS" +"E84.0","Cystic fibrosis with pulmonary manifestations" +"E84.1","Cystic fibrosis with intestinal manifestations" +"E84.8","Cystic fibrosis with other manifestations" +"E84.9","Cystic fibrosis, unspecified" +"E85","AMYLOIDOSIS" +"E85.0","Non-neuropathic heredofamilial amyloidosis" +"E85.1","Neuropathic heredofamilial amyloidosis" +"E85.2","Heredofamilial amyloidosis, unspecified" +"E85.3","Secondary systemic amyloidosis" +"E85.4","Organ-limited amyloidosis" +"E85.8","Other amyloidosis" +"E85.9","Amyloidosis, unspecified" +"E86","VOLUME DEPLETION" +"E87","OTHER DISORDERS OF FLUID, ELECTROLYTE AND ACID-BASE BALANCE" +"E87.0","Hyperosmolality and hypernatraemia" +"E87.1","Hypo-osmolality and hyponatraemia" +"E87.2","Acidosis" +"E87.3","Alkalosis" +"E87.4","Mixed disorder of acid-base balance" +"E87.5","Hyperkalaemia" +"E87.6","Hypokalaemia" +"E87.7","Fluid overload" +"E87.8","Other disorders of electrolyte and fluid balance NEC" +"E88","OTHER METABOLIC DISORDERS" +"E88.0","Disorders of plasma-protein metabolism NEC" +"E88.1","Lipodystrophy, not elsewhere classified" +"E88.2","Lipomatosis, not elsewhere classified" +"E88.3","Tumour lysis syndrome" +"E88.8","Other specified metabolic disorders" +"E88.9","Metabolic disorder, unspecified" +"E89","Postprocedural endocrine and metabolic disorders, not elsewhere classified" +"E89.0","Postprocedural hypothyroidism" +"E89.1","Postprocedural hypoinsulinaemia" +"E89.2","Postprocedural hypoparathyroidism" +"E89.3","Postprocedural hypopituitarism" +"E89.4","Postprocedural ovarian failure" +"E89.5","Postprocedural testicular hypofunction" +"E89.6","Postprocedural adrenocortical(-medullary) hypofunction" +"E89.8","Other postprocedural endocrine and metabolic disorders" +"E89.9","Postprocedural endocrine and metabolic disorder, unspecified" +"E90","Nutritional and metabolic disorders in diseases" +"F00","Dementia in Alzheimer disease" +"F00.0","Dementia in alzheimer's disease with early onset" +"F00.1","Dementia in alzheimer's disease with late onset" +"F00.2","Dementia in alzheimer's disease, atypical or mixed type" +"F00.9","Dementia in alzheimer's disease, unspecified" +"F01","VASCULAR DEMENTIA" +"F01.0","Vascular dementia of acute onset" +"F01.1","Multi-infarct dementia" +"F01.2","Subcortical vascular dementia" +"F01.3","Mixed cortical and subcortical vascular dementia" +"F01.8","Other vascular dementia" +"F01.9","Vascular dementia, unspecified" +"F02","Dementia in other diseases classified elsewhere" +"F02.0","Dementia in Pick's disease" +"F02.1","Dementia in Creutzfeldt-Jakob disease" +"F02.2","Dementia in Huntington's disease" +"F02.3","Dementia in Parkinson's disease" +"F02.4","Dementia in human immunodef virus [HIV] disease" +"F02.8","Dementia in other specified diseases classified elsewhere" +"F03","Unspecified dementia" +"F04","Organic amnesic syndrome not induced alcohol/other psychoactive substances" +"F05","Delirium, not induced by alcohol and other psychoactive substances" +"F05.0","Delirium not superimposed on dementia, so described" +"F05.1","Delirium superimposed on dementia" +"F05.8","Other delirium" +"F05.9","Delirium, unspecified" +"F06","Other mental disorders due to brain damage and dysfunction and to physical disease" +"F06.0","Organic hallucinosis" +"F06.1","Organic catatonic disorder" +"F06.2","Organic delusional [schizophrenia-like] disorder" +"F06.3","Organic mood [affective] disorders" +"F06.4","Organic anxiety disorder" +"F06.5","Organic dissociative disorder" +"F06.6","Organic emotionally labile [asthenic] disorder" +"F06.7","Mild cognitive disorder" +"F06.8","Other specified mental disorder brain damage and dysfunction/physcal disease" +"F06.9","Unspecified mental disorder brain damage and dysfunction/physcal disease" +"F07","Personality and behavioural disorders due to brain disease, damage and dysfunction" +"F07.0","Organic personality disorder" +"F07.1","Postencephalitic syndrome" +"F07.2","Postconcussional syndrome" +"F07.8","Other organ personality behavioural disorders due to brain disease, damage dysfunction" +"F07.9","Unspecified organ personality behavioural disorder brain damage and dysfunction" +"F09","Unspecified organic or symptomatic mental disorder" +"F10","MENTAL AND BEHAVIOURAL DISORDERS DUE TO USE OF ALCOHOL" +"F10.0","Mental & behavioural disorder due to use of alcohol: acute intoxication" +"F10.1","Mental & behavioural disorder due to use of alcohol: harmful use" +"F10.2","Mental & behavioural disorder due to use of alcohol: dependence syndrome" +"F10.3","Mental & behavioural disorder due to use of alcohol: withdrawal state" +"F10.4","Mental & behavioural disorder due to use of alcohol: withdrawl state with delirium" +"F10.5","Mental & behavioural disorder due to use of alcohol: psychotic disorder" +"F10.6","Mental & behavioural disorder due to use of alcohol: amnesic syndrome" +"F10.7","Mental & behavioural disorder due to use of alcohol: residual & late-onset psychotic disorder" +"F10.8","Mental & behavioural disorder due to use of alcohol: other mental & behavioural disorder" +"F10.9","Mental & behavioural disorder due to use of alcohol: unspecified mental & behavioural disorder" +"F11","MENTAL AND BEHAVIOURAL DISORDERS DUE TO USE OF OPIOIDS" +"F11.0","Mental & behavioural disorder due to use of opiods: acute intoxication" +"F11.1","Mental & behavioural disorder due to use of opiods: harmful use" +"F11.2","Mental & behavioural disorder due to use of opiods: dependence syndrome" +"F11.3","Mental & behavioural disorder due to use of opiods: withdrawal state" +"F11.4","Mental & behavioural disorder due to use of opiods: withdrawl state with delirium" +"F11.5","Mental & behavioural disorder due to use of opiods: psychotic disorder" +"F11.6","Mental & behavioural disorder due to use of opiods: amnesic syndrome" +"F11.7","Mental & behavioural disorder due to use of opiods: residual & late-onset psychotic disorder" +"F11.8","Mental & behavioural disorder due to use of opiods: other mental & behavioural disorder" +"F11.9","Mental & behavioural disorder due to use of opiods: unspecified mental & behavioural disorder" +"F12","Mental and behavioural disorders due to use of cannabinoids" +"F12.0","Mental & behavioural disorder due to use of cannabinoids: acute intoxication" +"F12.1","Mental & behavioural disorder due to use of cannabinoids: harmful use" +"F12.2","Mental & behavioural disorder due to use of cannabinoids: dependence syndrome" +"F12.3","Mental & behavioural disorder due to use of cannabinoids: withdrawal state" +"F12.4","Mental & behavioural disorder due to use of cannabinoids: withdrawl state with delirium" +"F12.5","Mental & behavioural disorder due to use of cannabinoids: psychotic disorder" +"F12.6","Mental & behavioural disorder due to use of cannabinoids: amnesic syndrome" +"F12.7","Mental & behavioural disorder due to use of cannabinoids: residual & late-onset psychotic disorder" +"F12.8","Mental & behavioural disorder due to use of cannabinoids: other mental & behavioural disorder" +"F12.9","Mental & behavioural disorder due to use of cannabinoids: unspecified mental & behavioural disorder" +"F13","MENTAL AND BEHAVIOURAL DISORDERS DUE TO USE OF SEDATIVES OR HYPNOTICS" +"F13.0","Mental & behavioural disorder due to use of sedatives or hypnotics: acute intoxication" +"F13.1","Mental & behavioural disorder due to use of sedatives or hypnotics: harmful use" +"F13.2","Mental & behavioural disorder due to use of sedatives or hypnotics: dependence syndrome" +"F13.3","Mental & behavioural disorder due to use of sedatives or hypnotics: withdrawal state" +"F13.4","Mental & behavioural disorder due to use of sedatives or hypnotics: withdrawl state with delirium" +"F13.5","Mental & behavioural disorder due to use of sedatives or hypnotics: psychotic disorder" +"F13.6","Mental & behavioural disorder due to use of sedatives or hypnotics: amnesic syndrome" +"F13.7","Mental & behavioural disorder due to use of sedatives or hypnotics: residual & late-onset psychotic disorder" +"F13.8","Mental & behavioural disorder due to use of sedatives or hypnotics: other mental & behavioural disorder" +"F13.9","Mental & behavioural disorder due to use of sedatives or hypnotics: unspecified mental & behavioural disorder" +"F14","MENTAL AND BEHAVIOURAL DISORDERS DUE TO USE OF COCAINE" +"F14.0","Mental & behavioural disorder due to use of cocaine: acute intoxication" +"F14.1","Mental & behavioural disorder due to use of cocaine: harmful use" +"F14.2","Mental & behavioural disorder due to use of cocaine: dependence syndrome" +"F14.3","Mental & behavioural disorder due to use of cocaine: withdrawal state" +"F14.4","Mental & behavioural disorder due to use of cocaine: withdrawl state with delirium" +"F14.5","Mental & behavioural disorder due to use of cocaine: psychotic disorder" +"F14.6","Mental & behavioural disorder due to use of cocaine: amnesic syndrome" +"F14.7","Mental & behavioural disorder due to use of cocaine: residual & late-onset psychotic disorder" +"F14.8","Mental & behavioural disorder due to use of cocaine: other mental & behavioural disorder" +"F14.9","Mental & behavioural disorder due to use of cocaine: unspecified mental & behavioural disorder" +"F15","Mental and behavioural disorders due to use of other stimulants, including caffeine" +"F15.0","Mental & behavioural disorder due to use of other stimulants, including caffeine: acute intoxication" +"F15.1","Mental & behavioural disorder due to use of other stimulants, including caffeine: harmful use" +"F15.2","Mental & behavioural disorder due to use of other stimulants, including caffeine: dependence syndrome" +"F15.3","Mental & behavioural disorder due to use of other stimulants, including caffeine: withdrawal state" +"F15.4","Mental & behavioural disorder due to use of other stimulants, including caffeine: withdrawl state with delirium" +"F15.5","Mental & behavioural disorder due to use of other stimulants, including caffeine: psychotic disorder" +"F15.6","Mental & behavioural disorder due to use of other stimulants, including caffeine: amnesic syndrome" +"F15.7","Mental & behavioural disorder due to use of other stimulants, including caffeine: residual & late-onset psychotic disorder" +"F15.8","Mental & behavioural disorder due to use of other stimulants, including caffeine: other mental & behavioural disorder" +"F15.9","Mental & behavioural disorder due to use of other stimulants, including caffeine: unspecified mental & behavioural disorder" +"F16","MENTAL AND BEHAVIOURAL DISORDERS DUE TO USE OF HALLUCINOGENS" +"F16.0","Mental & behavioural disorder due to use hallucinogens: acute intoxication" +"F16.1","Mental & behavioural disorder due to use hallucinogens: harmful use" +"F16.2","Mental & behavioural disorder due to use hallucinogens: dependence syndrome" +"F16.3","Mental & behavioural disorder due to use hallucinogens: withdrawal state" +"F16.4","Mental & behavioural disorder due to use hallucinogens: withdrawl state with delirium" +"F16.5","Mental & behavioural disorder due to use hallucinogens: psychotic disorder" +"F16.6","Mental & behavioural disorder due to use hallucinogens: amnesic syndrome" +"F16.7","Mental & behavioural disorder due to use hallucinogens: residual & late-onset psychotic disorder" +"F16.8","Mental & behavioural disorder due to use hallucinogens: other mental & behavioural disorder" +"F16.9","Mental & behavioural disorder due to use hallucinogens: unspecified mental & behavioural disorder" +"F17","MENTAL AND BEHAVIOURAL DISORDERS DUE TO USE OF TOBACCO" +"F17.0","Mental & behavioural disorder due of tobacco: acute intoxication" +"F17.1","Mental & behavioural disorder due of tobacco: harmful use" +"F17.2","Mental & behavioural disorder due of tobacco: dependence syndrome" +"F17.3","Mental & behavioural disorder due of tobacco: withdrawal state" +"F17.4","Mental & behavioural disorder due of tobacco: withdrawl state with delirium" +"F17.5","Mental & behavioural disorder due of tobacco: psychotic disorder" +"F17.6","Mental & behavioural disorder due of tobacco: amnesic syndrome" +"F17.7","Mental & behavioural disorder due of tobacco: residual & late-onset psychotic disorder" +"F17.8","Mental & behavioural disorder due of tobacco: other mental & behavioural disorder" +"F17.9","Mental & behavioural disorder due of tobacco: unspecified mental & behavioural disorder" +"F18","MENTAL AND BEHAVIOURAL DISORDERS DUE TO USE OF VOLATILE SOLVENTS" +"F18.0","Mental & behavioural disorder due of volatile solvents: acute intoxication" +"F18.1","Mental & behavioural disorder due of volatile solvents: harmful use" +"F18.2","Mental & behavioural disorder due of volatile solvents: dependence syndrome" +"F18.3","Mental & behavioural disorder due of volatile solvents: withdrawal state" +"F18.4","Mental & behavioural disorder due of volatile solvents: withdrawl state with delirium" +"F18.5","Mental & behavioural disorder due of volatile solvents: psychotic disorder" +"F18.6","Mental & behavioural disorder due of volatile solvents: amnesic syndrome" +"F18.7","Mental & behavioural disorder due of volatile solvents: residual & late-onset psychotic disorder" +"F18.8","Mental & behavioural disorder due of volatile solvents: other mental & behavioural disorder" +"F18.9","Mental & behavioural disorder due of volatile solvents: unspecified mental & behavioural disorder" +"F19","MENTAL AND BEHAVIOURAL DISORDERS DUE TO MULTIPLE DRUG USE AND USE OF OTHER PSYCHOACTIVE SUBSTANCES" +"F19.0","Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: acute intoxication" +"F19.1","Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: harmful use" +"F19.2","Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: dependence syndrome" +"F19.3","Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: withdrawal state" +"F19.4","Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: withdrawl state with delirium" +"F19.5","Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: psychotic disorder" +"F19.6","Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: amnesic syndrome" +"F19.7","Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: residual & late-onset psychotic disorder" +"F19.8","Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: other mental & behavioural disorder" +"F19.9","Mental & behavioural disorder due to multiple drug use and use of other psychoactive substances: unspecified mental & behavioural disorder" +"F20","SCHIZOPHRENIA" +"F20.0","Paranoid schizophrenia" +"F20.1","Hebephrenic schizophrenia" +"F20.2","Catatonic schizophrenia" +"F20.3","Undifferentiated schizophrenia" +"F20.4","Post-schizophrenic depression" +"F20.5","Residual schizophrenia" +"F20.6","Simple schizophrenia" +"F20.8","Other schizophrenia" +"F20.9","Schizophrenia, unspecified" +"F21","Schizotypal disorder" +"F22","PERSISTENT DELUSIONAL DISORDERS" +"F22.0","Delusional disorder" +"F22.8","Other persistent delusional disorders" +"F22.9","Persistent delusional disorder, unspecified" +"F23","ACUTE AND TRANSIENT PSYCHOTIC DISORDERS" +"F23.0","Acute polymorphic psychot disorder without symptoms of schizophrenia" +"F23.1","Acute polymorphic psychot disorder with symptoms of schizophrenia" +"F23.2","Acute schizophrenia-like psychotic disorder" +"F23.3","Other acute predominantly delusional psychotic disorders" +"F23.8","Other acute and transient psychotic disorders" +"F23.9","Acute and transient psychotic disorder, unspecified" +"F24","INDUCED DELUSIONAL DISORDER" +"F25","SCHIZOAFFECTIVE DISORDERS" +"F25.0","Schizoaffective disorder, manic type" +"F25.1","Schizoaffective disorder, depressive type" +"F25.2","Schizoaffective disorder, mixed type" +"F25.8","Other schizoaffective disorders" +"F25.9","Schizoaffective disorder, unspecified" +"F28","Other nonorganic psychotic disorders" +"F29","Unspecified nonorganic psychosis" +"F30","MANIC EPISODE" +"F30.0","Hypomania" +"F30.1","Mania without psychotic symptoms" +"F30.2","Mania with psychotic symptoms" +"F30.8","Other manic episodes" +"F30.9","Manic episode, unspecified" +"F31","Bipolar affective disorder" +"F31.0","Bipolar affective disorder, current episode hypomanic" +"F31.1","Bipolar affective disorder, current episode without psychotic symptoms" +"F31.2","Bipolar affective disorder, current episode manic with psychotic symptoms" +"F31.3","Bipolar affective disorder, current episode mild or moderate depression" +"F31.4","Bipolar affective disorder, current episode severe depression without psychotic symptoms" +"F31.5","Bipolar affective disorder, current episode severe depression with psychotic symptoms" +"F31.6","Bipolar affective disorder, current episode mixed" +"F31.7","Bipolar affective disorder, currently in remission" +"F31.8","Other bipolar affective disorders" +"F31.9","Bipolar affective disorder, unspecified" +"F32","DEPRESSIVE EPISODE" +"F32.0","Mild depressive episode" +"F32.1","Moderate depressive episode" +"F32.2","Severe depressive episode without psychotic symptoms" +"F32.3","Severe depressive episode with psychotic symptoms" +"F32.8","Other depressive episodes" +"F32.9","Depressive episode, unspecified" +"F33","RECURRENT DEPRESSIVE DISORDER" +"F33.0","Recurrent depressive disorder, current episode mild" +"F33.1","Recurrent depressive disorder, current episode moderate" +"F33.2","Recurrent depress disorder current episode severe without symptoms" +"F33.3","Recurrent depress disorder current episode severe with psyc symp" +"F33.4","Recurrent depressive disorder, currently in remission" +"F33.8","Other recurrent depressive disorders" +"F33.9","Recurrent depressive disorder, unspecified" +"F34","PERSISTENT MOOD [AFFECTIVE] DISORDERS" +"F34.0","Cyclothymia" +"F34.1","Dysthymia" +"F34.8","Other persistent mood [affective] disorders" +"F34.9","Persistent mood [affective] disorder, unspecified" +"F38","OTHER MOOD [AFFECTIVE] DISORDERS" +"F38.0","Other single mood [affective] disorders" +"F38.1","Other recurrent mood [affective] disorders" +"F38.8","Other specified mood [affective] disorders" +"F39","Unspecified mood [affective] disorder" +"F40","PHOBIC ANXIETY DISORDERS" +"F40.0","Agoraphobia" +"F40.1","Social phobias" +"F40.2","Specific (isolated) phobias" +"F40.8","Other phobic anxiety disorders" +"F40.9","Phobic anxiety disorder, unspecified" +"F41","OTHER ANXIETY DISORDERS" +"F41.0","Panic disorder [episodic paroxysmal anxiety]" +"F41.1","Generalized anxiety disorder" +"F41.2","Mixed anxiety and depressive disorder" +"F41.3","Other mixed anxiety disorders" +"F41.8","Other specified anxiety disorders" +"F41.9","Anxiety disorder, unspecified" +"F42","OBSESSIVE-COMPULSIVE DISORDER" +"F42.0","Predominantly obsessional thoughts or ruminations" +"F42.1","Predominantly compulsive acts [obsessional rituals]" +"F42.2","Mixed obsessional thoughts and acts" +"F42.8","Other obsessive-compulsive disorders" +"F42.9","Obsessive-compulsive disorder, unspecified" +"F43","Reaction to severe stress, and adjustment disorders" +"F43.0","Acute stress reaction" +"F43.1","Post-traumatic stress disorder" +"F43.2","Adjustment disorders" +"F43.8","Other reactions to severe stress" +"F43.9","Reaction to severe stress, unspecified" +"F44","DISSOCIATIVE [CONVERSION] DISORDERS" +"F44.0","Dissociative amnesia" +"F44.1","Dissociative fugue" +"F44.2","Dissociative stupor" +"F44.3","Trance and possession disorders" +"F44.4","Dissociative motor disorders" +"F44.5","Dissociative convulsions" +"F44.6","Dissociative anaesthesia and sensory loss" +"F44.7","Mixed dissociative [conversion] disorders" +"F44.8","Other dissociative [conversion] disorders" +"F44.9","Dissociative [conversion] disorder, unspecified" +"F45","SOMATOFORM DISORDERS" +"F45.0","Somatization disorder" +"F45.1","Undifferentiated somatoform disorder" +"F45.2","Hypochondriacal disorder" +"F45.3","Somatoform autonomic dysfunction" +"F45.4","Persistent somatoform pain disorder" +"F45.8","Other somatoform disorders" +"F45.9","Somatoform disorder, unspecified" +"F48","OTHER NEUROTIC DISORDERS" +"F48.0","Neurasthenia" +"F48.1","Depersonalization-derealization syndrome" +"F48.8","Other specified neurotic disorders" +"F48.9","Neurotic disorder, unspecified" +"F50","EATING DISORDERS" +"F50.0","Anorexia nervosa" +"F50.1","Atypical anorexia nervosa" +"F50.2","Bulimia nervosa" +"F50.3","Atypical bulimia nervosa" +"F50.4","Overeating associated with other psychological disturbances" +"F50.5","Vomiting associated with other psychological disturbances" +"F50.8","Other eating disorders" +"F50.9","Eating disorder, unspecified" +"F51","NONORGANIC SLEEP DISORDERS" +"F51.0","Nonorganic insomnia" +"F51.1","Nonorganic hypersomnia" +"F51.2","Nonorganic disorder of the sleep-wake schedule" +"F51.3","Sleepwalking [somnambulism]" +"F51.4","Sleep terrors [night terrors]" +"F51.5","Nightmares" +"F51.8","Other nonorganic sleep disorders" +"F51.9","Nonorganic sleep disorder, unspecified" +"F52","SEXUAL DYSFUNCTION, NOT CAUSED BY ORGANIC DISORDER OR DISEASE" +"F52.0","Lack or loss of sexual desire" +"F52.1","Sexual aversion and lack of sexual enjoyment" +"F52.2","Failure of genital response" +"F52.3","Orgasmic dysfunction" +"F52.4","Premature ejaculation" +"F52.5","Nonorganic vaginismus" +"F52.6","Nonorganic dyspareunia" +"F52.7","Excessive sexual drive" +"F52.8","Other sexual dysfunction not caused by organic disorder/disease" +"F52.9","Unspecified sexual dysfunction not caused by organic disorder or disease" +"F53","Mental and behavioural disorders associated with the puerperium, not elsewhere classified" +"F53.0","Mild mental and behavioural disorder associated with the puerperium NEC" +"F53.1","Severe mental and behavioural disorder associated with puerperium NEC" +"F53.8","Other mental and behavioural disorder associated with the puerperium NEC" +"F53.9","Puerperal mental disorder, unspecified" +"F54","Psychological and behavioural factor associated with disord or disease Classified elsewhere" +"F55","Abuse of non-dependence-producing substances" +"F59","Unspecified behavaviural syndrome associated with physiological disturbances and physical factor" +"F60","SPECIFIC PERSONALITY DISORDERS" +"F60.0","Paranoid personality disorder" +"F60.1","Schizoid personality disorder" +"F60.2","Dissocial personality disorder" +"F60.3","Emotionally unstable personality disorder" +"F60.4","Histrionic personality disorder" +"F60.5","Anankastic personality disorder" +"F60.6","Anxious [avoidant] personality disorder" +"F60.7","Dependent personality disorder" +"F60.8","Other specific personality disorders" +"F60.9","Personality disorder, unspecified" +"F61","MIXED AND OTHER PERSONALITY DISORDERS" +"F62","ENDURING PERSONALITY CHANGES, NOT ATTRIBUTABLE TO BRAIN DAMAGE AND DISEASE" +"F62.0","Enduring personality change after catastrophic experience" +"F62.1","Enduring personality change after psychiatric illness" +"F62.8","Other enduring personality changes" +"F62.9","Enduring personality change, unspecified" +"F63","HABIT AND IMPULSE DISORDERS" +"F63.0","Pathological gambling" +"F63.1","Pathological fire-setting [pyromania]" +"F63.2","Pathological stealing [kleptomania]" +"F63.3","Trichotillomania" +"F63.8","Other habit and impulse disorders" +"F63.9","Habit and impulse disorder, unspecified" +"F64","GENDER IDENTITY DISORDERS" +"F64.0","Transsexualism" +"F64.1","Dual-role transvestism" +"F64.2","Gender identity disorder of childhood" +"F64.8","Other gender identity disorders" +"F64.9","Gender identity disorder, unspecified" +"F65","DISORDERS OF SEXUAL PREFERENCE" +"F65.0","Fetishism" +"F65.1","Fetishistic transvestism" +"F65.2","Exhibitionism" +"F65.3","Voyeurism" +"F65.4","Paedophilia" +"F65.5","Sadomasochism" +"F65.6","Multiple disorders of sexual preference" +"F65.8","Other disorders of sexual preference" +"F65.9","Disorder of sexual preference, unspecified" +"F66","Psychological and behavioural disorders associated with sexual development and orientation" +"F66.0","Sexual maturation disorder" +"F66.1","Egodystonic sexual orientation" +"F66.2","Sexual relationship disorder" +"F66.8","Other psychosexual development disorders" +"F66.9","Psychosexual development disorder, unspecified" +"F68","OTHER DISORDERS OF ADULT PERSONALITY AND BEHAVIOUR" +"F68.0","Elaboration of physical symptoms for psychological reasons" +"F68.1","Intentional production/feigning of symptoms/disabilities either physical/psychological [factititous disorder)" +"F68.8","Other specified disorders of adult personality and behaviour" +"F69","Unspecified disorder of adult personality and behaviour" +"F70","MILD MENTAL RETARDATION" +"F70.0","Mild mental retardation: with statement no or minimal, impairment of behaviour" +"F70.1","Mild mental retardation: significant impairment behaviour requiring attentiom / treatment" +"F70.8","Mild mental retardation: other impairments of behaviour" +"F70.9","Mild mental retardation: without mention of impairment behaviour" +"F71","MODERATE MENTAL RETARDATION" +"F71.0","Mod mental retardation: with statement no or minimal, impairment of behaviour" +"F71.1","Mod mental retardation: significant impairment behaviour requiring attentiom / treatment" +"F71.8","Mod mental retardation: other impairments of behaviour" +"F71.9","Mod mental retardation: without mention of impairment behaviour" +"F72","SEVERE MENTAL RETARDATION" +"F72.0","Severe mental retardation: with statement no or minimal, impairment of behaviour" +"F72.1","Severe mental retardation: significant impairment behaviour requiring attentiom / treatment" +"F72.8","Severe mental retardation: other impairments of behaviour" +"F72.9","Severe mental retardation: without mention of impairment behaviour" +"F73","PROFOUND MENTAL RETARDATION" +"F73.0","Profound mental retardation: with statement no or minimal, impairment of behaviour" +"F73.1","Profound mental retardation: significant impairment behaviour requiring attentiom / treatment" +"F73.8","Profound mental retardation: other impairments of behaviour" +"F73.9","Profound mental retardation: without mention of impairment behaviour" +"F78","OTHER MENTAL RETARDATION" +"F78.0","other mental retardation: with statement no or minimal, impairment of behaviour" +"F78.1","other mental retardation: significant impairment behaviour requiring attentiom / treatment" +"F78.8","other mental retardation: other impairments of behaviour" +"F78.9","other mental retardation: without mention of impairment behaviour" +"F79","Unspecified mental retardation" +"F79.0","Unspecified mental retardation: with statement no or minimal, impairment of behaviour" +"F79.1","Unspecified mental retardation: significant impairment behaviour requiring attentiom / treatment" +"F79.8","Unspecified mental retardation: other impairments of behaviour" +"F79.9","Unspecified mental retardation: without mention of impairment behaviour" +"F80","Specific developmental disorders of speech and language" +"F80.0","Specific speech articulation disorder" +"F80.1","Expressive language disorder" +"F80.2","Receptive language disorder" +"F80.3","Acquired aphasia with epilepsy [Landau-Kleffner]" +"F80.8","Other developmental disorders of speech and language" +"F80.9","Developmental disorder of speech and language, unspecified" +"F81","Specific developmental disorders of scholastic skills" +"F81.0","Specific reading disorder" +"F81.1","Specific spelling disorder" +"F81.2","Specific disorder of arithmetical skills" +"F81.3","Mixed disorder of scholastic skills" +"F81.8","Other developmental disorders of scholastic skills" +"F81.9","Developmental disorder of scholastic skills, unspecified" +"F82","SPECIFIC DEVELOPMENTAL DISORDER OF MOTOR FUNCTION" +"F83","MIXED SPECIFIC DEVELOPMENTAL DISORDERS" +"F84","PERVASIVE DEVELOPMENTAL DISORDERS" +"F84.0","Childhood autism" +"F84.1","Atypical autism" +"F84.2","Rett's syndrome" +"F84.3","Other childhood disintegrative disorder" +"F84.4","Overactive disorder associated with mental retardation and stereotype movements" +"F84.5","Asperger's syndrome" +"F84.8","Other pervasive developmental disorders" +"F84.9","Pervasive developmental disorder, unspecified" +"F88","OTHER DISORDERS OF PSYCHOLOGICAL DEVELOPMENT" +"F89","Unspecified disorder of psychological development" +"F90","HYPERKINETIC DISORDERS" +"F90.0","Disturbance of activity and attention" +"F90.1","Hyperkinetic conduct disorder" +"F90.8","Other hyperkinetic disorders" +"F90.9","Hyperkinetic disorder, unspecified" +"F91","CONDUCT DISORDERS" +"F91.0","Conduct disorder confined to the family context" +"F91.1","Unsocialized conduct disorder" +"F91.2","Socialized conduct disorder" +"F91.3","Oppositional defiant disorder" +"F91.8","Other conduct disorders" +"F91.9","Conduct disorder, unspecified" +"F92","MIXED DISORDERS OF CONDUCT AND EMOTIONS" +"F92.0","Depressive conduct disorder" +"F92.8","Other mixed disorders of conduct and emotions" +"F92.9","Mixed disorder of conduct and emotions, unspecified" +"F93","Emotional disorders with onset specific to childhood" +"F93.0","Separation anxiety disorder of childhood" +"F93.1","Phobic anxiety disorder of childhood" +"F93.2","Social anxiety disorder of childhood" +"F93.3","Sibling rivalry disorder" +"F93.8","Other childhood emotional disorders" +"F93.9","Childhood emotional disorder, unspecified" +"F94","Disorders of social functioning with onset specific to childhood and adolescence" +"F94.0","Elective mutism" +"F94.1","Reactive attachment disorder of childhood" +"F94.2","Disinhibited attachment disorder of childhood" +"F94.8","Other childhood disorders of social functioning" +"F94.9","Childhood disorder of social functioning, unspecified" +"F95","TIC DISORDERS" +"F95.0","Transient tic disorder" +"F95.1","Chronic motor or vocal tic disorder" +"F95.2","Combined vocal multiple motor tic disorder [de la tourette]" +"F95.8","Other tic disorders" +"F95.9","Tic disorder, unspecified" +"F98","Other behavioural and emotional disorders with onset usually occurring in childhood and adolescence" +"F98.0","Nonorganic enuresis" +"F98.1","Nonorganic encopresis" +"F98.2","Feeding disorder of infancy and childhood" +"F98.3","Pica of infancy and childhood" +"F98.4","Stereotyped movement disorders" +"F98.5","Stuttering [stammering]" +"F98.6","Cluttering" +"F98.8","Other behavioral and emotional disorder onset usually ocurring childhood adolescence" +"F98.9","Unspecified behavioral and emotional disorder onset usually ocurring childhood adolescence" +"F99","MENTAL DISORDER, NOT OTHERWISE SPECIFIED" +"G00","BACTERIAL MENINGITIS, NOT ELSEWHERE CLASSIFIED" +"G00.0","Haemophilus meningitis" +"G00.1","Pneumococcal meningitis" +"G00.2","Streptococcal meningitis" +"G00.3","Staphylococcal meningitis" +"G00.8","Other bacterial meningitis" +"G00.9","Bacterial meningitis, unspecified" +"G01","MENINGITIS IN BACTERIAL DISEASES CLASSIFIED ELSEWHERE" +"G02","MENINGITIS IN OTHER INFECTIOUS AND PARASITIC DISEASES CLASSIFIED ELSEWHERE" +"G02.0","Meningitis in viral diseases classified elsewhere" +"G02.1","Meningitis in mycoses" +"G02.8","Meningitis in other spec infectious and parasitic dis ec" +"G03","Meningitis due to other and unspecified causes" +"G03.0","Nonpyogenic meningitis" +"G03.1","Chronic meningitis" +"G03.2","Benign recurrent meningitis [Mollaret]" +"G03.8","Meningitis due to other specified causes" +"G03.9","Meningitis, unspecified" +"G04","ENCEPHALITIS, MYELITIS AND ENCEPHALOMYELITIS" +"G04.0","Acute disseminated encephalitis" +"G04.1","Tropical spastic paraplegia" +"G04.2","Bacterial meningoencephalitis and meningomyelitis nec" +"G04.8","Other encephalitis, myelitis and encephalomyelitis" +"G04.9","Encephalitis, myelitis and encephalomyelitis, unspecified" +"G05","ENCEPHALITIS, MYELITIS AND ENCEPHALOMYELITIS IN DISEASES CLASSIFIED ELSEWHERE" +"G05.0","Encephalitis, myelitis & encephalomyelitis in bacterial disease classified elsewhere" +"G05.1","Encephalitis, myelitis & encephalomyelitis in viral disease classified elsewhere" +"G05.2","Encephalitis myelitis encphlomyelitis infectious and parasitic disease classified elsewhere" +"G05.8","Encephalitis, myelitis & encephalomyelitis in other disease classified elsewhere" +"G06","INTRACRANIAL AND INTRASPINAL ABSCESS AND GRANULOMA" +"G06.0","Intracranial abscess and granuloma" +"G06.1","Intraspinal abscess and granuloma" +"G06.2","Extradural and subdural abscess, unspecified" +"G07","Intracranial and intraspinal abscess and granuloma disease classified elsewhere" +"G08","INTRACRANIAL AND INTRASPINAL PHLEBITIS AND THROMBOPHLEBITIS" +"G09","Sequelae of inflammatory diseases of central nervous system" +"G10","Huntington's disease" +"G11","HEREDITARY ATAXIA" +"G11.0","Congenital nonprogressive ataxia" +"G11.1","Early-onset cerebellar ataxia" +"G11.2","Late-onset cerebellar ataxia" +"G11.3","Cerebellar ataxia with defective DNA repair" +"G11.4","Hereditary spastic paraplegia" +"G11.8","Other hereditary ataxias" +"G11.9","Hereditary ataxia, unspecified" +"G12","SPINAL MUSCULAR ATROPHY AND RELATED SYNDROMES" +"G12.0","Infantile spinal muscular atrophy, type i [werdnig-hoffman]" +"G12.1","Other inherited spinal muscular atrophy" +"G12.2","Motor neuron disease" +"G12.8","Other spinal muscular atrophies and related syndromes" +"G12.9","Spinal muscular atrophy, unspecified" +"G13","SYSTEMIC ATROPHIES PRIMARILY AFFECTING CENTRAL NERVOUS SYSTEM IN DISEASES CLASSIFIED ELSEWHERE" +"G13.0","Paraneoplastic neuromyopathy and neuropathy" +"G13.1","Other systemic atrophy primarily affect central nervous system neoplastic disease" +"G13.2","Systemic atrophy primarily affecting central nervous system in myxoedema" +"G13.8","Systemic atrophy primarily affecting central nervous system other disease classified elsewhere" +"G14","Postpolio syndrome" +"G20","Parkinson's Disease" +"G21","SECONDARY PARKINSONISM" +"G21.0","Malignant neuroleptic syndrome" +"G21.1","Other drug-induced secondary parkinsonism" +"G21.2","Secondary parkinsonism due to other external agents" +"G21.3","Postencephalitic parkinsonism" +"G21.4","Vascular parkinsonism" +"G21.8","Other secondary parkinsonism" +"G21.9","Secondary parkinsonism, unspecified" +"G22","PARKINSONISM IN DISEASES CLASSIFIED ELSEWHERE" +"G23","OTHER DEGENERATIVE DISEASES OF BASAL GANGLIA" +"G23.0","Hallervorden-Spatz disease" +"G23.1","Progressive supranuclear ophthalmoplegia" +"G23.2","Striatonigral degeneration" +"G23.8","Other specified degenerative diseases of basal ganglia" +"G23.9","Degenerative disease of basal ganglia, unspecified" +"G24","DYSTONIA" +"G24.0","Drug-induced dystonia" +"G24.1","Idiopathic familial dystonia" +"G24.2","Idiopathic nonfamilial dystonia" +"G24.3","Spasmodic torticollis" +"G24.4","Idiopathic orofacial dystonia" +"G24.5","Blepharospasm" +"G24.8","Other dystonia" +"G24.9","Dystonia, unspecified" +"G25","OTHER EXTRAPYRAMIDAL AND MOVEMENT DISORDERS" +"G25.0","Essential tremor" +"G25.1","Drug-induced tremor" +"G25.2","Other specified forms of tremor" +"G25.3","Myoclonus" +"G25.4","Drug-induced chorea" +"G25.5","Other chorea" +"G25.6","Drug-induced tics and other tics of organic origin" +"G25.8","Other specified extrapyramidal and movement disorders" +"G25.9","Extrapyramidal and movement disorder, unspecified" +"G26","Extrapyramidal and movement disorders in disease classified elsewhere" +"G30","Alzheimer disease" +"G30.0","Alzheimer's disease with early onset" +"G30.1","Alzheimer's disease with late onset" +"G30.8","Other alzheimer's disease" +"G30.9","Alzheimer's disease, unspecified" +"G31","OTHER DEGENERATIVE DISEASES OF NERVOUS SYSTEM, NOT ELSEWHERE CLASSIFIED" +"G31.0","Circumscribed brain atrophy" +"G31.1","Senile degeneration of brain, not elsewhere classified" +"G31.2","Degeneration of nervous system due to alcohol" +"G31.8","Other specified degenerative diseases of nervous system" +"G31.9","Degenerative disease of nervous system, unspecified" +"G32","OTHER DEGENERATIVE DISORDERS OF NERVOUS SYSTEM IN DISEASES CLASSIFIED ELSEWHERE" +"G32.0","Subacute combined degeneration of spinal cord in dis ec" +"G32.8","Other spec degenerative disorders of nervous system dis ec" +"G35","MULTIPLE SCLEROSIS" +"G36","OTHER ACUTE DISSEMINATED DEMYELINATION" +"G36.0","Neuromyelitis optica [Devic]" +"G36.1","Acute and subacute haemorrhagic leukoencephalitis [Hurst]" +"G36.8","Other specified acute disseminated demyelination" +"G36.9","Acute disseminated demyelination, unspecified" +"G37","OTHER DEMYELINATING DISEASES OF CENTRAL NERVOUS SYSTEM" +"G37.0","Diffuse sclerosis" +"G37.1","Central demyelination of corpus callosum" +"G37.2","Central pontine myelinolysis" +"G37.3","Acute transverse myelitis in demyelinating disease of cns" +"G37.4","Subacute necrotizing myelitis" +"G37.5","Concentric sclerosis [bal-]" +"G37.8","Other spec demyelinating diseases of central nervous system" +"G37.9","Demyelinating disease of central nervous system, unspecified" +"G40","EPILEPSY" +"G40.0","Localization-related(focal)(partial)idiopathic epilepsy / epileptic syndromes seizures localized onset" +"G40.1","Localization-related(focal)(partial)idiopathic epilepsy / epileptic syndromes with simple partial seizures" +"G40.2","Localization-related(focal)(partial)idiopathic epilepsy / epileptic syndromes with complex partial seizures" +"G40.3","Generalized idiopathic epilepsy and epileptic syndromes" +"G40.4","Other generalized epilepsy and epileptic syndromes" +"G40.5","Special epileptic syndromes" +"G40.6","Grand mal seizures, unspecified (with or without petit mal)" +"G40.7","Petit mal, unspecified, without grand mal seizures" +"G40.8","Other epilepsy" +"G40.9","Epilepsy, unspecified" +"G41","STATUS EPILEPTICUS" +"G41.0","Grand mal status epilepticus" +"G41.1","Petit mal status epilepticus" +"G41.2","Complex partial status epilepticus" +"G41.8","Other status epilepticus" +"G41.9","Status epilepticus, unspecified" +"G43","MIGRAINE" +"G43.0","Migraine without aura [common migraine]" +"G43.1","Migraine with aura [classical migraine]" +"G43.2","Status migrainosus" +"G43.3","Complicated migraine" +"G43.8","Other migraine" +"G43.9","Migraine, unspecified" +"G44","Other headache syndromes" +"G44.0","Cluster headache syndrome" +"G44.1","Vascular headache, not elsewhere classified" +"G44.2","Tension-type headache" +"G44.3","Chronic post-traumatic headache" +"G44.4","Drug-induced headache, not elsewhere classified" +"G44.8","Other specified headache syndromes" +"G45","TRANSIENT CEREBRAL ISCHAEMIC ATTACKS AND RELATED SYNDROMES" +"G45.0","Vertebro-basilar artery syndrome" +"G45.1","Carotid artery syndrome (hemispheric)" +"G45.2","Multiple and bilateral precerebral artery syndromes" +"G45.3","Amaurosis fugax" +"G45.4","Transient global amnesia" +"G45.8","Other transient cerebral ischaemic attacks and related synd" +"G45.9","Transient cerebral ischaemic attack, unspecified" +"G46","Vascular syndromes of brain in cerebrovascular diseases" +"G46.0","Middle cerebral artery syndrome" +"G46.1","Anterior cerebral artery syndrome" +"G46.2","Posterior cerebral artery syndrome" +"G46.3","Brain stem stroke syndrome" +"G46.4","Cerebellar stroke syndrome" +"G46.5","Pure motor lacunar syndrome" +"G46.6","Pure sensory lacunar syndrome" +"G46.7","Other lacunar syndromes" +"G46.8","Other vascular syndromes of brain in cerebrovascular disease" +"G47","SLEEP DISORDERS" +"G47.0","Disorders of initiating and maintaining sleep [insomnias]" +"G47.1","Disorders of excessive somnolence [hypersomnias]" +"G47.2","Disorders of the sleep-wake schedule" +"G47.3","Sleep apnoea" +"G47.4","Narcolepsy and cataplexy" +"G47.8","Other sleep disorders" +"G47.9","Sleep disorder, unspecified" +"G50","DISORDERS OF TRIGEMINAL NERVE" +"G50.0","Trigeminal neuralgia" +"G50.1","Atypical facial pain" +"G50.8","Other disorders of trigeminal nerve" +"G50.9","Disorder of trigeminal nerve, unspecified" +"G51","FACIAL NERVE DISORDERS" +"G51.0","Bells Palsy" +"G51.1","Geniculate ganglionitis" +"G51.2","Melkersson's syndrome" +"G51.3","Clonic hemifacial spasm" +"G51.4","Facial myokymia" +"G51.8","Other disorders of facial nerve" +"G51.9","Disorder of facial nerve, unspecified" +"G52","DISORDERS OF OTHER CRANIAL NERVES" +"G52.0","Disorders of olfactory nerve" +"G52.1","Disorders of glossopharyngeal nerve" +"G52.2","Disorders of vagus nerve" +"G52.3","Disorders of hypoglossal nerve" +"G52.7","Disorders of multiple cranial nerves" +"G52.8","Disorders of other specified cranial nerves" +"G52.9","Cranial nerve disorder, unspecified" +"G53","CRANIAL NERVE DISORDERS IN DISEASES CLASSIFIED ELSEWHERE" +"G53.0","Postzoster neuralgia" +"G53.1","Multiple cranial nerve palsies in infectious & parasit disease classified elsewhere" +"G53.2","Multiple cranial nerve palsies in sarcoidosis" +"G53.3","Multiple cranial nerve palsies in neoplastic disease" +"G53.8","Other cranial nerve disorders in other disease classified elsewhere" +"G54","NERVE ROOT AND PLEXUS DISORDERS" +"G54.0","Brachial plexus disorders" +"G54.1","Lumbosacral plexus disorders" +"G54.2","Cervical root disorders, not elsewhere classified" +"G54.3","Thoracic root disorders, not elsewhere classified" +"G54.4","Lumbosacral root disorders, not elsewhere classified" +"G54.5","Neuralgic amyotrophy" +"G54.6","Phantom limb syndrome with pain" +"G54.7","Phantom limb syndrome without pain" +"G54.8","Other nerve root and plexus disorders" +"G54.9","Nerve root and plexus disorder, unspecified" +"G55","Nerve root and plexus compressions in diseases classified elsewhere" +"G55.0","Nerve root and plexus compressions in neoplastic disease" +"G55.1","Nerve root and plexus compressions in intravert disc disord" +"G55.2","Nerve root and plexus compressions in spondylosis" +"G55.3","Nerve root and plexus compressions in oth dorsopathies" +"G55.8","Nerve root and plexus compressions in other disease classified elsewhere" +"G56","MONONEUROPATHIES OF UPPER LIMB" +"G56.0","Carpal tunnel syndrome" +"G56.1","Other lesions of median nerve" +"G56.2","Lesion of ulnar nerve" +"G56.3","Lesion of radial nerve" +"G56.4","Causalgia" +"G56.8","Other mononeuropathies of upper limb" +"G56.9","Mononeuropathy of upper limb, unspecified" +"G57","MONONEUROPATHIES OF LOWER LIMB" +"G57.0","Lesion of sciatic nerve" +"G57.1","Meralgia paraesthetica" +"G57.2","Lesion of femoral nerve" +"G57.3","Lesion of lateral popliteal nerve" +"G57.4","Lesion of medial popliteal nerve" +"G57.5","Tarsal tunnel syndrome" +"G57.6","Lesion of plantar nerve" +"G57.8","Other mononeuropathies of lower limb" +"G57.9","Mononeuropathy of lower limb, unspecified" +"G58","OTHER MONONEUROPATHIES" +"G58.0","Intercostal neuropathy" +"G58.7","Mononeuritis multiplex" +"G58.8","Other specified mononeuropathies" +"G58.9","Mononeuropathy, unspecified" +"G59","Mononeuropathy in diseases classified elsewhere" +"G59.0","Diabetic mononeuropathy" +"G59.8","Other mononeuropathies in diseases classified elsewhere" +"G60","HEREDITARY AND IDIOPATHIC NEUROPATHY" +"G60.0","Hereditary motor and sensory neuropathy" +"G60.1","Refsum's disease" +"G60.2","Neuropathy in association with hereditary ataxia" +"G60.3","Idiopathic progressive neuropathy" +"G60.8","Other hereditary and idiopathic neuropathies" +"G60.9","Hereditary and idiopathic neuropathy, unspecified" +"G61","INFLAMMATORY POLYNEUROPATHY" +"G61.0","Guillain-barre syndrome" +"G61.1","Serum neuropathy" +"G61.8","Other inflammatory polyneuropathies" +"G61.9","Inflammatory polyneuropathy, unspecified" +"G62","OTHER POLYNEUROPATHIES" +"G62.0","Drug-induced polyneuropathy" +"G62.1","Alcoholic polyneuropathy" +"G62.2","Polyneuropathy due to other toxic agents" +"G62.8","Other specified polyneuropathies" +"G62.9","Polyneuropathy, unspecified" +"G63","Polyneuropathy in diseases classified elsewhere" +"G63.0","Polyneuropathy in infectious and parasitic disease classified elsewhere" +"G63.1","Polyneuropathy in neoplastic disease" +"G63.2","Diabetic polyneuropathy" +"G63.3","Polyneuropathy in other endocrine and metabolic diseases" +"G63.4","Polyneuropathy in nutritional deficiency" +"G63.5","Polyneuropathy in systemic connective tissue disorders" +"G63.6","Polyneuropathy in other musculoskeletal disorders" +"G63.8","Polyneuropathy in other diseases classified elsewhere" +"G64","OTHER DISORDERS OF PERIPHERAL NERVOUS SYSTEM" +"G70","MYASTHENIA GRAVIS AND OTHER MYONEURAL DISORDERS" +"G70.0","Myasthenia gravis" +"G70.1","Toxic myoneural disorders" +"G70.2","Congenital and developmental myasthenia" +"G70.8","Other specified myoneural disorders" +"G70.9","Myoneural disorder, unspecified" +"G71","PRIMARY DISORDERS OF MUSCLES" +"G71.0","Muscular dystrophy" +"G71.1","Myotonic disorders" +"G71.2","Congenital myopathies" +"G71.3","Mitochondrial myopathy, not elsewhere classified" +"G71.8","Other primary disorders of muscles" +"G71.9","Primary disorder of muscle, unspecified" +"G72","OTHER MYOPATHIES" +"G72.0","Drug-induced myopathy" +"G72.1","Alcoholic myopathy" +"G72.2","Myopathy due to other toxic agents" +"G72.3","Periodic paralysis" +"G72.4","Inflammatory myopathy, not elsewhere classified" +"G72.8","Other specified myopathies" +"G72.9","Myopathy, unspecified" +"G73","Disorders of myoneural junction and muscle in diseases classified elsewhere" +"G73.0","Myasthenic syndromes in endocrine diseases" +"G73.1","Eaton-lambert syndrome" +"G73.2","Other myasthenic syndromes in neoplastic disease" +"G73.3","Myasthenic syndromes in other diseases classified elsewhere" +"G73.4","Myopathy in infectious and parasitic disease classified elsewhere" +"G73.5","Myopathy in endocrine diseases" +"G73.6","Myopathy in metabolic diseases" +"G73.7","Myopathy in other diseases classified elsewhere" +"G80","Cerebral palsy" +"G80.0","Spastic cerebral palsy" +"G80.1","Spastic diplegia" +"G80.2","Infantile hemiplegia" +"G80.3","Dyskinetic cerebral palsy" +"G80.4","Ataxic cerebral palsy" +"G80.8","Other infantile cerebral palsy" +"G80.9","Infantile cerebral palsy, unspecified" +"G81","HEMIPLEGIA" +"G81.0","Flaccid hemiplegia" +"G81.1","Spastic hemiplegia" +"G81.9","Hemiplegia, unspecified" +"G82","PARAPLEGIA AND TETRAPLEGIA" +"G82.0","Flaccid paraplegia" +"G82.1","Spastic paraplegia" +"G82.2","Paraplegia, unspecified" +"G82.3","Flaccid tetraplegia" +"G82.4","Spastic tetraplegia" +"G82.5","Tetraplegia, unspecified" +"G83","OTHER PARALYTIC SYNDROMES" +"G83.0","Diplegia of upper limbs" +"G83.1","Monoplegia of lower limb" +"G83.2","Monoplegia of upper limb" +"G83.3","Monoplegia, unspecified" +"G83.4","Cauda equina syndrome" +"G83.8","Other specified paralytic syndromes" +"G83.9","Paralytic syndrome, unspecified" +"G90","DISORDERS OF AUTONOMIC NERVOUS SYSTEM" +"G90.0","Idiopathic peripheral autonomic neuropathy" +"G90.1","Familial dysautonomia [Riley-Day]" +"G90.2","Horner's syndrome" +"G90.3","Multi-system degeneration" +"G90.4","Autonomic dysreflexia" +"G90.8","Other disorders of autonomic nervous system" +"G90.9","Disorder of autonomic nervous system, unspecified" +"G91","HYDROCEPHALUS" +"G91.0","Communicating hydrocephalus" +"G91.1","Obstructive hydrocephalus" +"G91.2","Normal-pressure hydrocephalus" +"G91.3","Post-traumatic hydrocephalus, unspecified" +"G91.8","Other hydrocephalus" +"G91.9","Hydrocephalus, unspecified" +"G92","TOXIC ENCEPHALOPATHY" +"G93","OTHER DISORDERS OF BRAIN" +"G93.0","Cerebral cysts" +"G93.1","Anoxic brain damage, not elsewhere classified" +"G93.2","Benign intracranial hypertension" +"G93.3","Postviral fatigue syndrome" +"G93.4","Encephalopathy, unspecified" +"G93.5","Compression of brain" +"G93.6","Cerebral oedema" +"G93.7","Reye's syndrome" +"G93.8","Other specified disorders of brain" +"G93.9","Disorder of brain, unspecified" +"G94","Other disorders of brain in diseases classified elsewhere" +"G94.0","Hydrocephalus in infectious and parasitic disease classified elsewhere" +"G94.1","Hydrocephalus in neoplastic disease" +"G94.2","Hydrocephalus in other diseases classified elsewhere" +"G94.8","Other specified disorders of brain in disease classified elsewhere" +"G95","OTHER DISEASES OF SPINAL CORD" +"G95.0","Syringomyelia and syringobulbia" +"G95.1","Vascular myelopathies" +"G95.2","Cord compression, unspecified" +"G95.8","Other specified diseases of spinal cord" +"G95.9","Disease of spinal cord, unspecified" +"G96","OTHER DISORDERS OF CENTRAL NERVOUS SYSTEM" +"G96.0","Cerebrospinal fluid leak" +"G96.1","Disorders of meninges, not elsewhere classified" +"G96.8","Other specified disorders of central nervous system" +"G96.9","Disorder of central nervous system, unspecified" +"G97","POSTPROCEDURAL DISORDERS OF NERVOUS SYSTEM, NOT ELSEWHERE CLASSIFIED" +"G97.0","Cerebrospinal fluid leak from spinal puncture" +"G97.1","Other reaction to spinal and lumbar puncture" +"G97.2","Intracranial hypotension following ventricular shunting" +"G97.8","Other postprocedural disorders of nervous system" +"G97.9","Postprocedural disorder of nervous system, unspecified" +"G98","OTHER DISORDERS OF NERVOUS SYSTEM, NOT ELSEWHERE CLASSIFIED" +"G99","Other disorders of nervous system in diseases classified elsewhere" +"G99.0","Autonomic neuropathy in endocrine and metabolic diseases" +"G99.1","Other disorders of autonomic nervous system in other disease classified elsewhere" +"G99.2","Myelopathy in diseases classified elsewhere" +"G99.8","Other specified disorders of nervous system in diseases ec" +"H00","HORDEOLUM AND CHALAZION" +"H00.0","Hordeolum and other deep inflammation of eyelid" +"H00.1","Chalazion" +"H01","Other inflammation of eyelid" +"H01.0","Blepharitis" +"H01.1","Noninfectious dermatoses of eyelid" +"H01.8","Other specified inflammation of eyelid" +"H01.9","Inflammation of eyelid, unspecified" +"H02","OTHER DISORDERS OF EYELID" +"H02.0","Entropion and trichiasis of eyelid" +"H02.1","Ectropion of eyelid" +"H02.2","Lagophthalmos" +"H02.3","Blepharochalasis" +"H02.4","Ptosis of eyelid" +"H02.5","Other disorders affecting eyelid function" +"H02.6","Xanthelasma of eyelid" +"H02.7","Other degenerative disorders of eyelid and periocular area" +"H02.8","Other specified disorders of eyelid" +"H02.9","Disorder of eyelid, unspecified" +"H03","DISORDERS OF EYELID IN DISEASES CLASSIFIED ELSEWHERE" +"H03.0","Parasitic infestation of eyelid in diseases classified" +"H03.1","Involvement of eyelid in other infectious diseases classified elsewhere" +"H03.8","Involvement of eyelid in other diseases classified elsewhere" +"H04","Disorders of lacrimal system" +"H04.0","Dacryoadenitis" +"H04.1","Other disorders of lacrimal gland" +"H04.2","Epiphora" +"H04.3","Acute and Unspecified inflammation of lacrimal passages" +"H04.4","Chronic inflammation of lacrimal passages" +"H04.5","Stenosis and insufficiency of lacrimal passages" +"H04.6","Other changes in lacrimal passages" +"H04.8","Other disorders of lacrimal system" +"H04.9","Disorder of lacrimal system, unspecified" +"H05","Disorders of orbit" +"H05.0","Acute inflammation of orbit" +"H05.1","Chronic inflammatory disorders of orbit" +"H05.2","Exophthalmic conditions" +"H05.3","Deformity of orbit" +"H05.4","Enophthalmos" +"H05.5","Retained (old) foreign body folowing penetrating wound of orbit" +"H05.8","Other disorders of orbit" +"H05.9","Disorder of orbit, unspecified" +"H06","Disorders of lacrimal system and orbit in diseases classified elsewhere" +"H06.0","Disorders of lacrimal system in diseases classified elsewhere" +"H06.1","Parasitic infestation of orbit in diseases classified elsewhere" +"H06.2","Dysthyroid exophthalmos" +"H06.3","Other disorders of orbit in diseases classified elsewhere" +"H10","CONJUNCTIVITIS" +"H10.0","Mucopurulent conjunctivitis" +"H10.1","Acute atopic conjunctivitis" +"H10.2","Other acute conjunctivitis" +"H10.3","Acute conjunctivitis, unspecified" +"H10.4","Chronic conjunctivitis" +"H10.5","Blepharoconjunctivitis" +"H10.8","Other conjunctivitis" +"H10.9","Conjunctivitis, unspecified" +"H11","Other disorders of conjunctiva" +"H11.0","Pterygium" +"H11.1","Conjunctival degenerations and deposits" +"H11.2","Conjunctival scars" +"H11.3","Conjunctival haemorrhage" +"H11.4","Other conjunctival vascular disorders and cysts" +"H11.8","Other specified disorders of conjunctiva" +"H11.9","Disorder of conjunctiva, unspecified" +"H13","Disorders of conjunctiva in diseases classified elsewhere" +"H13.0","Filarial infection of conjunctiva" +"H13.1","Conjunctivitis in infectious and parasitic diseases classified elsewhere" +"H13.2","Conjunctivitis in other diseases classified elsewhere" +"H13.3","Ocular pemphigoid" +"H13.8","Other disorders of conjunctiva in diseases classified elsewhere" +"H15","DISORDERS OF SCLERA" +"H15.0","Scleritis" +"H15.1","Episcleritis" +"H15.8","Other disorders of sclera" +"H15.9","Disorder of sclera, unspecified" +"H16","KERATITIS" +"H16.0","Corneal ulcer" +"H16.1","other superficial keratitis without conjunctivitis" +"H16.2","Keratoconjunctivitis" +"H16.3","Interstitial and deep keratitis" +"H16.4","Corneal neovascularization" +"H16.8","Other keratitis" +"H16.9","Keratitis, unspecified" +"H17","CORNEAL SCARS AND OPACITIES" +"H17.0","Adherent leukoma" +"H17.1","Other central corneal opacity" +"H17.8","Other corneal scars and opacities" +"H17.9","Corneal scar and opacity, unspecified" +"H18","OTHER DISORDERS OF CORNEA" +"H18.0","Corneal pigmentations and deposits" +"H18.1","Bullous keratopathy" +"H18.2","Other corneal oedema" +"H18.3","Changes in corneal membranes" +"H18.4","Corneal degeneration" +"H18.5","Hereditary corneal dystrophies" +"H18.6","Keratoconus" +"H18.7","Other corneal deformities" +"H18.8","Other specified disorders of cornea" +"H18.9","Disorder of cornea, unspecified" +"H19","Disorders of sclera and cornea in diseases classified elsewhere" +"H19.0","Scleritis and episcleritis in diseases classified elsewhere" +"H19.1","Herpesviral keratitis and keratoconjunctivitis" +"H19.2","Keratitis and keratoconjunctivitis in other infectious and parasitic disease classified elsewhere" +"H19.3","Keratitis and keratoconjunctivitis in other diseases classified elsewhere" +"H19.8","Other disorders of sclera and cornea in diseases classified elsewhere" +"H20","IRIDOCYCLITIS" +"H20.0","Acute and subacute iridocyclitis" +"H20.1","Chronic iridocyclitis" +"H20.2","Lens-induced iridocyclitis" +"H20.8","Other iridocyclitis" +"H20.9","Iridocyclitis, unspecified" +"H21","OTHER DISORDERS OF IRIS AND CILIARY BODY" +"H21.0","Hyphaema" +"H21.1","Other vascular disorders of iris and ciliary body" +"H21.2","Degeneration of iris and ciliary body" +"H21.3","Cyst of iris, ciliary body and anterior chamber" +"H21.4","Pupillary membranes" +"H21.5","Other adhesions and disruptions of iris and ciliary body" +"H21.8","Other specified disorders of iris and ciliary body" +"H21.9","Disorder of iris and ciliary body, unspecified" +"H22","DISORDERS OF IRIS AND CILIARY BODY IN DISEASES CLASSIFIED ELSEWHERE" +"H22.0","Iridocyclitis in infectious and parasitic diseases classified elsewhere" +"H22.1","Iridocyclitis in other diseases classified elsewhere" +"H22.8","Other disorders of iris and ciliary body in diseases classified elsewhere" +"H25","SENILE CATARACT" +"H25.0","Senile incipient cataract" +"H25.1","Senile nuclear cataract" +"H25.2","Senile cataract, morgagnian type" +"H25.8","Other senile cataract" +"H25.9","Senile cataract, unspecified" +"H26","OTHER CATARACT" +"H26.0","Infantile, juvenile and presenile cataract" +"H26.1","Traumatic cataract" +"H26.2","Complicated cataract" +"H26.3","Drug-induced cataract" +"H26.4","After-cataract" +"H26.8","Other specified cataract" +"H26.9","Cataract, unspecified" +"H27","OTHER DISORDERS OF LENS" +"H27.0","Aphakia" +"H27.1","Dislocation of lens" +"H27.8","Other specified disorders of lens" +"H27.9","Disorder of lens, unspecified" +"H28","Cataract and other disorders of lens in diseases classified elsewhere" +"H28.0","Diabetic cataract (E10-E14 with common fourth character 3)" +"H28.1","Cataract in other endocrine, nutritional and metabolic diseases" +"H28.2","Cataract in other diseases classified elsewhere" +"H28.8","Other disorders of lens in diseases classified elsewhere" +"H30","CHORIORETINAL INFLAMMATION" +"H30.0","Focal chorioretinal inflammation" +"H30.1","Disseminated chorioretinal inflammation" +"H30.2","Posterior cyclitis" +"H30.8","Other chorioretinal inflammations" +"H30.9","Chorioretinal inflammation, unspecified" +"H31","OTHER DISORDERS OF CHOROID" +"H31.0","Chorioretinal scars" +"H31.1","Choroidal degeneration" +"H31.2","Hereditary choroidal dystrophy" +"H31.3","Choroidal haemorrhage and rupture" +"H31.4","Choroidal detachment" +"H31.8","Other specified disorders of choroid" +"H31.9","Disorder of choroid, unspecified" +"H32","Chorioretinal disorders in diseases classified elsewhere" +"H32.0","Chorioretinal inflammation infectious and parasitic diseases classified elsewhere" +"H32.8","Other chorioretinal disorders in diseases classified elsewhere" +"H33","RETINAL DETACHMENTS AND BREAKS" +"H33.0","Retinal detachment with retinal break" +"H33.1","Retinoschisis and retinal cysts" +"H33.2","Serous retinal detachment" +"H33.3","Retinal breaks without detachment" +"H33.4","Traction detachment of retina" +"H33.5","Other retinal detachments" +"H34","RETINAL VASCULAR OCCLUSIONS" +"H34.0","Transient retinal artery occlusion" +"H34.1","Central retinal artery occlusion" +"H34.2","Other retinal artery occlusions" +"H34.8","Other retinal vascular occlusions" +"H34.9","Retinal vascular occlusion, unspecified" +"H35","OTHER RETINAL DISORDERS" +"H35.0","Background retinopathy and retinal vascular changes" +"H35.1","Retinopathy of prematurity" +"H35.2","Other proliferative retinopathy" +"H35.3","Degeneration of macula and posterior pole" +"H35.4","Peripheral retinal degeneration" +"H35.5","Hereditary retinal dystrophy" +"H35.6","Retinal haemorrhage" +"H35.7","Separation of retinal layers" +"H35.8","Other specified retinal disorders" +"H35.9","Retinal disorder, unspecified" +"H36","RETINAL DISORDERS IN DISEASES CLASSIFIED ELSEWHERE" +"H36.0","Diabetic retinopathy (E10-E14 with common fourth character 3)" +"H36.8","Other retinal disorders in diseases classified elsewhere" +"H40","GLAUCOMA" +"H40.0","Glaucoma suspect" +"H40.1","Primary open-angle glaucoma" +"H40.2","Primary angle-closure glaucoma" +"H40.3","Glaucoma secondary to eye trauma" +"H40.4","Glaucoma secondary to eye inflammation" +"H40.5","Glaucoma secondary to other eye disorders" +"H40.6","Glaucoma secondary to drugs" +"H40.8","Other glaucoma" +"H40.9","Glaucoma, unspecified" +"H42","GLAUCOMA IN DISEASES CLASSIFIED ELSEWHERE" +"H42.0","Glaucoma in endocrine, nutritional and metabolic diseases" +"H42.8","Glaucoma in other diseases classified elsewhere" +"H43","DISORDERS OF VITREOUS BODY" +"H43.0","Vitreous prolapse" +"H43.1","vitreous haemorrhage" +"H43.2","Crystalline deposits in vitreous body" +"H43.3","Other vitreous opacities" +"H43.8","Other disorders of vitreous body" +"H43.9","Disorder of vitreous body, unspecified" +"H44","DISORDERS OF GLOBE" +"H44.0","Purulent endophthalmitis" +"H44.1","Other endophthalmitis" +"H44.2","Degenerative myopia" +"H44.3","Other degenerative disorders of globe" +"H44.4","Hypotony of eye" +"H44.5","Degenerated conditions of globe" +"H44.6","Retained (old) intraocular foreign body, magnetic" +"H44.7","Retained (old) intraocular foreign body, nonmagnetic" +"H44.8","Other disorders of globe" +"H44.9","Disorder of globe, unspecified" +"H45","DISORDERS OF VITREOUS BODY AND GLOBE IN DISEASES CLASSIFIED ELSEWHERE" +"H45.0","Vitreous haemorrhage in diseases classified elsewhere" +"H45.1","Endophthalmitis in diseases classified elsewhere" +"H45.8","Other disorders of vitreous body and globe in diseases classified elsewhere" +"H46","OPTIC NEURITIS" +"H47","Other disorders of optic [2nd] nerve and visual pathways" +"H47.0","Disorders of optic nerve, not elsewhere classified" +"H47.1","Papilloedema, unspecified" +"H47.2","Optic atrophy" +"H47.3","Other disorders of optic disc" +"H47.4","Disorders of optic chiasm" +"H47.5","Disorders of other visual pathways" +"H47.6","Disorders of visual cortex" +"H47.7","Disorder of visual pathways, unspecified" +"H48","Disorders of optic [2nd] nerve and visual pathways in diseases classified elsewhere" +"H48.0","Optic atrophy in diseases classified elsewhere" +"H48.1","Retrobulbar neuritis in diseases classified elsewhere" +"H48.8","Other disorder of optic nerve and visual pathways in diseases classified elsewhere" +"H49","PARALYTIC STRABISMUS" +"H49.0","Third [oculomotor] nerve palsy" +"H49.1","Fourth [trochlear] nerve palsy" +"H49.2","Sixth [abducent] nerve palsy" +"H49.3","Total (external) ophthalmoplegia" +"H49.4","Progressive external ophthalmoplegia" +"H49.8","Other paralytic strabismus" +"H49.9","Paralytic strabismus, unspecified" +"H50","Other strabismus" +"H50.0","Convergent concomitant strabismus" +"H50.1","Divergent concomitant strabismus" +"H50.2","Vertical strabismus" +"H50.3","Intermittent heterotropia" +"H50.4","Other and unspecified heterotropia" +"H50.5","Heterophoria" +"H50.6","Mechanical strabismus" +"H50.8","Other specified strabismus" +"H50.9","Strabismus, unspecified" +"H51","OTHER DISORDERS OF BINOCULAR MOVEMENT" +"H51.0","Palsy of conjugate gaze" +"H51.1","Convergence insufficiency and excess" +"H51.2","Internuclear ophthalmoplegia" +"H51.8","Other specified disorders of binocular movement" +"H51.9","Disorder of binocular movement, unspecified" +"H52","DISORDERS OF REFRACTION AND ACCOMMODATION" +"H52.0","Hypermetropia" +"H52.1","Myopia" +"H52.2","Astigmatism" +"H52.3","Anisometropia and aniseikonia" +"H52.4","Presbyopia" +"H52.5","Disorders of accommodation" +"H52.6","Other disorders of refraction" +"H52.7","Disorder of refraction, unspecified" +"H53","VISUAL DISTURBANCES" +"H53.0","Amblyopia ex anopsia" +"H53.1","Subjective visual disturbances" +"H53.2","Diplopia" +"H53.3","Other disorders of binocular vision" +"H53.4","Visual field defects" +"H53.5","Colour vision deficiencies" +"H53.6","Night blindness" +"H53.8","Other visual disturbances" +"H53.9","Visual disturbance, unspecified" +"H54","Visual impairment including blindness (binocular or monocular)" +"H54.0","Blindness, both eyes" +"H54.1","Blindness, one eye, low vision other eye" +"H54.2","Low vision, both eyes" +"H54.3","Unqualified visual loss, both eyes" +"H54.4","Blindness, one eye" +"H54.5","Low vision, one eye" +"H54.6","Unqualified visual loss, one eye" +"H54.7","Unspecified visual loss" +"H54.9","Unspecified visual impairment (binocular)" +"H55","NYSTAGMUS AND OTHER IRREGULAR EYE MOVEMENTS" +"H57","OTHER DISORDERS OF EYE AND ADNEXA" +"H57.0","Anomalies of pupillary function" +"H57.1","Ocular pain" +"H57.8","Other specified disorders of eye and adnexa" +"H57.9","Disorder of eye and adnexa, unspecified" +"H58","OTHER DISORDERS OF EYE AND ADNEXA IN DISEASES CLASSIFIED ELSEWHERE" +"H58.0","Anomalies of pupillary function in diseases classified elsewhere" +"H58.1","Visual disturbances in diseases classified elsewhere" +"H58.8","Other specified disorders of eye and adnexa in diseases classified elsewhere" +"H59","Postprocedural disorders of eye and adnexa, not elsewhere classified" +"H59.0","Keratopathy (bullous aphakic) following cataract surgery" +"H59.8","Other postprocedural disorders of eye and adnexa" +"H59.9","Postprocedural disorder of eye and adnexa, unspecified" +"H60","OTITIS EXTERNA" +"H60.0","Abscess of external ear" +"H60.1","Cellulitis of external ear" +"H60.2","Malignant otitis externa" +"H60.3","Other infective otitis externa" +"H60.4","Cholesteatoma of external ear" +"H60.5","Acute otitis externa, noninfective" +"H60.8","Other otitis externa" +"H60.9","Otitis externa, unspecified" +"H61","OTHER DISORDERS OF EXTERNAL EAR" +"H61.0","Perichondritis of external ear" +"H61.1","Noninfective disorders of pinna" +"H61.2","Impacted cerumen" +"H61.3","Acquired stenosis of external ear canal" +"H61.8","Other specified disorders of external ear" +"H61.9","Disorder of external ear, unspecified" +"H62","Disorders of external ear in diseases classified elsewhere" +"H62.0","Otitis externa in bacterial diseases classified elsewhere" +"H62.1","Otitis externa in viral diseases classified elsewhere" +"H62.2","Otitis externa in mycoses" +"H62.3","Otitis externa in oth infectious and parasitic diseases classified elsewhere" +"H62.4","Otitis externa in other diseases classified elsewhere" +"H62.8","Other disorders of external ear in diseases classified elsewhere" +"H65","NONSUPPURATIVE OTITIS MEDIA" +"H65.0","Acute serous otitis media" +"H65.1","Other acute nonsuppurative otitis media" +"H65.2","Chronic serous otitis media" +"H65.3","Chronic mucoid otitis media" +"H65.4","Other chronic nonsuppurative otitis media" +"H65.9","Nonsuppurative otitis media, unspecified" +"H66","Suppurative and unspecified otitis media" +"H66.0","Acute suppurative otitis media" +"H66.1","Chronic tubotympanic suppurative otitis media" +"H66.2","Chronic atticoantral suppurative otitis media" +"H66.3","Other chronic suppurative otitis media" +"H66.4","Suppurative otitis media, unspecified" +"H66.9","Otitis media, unspecified" +"H67","OTITIS MEDIA IN DISEASES CLASSIFIED ELSEWHERE" +"H67.0","Otitis media in bacterial diseases classified elsewhere" +"H67.1","Otitis media in viral diseases classified elsewhere" +"H67.8","Otitis media in other diseases classified elsewhere" +"H68","EUSTACHIAN SALPINGITIS AND OBSTRUCTION" +"H68.0","Eustachian salpingitis" +"H68.1","Obstruction of Eustachian tube" +"H69","OTHER DISORDERS OF EUSTACHIAN TUBE" +"H69.0","Patulous Eustachian tube" +"H69.8","Other specified disorders of Eustachian tube" +"H69.9","Eustachian tube disorder, unspecified" +"H70","MASTOIDITIS AND RELATED CONDITIONS" +"H70.0","Acute mastoiditis" +"H70.1","Chronic mastoiditis" +"H70.2","Petrositis" +"H70.8","Other mastoiditis and related conditions" +"H70.9","Mastoiditis, unspecified" +"H71","CHOLESTEATOMA OF MIDDLE EAR" +"H72","PERFORATION OF TYMPANIC MEMBRANE" +"H72.0","Central perforation of tympanic membrane" +"H72.1","Attic perforation of tympanic membrane" +"H72.2","Other marginal perforations of tympanic membrane" +"H72.8","Other perforations of tympanic membrane" +"H72.9","Perforation of tympanic membrane, unspecified" +"H73","OTHER DISORDERS OF TYMPANIC MEMBRANE" +"H73.0","Acute myringitis" +"H73.1","Chronic myringitis" +"H73.8","Other specified disorders of tympanic membrane" +"H73.9","Disorder of tympanic membrane, unspecified" +"H74","OTHER DISORDERS OF MIDDLE EAR AND MASTOID" +"H74.0","Tympanosclerosis" +"H74.1","Adhesive middle ear disease" +"H74.2","Discontinuity and dislocation of ear ossicles" +"H74.3","Other acquired abnormalities of ear ossicles" +"H74.4","Polyp of middle ear" +"H74.8","Other specified disorders of middle ear and mastoid" +"H74.9","Disorder of middle ear and mastoid, unspecified" +"H75","Other disorders of middle ear and mastoid in diseases classified elsewhere" +"H75.0","Mastoiditis in infectious and parasitic diseases classified elsewhere" +"H75.8","Other spec disorder of middle ear and mastoid in diseases classified elsewhere" +"H80","OTOSCLEROSIS" +"H80.0","Otosclerosis involving oval window, nonobliterative" +"H80.1","Otosclerosis involving oval window, obliterative" +"H80.2","Cochlear otosclerosis" +"H80.8","Other otosclerosis" +"H80.9","Otosclerosis, unspecified" +"H81","DISORDERS OF VESTIBULAR FUNCTION" +"H81.0","Meniere's disease" +"H81.1","Benign paroxysmal vertigo" +"H81.2","Vestibular neuronitis" +"H81.3","Other peripheral vertigo" +"H81.4","Vertigo of central origin" +"H81.8","Other disorders of vestibular function" +"H81.9","Disorder of vestibular function, unspecified" +"H82","Vertiginous syndromes in diseases classified elsewhere" +"H83","OTHER DISEASES OF INNER EAR" +"H83.0","Labyrinthitis" +"H83.1","Labyrinthine fistula" +"H83.2","Labyrinthine dysfunction" +"H83.3","Noise effects on inner ear" +"H83.8","Other specified diseases of inner ear" +"H83.9","Disease of inner ear, unspecified" +"H90","CONDUCTIVE AND SENSORINEURAL HEARING LOSS" +"H90.0","Conductive hearing loss, bilateral" +"H90.1","Conduct hearing loss, unilateral with unrestricted hearing on the contralateral side" +"H90.2","Conductive hearing loss, unspecified" +"H90.3","Sensorineural hearing loss, bilateral" +"H90.4","Sensorineural hear loss unilat unrestricted hearing contralateral side" +"H90.5","Sensorineural hearing loss, unspecified" +"H90.6","Mixed conductive and sensorineural hearing loss, bilateral" +"H90.7","Mix conductive and sensorineural hearing loss, unilateral unrestricted hearing on the contralateral side" +"H90.8","Mixed conductive and sensorineural hearing loss, unspecified" +"H91","OTHER HEARING LOSS" +"H91.0","Ototoxic hearing loss" +"H91.1","Presbycusis" +"H91.2","Sudden idiopathic hearing loss" +"H91.3","Deaf mutism, not elsewhere classified" +"H91.8","Other specified hearing loss" +"H91.9","Hearing loss, unspecified" +"H92","OTALGIA AND EFFUSION OF EAR" +"H92.0","Otalgia" +"H92.1","Otorrhoea" +"H92.2","Otorrhagia" +"H93","OTHER DISORDERS OF EAR, NOT ELSEWHERE CLASSIFIED" +"H93.0","Degenerative and vascular disorders of ear" +"H93.1","Tinnitus" +"H93.2","Other abnormal auditory perceptions" +"H93.3","Disorders of acoustic nerve" +"H93.8","Other specified disorders of ear" +"H93.9","Disorder of ear, unspecified" +"H94","OTHER DISORDERS OF EAR IN DISEASES CLASSIFIED ELSEWHERE" +"H94.0","Acoustic neuritis in infectious and parasitic diseases classified elsewhere" +"H94.8","Other specified disorders of ear in diseases classified elsewhere" +"H95","Postprocedural disorders of ear and mastoid process, not elsewhere classified" +"H95.0","Recurrent cholesteatoma of postmastoidectomy cavity" +"H95.1","Other disorders following mastoidectomy" +"H95.8","Other postprocedural disorders of ear and mastoid process" +"H95.9","Postprocedural disorder of ear and mastoid process, unspecified" +"I00","Rheumatic fever without mention of heart involvement" +"I01","Rheumatic fever with heart involvement" +"I01.0","Acute rheumatic pericarditis" +"I01.1","Acute rheumatic endocarditis" +"I01.2","Acute rheumatic myocarditis" +"I01.8","Other acute rheumatic heart disease" +"I01.9","Acute rheumatic heart disease, unspecified" +"I02","RHEUMATIC CHOREA" +"I02.0","Rheumatic chorea with heart involvement" +"I02.9","Rheumatic chorea without heart involvement" +"I05","RHEUMATIC MITRAL VALVE DISEASES" +"I05.0","Mitral stenosis" +"I05.1","Rheumatic mitral insufficiency" +"I05.2","Mitral stenosis with insufficiency" +"I05.8","Other mitral valve diseases" +"I05.9","Mitral valve disease, unspecified" +"I06","RHEUMATIC AORTIC VALVE DISEASES" +"I06.0","Rheumatic aortic stenosis" +"I06.1","Rheumatic aortic insufficiency" +"I06.2","Rheumatic aortic stenosis with insufficiency" +"I06.8","Other rheumatic aortic valve diseases" +"I06.9","Rheumatic aortic valve disease, unspecified" +"I07","RHEUMATIC TRICUSPID VALVE DISEASES" +"I07.0","Tricuspid stenosis" +"I07.1","Tricuspid insufficiency" +"I07.2","Tricuspid stenosis with insufficiency" +"I07.8","Other tricuspid valve diseases" +"I07.9","Tricuspid valve disease, unspecified" +"I08","MULTIPLE VALVE DISEASES" +"I08.0","Disorders of both mitral and aortic valves" +"I08.1","Disorders of both mitral and tricuspid valves" +"I08.2","Disorders of both aortic and tricuspid valves" +"I08.3","Combined disorders of mitral, aortic and tricuspid valves" +"I08.8","Other multiple valve diseases" +"I08.9","Multiple valve disease, unspecified" +"I09","OTHER RHEUMATIC HEART DISEASES" +"I09.0","Rheumatic myocarditis" +"I09.1","Rheumatic diseases of endocardium, valve unspecified" +"I09.2","Chronic rheumatic pericarditis" +"I09.8","Other specified rheumatic heart diseases" +"I09.9","Rheumatic heart disease, unspecified" +"I10","ESSENTIAL (PRIMARY) HYPERTENSION" +"I11","Hypertensive heart disease" +"I11.0","Hypertensive heart disease with (congestive) heart failure" +"I11.9","Hypertensive heart disease without (congestive) heart failure" +"I12","HYPERTENSIVE RENAL DISEASE" +"I12.0","Hypertensive renal disease with renal failure" +"I12.9","hypertensive renal disease without renal failure" +"I13","HYPERTENSIVE HEART AND RENAL DISEASE" +"I13.0","Hypertens heart and renal dis with (congestive) heart failure" +"I13.1","Hypertensive heart and renal disease with renal failure" +"I13.2","Hyper heart and renal disease both (congestive) heart failure and renal failure" +"I13.9","Hypertensive heart and renal disease, unspecified" +"I15","SECONDARY HYPERTENSION" +"I15.0","Renovascular hypertension" +"I15.1","Hypertension secondary to other renal disorders" +"I15.2","Hypertension secondary to endocrine disorders" +"I15.8","Other secondary hypertension" +"I15.9","Secondary hypertension, unspecified" +"I20","ANGINA PECTORIS" +"I20.0","Unstable angina" +"I20.1","Angina pectoris with documented spasm" +"I20.8","Other forms of angina pectoris" +"I20.9","Angina pectoris, unspecified" +"I21","Acute myocardial infarction" +"I21.0","Acute transmural myocardial infarction of anterior wall" +"I21.1","Acute transmural myocardial infarction of inferior wall" +"I21.2","Acute transmural myocardial infarction of other sites" +"I21.3","Acute transmural myocardial infarction of unspecified site" +"I21.4","Acute subendocardial myocardial infarction" +"I21.9","Acute myocardial infarction, unspecified" +"I22","SUBSEQUENT MYOCARDIAL INFARCTION" +"I22.0","Subsequent myocardial infarction of anterior wall" +"I22.1","Subsequent myocardial infarction of inferior wall" +"I22.8","Subsequent myocardial infarction of other sites" +"I22.9","Subsequent myocardial infarction of unspecified site" +"I23","CERTAIN CURRENT COMPLICATIONS FOLLOWING ACUTE MYOCARDIAL INFARCTION" +"I23.0","Haemopericardium as current complication following acute myocardial infarction" +"I23.1","Atrial septal defect as current complication following acute myocardial infarction" +"I23.2","Ventricular septal defect as current complication following acute myocardial infarction" +"I23.3","Rupture cardiac wall without haemopericardium as current complication following acute myocardial infarction" +"I23.4","Rupture chordae tendineae as current complication following acut myocardial infarction" +"I23.5","Rupture of papilary muscle as current complication following acute myocardial infarction" +"I23.6","Thrombosis of atrium, auricular appendage ventricle as current complication following acute myocardial infarction" +"I23.8","Oth current complications following acute myocardial infarction" +"I24","OTHER ACUTE ISCHAEMIC HEART DISEASES" +"I24.0","Coronary thrombosis not resulting in myocardial infarction" +"I24.1","Dressler's syndrome" +"I24.8","Other forms of acute ischaemic heart disease" +"I24.9","Acute ischaemic heart disease, unspecified" +"I25","CHRONIC ISCHAEMIC HEART DISEASE" +"I25.0","Atherosclerotic cardiovascular disease, so described" +"I25.1","Atherosclerotic heart disease" +"I25.2","Old myocardial infarction" +"I25.3","Aneurysm of heart" +"I25.4","Coronary artery aneurysm" +"I25.5","Ischaemic cardiomyopathy" +"I25.6","Silent myocardial ischaemia" +"I25.8","Other forms of chronic ischaemic heart disease" +"I25.9","Chronic ischaemic heart disease, unspecified" +"I26","PULMONARY EMBOLISM" +"I26.0","Pulmonary embolism with mention of acute cor pulmonale" +"I26.9","Pulmonary embolism without mention of acute cor pulmonale" +"I27","OTHER PULMONARY HEART DISEASES" +"I27.0","Primary pulmonary hypertension" +"I27.1","Kyphoscoliotic heart disease" +"I27.2","Other secondary pulmonary hypertension" +"I27.8","Other specified pulmonary heart diseases" +"I27.9","Pulmonary heart disease, unspecified" +"I28","OTHER DISEASES OF PULMONARY VESSELS" +"I28.0","Arteriovenous fistula of pulmonary vessels" +"I28.1","Aneurysm of pulmonary artery" +"I28.8","Other specified diseases of pulmonary vessels" +"I28.9","Disease of pulmonary vessels, unspecified" +"I30","ACUTE PERICARDITIS" +"I30.0","Acute nonspecific idiopathic pericarditis" +"I30.1","Infective pericarditis" +"I30.8","Other forms of acute pericarditis" +"I30.9","Acute pericarditis, unspecified" +"I31","Other diseases of pericardium" +"I31.0","Chronic adhesive pericarditis" +"I31.1","Chronic constrictive pericarditis" +"I31.2","Haemopericardium, not elsewhere classified" +"I31.3","Pericardial effusion (noninflammatory)" +"I31.8","Other specified diseases of pericardium" +"I31.9","Disease of pericardium, unspecified" +"I32","Pericarditis in diseases classified elsewhere" +"I32.0","Pericarditis in bacterial diseases classified elsewhere" +"I32.1","Pericarditis in other infectious and parasitic diseases classified elsewhere" +"I32.8","Pericarditis in other diseases classified elsewhere" +"I33","ACUTE AND SUBACUTE ENDOCARDITIS" +"I33.0","Acute and subacute infective endocarditis" +"I33.9","Acute endocarditis, unspecified" +"I34","NONRHEUMATIC MITRAL VALVE DISORDERS" +"I34.0","Mitral (valve) insufficiency" +"I34.1","Mitral (valve) prolapse" +"I34.2","Nonrheumatic mitral (valve) stenosis" +"I34.8","Other nonrheumatic mitral valve disorders" +"I34.9","Nonrheumatic mitral valve disorder, unspecified" +"I35","NONRHEUMATIC AORTIC VALVE DISORDERS" +"I35.0","Aortic (valve) stenosis" +"I35.1","Aortic (valve) insufficiency" +"I35.2","Aortic (valve) stenosis with insufficiency" +"I35.8","Other aortic valve disorders" +"I35.9","Aortic valve disorder, unspecified" +"I36","NONRHEUMATIC TRICUSPID VALVE DISORDERS" +"I36.0","Nonrheumatic tricuspid (valve) stenosis" +"I36.1","Nonrheumatic tricuspid (valve) insufficiency" +"I36.2","Nonrheumatic tricuspid (valve) stenosis with insufficiency" +"I36.8","Other nonrheumatic tricuspid valve disorders" +"I36.9","Nonrheumatic tricuspid valve disorder, unspecified" +"I37","PULMONARY VALVE DISORDERS" +"I37.0","Pulmonary valve stenosis" +"I37.1","Pulmonary valve insufficiency" +"I37.2","Pulmonary valve stenosis with insufficiency" +"I37.8","Other pulmonary valve disorders" +"I37.9","Pulmonary valve disorder, unspecified" +"I38","Endocarditis, valve unspecified" +"I39","Endocarditis and heart valve disorders in diseases classified elsewhere" +"I39.0","Mitral valve disorders in diseases classified elsewhere" +"I39.1","Aortic valve disorders in diseases classified elsewhere" +"I39.2","Tricuspid valve disorders in diseases classified elsewhere" +"I39.3","Pulmonary valve disorders in diseases classified elsewhere" +"I39.4","Multiple valve disorders in diseases classified elsewhere" +"I39.8","Endocarditis, valve unspec, in diseases class elsewhere" +"I40","ACUTE MYOCARDITIS" +"I40.0","Infective myocarditis" +"I40.1","Isolated myocarditis" +"I40.8","Other acute myocarditis" +"I40.9","Acute myocarditis, unspecified" +"I41","Myocarditis in diseases classified elsewhere" +"I41.0","Myocarditis in bacterial diseases classified elsewhere" +"I41.1","Myocarditis in viral diseases classified elsewhere" +"I41.2","Myocarditis in other infectious and parasitic diseases classified elsewhere" +"I41.8","Myocarditis in other diseases classified elsewhere" +"I42","CARDIOMYOPATHY" +"I42.0","Dilated cardiomyopathy" +"I42.1","Obstructive hypertrophic cardiomyopathy" +"I42.2","Other hypertrophic cardiomyopathy" +"I42.3","Endomyocardial (eosinophilic) disease" +"I42.4","Endocardial fibroelastosis" +"I42.5","Other restrictive cardiomyopathy" +"I42.6","Alcoholic cardiomyopathy" +"I42.7","Cardiomyopathy due to drugs and other external agents" +"I42.8","Other cardiomyopathies" +"I42.9","Cardiomyopathy, unspecified" +"I43","Cardiomyopathy in diseases classified elsewhere" +"I43.0","Cardiomyopathy in infectious & parasitic diseases classified elsewhere" +"I43.1","Cardiomyopathy in metabolic diseases" +"I43.2","Cardiomyopathy in nutritional diseases" +"I43.8","Cardiomyopathy in other diseases classified elsewhere" +"I44","ATRIOVENTRICULAR AND LEFT BUNDLE-BRANCH BLOCK" +"I44.0","Atrioventricular block, first degree" +"I44.1","Atrioventricular block, second degree" +"I44.2","Atrioventricular block, complete" +"I44.3","Other and unspecified atrioventricular block" +"I44.4","Left anterior fascicular block" +"I44.5","Left posterior fascicular block" +"I44.6","Other and unspecified fascicular block" +"I44.7","Left bundle-branch block, unspecified" +"I45","OTHER CONDUCTION DISORDERS" +"I45.0","Right fascicular block" +"I45.1","Other and unspecified right bundle-branch block" +"I45.2","Bifascicular block" +"I45.3","Trifascicular block" +"I45.4","Nonspecific intraventricular block" +"I45.5","Other specified heart block" +"I45.6","Pre-excitation syndrome" +"I45.8","Other specified conduction disorders" +"I45.9","Conduction disorder, unspecified" +"I46","CARDIAC ARREST" +"I46.0","Cardiac arrest with successful resuscitation" +"I46.1","Sudden cardiac death, so described" +"I46.9","Cardiac arrest, unspecified" +"I47","PAROXYSMAL TACHYCARDIA" +"I47.0","Re-entry ventricular arrhythmia" +"I47.1","Supraventricular tachycardia" +"I47.2","Ventricular tachycardia" +"I47.9","Paroxysmal tachycardia, unspecified" +"I48","ATRIAL FIBRILLATION AND FLUTTER" +"I49","OTHER CARDIAC ARRHYTHMIAS" +"I49.0","Ventricular fibrillation and flutter" +"I49.1","Atrial premature depolarization" +"I49.2","Junctional premature depolarization" +"I49.3","Ventricular premature depolarization" +"I49.4","Other and unspecified premature depolarization" +"I49.5","Sick sinus syndrome" +"I49.8","Other specified cardiac arrhythmias" +"I49.9","Cardiac arrhythmia, unspecified" +"I50","HEART FAILURE" +"I50.0","Congestive heart failure" +"I50.1","Left ventricular failure" +"I50.9","Heart failure, unspecified" +"I51","Complications and ill-defined descriptions of heart disease" +"I51.0","Cardiac septal defect, acquired" +"I51.1","Rupture of chordae tendineae, not elsewhere classified" +"I51.2","Rupture of papillary muscle, not elsewhere classified" +"I51.3","Intracardiac thrombosis, not elsewhere classified" +"I51.4","Myocarditis, unspecified" +"I51.5","Myocardial degeneration" +"I51.6","Cardiovascular disease, unspecified" +"I51.7","Cardiomegaly" +"I51.8","Other ill-defined heart diseases" +"I51.9","Heart disease, unspecified" +"I52","Other heart disorders in diseases classified elsewhere" +"I52.0","Other heart disorders in bacterial diseases classified elsewhere" +"I52.1","Oth heart disorders in oth infectious and parasitic disease classified elsewhere" +"I52.8","Other heart disorders in other diseases classified elsewhere" +"I60","Subarachnoid haemorrhage" +"I60.0","Subarachnoid haemorrhage from carotid siphon and bifurcation" +"I60.1","Subarachnoid haemorrhage from middle cerebral artery" +"I60.2","Subarachnoid haemorrhage from anterior communicating artery" +"I60.3","Subarachnoid haemorrhage from posterior communicating artery" +"I60.4","Subarachnoid haemorrhage from basilar artery" +"I60.5","Subarachnoid haemorrhage from vertebral artery" +"I60.6","Subarachnoid haemorrhage from other intracranial arteries" +"I60.7","Subarachnoid haemorrhage from intracranial artery, unspecified" +"I60.8","Other subarachnoid haemorrhage" +"I60.9","Subarachnoid haemorrhage, unspecified" +"I61","INTRACEREBRAL HAEMORRHAGE" +"I61.0","Intracerebral haemorrhage in hemisphere, subcortical" +"I61.1","Intracerebral haemorrhage in hemisphere, cortical" +"I61.2","Intracerebral haemorrhage in hemisphere, unspecified" +"I61.3","Intracerebral haemorrhage in brain stem" +"I61.4","Intracerebral haemorrhage in cerebellum" +"I61.5","Intracerebral haemorrhage, intraventricular" +"I61.6","Intracerebral haemorrhage, multiple localized" +"I61.8","Other intracerebral haemorrhage" +"I61.9","Intracerebral haemorrhage, unspecified" +"I62","Other nontraumatic intracranial haemorrhage" +"I62.0","Subdural haemorrhage (acute)(nontraumatic)" +"I62.1","Nontraumatic extradural haemorrhage" +"I62.9","Intracranial haemorrhage (nontraumatic), unspecified" +"I63","CEREBRAL INFARCTION" +"I63.0","Cerebral infarct due to thrombosis of precerebral arteries" +"I63.1","Cerebral infarction due to embolism of precerebral arteries" +"I63.2","Cerebral infarction due unspecified occlusion or stenosis precerebral arteries" +"I63.3","Cerebral infarction due to thrombosis of cerebral arteries" +"I63.4","Cerebral infarction due to embolism of cerebral arteries" +"I63.5","Cerebral infarction due unspecified occlusion or stenos cerebrl arteries" +"I63.6","Cerebral infarction due cerebral venous thrombosis, nonpyogenic" +"I63.8","Other cerebral infarction" +"I63.9","Cerebral infarction, unspecified" +"I64","STROKE, NOT SPECIFIED AS HAEMORRHAGE OR INFARCTION" +"I65","Occlusion and stenosis of precerebral arteries, not resulting in cerebral infarction" +"I65.0","Occlusion and stenosis of vertebral artery" +"I65.1","Occlusion and stenosis of basilar artery" +"I65.2","Occlusion and stenosis of carotid artery" +"I65.3","Occlusion and stenosis of multip and bilat precerebral arteries" +"I65.8","Occlusion and stenosis of other precerebral artery" +"I65.9","Occlusion and stenosis of unspecified precerebral artery" +"I66","Occlusion and stenosis of cerebral arteries, not resulting in cerebral infarction" +"I66.0","Occlusion and stenosis of middle cerebral artery" +"I66.1","Occlusion and stenosis of anterior cerebral artery" +"I66.2","Occlusion and stenosis of posterior cerebral artery" +"I66.3","Occlusion and stenosis of cerebellar arteries" +"I66.4","Occlusion and stenosis of multiple and bilat cerebral arts" +"I66.8","Occlusion and stenosis of other cerebral artery" +"I66.9","Occlusion and stenosis of unspecified cerebral artery" +"I67","OTHER CEREBROVASCULAR DISEASES" +"I67.0","Dissection of cerebral arteries, nonruptured" +"I67.1","Cerebral aneurysm, nonruptured" +"I67.2","Cerebral atherosclerosis" +"I67.3","Progressive vascular leukoencephalopathy" +"I67.4","Hypertensive encephalopathy" +"I67.5","Moyamoya disease" +"I67.6","Nonpyogenic thrombosis of intracranial venous system" +"I67.7","Cerebral arteritis, not elsewhere classified" +"I67.8","Other specified cerebrovascular diseases" +"I67.9","Cerebrovascular disease, unspecified" +"I68","Cerebrovascular disorders in diseases classified elsewhere" +"I68.0","Cerebral amyloid angiopathy" +"I68.1","Cerebral arteritis in infectious & parasitic diseases classified elsewhere" +"I68.2","Cerebral arteritis in other diseases classified elsewhere" +"I68.8","Other cerebrovascular disorders in diseases classified elsewhere" +"I69","SEQUELAE OF CEREBROVASCULAR DISEASE" +"I69.0","Sequelae of subarachnoid haemorrhage" +"I69.1","Sequelae of intracerebral haemorrhage" +"I69.2","Sequelae of other nontraumatic intracranial haemorrhage" +"I69.3","Sequelae of cerebral infarction" +"I69.4","Sequelae of stroke, not specified as haemorrhage or infarction" +"I69.8","Sequelae of other and unspecified cerebrovascular diseases" +"I70","Atherosclerosis" +"I70.0","Atherosclerosis of aorta" +"I70.1","Atherosclerosis of renal artery" +"I70.2","Atherosclerosis of arteries of extremities" +"I70.8","Atherosclerosis of other arteries" +"I70.9","Generalized and unspecified atherosclerosis" +"I71","AORTIC ANEURYSM AND DISSECTION" +"I71.0","Dissection of aorta [any part]" +"I71.1","Thoracic aortic aneurysm, ruptured" +"I71.2","Thoracic aortic aneurysm, without mention of rupture" +"I71.3","Abdominal aortic aneurysm, ruptured" +"I71.4","Abdominal aortic aneurysm, without mention of rupture" +"I71.5","Thoracoabdominal aortic aneurysm, ruptured" +"I71.6","Thoracoabdominal aortic aneurysm, without mention of rupture" +"I71.8","Aortic aneurysm of unspecified site, ruptured" +"I71.9","Aortic aneurysm of unspecified site, without mention of rupture" +"I72","Other aneurysm and dissection" +"I72.0","Aneurysm of carotid artery" +"I72.1","Aneurysm of artery of upper extremity" +"I72.2","Aneurysm of renal artery" +"I72.3","Aneurysm of iliac artery" +"I72.4","Aneurysm of artery of lower extremity" +"I72.5","Aneurysm and dissection of other precerebral arteries" +"I72.8","Aneurysm of other specified arteries" +"I72.9","Aneurysm of unspecified site" +"I73","OTHER PERIPHERAL VASCULAR DISEASES" +"I73.0","Raynaud's syndrome" +"I73.1","Thromboangiitis obliterans [buerger]" +"I73.8","Other specified peripheral vascular diseases" +"I73.9","Peripheral vascular disease, unspecified" +"I74","ARTERIAL EMBOLISM AND THROMBOSIS" +"I74.0","Embolism and thrombosis of abdominal aorta" +"I74.1","Embolism and thrombosis of other and unspecified parts of aorta" +"I74.2","Embolism and thrombosis of arteries of upper extremities" +"I74.3","Embolism and thrombosis of arteries of lower extremities" +"I74.4","Embolism and thrombosis of arteries of extremities, unspecified" +"I74.5","Embolism and thrombosis of iliac artery" +"I74.8","Embolism and thrombosis of other arteries" +"I74.9","Embolism and thrombosis of unspecified artery" +"I77","OTHER DISORDERS OF ARTERIES AND ARTERIOLES" +"I77.0","Arteriovenous fistula, acquired" +"I77.1","Stricture of artery" +"I77.2","Rupture of artery" +"I77.3","Arterial fibromuscular dysplasia" +"I77.4","Coeliac artery compression syndrome" +"I77.5","Necrosis of artery" +"I77.6","Arteritis, unspecified" +"I77.8","Other specified disorders of arteries and arterioles" +"I77.9","Disorder of arteries and arterioles, unspecified" +"I78","Diseases of capillaries" +"I78.0","Hereditary haemorrhagic telangiectasia" +"I78.1","Naevus, non-neoplastic" +"I78.8","Other diseases of capillaries" +"I78.9","Disease of capillaries, unspecified" +"I79","Disorders of arteries, arterioles and capillaries in diseases classified elsewhere" +"I79.0","Aneurysm of aorta in diseases classified elsewhere" +"I79.1","Aortitis in diseases classified elsewhere" +"I79.2","Peripheral angiopathy in diseases classified elsewhere" +"I79.8","Oth disord arteries, arterioles & capillaries in diseases classified elsewhere" +"I80","PHLEBITIS AND THROMBOPHLEBITIS" +"I80.0","Phlebitis and thrombophlebitis superficial vessels low extremities" +"I80.1","Phlebitis and thrombophlebitis of femoral vein" +"I80.2","Phlebitis and thrombophlebitis oth deep vessels low extremities" +"I80.3","Phlebitis and thrombophlebitis of lower extremities, unspecified" +"I80.8","Phlebitis and thrombophlebitis of other sites" +"I80.9","Phlebitis and thrombophlebitis of unspecified site" +"I81","PORTAL VEIN THROMBOSIS" +"I82","OTHER VENOUS EMBOLISM AND THROMBOSIS" +"I82.0","Budd-chiari syndrome" +"I82.1","Thrombophlebitis migrans" +"I82.2","Embolism and thrombosis of vena cava" +"I82.3","Embolism and thrombosis of renal vein" +"I82.8","Embolism and thrombosis of other specified veins" +"I82.9","Embolism and thrombosis of unspecified vein" +"I83","VARICOSE VEINS OF LOWER EXTREMITIES" +"I83.0","Varicose veins of lower extremities with ulcer" +"I83.1","Varicose veins of lower extremities with inflammation" +"I83.2","Varicose veins low extremities with both ulcer and inflammation" +"I83.9","Varicose veins lower extremities without ulcer or inflammation" +"I84","HAEMORRHOIDS" +"I84.0","Internal thrombosed haemorrhoids" +"I84.1","Internal haemorrhoids with other complications" +"I84.2","Internal haemorrhoids without complication" +"I84.3","External thrombosed haemorrhoids" +"I84.4","External haemorrhoids with other complications" +"I84.5","External haemorrhoids without complication" +"I84.6","Residual haemorrhoidal skin tags" +"I84.7","Unspecified thrombosed haemorrhoids" +"I84.8","Unspecified haemorrhoids with other complications" +"I84.9","Unspecified haemorrhoids without complication" +"I85","OESOPHAGEAL VARICES" +"I85.0","Oesophageal varices with bleeding" +"I85.9","Oesophageal varices without bleeding" +"I86","VARICOSE VEINS OF OTHER SITES" +"I86.0","Sublingual varices" +"I86.1","Scrotal varices" +"I86.2","Pelvic varices" +"I86.3","Vulval varices" +"I86.4","Gastric varices" +"I86.8","Varicose veins of other specified sites" +"I87","OTHER DISORDERS OF VEINS" +"I87.0","Postphlebitic syndrome" +"I87.1","Compression of vein" +"I87.2","Venous insufficiency (chronic)(peripheral)" +"I87.8","Other specified disorders of veins" +"I87.9","Disorder of vein, unspecified" +"I88","NONSPECIFIC LYMPHADENITIS" +"I88.0","Nonspecific mesenteric lymphadenitis" +"I88.1","Chronic lymphadenitis, except mesenteric" +"I88.8","Other nonspecific lymphadenitis" +"I88.9","Nonspecific lymphadenitis, unspecified" +"I89","OTHER NONINFECTIVE DISORDERS OF LYMPHATIC VESSELS AND LYMPH NODES" +"I89.0","Lymphoedema, not elsewhere classified" +"I89.1","Lymphangitis" +"I89.8","Other specified noninfective disorders lymphatic vessels and lymph nodes" +"I89.9","Noninfective disorder lymphatic vessels and lymph nodes, unspecified" +"I95","HYPOTENSION" +"I95.0","Idiopathic hypotension" +"I95.1","Orthostatic hypotension" +"I95.2","Hypotension due to drugs" +"I95.8","Other hypotension" +"I95.9","Hypotension, unspecified" +"I97","POSTPROCEDURAL DISORDERS OF CIRCULATORY SYSTEM, NOT ELSEWHERE CLASSIFIED" +"I97.0","Postcardiotomy syndrome" +"I97.1","Other functional disturbances following cardiac surgery" +"I97.2","Postmastectomy lymphoedema syndrome" +"I97.8","Other postprocedural disorders of circulatory system , not elsewhere classified" +"I97.9","Postprocedural disorder of circulatory system, unspecified" +"I98","Other disorders of circulatory system in diseases classified elsewhere" +"I98.0","Cardiovascular syphilis" +"I98.1","Cardiovascular disorder other infectious and parasitic diseases classified elsewhere" +"I98.2","Oesophageal varices in diseases classified elsewhere" +"I98.3","Oesophageal varices with bleeding in diseases classified elsewhere" +"I98.8","Other specified disorders of circulatory system in diseases classified elsewhere" +"I99","Other and unspecified disorders of circulatory system" +"J00","Acute nasopharyngitis [common cold]" +"J01","ACUTE SINUSITIS" +"J01.0","Acute maxillary sinusitis" +"J01.1","Acute frontal sinusitis" +"J01.2","Acute ethmoidal sinusitis" +"J01.3","Acute sphenoidal sinusitis" +"J01.4","Acute pansinusitis" +"J01.8","Other acute sinusitis" +"J01.9","Acute sinusitis, unspecified" +"J02","ACUTE PHARYNGITIS" +"J02.0","Streptococcal pharyngitis" +"J02.8","Acute pharyngitis due to other specified organisms" +"J02.9","Acute pharyngitis, unspecified" +"J03","Acute tonsillitis" +"J03.0","Streptococcal tonsillitis" +"J03.8","Acute tonsillitis due to other specified organisms" +"J03.9","Acute tonsillitis, unspecified" +"J04","ACUTE LARYNGITIS AND TRACHEITIS" +"J04.0","Acute laryngitis" +"J04.1","Acute tracheitis" +"J04.2","Acute laryngotracheitis" +"J05","ACUTE OBSTRUCTIVE LARYNGITIS [CROUP] AND EPIGLOTTITIS" +"J05.0","Acute obstructive laryngitis [croup]" +"J05.1","Acute epiglottitis" +"J06","Acute upper respiratory infections of multiple and unspecified sites" +"J06.0","Acute laryngopharyngitis" +"J06.8","Other acute upper respiratory infections of multiple sites" +"J06.9","Acute upper respiratory infection, unspecified" +"J09","Influenza due to identified avian infliuenza virus" +"J10","Influenza due to other identified influenza virus" +"J10.0","Influenza with pneumonia, influenza virus identified" +"J10.1","Influenza with other respiratory manifestations, other influenza virus identified" +"J10.8","Influenza with other manifestations, other influenza virus identified" +"J11","INFLUENZA, VIRUS NOT IDENTIFIED" +"J11.0","Influenza with pneumonia, virus not identified" +"J11.1","Influenza with other respiratory manifestations virus not identified" +"J11.8","Influenza with other manifestations, virus not identified" +"J12","VIRAL PNEUMONIA, NOT ELSEWHERE CLASSIFIED" +"J12.0","Adenoviral pneumonia" +"J12.1","Respiratory syncytial virus pneumonia" +"J12.2","Parainfluenza virus pneumonia" +"J12.3","Human metapneumovirus pneumonia" +"J12.8","Other viral pneumonia" +"J12.9","Viral pneumonia, unspecified" +"J13","PNEUMONIA DUE TO STREPTOCOCCUS PNEUMONIAE" +"J14","PNEUMONIA DUE TO HAEMOPHILUS INFLUENZAE" +"J15","BACTERIAL PNEUMONIA, NOT ELSEWHERE CLASSIFIED" +"J15.0","Pneumonia due to Klebsiella pneumoniae" +"J15.1","Pneumonia due to pseudomonas" +"J15.2","Pneumonia due to staphylococcus" +"J15.3","Pneumonia due to streptococcus, group B" +"J15.4","Pneumonia due to other streptococci" +"J15.5","Pneumonia due to escherichia coli" +"J15.6","Pneumonia due to other aerobic gram-negative bacteria" +"J15.7","Pneumonia due to mycoplasma pneumoniae" +"J15.8","Other bacterial pneumonia" +"J15.9","Bacterial pneumonia, unspecified" +"J16","PNEUMONIA DUE TO OTHER INFECTIOUS ORGANISMS, NOT ELSEWHERE CLASSIFIED" +"J16.0","Chlamydial pneumonia" +"J16.8","Pneumonia due to other specified infectious organisms" +"J17","PNEUMONIA IN DISEASES CLASSIFIED ELSEWHERE" +"J17.0","Pneumonia in bacterial diseases classified elsewhere" +"J17.1","Pneumonia in viral diseases classified elsewhere" +"J17.2","Pneumonia in mycoses" +"J17.3","Pneumonia in parasitic diseases" +"J17.8","Pneumonia in other diseases classified elsewhere" +"J18","Pneumonia, organism unspecified" +"J18.0","Bronchopneumonia, unspecified" +"J18.1","Lobar pneumonia, unspecified" +"J18.2","Hypostatic pneumonia, unspecified" +"J18.8","Other pneumonia, organism unspecified" +"J18.9","Pneumonia, unspecified" +"J18.90","Community Acquired Pneumonia" +"J18.91","Hospital Acquired Pneumonia (Nosocomial Pneumonia)" +"J18.92","Health Care Acquired Pneumonia" +"J20","ACUTE BRONCHITIS" +"J20.0","Acute bronchitis due to mycoplasma pneumoniae" +"J20.1","Acute bronchitis due to haemophilus influenzae" +"J20.2","Acute bronchitis due to streptococcus" +"J20.3","Acute bronchitis due to coxsackievirus" +"J20.4","Acute bronchitis due to parainfluenza virus" +"J20.5","Acute bronchitis due to respiratory syncytial virus" +"J20.6","Acute bronchitis due to rhinovirus" +"J20.7","Acute bronchitis due to echovirus" +"J20.8","Acute bronchitis due to other specified organisms" +"J20.9","Acute bronchitis, unspecified" +"J21","ACUTE BRONCHIOLITIS" +"J21.0","Acute bronchiolitis due to respiratory syncytial virus" +"J21.1","Acute bronchiolitis due to human metapneumovirus" +"J21.8","Acute bronchiolitis due to other specified organisms" +"J21.9","Acute bronchiolitis, unspecified" +"J22","Unspecified acute lower respiratory infection" +"J30","VASOMOTOR AND ALLERGIC RHINITIS" +"J30.0","Vasomotor rhinitis" +"J30.1","Allergic rhinitis due to pollen" +"J30.2","Other seasonal allergic rhinitis" +"J30.3","Other allergic rhinitis" +"J30.4","Allergic rhinitis, unspecified" +"J31","Chronic rhinitis, nasopharyngitis and pharyngitis" +"J31.0","Chronic rhinitis" +"J31.1","Chronic nasopharyngitis" +"J31.2","Chronic pharyngitis" +"J32","CHRONIC SINUSITIS" +"J32.0","Chronic maxillary sinusitis" +"J32.1","Chronic frontal sinusitis" +"J32.2","Chronic ethmoidal sinusitis" +"J32.3","Chronic sphenoidal sinusitis" +"J32.4","Chronic pansinusitis" +"J32.8","Other chronic sinusitis" +"J32.9","Chronic sinusitis, unspecified" +"J33","NASAL POLYP" +"J33.0","Polyp of nasal cavity" +"J33.1","Polypoid sinus degeneration" +"J33.8","Other polyp of sinus" +"J33.9","Nasal polyp, unspecified" +"J34","Other disorders of nose and nasal sinuses" +"J34.0","Abscess, furuncle and carbuncle of nose" +"J34.1","Cyst and mucocele of nose and nasal sinus" +"J34.2","Deviated nasal septum" +"J34.3","Hypertrophy of nasal turbinates" +"J34.8","Other specified disorders of nose and nasal sinuses" +"J35","CHRONIC DISEASES OF TONSILS AND ADENOIDS" +"J35.0","Chronic tonsillitis" +"J35.1","Hypertrophy of tonsils" +"J35.2","Hypertrophy of adenoids" +"J35.3","Hypertrophy of tonsils with hypertrophy of adenoids" +"J35.8","Other chronic diseases of tonsils and adenoids" +"J35.9","Chronic disease of tonsils and adenoids, unspecified" +"J36","Peritonsillar abscess" +"J37","CHRONIC LARYNGITIS AND LARYNGOTRACHEITIS" +"J37.0","Chronic laryngitis" +"J37.1","Chronic laryngotracheitis" +"J38","DISEASES OF VOCAL CORDS AND LARYNX, NOT ELSEWHERE CLASSIFIED" +"J38.0","Paralysis of vocal cords and larynx" +"J38.1","Polyp of vocal cord and larynx" +"J38.2","Nodules of vocal cords" +"J38.3","Other diseases of vocal cords" +"J38.4","Oedema of larynx" +"J38.5","Laryngeal spasm" +"J38.6","Stenosis of larynx" +"J38.7","Other diseases of larynx" +"J39","Other diseases of upper respiratory tract" +"J39.0","Retropharyngeal and parapharyngeal abscess" +"J39.1","Other abscess of pharynx" +"J39.2","Other diseases of pharynx" +"J39.3","Upper respiratory tract hypersensitivity reaction, site unspecified" +"J39.8","Other specified diseases of upper respiratory tract" +"J39.9","Disease of upper respiratory tract, unspecified" +"J40","BRONCHITIS, NOT SPECIFIED AS ACUTE OR CHRONIC" +"J41","SIMPLE AND MUCOPURULENT CHRONIC BRONCHITIS" +"J41.0","Simple chronic bronchitis" +"J41.1","Mucopurulent chronic bronchitis" +"J41.8","Mixed simple and mucopurulent chronic bronchitis" +"J42","Unspecified chronic bronchitis" +"J43","EMPHYSEMA" +"J43.0","MacLeod's syndrome" +"J43.1","Panlobular emphysema" +"J43.2","Centrilobular emphysema" +"J43.8","Other emphysema" +"J43.9","Emphysema, unspecified" +"J44","OTHER CHRONIC OBSTRUCTIVE PULMONARY DISEASE" +"J44.0","Chronic obstructive pulmonary disease with acute lower respiratory infection" +"J44.1","Chronic obstructive pulmonary disease with acute exacerbation, unspecified" +"J44.8","Other specified chronic obstructive pulmonary disease" +"J44.9","Chronic obstructive pulmonary disease, unspecified" +"J45","ASTHMA" +"J45.0","Predominantly allergic asthma" +"J45.1","Nonallergic asthma" +"J45.8","Mixed asthma" +"J45.9","Asthma, unspecified" +"J46","STATUS ASTHMATICUS" +"J47","BRONCHIECTASIS" +"J60","Coalworker's pneumoconiosis" +"J61","PNEUMOCONIOSIS DUE TO ASBESTOS AND OTHER MINERAL FIBRES" +"J62","PNEUMOCONIOSIS DUE TO DUST CONTAINING SILICA" +"J62.0","Pneumoconiosis due to talc dust" +"J62.8","Pneumoconiosis due to other dust containing silica" +"J63","PNEUMOCONIOSIS DUE TO OTHER INORGANIC DUSTS" +"J63.0","Aluminosis (of lung)" +"J63.1","Bauxite fibrosis (of lung)" +"J63.2","Berylliosis" +"J63.3","Graphite Fibrosis (of lung)" +"J63.4","Siderosis" +"J63.5","Stannosis" +"J63.8","Pneumoconiosis due to other specified inorganic dusts" +"J64","Unspecified pneumoconiosis" +"J65","Pneumoconiosis associated with tuberculosis" +"J66","AIRWAY DISEASE DUE TO SPECIFIC ORGANIC DUST" +"J66.0","Byssinosis" +"J66.1","Flax-dresser's disease" +"J66.2","Cannabinosis" +"J66.8","Airway disease due to other specific organic dusts" +"J67","HYPERSENSITIVITY PNEUMONITIS DUE TO ORGANIC DUST" +"J67.0","Farmer's lung" +"J67.1","Bagassosis" +"J67.2","Bird fancier's lung" +"J67.3","Suberosis" +"J67.4","Maltworker's lung" +"J67.5","Mushroom-worker's lung" +"J67.6","Maple-bark-stripper's lung" +"J67.7","Air-conditioner and humidifier lung" +"J67.8","Hypersensitivity pneumonitis due to other organic dusts" +"J67.9","Hypersensitivity pneumonitis due to unspecified organic dust" +"J68","RESPIRATORY CONDITIONS DUE TO INHALATION OF CHEMICALS, GASES, FUMES AND VAPOURS" +"J68.0","Bronchitis & pneumonitis due chemicals, gases fumes & vapours" +"J68.1","Acute pulmon'y oedema due chemicals, gases fumes & vapours" +"J68.2","Upper respiratory inflammation due to chemicals gases, fumes and vapour not elsewhere classified" +"J68.3","Other acute and subacute respiratory conditions due to chemicals, gases, fumes & vapours" +"J68.4","Chronic respiratory conditions due chemicals, gases, fumes and vapours" +"J68.8","Other respiratory conditions due chemicals, gases fumes & vapours" +"J68.9","Unspecified respiratory conditions due chemicals, gases fumes & vapours" +"J69","PNEUMONITIS DUE TO SOLIDS AND LIQUIDS" +"J69.0","Pneumonitis due to food and vomit" +"J69.1","Pneumonitis due to oils and essences" +"J69.8","Pneumonitis due to other solids and liquids" +"J70","RESPIRATORY CONDITIONS DUE TO OTHER EXTERNAL AGENTS" +"J70.0","Acute pulmonary manifestations due to radiation" +"J70.1","Chronic and other pulmonary manifestations due to radiation" +"J70.2","Acute drug-induced interstitial lung disorders" +"J70.3","Chronic drug-induced interstitial lung disorders" +"J70.4","Drug-induced interstitial lung disorders, unspecified" +"J70.8","Respiratory conditions due to other specified external agents" +"J70.9","Respiratory conditions due to unspecified external agent" +"J80","ADULT RESPIRATORY DISTRESS SYNDROME" +"J81","PULMONARY OEDEMA" +"J82","Pulmonary eosinophilia, not elsewhere classified" +"J84","Other interstitial pulmonary diseases" +"J84.0","Alveolar and parietoalveolar conditions" +"J84.1","Other interstitial pulmonary diseases with fibrosis" +"J84.8","Other specified interstitial pulmonary diseases" +"J84.9","Interstitial pulmonary disease, unspecified" +"J85","ABSCESS OF LUNG AND MEDIASTINUM" +"J85.0","Gangrene and necrosis of lung" +"J85.1","Abscess of lung with pneumonia" +"J85.2","Abscess of lung without pneumonia" +"J85.3","Abscess of mediastinum" +"J86","PYOTHORAX" +"J86.0","Pyothorax with fistula" +"J86.9","Pyothorax without fistula" +"J90","PLEURAL EFFUSION, NOT ELSEWHERE CLASSIFIED" +"J91","Pleural effusion in conditions classified elsewhere" +"J92","PLEURAL PLAQUE" +"J92.0","Pleural plaque with presence of asbestos" +"J92.9","pleural plaque without asbestos" +"J93","PNEUMOTHORAX" +"J93.0","Spontaneous tension pneumothorax" +"J93.1","Other spontaneous pneumothorax" +"J93.8","Other pneumothorax" +"J93.9","Pneumothorax, unspecified" +"J94","OTHER PLEURAL CONDITIONS" +"J94.0","Chylous effusion" +"J94.1","Fibrothorax" +"J94.2","Haemothorax" +"J94.8","Other specified pleural conditions" +"J94.9","Pleural condition, unspecified" +"J95","POSTPROCEDURAL RESPIRATORY DISORDERS, NOT ELSEWHERE CLASSIFIED" +"J95.0","Tracheostomy malfunction" +"J95.1","Acute pulmonary insufficiency following thoracic surgery" +"J95.2","Acute pulmonary insufficiency following nonthoracic surgery" +"J95.3","Chronic pulmonary insufficiency following surgery" +"J95.4","Mendelson's syndrome" +"J95.5","Postprocedural subglottic stenosis" +"J95.8","Other postprocedural respiratory disorders" +"J95.9","Postprocedural respiratory disorder, unspecified" +"J96","RESPIRATORY FAILURE, NOT ELSEWHERE CLASSIFIED" +"J96.0","Acute respiratory failure" +"J96.1","Chronic respiratory failure" +"J96.9","Respiratory failure, unspecified" +"J98","OTHER RESPIRATORY DISORDERS" +"J98.0","Diseases of bronchus, not elsewhere classified" +"J98.1","Pulmonary collapse" +"J98.2","Interstitial emphysema" +"J98.3","Compensatory emphysema" +"J98.4","Other disorders of lung" +"J98.5","Diseases of mediastinum, not elsewhere classified" +"J98.6","Disorders of diaphragm" +"J98.8","Other specified respiratory disorders" +"J98.9","Respiratory disorder, unspecified" +"J99","RESPIRATORY DISORDERS IN DISEASES CLASSIFIED ELSEWHERE" +"J99.0","Rheumatoid lung disease" +"J99.1","Resp disorders in other diffuse connective tissue disorders" +"J99.8","Respiratory disorders in other diseases classified elsewhere" +"K00","DISORDERS OF TOOTH DEVELOPMENT AND ERUPTION" +"K00.0","Anodontia" +"K00.1","Supernumerary teeth" +"K00.2","Abnormalities of size and form of teeth" +"K00.3","Mottled teeth" +"K00.4","Disturbances in tooth formation" +"K00.5","Hereditary disturbances in tooth structure nec" +"K00.6","Disturbances in tooth eruption" +"K00.7","Teething syndrome" +"K00.8","Other disorders of tooth development" +"K00.9","Disorder of tooth development, unspecified" +"K01","EMBEDDED AND IMPACTED TEETH" +"K01.0","Embedded teeth" +"K01.1","Impacted teeth" +"K02","DENTAL CARIES" +"K02.0","Caries limited to enamel" +"K02.1","Caries of dentine" +"K02.2","Caries of cementum" +"K02.3","Arrested dental caries" +"K02.4","Odontoclasia" +"K02.8","Other dental caries" +"K02.9","Dental caries, unspecified" +"K03","OTHER DISEASES OF HARD TISSUES OF TEETH" +"K03.0","Excessive attrition of teeth" +"K03.1","Abrasion of teeth" +"K03.2","Erosion of teeth" +"K03.3","Pathological resorption of teeth" +"K03.4","Hypercementosis" +"K03.5","Ankylosis of teeth" +"K03.6","Deposits [accretions] on teeth" +"K03.7","Posteruptive colour changes of dental hard tissues" +"K03.8","Other specified diseases of hard tissues of teeth" +"K03.9","Disease of hard tissues of teeth, unspecified" +"K04","Diseases of pulp and periapical tissues" +"K04.0","Pulpitis" +"K04.1","Necrosis of pulp" +"K04.2","Pulp degeneration" +"K04.3","Abnormal hard tissue formation in pulp" +"K04.4","Acute apical periodontitis of pulpal origin" +"K04.5","Chronic apical periodontitis" +"K04.6","Periapical abscess with sinus" +"K04.7","Periapical abscess without sinus" +"K04.8","Radicular cyst" +"K04.9","Other and unspec diseases of pulp and periapical tissues" +"K05","GINGIVITIS AND PERIODONTAL DISEASES" +"K05.0","Acute gingivitis" +"K05.1","Chronic gingivitis" +"K05.2","Acute periodontitis" +"K05.3","Chronic periodontitis" +"K05.4","Periodontosis" +"K05.5","Other periodontal diseases" +"K05.6","Periodontal disease, unspecified" +"K06","OTHER DISORDERS OF GINGIVA AND EDENTULOUS ALVEOLAR RIDGE" +"K06.0","Gingival recession" +"K06.1","Gingival enlargement" +"K06.2","Gingival and edentulous alveolar ridge les assoc with traum" +"K06.8","Other specified disorder of gingiva and edentulous alveolar ridge" +"K06.9","Disorder of gingiva and edentulous alveolar ridge, unspec act" +"K07","Dentofacial anomalies [including malocclusion]" +"K07.0","Major anomalies of jaw size" +"K07.1","Anomalies of jaw-cranial base relationship" +"K07.2","Anomalies of dental arch relationship" +"K07.3","Anomalies of tooth position" +"K07.4","Malocclusion, unspecified" +"K07.5","Dentofacial functional abnormalities" +"K07.6","Temporomandibular joint disorders" +"K07.8","Other dentofacial anomalies" +"K07.9","Dentofacial anomaly, unspecified" +"K08","Other disorders of teeth and supporting structures" +"K08.0","Exfoliation of teeth due to systemic causes" +"K08.1","Loss of teeth accident extraction or local periodontal dis" +"K08.2","Atrophy of edentulous alveolar ridge" +"K08.3","Retained dental root" +"K08.8","Other specified disorders of teeth and supporting structures" +"K08.9","Disorder of teeth and supporting structures, unspecified" +"K09","CYSTS OF ORAL REGION, NOT ELSEWHERE CLASSIFIED" +"K09.0","Developmental odontogenic cysts" +"K09.1","Developmental (nonodontogenic) cysts of oral region" +"K09.2","Other cysts of jaw" +"K09.8","Other cysts of oral region, not elsewhere classified" +"K09.9","Cyst of oral region, unspecified" +"K10","OTHER DISEASES OF JAWS" +"K10.0","Developmental disorders of jaws" +"K10.1","Giant cell granuloma, central" +"K10.2","Inflammatory conditions of jaws" +"K10.3","Alveolitis of jaws" +"K10.8","Other specified diseases of jaws" +"K10.9","Disease of jaws, unspecified" +"K11","DISEASES OF SALIVARY GLANDS" +"K11.0","Atrophy of salivary gland" +"K11.1","Hypertrophy of salivary gland" +"K11.2","Sialoadenitis" +"K11.3","Abscess of salivary gland" +"K11.4","Fistula of salivary gland" +"K11.5","Sialolithiasis" +"K11.6","Mucocele of salivary gland" +"K11.7","Disturbances of salivary secretion" +"K11.8","Other diseases of salivary glands" +"K11.9","Disease of salivary gland, unspecified" +"K12","STOMATITIS AND RELATED LESIONS" +"K12.0","Recurrent oral aphthae" +"K12.1","Other forms of stomatitis" +"K12.2","Cellulitis and abscess of mouth" +"K12.3","Oral mucositis (ulcerative)" +"K13","OTHER DISEASES OF LIP AND ORAL MUCOSA" +"K13.0","Diseases of lips" +"K13.1","Cheek and lip biting" +"K13.2","Leukoplakia and other disturbances of oral epithelium, including tongue" +"K13.3","Hairy leukoplakia" +"K13.4","Granuloma and granuloma-like lesions of oral mucosa" +"K13.5","Oral submucous fibrosis" +"K13.6","Irritative hyperplasia of oral mucosa" +"K13.7","Other and unspecified lesions of oral mucosa" +"K14","DISEASES OF TONGUE" +"K14.0","Glossitis" +"K14.1","Geographic tongue" +"K14.2","Median rhomboid glossitis" +"K14.3","Hypertrophy of tongue papillae" +"K14.4","Atrophy of tongue papillae" +"K14.5","Plicated tongue" +"K14.6","Glossodynia" +"K14.8","Other diseases of tongue" +"K14.9","Disease of tongue, unspecified" +"K20","OESOPHAGITIS" +"K21","GASTRO-OESOPHAGEAL REFLUX DISEASE" +"K21.0","Gastro-oesophageal reflux disease with oesophagitis" +"K21.9","Gastro-oesophageal reflux disease without oesophagitis" +"K22","OTHER DISEASES OF OESOPHAGUS" +"K22.0","Achalasia of cardia" +"K22.1","Ulcer of oesophagus" +"K22.2","Oesophageal obstruction" +"K22.3","Perforation of oesophagus" +"K22.4","Dyskinesia of oesophagus" +"K22.5","Diverticulum of oesophagus, acquired" +"K22.6","Gastro-oesophageal laceration-haemorrhage syndrome" +"K22.7","Barrett's oesophagus" +"K22.8","Other specified diseases of oesophagus" +"K22.9","Disease of oesophagus, unspecified" +"K23","Disorders of oesophagus in diseases classified elsewhere" +"K23.0","Tuberculous oesophagitis" +"K23.1","Megaoesophagus in chagas' disease" +"K23.8","Disorders of oesophagus in other diseases ec" +"K25","GASTRIC ULCER" +"K25.0","Gastric ulcer, acute with haemorrhage" +"K25.1","Gastric ulcer, acute with perforation" +"K25.2","Gastric ulcer, acute with both haemorrhage and perforation" +"K25.3","Gastric ulcer, acute without haemorrhage or perforation" +"K25.4","Gastric ulcer, chronic or unspecified with haemorrhage" +"K25.5","Gastric ulcer, chronic or unspecified with perforation" +"K25.6","Gastric ulcer, chronic or unspecified with both haemorrhage and perforation" +"K25.7","Gastric ulcer, chronic without haemorrhage or perforation" +"K25.9","Gastric ulcer, unspec as acute or chronic w'out haemorrhage or perforation" +"K26","DUODENAL ULCER" +"K26.0","Duodenal ulcer, acute with haemorrhage" +"K26.1","Duodenal ulcer, acute with perforation" +"K26.2","Duodenal ulcer, acute with both haemorrhage and perforation" +"K26.3","Duodenal ulcer, acute without haemorrhage or perforation" +"K26.4","Duodenal ulcer, chronic or unspecified with haemorrhage" +"K26.5","Duodenal ulcer, chronic or unspecified with perforation" +"K26.6","Chronic or unspecified with both haemorrhage and perforation" +"K26.7","Duodenal ulcer, chronic without haemorrhage or perforation" +"K26.9","Unspec as acute or chronic without haemorrhage or perforation" +"K27","Peptic ulcer, site unspecified" +"K27.0","Peptic ulcer, acute with haemorrhage" +"K27.1","Peptic ulcer, acute with perforation" +"K27.2","Peptic ulcer, acute with both haemorrhage and perforation" +"K27.3","Peptic ulcer, acute without haemorrhage or perforation" +"K27.4","Peptic ulcer, chronic or unspecified with haemorrhage" +"K27.5","Peptic ulcer, chronic or unspecified with perforation" +"K27.6","Peptic ulcer, chronic or unspecified with both haemorrhage and perforation" +"K27.7","Peptic ulcer, chronic without haemorrhage or perforation" +"K27.9","Peptic ulcer, unspec as acute or chronic without haemorrhage or perforation" +"K28","GASTROJEJUNAL ULCER" +"K28.0","Gastrojejunal ulcer, acute with haemorrhage" +"K28.1","Gastrojejunal ulcer, acute with perforation" +"K28.2","Gastrojejunal ulcer, acute with both haemorrhage and perforation" +"K28.3","Gastrojejunal ulcer, acute without haemorrhage or perforation" +"K28.4","Gastrojejunal ulcer, chronic or unspecified with haemorrhage" +"K28.5","Gastrojejunal ulcer, chronic or unspecified with perforation" +"K28.6","Gastrojejunal ulcer, chronic or unspecified with both haemorrhage and perforation" +"K28.7","Gastrojejunal ulcer, chronic without haemorrhage or perforation" +"K28.9","Gastrojejunal ulcer, unspec as acute or chronic without haemorrhage or perforation" +"K29","GASTRITIS AND DUODENITIS" +"K29.0","Acute haemorrhagic gastritis" +"K29.1","Other acute gastritis" +"K29.2","Alcoholic gastritis" +"K29.3","Chronic superficial gastritis" +"K29.4","Chronic atrophic gastritis" +"K29.5","Chronic gastritis, unspecified" +"K29.6","Other gastritis" +"K29.7","Gastritis, unspecified" +"K29.8","Duodenitis" +"K29.9","Gastroduodenitis, unspecified" +"K30","DYSPEPSIA" +"K31","OTHER DISEASES OF STOMACH AND DUODENUM" +"K31.0","Acute dilatation of stomach" +"K31.1","Adult hypertrophic pyloric stenosis" +"K31.2","Hourglass stricture and stenosis of stomach" +"K31.3","Pylorospasm, not elsewhere classified" +"K31.4","Gastric diverticulum" +"K31.5","Obstruction of duodenum" +"K31.6","Fistula of stomach and duodenum" +"K31.7","Polyp of stomach and duodenum" +"K31.8","Other specified diseases of stomach and duodenum" +"K31.9","Disease of stomach and duodenum, unspecified" +"K35","ACUTE APPENDICITIS" +"K35.0","Acute appendicitis with generalized peritonitis" +"K35.1","Acute appendicitis with peritoneal abscess" +"K35.2","Acute appendicitis with generalized peritonitis" +"K35.3","Acute appendicitis with localized peritonitis" +"K35.8","Acute appendicitis, other and unspecified" +"K35.9","Acute appendicitis, unspecified" +"K36","OTHER APPENDICITIS" +"K37","Unspecified appendicitis" +"K38","OTHER DISEASES OF APPENDIX" +"K38.0","Hyperplasia of appendix" +"K38.1","Appendicular concretions" +"K38.2","Diverticulum of appendix" +"K38.3","Fistula of appendix" +"K38.8","Other specified diseases of appendix" +"K38.9","Disease of appendix, unspecified" +"K40","INGUINAL HERNIA" +"K40.0","Bilateral inguinal hernia, with obstruction, without gangrene" +"K40.1","Bilateral inguinal hernia, with gangrene" +"K40.2","Bilateral inguinal hernia, without obstruction or gangrene" +"K40.3","Unilateral or unspecified inguinal hernia, with obstruction, without gangrene" +"K40.4","Unilateral or unspecified inguinal hernia, with gangrene" +"K40.9","Unilateral or unspecified inguinal hernia, without obstruction or gangrene" +"K41","FEMORAL HERNIA" +"K41.0","Bilateral femoral hernia, with obstruction, without gangrene" +"K41.1","Bilateral femoral hernia, with gangrene" +"K41.2","Bilateral femoral hernia, without obstruction or gangrene" +"K41.3","Unilateral or unspecified femoral hernia, with obstruction, without gangrene" +"K41.4","Unilateral or unspecified femoral hernia, with gangrene" +"K41.9","Unilateral or unspecified femoral hernia, without obstruction or gangrene" +"K42","UMBILICAL HERNIA" +"K42.0","Umbilical hernia with obstruction, without gangrene" +"K42.1","Umbilical hernia with gangrene" +"K42.9","Umbilical hernia without obstruction or gangrene" +"K43","VENTRAL HERNIA" +"K43.0","Ventral hernia with obstruction, without gangrene" +"K43.1","Ventral hernia with gangrene" +"K43.9","Ventral hernia without obstruction or gangrene" +"K44","DIAPHRAGMATIC HERNIA" +"K44.0","Diaphragmatic hernia with obstruction, without gangrene" +"K44.1","Diaphragmatic hernia with gangrene" +"K44.9","Diaphragmatic hernia without obstruction or gangrene" +"K45","OTHER ABDOMINAL HERNIA" +"K45.0","Other spec abdominal hernia with obstruct without gangrene" +"K45.1","Other specified abdominal hernia with gangrene" +"K45.8","Other specified abdominal hernia without obstruction or gangrene" +"K46","Unspecified abdominal hernia" +"K46.0","Unspecified abdominal hernia with obstruction without gangrene" +"K46.1","Unspecified abdominal hernia with gangrene" +"K46.9","Unspecified abdominal hernia without obstruction or gangrene" +"K50","Crohn disease [regional enteritis]" +"K50.0","Crohn's disease of small intestine" +"K50.1","Crohn's disease of large intestine" +"K50.8","Other crohn's disease" +"K50.9","Crohn's disease, unspecified" +"K51","Ulcerative colitis" +"K51.0","Ulcerative (chronic) enterocolitis" +"K51.1","Ulcerative (chronic) ileocolitis" +"K51.2","Ulcerative (chronic) proctitis" +"K51.3","Ulcerative (chronic) rectosigmoiditis" +"K51.4","Pseudopolyposis of colon" +"K51.5","Mucosal proctocolitis" +"K51.8","Other ulcerative colitis" +"K51.9","Ulcerative colitis, unspecified" +"K52","OTHER NONINFECTIVE GASTROENTERITIS AND COLITIS" +"K52.0","Gastroenteritis and colitis due to radiation" +"K52.1","Toxic gastroenteritis and colitis" +"K52.2","Allergic and dietetic gastroenteritis and colitis" +"K52.3","Indeterminate colitis" +"K52.8","Other specified noninfective gastroenteritis and colitis" +"K52.9","Noninfective gastroenteritis and colitis, Unspecified" +"K55","VASCULAR DISORDERS OF INTESTINE" +"K55.0","Acute vascular disorders of intestine" +"K55.1","Chronic vascular disorders of intestine" +"K55.2","Angiodysplasia of colon" +"K55.8","Other vascular disorders of intestine" +"K55.9","Vascular disorder of intestine, unspecified" +"K56","Paralytic ileus and intestinal obstruction without hernia" +"K56.0","Paralytic ileus" +"K56.1","Intussusception" +"K56.2","Volvulus" +"K56.3","Gallstone ileus" +"K56.4","Other impaction of intestine" +"K56.5","Intestinal adhesions [bands] with obstruction" +"K56.6","Other and unspecified intestinal obstruction" +"K56.7","Ileus, unspecified" +"K57","DIVERTICULAR DISEASE OF INTESTINE" +"K57.0","Diverticular disease of small intestine with perforation and abscess" +"K57.1","Diverticular disease of small intestine without perforation or abscess" +"K57.2","Diverticular disease of large intestine with perforation and abscess" +"K57.3","Diverticular disease of large intestine without perforation or abscess" +"K57.4","Diverticular disease of both small and large intestine with perforation and abscess" +"K57.5","Diverticular disease of both small and large intestine without perforation or abscess" +"K57.8","Diverticular disease of intestine, part unspecified, with perforation and abscess" +"K57.9","Diverticular disease of intestine, part unspecified, without perforation or abscess" +"K58","IRRITABLE BOWEL SYNDROME" +"K58.0","Irritable bowel syndrome with diarrhoea" +"K58.9","Irritable bowel syndrome without diarrhoea" +"K59","OTHER FUNCTIONAL INTESTINAL DISORDERS" +"K59.0","Constipation" +"K59.1","Functional diarrhoea" +"K59.2","Neurogenic bowel, not elsewhere classified" +"K59.3","Megacolon, not elsewhere classified" +"K59.4","Anal spasm" +"K59.8","Other specified functional intestinal disorders" +"K59.9","Functional intestinal disorder, unspecified" +"K60","FISSURE AND FISTULA OF ANAL AND RECTAL REGIONS" +"K60.0","Acute anal fissure" +"K60.1","Chronic anal fissure" +"K60.2","Anal fissure, unspecified" +"K60.3","Anal fistula" +"K60.4","Rectal fistula" +"K60.5","Anorectal fistula" +"K61","ABSCESS OF ANAL AND RECTAL REGIONS" +"K61.0","Anal abscess" +"K61.1","Rectal abscess" +"K61.2","Anorectal abscess" +"K61.3","Ischiorectal abscess" +"K61.4","Intrasphincteric abscess" +"K62","Other diseases of anus and rectum" +"K62.0","Anal polyp" +"K62.1","Rectal polyp" +"K62.2","Anal prolapse" +"K62.3","Rectal prolapse" +"K62.4","Stenosis of anus and rectum" +"K62.5","Haemorrhage of anus and rectum" +"K62.6","Ulcer of anus and rectum" +"K62.7","Radiation proctitis" +"K62.8","Other specified diseases of anus and rectum" +"K62.9","Disease of anus and rectum, unspecified" +"K63","OTHER DISEASES OF INTESTINE" +"K63.0","Abscess of intestine" +"K63.1","Perforation of intestine (nontraumatic)" +"K63.2","Fistula of intestine" +"K63.3","Ulcer of intestine" +"K63.4","Enteroptosis" +"K63.5","Polyp of colon" +"K63.8","Other specified diseases of intestine" +"K63.9","Disease of intestine, unspecified" +"K64","Hemorrhoids and perianal venous thrombosis" +"K65","PERITONITIS" +"K65.0","Acute peritonitis" +"K65.8","Other peritonitis" +"K65.9","Peritonitis, unspecified" +"K66","Other disorders of peritoneum" +"K66.0","Peritoneal adhesions" +"K66.1","Haemoperitoneum" +"K66.8","Other specified disorders of peritoneum" +"K66.9","Disorder of peritoneum, unspecified" +"K67","Disorders of peritoneum in infectious diseases classified elsewhere" +"K67.0","Chlamydial peritonitis" +"K67.1","Gonococcal peritonitis" +"K67.2","Syphilitic peritonitis" +"K67.3","Tuberculous peritonitis" +"K67.8","Other disorders of peritoneum in infectious diseases ec" +"K70","ALCOHOLIC LIVER DISEASE" +"K70.0","Alcoholic fatty liver" +"K70.1","Alcoholic hepatitis" +"K70.2","Alcoholic fibrosis and sclerosis of liver" +"K70.3","Alcoholic cirrhosis of liver" +"K70.4","Alcoholic hepatic failure" +"K70.9","Alcoholic liver disease, unspecified" +"K71","TOXIC LIVER DISEASE" +"K71.0","Toxic liver disease with cholestasis" +"K71.1","Toxic liver disease with hepatic necrosis" +"K71.2","Toxic liver disease with acute hepatitis" +"K71.3","Toxic liver disease with chronic persistent hepatitis" +"K71.4","Toxic liver disease with chronic lobular hepatitis" +"K71.5","Toxic liver disease with chronic active hepatitis" +"K71.6","Toxic liver disease with hepatitis, not elsewhere classified" +"K71.7","Toxic liver disease with fibrosis and cirrhosis of liver" +"K71.8","Toxic liver disease with other disorders of liver" +"K71.9","Toxic liver disease, unspecified" +"K72","HEPATIC FAILURE, NOT ELSEWHERE CLASSIFIED" +"K72.0","Acute and subacute hepatic failure" +"K72.1","Chronic hepatic failure" +"K72.9","Hepatic failure, unspecified" +"K73","CHRONIC HEPATITIS, NOT ELSEWHERE CLASSIFIED" +"K73.0","Chronic persistent hepatitis, not elsewhere classified" +"K73.1","Chronic lobular hepatitis, not elsewhere classified" +"K73.2","Chronic active hepatitis, not elsewhere classified" +"K73.8","Other chronic hepatitis, not elsewhere classified" +"K73.9","Chronic hepatitis, unspecified" +"K74","FIBROSIS AND CIRRHOSIS OF LIVER" +"K74.0","Hepatic fibrosis" +"K74.1","Hepatic sclerosis" +"K74.2","Hepatic fibrosis with hepatic sclerosis" +"K74.3","Primary biliary cirrhosis" +"K74.4","Secondary biliary cirrhosis" +"K74.5","Biliary cirrhosis, unspecified" +"K74.6","Other and unspecified cirrhosis of liver" +"K75","OTHER INFLAMMATORY LIVER DISEASES" +"K75.0","Abscess of liver" +"K75.1","Phlebitis of portal vein" +"K75.2","Nonspecific reactive hepatitis" +"K75.3","Granulomatous hepatitis, not elsewhere classified" +"K75.4","Autoimmune hepatitis" +"K75.8","Other specified inflammatory liver diseases" +"K75.9","Inflammatory liver disease, unspecified" +"K76","Other diseases of liver" +"K76.0","Fatty (change of) liver, not elsewhere classified" +"K76.1","Chronic passive congestion of liver" +"K76.2","Central haemorrhagic necrosis of liver" +"K76.3","Infarction of liver" +"K76.4","Peliosis hepatis" +"K76.5","Hepatic veno-occlusive disease" +"K76.6","Portal hypertension" +"K76.7","Hepatorenal syndrome" +"K76.8","Other specified diseases of liver" +"K76.9","Liver disease, unspecified" +"K77","LIVER DISORDERS IN DISEASES CLASSIFIED ELSEWHERE" +"K77.0","Liver disorders in infectious and parasitic diseases classified elsewhere" +"K77.8","Liver disorders in other diseases classified elsewhere" +"K80","CHOLELITHIASIS" +"K80.0","Calculus of gallbladder with acute cholecystitis" +"K80.1","Calculus of gallbladder with other cholecystitis" +"K80.2","Calculus of gallbladder without cholecystitis" +"K80.3","Calculus of bile duct with cholangitis" +"K80.4","Calculus of bile duct with cholecystitis" +"K80.5","Calculus of bile duct without cholangitis or cholecystitis" +"K80.8","Other cholelithiasis" +"K81","CHOLECYSTITIS" +"K81.0","Acute cholecystitis" +"K81.1","Chronic cholecystitis" +"K81.8","Other cholecystitis" +"K81.9","Cholecystitis, unspecified" +"K82","Other diseases of gallbladder" +"K82.0","Obstruction of gallbladder" +"K82.1","Hydrops of gallbladder" +"K82.2","Perforation of gallbladder" +"K82.3","Fistula of gallbladder" +"K82.4","Cholesterolosis of gallbladder" +"K82.8","Other specified diseases of gallbladder" +"K82.9","Disease of gallbladder, unspecified" +"K83","Other diseases of biliary tract" +"K83.0","Cholangitis" +"K83.1","Obstruction of bile duct" +"K83.2","Perforation of bile duct" +"K83.3","Fistula of bile duct" +"K83.4","Spasm of sphincter of oddi" +"K83.5","Biliary cyst" +"K83.8","Other specified diseases of biliary tract" +"K83.9","Disease of biliary tract, unspecified" +"K85","ACUTE PANCREATITIS" +"K85.0","Idiopathic acute pancreatitis" +"K85.1","Biliary acute pancreatitis" +"K85.2","Alcohol-induced acute pancreatitis" +"K85.3","Drug-induced acute pancreatitis" +"K85.8","Other acute pancreatitis" +"K85.9","Acute pancreatitis, unspecified" +"K86","OTHER DISEASES OF PANCREAS" +"K86.0","Alcohol-induced chronic pancreatitis" +"K86.1","Other chronic pancreatitis" +"K86.2","Cyst of pancreas" +"K86.3","Pseudocyst of pancreas" +"K86.8","Other specified diseases of pancreas" +"K86.9","Disease of pancreas, unspecified" +"K87","Disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere" +"K87.0","Disorders of gallbladder and biliary tract in diseases classified elsewhere" +"K87.1","Disorders of pancreas in diseases classified elsewhere" +"K90","INTESTINAL MALABSORPTION" +"K90.0","Coeliac disease" +"K90.1","Tropical sprue" +"K90.2","Blind loop syndrome, not elsewhere classified" +"K90.3","Pancreatic steatorrhoea" +"K90.4","Malabsorption due to intolerance, not elsewhere classified" +"K90.8","Other intestinal malabsorption" +"K90.9","Intestinal malabsorption, unspecified" +"K91","Postprocedural disorders of digestive system, not elsewhere classified" +"K91.0","Vomiting following gastrointestinal surgery" +"K91.1","Postgastric surgery syndromes" +"K91.2","Postsurgical malabsorption, not elsewhere classified" +"K91.3","Postoperative intestinal obstruction" +"K91.4","Colostomy and enterostomy malfunction" +"K91.5","Postcholecystectomy syndrome" +"K91.8","Other postprocedural disorders of digestive system, not elsewhere classified" +"K91.9","Postprocedural disorder of digestive system, unspecified" +"K92","OTHER DISEASES OF DIGESTIVE SYSTEM" +"K92.0","Haematemesis" +"K92.1","Melaena" +"K92.2","Gastrointestinal haemorrhage, unspecified" +"K92.8","Other specified diseases of digestive system" +"K92.9","Disease of digestive system, unspecified" +"K93","Disorders of other digestive organs in diseases classified elsewhere" +"K93.0","Tuberculous disorders of intestines, peritoneum and mesenteric glands" +"K93.1","Megacolon in chagas' disease" +"K93.8","Disord of oth spec digestive organs in dis class elsewhere" +"L00","STAPHYLOCOCCAL SCALDED SKIN SYNDROME" +"L01","IMPETIGO" +"L01.0","Impetigo [any organism] [any site]" +"L01.1","Impetiginization of other dermatoses" +"L02","CUTANEOUS ABSCESS, FURUNCLE AND CARBUNCLE" +"L02.0","Cutaneous abscess, furuncle and carbuncle of face" +"L02.1","Cutaneous abscess, furuncle and carbuncle of neck" +"L02.2","Cutaneous abscess, furuncle and carbuncle of trunk" +"L02.3","Cutaneous abscess, furuncle and carbuncle of buttock" +"L02.4","Cutaneous abscess, furuncle and carbuncle of limb" +"L02.8","Cutaneous abscess, furuncle and carbuncle of other sites" +"L02.9","Cutaneous abscess, furuncle and carbuncle, unspecified" +"L03","CELLULITIS" +"L03.0","Cellulitis of finger and toe" +"L03.1","Cellulitis of other parts of limb" +"L03.2","Cellulitis of face" +"L03.3","Cellulitis of trunk" +"L03.8","Cellulitis of other sites" +"L03.9","Cellulitis, unspecified" +"L04","ACUTE LYMPHADENITIS" +"L04.0","Acute lymphadenitis of face, head and neck" +"L04.1","Acute lymphadenitis of trunk" +"L04.2","Acute lymphadenitis of upper limb" +"L04.3","Acute lymphadenitis of lower limb" +"L04.8","acute lymphadenitis of other sites" +"L04.9","Acute lymphadenitis, unspecified" +"L05","PILONIDAL CYST" +"L05.0","Pilonidal cyst with abscess" +"L05.9","Pilonidal cyst without abscess" +"L08","OTHER LOCAL INFECTIONS OF SKIN AND SUBCUTANEOUS TISSUE" +"L08.0","Pyoderma" +"L08.1","Erythrasma" +"L08.8","Other specified local infections of skin and subcutaneous tissue" +"L08.9","Local infection of skin and subcutaneous tissue, unspecified" +"L10","PEMPHIGUS" +"L10.0","Pemphigus vulgaris" +"L10.1","Pemphigus vegetans" +"L10.2","Pemphigus foliaceus" +"L10.3","Brazilian pemphigus [fogo selvagem]" +"L10.4","Pemphigus erythematosus" +"L10.5","Drug induced pemphigus" +"L10.8","Other pemphigus" +"L10.9","Pemphigus, unspecified" +"L11","OTHER ACANTHOLYTIC DISORDERS" +"L11.0","Acquired keratosis follicularis" +"L11.1","Transient acantholytic dermatosis [Grover]" +"L11.8","Other specified acantholytic disorders" +"L11.9","Acantholytic disorder, unspecified" +"L12","PEMPHIGOID" +"L12.0","Bullous pemphigoid" +"L12.1","Cicatricial pemphigoid" +"L12.2","Chronic bullous disease of childhood" +"L12.3","Acquired epidermolysis bullosa" +"L12.8","Other pemphigoid" +"L12.9","Pemphigoid, unspecified" +"L13","OTHER BULLOUS DISORDERS" +"L13.0","Dermatitis herpetiformis" +"L13.1","Subcorneal pustular dermatitis" +"L13.8","Other specified bullous disorders" +"L13.9","Bullous disorder, unspecified" +"L14","BULLOUS DISORDERS IN DISEASES CLASSIFIED ELSEWHERE" +"L20","ATOPIC DERMATITIS" +"L20.0","Besnier's prurigo" +"L20.8","Other atopic dermatitis" +"L20.9","Atopic dermatitis, unspecified" +"L21","SEBORRHOEIC DERMATITIS" +"L21.0","Seborrhoea capitis" +"L21.1","Seborrhoeic infantile dermatitis" +"L21.8","Other seborrhoeic dermatitis" +"L21.9","Seborrhoeic dermatitis, unspecified" +"L22","DIAPER [NAPKIN] DERMATITIS" +"L23","ALLERGIC CONTACT DERMATITIS" +"L23.0","Allergic contact dermatitis due to metals" +"L23.1","Allergic contact dermatitis due to adhesives" +"L23.2","Allergic contact dermatitis due to cosmetics" +"L23.3","Allergic contact dermatitis due drugs in contact with skin" +"L23.4","Allergic contact dermatitis due to dyes" +"L23.5","Allergic contact dermatitis due to other chemical products" +"L23.6","Allergic contact dermatitis due to food in contact with skin" +"L23.7","Allergic contact dermatitis due to plants, except food" +"L23.8","Allergic contact dermatitis due to other agents" +"L23.9","Allergic contact dermatitis, unspecified cause" +"L24","IRRITANT CONTACT DERMATITIS" +"L24.0","Irritant contact dermatitis due to detergents" +"L24.1","Irritant contact dermatitis due to oils and greases" +"L24.2","Irritant contact dermatitis due to solvents" +"L24.3","Irritant contact dermatitis due to cosmetics" +"L24.4","Irritant contact dermatitis due drugs in contact with skin" +"L24.5","Irritant contact dermatitis due to other chemical products" +"L24.6","Irritant contact dermatitis due to food in contact with skin" +"L24.7","Irritant contact dermatitis due to plants, except food" +"L24.8","Irritant contact dermatitis due to other agents" +"L24.9","Irritant contact dermatitis, unspecified cause" +"L25","Unspecified contact dermatitis" +"L25.0","Unspecified contact dermatitis due to cosmetics" +"L25.1","Unspecified contact dermatitis due to drugs in contact with skin" +"L25.2","Unspecified contact dermatitis due to dyes" +"L25.3","Unspecified contact dermatitis due to other chemical products" +"L25.4","Unspecified contact dermatitis due to food in contact with skin" +"L25.5","Unspecified contact dermatitis due to plants, except food" +"L25.8","Unspecified contact dermatitis due to other agents" +"L25.9","Unspecified contact dermatitis, unspecified cause" +"L26","EXFOLIATIVE DERMATITIS" +"L27","DERMATITIS DUE TO SUBSTANCES TAKEN INTERNALLY" +"L27.0","Generalized skin eruption due to drugs and medicaments" +"L27.1","Localized skin eruption due to drugs and medicaments" +"L27.2","Dermatitis due to ingested food" +"L27.8","Dermatitis due to other substances taken internally" +"L27.9","Dermatitis due to unspecified substance taken internally" +"L28","LICHEN SIMPLEX CHRONICUS AND PRURIGO" +"L28.0","Lichen simplex chronicus" +"L28.1","Prurigo nodularis" +"L28.2","Other prurigo" +"L29","PRURITUS" +"L29.0","Pruritus ani" +"L29.1","Pruritus scroti" +"L29.2","Pruritus vulvae" +"L29.3","Anogenital pruritus, unspecified" +"L29.8","Other pruritus" +"L29.9","Pruritus, unspecified" +"L30","OTHER DERMATITIS" +"L30.0","Nummular dermatitis" +"L30.1","Dyshidrosis [pompholyx]" +"L30.2","Cutaneous autosensitization" +"L30.3","Infective dermatitis" +"L30.4","Erythema intertrigo" +"L30.5","Pityriasis alba" +"L30.8","Other specified dermatitis" +"L30.9","Dermatitis, unspecified" +"L40","PSORIASIS" +"L40.0","Psoriasis vulgaris" +"L40.1","Generalized pustular psoriasis" +"L40.2","Acrodermatitis continua" +"L40.3","Pustulosis palmaris et plantaris" +"L40.4","Guttate psoriasis" +"L40.5","Arthropathic psoriasis" +"L40.8","Other psoriasis" +"L40.9","Psoriasis, unspecified" +"L41","PARAPSORIASIS" +"L41.0","Pityriasis lichenoides et varioliformis acuta" +"L41.1","Pityriasis lichenoides chronica" +"L41.2","Lymphomatoid papulosis" +"L41.3","Small plaque parapsoriasis" +"L41.4","Large plaque parapsoriasis" +"L41.5","Retiform parapsoriasis" +"L41.8","Other parapsoriasis" +"L41.9","Parapsoriasis, unspecified" +"L42","PITYRIASIS ROSEA" +"L43","LICHEN PLANUS" +"L43.0","Hypertrophic lichen planus" +"L43.1","Bullous lichen planus" +"L43.2","Lichenoid drug reaction" +"L43.3","Subacute (active) lichen planus" +"L43.8","Other lichen planus" +"L43.9","Lichen planus, unspecified" +"L44","Other papulosquamous disorders" +"L44.0","Pityriasis rubra pilaris" +"L44.1","Lichen nitidus" +"L44.2","Lichen striatus" +"L44.3","Lichen ruber moniliformis" +"L44.4","Infantile papular acrodermatitis [Giannotti-Crosti]" +"L44.8","Other specified papulosquamous disorders" +"L44.9","Papulosquamous disorder, unspecified" +"L45","Papulosquamous disorders in diseases classif elsewhere" +"L50","URTICARIA" +"L50.0","Allergic urticaria" +"L50.1","Idiopathic urticaria" +"L50.2","Urticaria due to cold and heat" +"L50.3","Dermatographic urticaria" +"L50.4","Vibratory urticaria" +"L50.5","Cholinergic urticaria" +"L50.6","Contact urticaria" +"L50.8","Other urticaria" +"L50.9","Urticaria, unspecified" +"L51","ERYTHEMA MULTIFORME" +"L51.0","Nonbullous erythema multiforme" +"L51.1","Bullous erythema multiforme" +"L51.2","Toxic epidermal necrolysis [lyell]" +"L51.8","Other erythema multiforme" +"L51.9","Erythema multiforme, unspecified" +"L52","ERYTHEMA NODOSUM" +"L53","OTHER ERYTHEMATOUS CONDITIONS" +"L53.0","Toxic erythema" +"L53.1","Erythema annulare centrifugum" +"L53.2","Erythema marginatum" +"L53.3","Other chronic figurate erythema" +"L53.8","Other specified erythematous conditions" +"L53.9","Erythematous condition, unspecified" +"L54","ERYTHEMA IN DISEASES CLASSIFIED ELSEWHERE" +"L54.0","Erythema marginatum in acute rheumatic fever" +"L54.8","Erythema in other diseases classified elsewhere" +"L55","SUNBURN" +"L55.0","Sunburn of first degree" +"L55.1","Sunburn of second degree" +"L55.2","Sunburn of third degree" +"L55.8","Other sunburn" +"L55.9","Sunburn, unspecified" +"L56","OTHER ACUTE SKIN CHANGES DUE TO ULTRAVIOLET RADIATION" +"L56.0","Drug phototoxic response" +"L56.1","Drug photoallergic response" +"L56.2","Photocontact dermatitis [berloque dermatitis]" +"L56.3","Solar urticaria" +"L56.4","Polymorphous light eruption" +"L56.8","Other specified acute skin changes due to ultraviolet radiation" +"L56.9","Acute skin change due to ultraviolet radiation, unspecified" +"L57","Skin changes due to chronic exposure to nonionizing radiation" +"L57.0","Actinic keratosis" +"L57.1","Actinic reticuloid" +"L57.2","Cutis rhomboidalis nuchae" +"L57.3","Poikiloderma of civatte" +"L57.4","Cutis laxa senilis" +"L57.5","Actinic granuloma" +"L57.8","Other skin change due chronic exposure to nonionizing radiation" +"L57.9","Skin change due chronic exposure to nonionizing radiation, unspecified" +"L58","RADIODERMATITIS" +"L58.0","Acute radiodermatitis" +"L58.1","Chronic radiodermatitis" +"L58.9","Radiodermatitis, unspecified" +"L59","OTHER DISORDERS OF SKIN AND SUBCUTANEOUS TISSUE RELATED TO RADIATION" +"L59.0","Erythema ab igne [dermatitis ab igne]" +"L59.8","Other specified disorders of skin and subcutaneous tissue related to radiation" +"L59.9","Disorder of skin and subcutaneous tissue related to radiation unspecified" +"L60","NAIL DISORDERS" +"L60.0","Ingrowing nail" +"L60.1","Onycholysis" +"L60.2","Onychogryphosis" +"L60.3","Nail dystrophy" +"L60.4","Beau's lines" +"L60.5","Yellow nail syndrome" +"L60.8","Other nail disorders" +"L60.9","Nail disorder, unspecified" +"L62","Nail disorders in diseases classified elsewhere" +"L62.0","Clubbed nail pachydermoperiostosis" +"L62.8","Nail disorders in other diseases classified elsewhere" +"L63","ALOPECIA AREATA" +"L63.0","Alopecia (capitis) totalis" +"L63.1","Alopecia universalis" +"L63.2","Ophiasis" +"L63.8","Other alopecia areata" +"L63.9","Alopecia areata, unspecified" +"L64","ANDROGENIC ALOPECIA" +"L64.0","Drug-induced androgenic alopecia" +"L64.8","Other androgenic alopecia" +"L64.9","Androgenic alopecia, unspecified" +"L65","OTHER NONSCARRING HAIR LOSS" +"L65.0","Telogen effluvium" +"L65.1","Anagen effluvium" +"L65.2","Alopecia mucinosa" +"L65.8","Other specified nonscarring hair loss" +"L65.9","Nonscarring hair loss, unspecified" +"L66","Cicatricial alopecia [scarring hair loss]" +"L66.0","Pseudopelade" +"L66.1","Lichen planopilaris" +"L66.2","Folliculitis decalvans" +"L66.3","Perifolliculitis capitis abscedens" +"L66.4","Folliculitis ulerythematosa reticulata" +"L66.8","Other cicatricial alopecia" +"L66.9","Cicatricial alopecia, unspecified" +"L67","HAIR COLOUR AND HAIR SHAFT ABNORMALITIES" +"L67.0","Trichorrhexis nodosa" +"L67.1","Variations in hair colour" +"L67.8","Other hair colour and hair shaft abnormalities" +"L67.9","Hair colour and hair shaft abnormality, unspecified" +"L68","HYPERTRICHOSIS" +"L68.0","Hirsutism" +"L68.1","Acquired hypertrichosis lanuginosa" +"L68.2","Localized hypertrichosis" +"L68.3","Polytrichia" +"L68.8","Other hypertrichosis" +"L68.9","Hypertrichosis, unspecified" +"L70","ACNE" +"L70.0","Acne vulgaris" +"L70.1","Acne conglobata" +"L70.2","Acne varioliformis" +"L70.3","Acne tropica" +"L70.4","Infantile acne" +"L70.5","Acn" +"L70.8","Other acne" +"L70.9","Acne, unspecified" +"L71","ROSACEA" +"L71.0","Perioral dermatitis" +"L71.1","Rhinophyma" +"L71.8","Other rosacea" +"L71.9","Rosacea, unspecified" +"L72","FOLLICULAR CYSTS OF SKIN AND SUBCUTANEOUS TISSUE" +"L72.0","Epidermal cyst" +"L72.1","Trichilemmal cyst" +"L72.2","Steatocystoma multiplex" +"L72.8","Other follicular cysts of skin and subcutaneous tissue" +"L72.9","Follicular cyst of skin and subcutaneous tissue, unspecified" +"L73","OTHER FOLLICULAR DISORDERS" +"L73.0","Acne keloid" +"L73.1","Pseudofolliculitis barbae" +"L73.2","Hidradenitis suppurativa" +"L73.8","Other specified follicular disorders" +"L73.9","Follicular disorder, unspecified" +"L74","ECCRINE SWEAT DISORDERS" +"L74.0","Miliaria rubra" +"L74.1","Miliaria crystallina" +"L74.2","Miliaria profunda" +"L74.3","Miliaria, unspecified" +"L74.4","Anhidrosis" +"L74.8","Other eccrine sweat disorders" +"L74.9","Eccrine sweat disorder, unspecified" +"L75","Apocrine sweat disorders" +"L75.0","Bromhidrosis" +"L75.1","Chromhidrosis" +"L75.2","Apocrine miliaria" +"L75.8","Other apocrine sweat disorders" +"L75.9","Apocrine sweat disorder, unspecified" +"L80","VITILIGO" +"L81","OTHER DISORDERS OF PIGMENTATION" +"L81.0","Postinflammatory hyperpigmentation" +"L81.1","Chloasma" +"L81.2","Freckles" +"L81.3","Cafe au lait spots" +"L81.4","Other melanin hyperpigmentation" +"L81.5","Leukoderma, not elsewhere classified" +"L81.6","Other disorders of diminished melanin formation" +"L81.7","Pigmented purpuric dermatosis" +"L81.8","Other specified disorders of pigmentation" +"L81.9","Disorder of pigmentation, unspecified" +"L82","Seborrhoeic keratosis" +"L83","ACANTHOSIS NIGRICANS" +"L84","CORNS AND CALLOSITIES" +"L85","Other epidermal thickening" +"L85.0","Acquired ichthyosis" +"L85.1","Acquired keratosis [keratoderma] palmaris et plantaris" +"L85.2","Keratosis punctata (palmaris et plantaris)" +"L85.3","Xerosis cutis" +"L85.8","Other specified epidermal thickening" +"L85.9","Epidermal thickening, unspecified" +"L86","KERATODERMA IN DISEASES CLASSIFIED ELSEWHERE" +"L87","Transepidermal elimination disorders" +"L87.0","Keratosis foll et parafoicularis cutem penetrans [kyrle]" +"L87.1","Reactive perforating collagenosis" +"L87.2","Elastosis perforans serpiginosa" +"L87.8","Other transepidermal elimination disorders" +"L87.9","Transepidermal elimination disorder, unspecified" +"L88","PYODERMA GANGRENOSUM" +"L89","Decubitus ulcer" +"L89.0","Stage I decubitus ulcer and pressure area" +"L89.1","Stage II decubitus ulcer" +"L89.2","Stage III decubitus ulcer" +"L89.3","Stage IV decubitus ulcer" +"L89.9","Decubitus ulcer and pressure area, unspecified" +"L90","ATROPHIC DISORDERS OF SKIN" +"L90.0","Lichen sclerosus et atrophicus" +"L90.1","Anetoderma of Schweninger-Buzzi" +"L90.2","Anetoderma of Jadassohn-pellizzari" +"L90.3","Atrophoderma of pasini and pierini" +"L90.4","Acrodermatitis chronica atrophicans" +"L90.5","Scar conditions and fibrosis of skin" +"L90.6","Striae atrophicae" +"L90.8","Other atrophic disorders of skin" +"L90.9","Atrophic disorder of skin, unspecified" +"L91","Hypertrophic disorders of skin" +"L91.0","Keloid scar" +"L91.8","Other hypertrophic disorders of skin" +"L91.9","Hypertrophic disorder of skin, unspecified" +"L92","Granulomatous disorders of skin and subcutaneous tissue" +"L92.0","Granuloma annulare" +"L92.1","Necrobiosis lipoidica, not elsewhere classified" +"L92.2","Granuloma faciale [eosinophilic granuloma of skin]" +"L92.3","Foreign body granuloma of skin and subcutaneous tissue" +"L92.8","Other granulomatous disorders of skin and subcutaneous tissue" +"L92.9","Granulomatous disorder of skin and subcutaneous tissue, unspecified" +"L93","LUPUS ERYTHEMATOSUS" +"L93.0","Discoid lupus erythematosus" +"L93.1","Subacute cutaneous lupus erythematosus" +"L93.2","Other local lupus erythematosus" +"L94","OTHER LOCALIZED CONNECTIVE TISSUE DISORDERS" +"L94.0","Localized scleroderma [morphea]" +"L94.1","Linear scleroderma" +"L94.2","Calcinosis cutis" +"L94.3","Sclerodactyly" +"L94.4","Gottron's papules" +"L94.5","Poikiloderma vasculare atrophicans" +"L94.6","Ainhum" +"L94.8","Other specified localized connective tissue disorders" +"L94.9","Localized connective tissue disorder, unspecified" +"L95","Vasculitis limited to skin, not elsewhere classified" +"L95.0","Livedoid vasculitis" +"L95.1","Erythema elevatum diutinum" +"L95.8","Other vasculitis limited to skin" +"L95.9","Vasculitis limited to skin, unspecified" +"L97","ULCER OF LOWER LIMB, NOT ELSEWHERE CLASSIFIED" +"L98","Other disorders of skin and subcutaneous tissue, not elsewhere classified" +"L98.0","Pyogenic granuloma" +"L98.1","Factitial dermatitis" +"L98.2","Febrile neutrophilic dermatosis [Sweet]" +"L98.3","Eosinophilic cellulitis [Wells]" +"L98.4","Chronic ulcer of skin, not elsewhere classified" +"L98.5","Mucinosis of skin" +"L98.6","Other infiltrative disorders of skin and subcutaneous tissue" +"L98.8","Other specified disorders of skin and subcutaneous tissue" +"L98.9","Disorder of skin and subcutaneous tissue, unspecified" +"L99","Other disorders of skin and subcutaneous tissue in diseases classified elsewhere" +"L99.0","Amyloidosis of skin" +"L99.8","Other specified disorders of skin and subcutaneous tissue in disease classified elsewhere" +"M00","PYOGENIC ARTHRITIS" +"M00.0","Staphylococcal arthritis and polyarthritis" +"M00.00","Staphylococcal arthritis and polyarthritis, multiple sites" +"M00.01","Staphylococcal arthritis and polyarthritis, shoulder region" +"M00.02","Staphylococcal arthritis and polyarthritis, upper arm" +"M00.03","Staphylococcal arthritis and polyarthritis, forearm" +"M00.04","Staphylococcal arthritis and polyarthritis, hand" +"M00.05","Staphylococcal arthritis and polyarthritis, pelvic and thigh" +"M00.06","Staphylococcal arthritis and polyarthritis, lower leg" +"M00.07","Staphylococcal arthritis and polyarthritis, ankle and foot" +"M00.08","Staphylococcal arthritis and polyarthritis, other site" +"M00.09","Staphylococcal arthritis and polyarthritis, unspecified site" +"M00.1","Pneumococcal arthritis and polyarthritis" +"M00.10","Pneumococcal arthritis and polyarthritis, multiple sites" +"M00.11","Pneumococcal arthritis and polyarthritis, shoulder region" +"M00.12","Pneumococcal arthritis and polyarthritis, upper arm" +"M00.13","Pneumococcal arthritis and polyarthritis, forearm" +"M00.14","Pneumococcal arthritis and polyarthritis, hand" +"M00.15","Pneumococcal arthritis and polyarthritis, pelvic and thigh" +"M00.16","Pneumococcal arthritis and polyarthritis, lower leg" +"M00.17","Pneumococcal arthritis and polyarthritis, ankle and foot" +"M00.18","Pneumococcal arthritis and polyarthritis, other sites" +"M00.19","Pneumococcal arthritis and polyarthritis, unspecified site" +"M00.2","Other streptococcal arthritis and polyarthritis" +"M00.20","Other streptococcal arthritis and polyarthritis, multiple sites" +"M00.21","Other streptococcal arthritis and polyarthritis, shoulder region" +"M00.22","Other streptococcal arthritis and polyarthritis, upper arm" +"M00.23","Other streptococcal arthritis and polyarthritis, forearm" +"M00.24","Other streptococcal arthritis and polyarthritis, hand" +"M00.25","Other streptococcal arthritis and polyarthritis, pelvic and thigh" +"M00.26","Other streptococcal arthritis and polyarthritis, lower leg" +"M00.27","Other streptococcal arthritis and polyarthritis, ankle and foot" +"M00.28","Other streptococcal arthritis and polyarthritis, other sites" +"M00.29","Other streptococcal arthritis and polyarthritis, unspecified site" +"M00.8","Arthritis and polyarthritis due other specified bacterial agents" +"M00.80","Arthritis and polyarthritis due other specified bacterial agents, multiple sites" +"M00.81","Arthritis and polyarthritis due other specified bacterial agents, shouder region" +"M00.82","Arthritis and polyarthritis due other specified bacterial agents, upper arm" +"M00.83","Arthritis and polyarthritis due other specified bacterial agents, forearm" +"M00.84","Arthritis and polyarthritis due other specified bacterial agents, hand" +"M00.85","Arthritis and polyarthritis due other specified bacterial agents, pelvic and thigh" +"M00.86","Arthritis and polyarthritis due other specified bacterial agents, lower leg" +"M00.87","Arthritis and polyarthritis due other specified bacterial agents, ankle and foot" +"M00.88","Arthritis and polyarthritis due other specified bacterial agents, other sites" +"M00.89","Arthritis and polyarthritis due other specified bacterial agents, unspecified site" +"M00.9","Pyogenic arthritis, unspecified" +"M00.90","Pyogenic arthritis, unspecified, multiple sites" +"M00.91","Pyogenic arthritis, unspecified, shoulder region" +"M00.92","Pyogenic arthritis, unspecified, upper arm" +"M00.93","Pyogenic arthritis, unspecified, forearm" +"M00.94","Pyogenic arthritis, unspecified, hand" +"M00.95","Pyogenic arthritis, unspecified, pelvic and thigh" +"M00.96","Pyogenic arthritis, unspecified, lower leg" +"M00.97","Pyogenic arthritis, unspecified, ankle and foot" +"M00.98","Pyogenic arthritis, unspecified, other sites" +"M00.99","Pyogenic arthritis, unspecified, unspecified site" +"M01","DIRECT INFECTIONS OF JOINT IN INFECTIOUS AND PARASITIC DISEASES CLASSIFIED ELSEWHERE" +"M01.0","Meningococcal arthritis" +"M01.00","Meningococcal arthritis, multiple sites" +"M01.01","Meningococcal arthritis, shoulder region" +"M01.02","Meningococcal arthritis, upper arm" +"M01.03","Meningococcal arthritis, forearm" +"M01.04","Meningococcal arthritis, hand" +"M01.05","Meningococcal arthritis, pelvic and thigh" +"M01.06","Meningococcal arthritis, lower leg" +"M01.07","Meningococcal arthritis, ankle and foot" +"M01.08","Meningococcal arthritis, other sites" +"M01.09","Meningococcal arthritis, unspecified site" +"M01.1","Tuberculous arthritis" +"M01.10","Tuberculous arthritis, multiple sites" +"M01.11","Tuberculous arthritis, shoulder region" +"M01.12","Tuberculous arthritis, upper arm" +"M01.13","Tuberculous arthritis, forearm" +"M01.14","Tuberculous arthritis, hand" +"M01.15","Tuberculous arthritis, pelvic and thigh" +"M01.16","Tuberculous arthritis, lower leg" +"M01.17","Tuberculous arthritis, ankle and foot" +"M01.18","Tuberculous arthritis, other sites" +"M01.19","Tuberculous arthritis, unspecified site" +"M01.2","Arthritis in lyme disease" +"M01.20","Arthritis in lyme disease, multiple sites" +"M01.21","Arthritis in lyme disease, shoulder region" +"M01.22","Arthritis in lyme disease, upper arm" +"M01.23","Arthritis in lyme disease, forearm" +"M01.24","Arthritis in lyme disease, hand" +"M01.25","Arthritis in lyme disease, pelvic and thigh" +"M01.26","Arthritis in lyme disease, lower leg" +"M01.27","Arthritis in lyme disease, ankle and foot" +"M01.28","Arthritis in lyme disease, other sites" +"M01.29","Arthritis in lyme disease, unspecified site" +"M01.3","Arthritis in other bacterial diseases classified elsewhere" +"M01.30","Arthritis in other bacterial diseases classified elsewhere, multiple sites" +"M01.31","Arthritis in other bacterial diseases classified elsewhere, shouder region" +"M01.32","Arthritis in other bacterial diseases classified elsewhere, upper arm" +"M01.33","Arthritis in other bacterial diseases classified elsewhere, forearm" +"M01.34","Arthritis in other bacterial diseases classified elsewhere, hand" +"M01.35","Arthritis in other bacterial diseases classified elsewhere, pelvic and thigh" +"M01.36","Arthritis in other bacterial diseases classified elsewhere, lower leg" +"M01.37","Arthritis in other bacterial diseases classified elsewhere, ankle and foot" +"M01.38","Arthritis in other bacterial diseases classified elsewhere, other sites" +"M01.39","Arthritis in other bacterial diseases classified elsewhere, unspecified site" +"M01.4","Rubella arthritis" +"M01.40","Rubella arthritis, multiple sites" +"M01.41","Rubella arthritis, shoulder region" +"M01.42","Rubella arthritis, upper arm" +"M01.43","Rubella arthritis, forearm" +"M01.44","Rubella arthritis, hand" +"M01.45","Rubella arthritis, pelvic and thigh" +"M01.46","Rubella arthritis, lower leg" +"M01.47","Rubella arthritis, ankle and foot" +"M01.48","Rubella arthritis, other sites" +"M01.49","Rubella arthritis, unspecified site" +"M01.5","Arthritis in other viral diseases classified elsewhere" +"M01.50","Arthritis in other viral diseases classified elsewhere, multiple sites" +"M01.51","Arthritis in other viral diseases classified elsewhere, shoulder region" +"M01.52","Arthritis in other viral diseases classified elsewhere, upper arm" +"M01.53","Arthritis in other viral diseases classified elsewhere, forearm" +"M01.54","Arthritis in other viral diseases classified elsewhere, hand" +"M01.55","Arthritis in other viral diseases classified elsewhere, pelvic and thigh" +"M01.56","Arthritis in other viral diseases classified elsewhere, lower leg" +"M01.57","Arthritis in other viral diseases classified elsewhere, ankle and foot" +"M01.58","Arthritis in other viral diseases classified elsewhere, other sites" +"M01.59","Arthritis in other viral diseases classified elsewhere, unspecified site" +"M01.6","Arhritis in mycoses" +"M01.60","Arhritis in mycoses, multiple sites" +"M01.61","Arhritis in mycoses, shoulder region" +"M01.62","Arhritis in mycoses, upper arm" +"M01.63","Arhritis in mycoses, forearm" +"M01.64","Arhritis in mycoses, hand" +"M01.65","Arhritis in mycoses, pelvic and thigh" +"M01.66","Arhritis in mycoses, lower leg" +"M01.67","Arhritis in mycoses, ankle and foot" +"M01.68","Arhritis in mycoses, other sites" +"M01.69","Arhritis in mycoses, unspecified site" +"M01.8","Arthritis in other infectious and parasitic diseases classified elsewhere" +"M01.80","Arthritis in other infectious and parasitic diseases classified elsewhere, multiple sites" +"M01.81","Arthritis in other infectious and parasitic diseases classified elsewhere, shoulder region" +"M01.82","Arthritis in other infectious and parasitic diseases classified elsewhere, upper arm" +"M01.83","Arthritis in other infectious and parasitic diseases classified elsewhere, forearm" +"M01.84","Arthritis in other infectious and parasitic diseases classified elsewhere, hand" +"M01.85","Arthritis in other infectious and parasitic diseases classified elsewhere, pelvic and thigh" +"M01.86","Arthritis in other infectious and parasitic diseases classified elsewhere, lower leg" +"M01.87","Arthritis in other infectious and parasitic diseases classified elsewhere, ankle and foot" +"M01.88","Arthritis in other infectious and parasitic diseases classified elsewhere, other sites" +"M01.89","Arthritis in other infectious and parasitic diseases classified elsewhere, unspecified site" +"M02","REACTIVE ARTHROPATHIES" +"M02.0","Arthropathy following intestinal bypass" +"M02.00","Arthropathy following intestinal bypass, multiple sites" +"M02.01","Arthropathy following intestinal bypass, shoulder region" +"M02.02","Arthropathy following intestinal bypass, upper arm" +"M02.03","Arthropathy following intestinal bypass, forearm" +"M02.04","Arthropathy following intestinal bypass, hand" +"M02.05","Arthropathy following intestinal bypass, pelvic and thigh" +"M02.06","Arthropathy following intestinal bypass, lower leg" +"M02.07","Arthropathy following intestinal bypass, ankle and foot" +"M02.08","Arthropathy following intestinal bypass, other sites" +"M02.09","Arthropathy following intestinal bypass, unspecified site" +"M02.1","Postdysenteric arthropathy" +"M02.10","Postdysenteric arthropathy, multiple sites" +"M02.11","Postdysenteric arthropathy, shoulder region" +"M02.12","Postdysenteric arthropathy, upper arm" +"M02.13","Postdysenteric arthropathy, forearm" +"M02.14","Postdysenteric arthropathy, hand" +"M02.15","Postdysenteric arthropathy, pelvic and thigh" +"M02.16","Postdysenteric arthropathy, lower leg" +"M02.17","Postdysenteric arthropathy, ankle and foot" +"M02.18","Postdysenteric arthropathy, other sites" +"M02.19","Postdysenteric arthropathy, unspecified site" +"M02.2","Postimmunization arthropathy" +"M02.20","Postimmunization arthropathy, multiple sites" +"M02.21","Postimmunization arthropathy, shoulder region" +"M02.22","Postimmunization arthropathy, upper arm" +"M02.23","Postimmunization arthropathy, forearm" +"M02.24","Postimmunization arthropathy, hand" +"M02.25","Postimmunization arthropathy, pelvic and thigh" +"M02.26","Postimmunization arthropathy, lower leg" +"M02.27","Postimmunization arthropathy, ankle and foot" +"M02.28","Postimmunization arthropathy, other sites" +"M02.29","Postimmunization arthropathy, unspecified site" +"M02.3","Reiter's disease" +"M02.30","Reiter's disease, multiple sites" +"M02.31","Reiter's disease, shoulder region" +"M02.32","Reiter's disease, upper arm" +"M02.33","Reiter's disease, forearm" +"M02.34","Reiter's disease, hand" +"M02.35","Reiter's disease, pelvic and thigh" +"M02.36","Reiter's disease, lower leg" +"M02.37","Reiter's disease, ankle and foot" +"M02.38","Reiter's disease, other sites" +"M02.39","Reiter's disease, unspecified site" +"M02.8","Other reactive arthropathies" +"M02.80","Other reactive arthropathies, multiple sites" +"M02.81","Other reactive arthropathies, shouder region" +"M02.82","Other reactive arthropathies, upper arm" +"M02.83","Other reactive arthropathies, forearm" +"M02.84","Other reactive arthropathies, hand" +"M02.85","Other reactive arthropathies, pelvic and thigh" +"M02.86","Other reactive arthropathies, lower leg" +"M02.87","Other reactive arthropathies, ankle and foot" +"M02.88","Other reactive arthropathies, other sites" +"M02.89","Other reactive arthropathies, unspecified site" +"M02.9","Reactive arthropathy, unspecified" +"M02.90","Reactive arthropathy, unspecified, multiple sites" +"M02.91","Reactive arthropathy, unspecified, shoulder region" +"M02.92","Reactive arthropathy, unspecified, upper arm" +"M02.93","Reactive arthropathy, unspecified, forearm" +"M02.94","Reactive arthropathy, unspecified, hand" +"M02.95","Reactive arthropathy, unspecified, pelvic and thigh" +"M02.96","Reactive arthropathy, unspecified, lower leg" +"M02.97","Reactive arthropathy, unspecified, ankle and foot" +"M02.98","Reactive arthropathy, unspecified, other sites" +"M02.99","Reactive arthropathy, unspecified, unspecified site" +"M03","Postinfective and reactive arthropathies in diseases classified elsewhere" +"M03.0","Postmeningococcal arthritis" +"M03.00","Postmeningococcal arthritis, multiple sites" +"M03.01","Postmeningococcal arthritis, shoulder region" +"M03.02","Postmeningococcal arthritis, upper arm" +"M03.03","Postmeningococcal arthritis, forearm" +"M03.04","Postmeningococcal arthritis, hand" +"M03.05","Postmeningococcal arthritis, pelvic and thigh" +"M03.06","Postmeningococcal arthritis, lower leg" +"M03.07","Postmeningococcal arthritis, ankle and foot" +"M03.08","Postmeningococcal arthritis, other sites" +"M03.09","Postmeningococcal arthritis, unspecified site" +"M03.1","Postinfective arthropathy in syphilis" +"M03.10","Postinfective arthropathy in syphilis, multiple sites" +"M03.11","Postinfective arthropathy in syphilis, shoulder region" +"M03.12","Postinfective arthropathy in syphilis, upper arm" +"M03.13","Postinfective arthropathy in syphilis, forearm" +"M03.14","Postinfective arthropathy in syphilis, hand" +"M03.15","Postinfective arthropathy in syphilis, pelvic and thigh" +"M03.16","Postinfective arthropathy in syphilis, lower leg" +"M03.17","Postinfective arthropathy in syphilis, ankle and foot" +"M03.18","Postinfective arthropathy in syphilis, other sites" +"M03.19","Postinfective arthropathy in syphilis, unspecified site" +"M03.2","Other postinfectious arthropathies in diseases classified elsewhere" +"M03.20","Other postinfectious arthropathies in diseases classified elsewhere, multiple sites" +"M03.21","Other postinfectious arthropathies in diseases classified elsewhere, shoulder region" +"M03.22","Other postinfectious arthropathies in diseases classified elsewhere, upper arm" +"M03.23","Other postinfectious arthropathies in diseases classified elsewhere, forearm" +"M03.24","Other postinfectious arthropathies in diseases classified elsewhere, hand" +"M03.25","Other postinfectious arthropathies in diseases classified elsewhere, pelvic and thigh" +"M03.26","Other postinfectious arthropathies in diseases classified elsewhere, lower leg" +"M03.27","Other postinfectious arthropathies in diseases classified elsewhere, ankle and foot" +"M03.28","Other postinfectious arthropathies in diseases classified elsewhere, other sites" +"M03.29","Other postinfectious arthropathies in diseases classified elsewhere, unspecified site" +"M03.6","Reactive arthropathy in other diseases classified elsewhere" +"M03.60","Reactive arthropathy in other diseases classified elsewhere, multiple sites" +"M03.61","Reactive arthropathy in other diseases classified elsewhere, shoulder region" +"M03.62","Reactive arthropathy in other diseases classified elsewhere, upper arm" +"M03.63","Reactive arthropathy in other diseases classified elsewhere, forearm" +"M03.64","Reactive arthropathy in other diseases classified elsewhere, hand" +"M03.65","Reactive arthropathy in other diseases classified elsewhere, pelvic and thigh" +"M03.66","Reactive arthropathy in other diseases classified elsewhere, lower leg" +"M03.67","Reactive arthropathy in other diseases classified elsewhere, ankle and foot" +"M03.68","Reactive arthropathy in other diseases classified elsewhere, other sites" +"M03.69","Reactive arthropathy in other diseases classified elsewhere, unspecified site" +"M05","Seropositive rheumatoid arthritis" +"M05.0","Seropositive Felty's syndrome" +"M05.00","Seropositive Felty's syndrome, multiple sites" +"M05.01","Seropositive Felty's syndrome, shoulder region" +"M05.02","Seropositive Felty's syndrome, upper arm" +"M05.03","Seropositive Felty's syndrome, forearm" +"M05.04","Seropositive Felty's syndrome, hand" +"M05.05","Seropositive Felty's syndrome, pelvic and thigh" +"M05.06","Seropositive Felty's syndrome, lower leg" +"M05.07","Seropositive Felty's syndrome, ankle and foot" +"M05.08","Seropositive Felty's syndrome, other sites" +"M05.09","Seropositive Felty's syndrome, unspecified site" +"M05.1","Seropositive rheumatoid lung disease" +"M05.10","Seropositive rheumatoid lung disease, multiple sites" +"M05.11","Seropositive rheumatoid lung disease, shoulder region" +"M05.12","Seropositive rheumatoid lung disease, upper arm" +"M05.13","Seropositive rheumatoid lung disease, forearm" +"M05.14","Seropositive rheumatoid lung disease, hand" +"M05.15","Seropositive rheumatoid lung disease, pelvic and thigh" +"M05.16","Seropositive rheumatoid lung disease, lower leg" +"M05.17","Seropositive rheumatoid lung disease, ankle and foot" +"M05.18","Seropositive rheumatoid lung disease, other sites" +"M05.19","Seropositive rheumatoid lung disease, unspecified site" +"M05.2","Seropositive rheumatoid vasculitis" +"M05.20","Seropositive rheumatoid vasculitis, multiple sites" +"M05.21","Seropositive rheumatoid vasculitis, shoulder region" +"M05.22","Seropositive rheumatoid vasculitis, upper arm" +"M05.23","Seropositive rheumatoid vasculitis, forearm" +"M05.24","Seropositive rheumatoid vasculitis, hand" +"M05.25","Seropositive rheumatoid vasculitis, pelvic and thigh" +"M05.26","Seropositive rheumatoid vasculitis, lower leg" +"M05.27","Seropositive rheumatoid vasculitis, ankle and foot" +"M05.28","Seropositive rheumatoid vasculitis, other sites" +"M05.29","Seropositive rheumatoid vasculitis, unspecified site" +"M05.3","Seropositive rheumatoid arthritis with involvement of oth organs and sys" +"M05.30","Seropositive rheumatoid arthritis with involvement of other organs and system, multiple site" +"M05.31","Seropositive rheumatoid arthritis with involvement of other organs and system, shoulder region" +"M05.32","Seropositive rheumatoid arthritis with involvement of other organs and system, upper arm" +"M05.33","Seropositive rheumatoid arthritis with involvement of other organs and system, forearm" +"M05.34","Seropositive rheumatoid arthritis with involvement of other organs and system, hand" +"M05.35","Seropositive rheumatoid arthritis with involvement of other organs and system, pelvic and thigh" +"M05.36","Seropositive rheumatoid arthritis with involvement of other organs and system, lower leg" +"M05.37","Seropositive rheumatoid arthritis with involvement of other organs and system, ankle and foot" +"M05.38","Seropositive rheumatoid arthritis with involvement of other organs and system, other sites" +"M05.39","Seropositive rheumatoid arthritis with involvement of other organs and system, unspecified site" +"M05.8","Other seropositive rheumatoid arthritis" +"M05.80","Other seropositive rheumatoid arthritis, multiple sites" +"M05.81","Other seropositive rheumatoid arthritis, shoulder region" +"M05.82","Other seropositive rheumatoid arthritis, upper arm" +"M05.83","Other seropositive rheumatoid arthritis, forearm" +"M05.84","Other seropositive rheumatoid arthritis, hand" +"M05.85","Other seropositive rheumatoid arthritis, pelvic and thigh" +"M05.86","Other seropositive rheumatoid arthritis, lower leg" +"M05.87","Other seropositive rheumatoid arthritis, ankle and foot" +"M05.88","Other seropositive rheumatoid arthritis, other sites" +"M05.89","Other seropositive rheumatoid arthritis, unspecified site" +"M05.9","Seropositive rheumatoid arthritis, unspecified" +"M05.90","Seropositive rheumatoid arthritis, unspecified, multiple sites" +"M05.91","Seropositive rheumatoid arthritis, unspecified, shoulder region" +"M05.92","Seropositive rheumatoid arthritis, unspecified, upper arm" +"M05.93","Seropositive rheumatoid arthritis, unspecified, forearm" +"M05.94","Seropositive rheumatoid arthritis, unspecified, hand" +"M05.95","Seropositive rheumatoid arthritis, unspecified, pelvic and thigh" +"M05.96","Seropositive rheumatoid arthritis, unspecified, lower leg" +"M05.97","Seropositive rheumatoid arthritis, unspecified, ankle and foot" +"M05.98","Seropositive rheumatoid arthritis, unspecified, other sites" +"M05.99","Seropositive rheumatoid arthritis, unspecified, unspecified site" +"M06","OTHER RHEUMATOID ARTHRITIS" +"M06.0","Seronegative rheumatoid arthritis" +"M06.00","Seronegative rheumatoid arthritis, multiple sites" +"M06.01","Seronegative rheumatoid arthritis, shoulder region" +"M06.02","Seronegative rheumatoid arthritis, upper arm" +"M06.03","Seronegative rheumatoid arthritis, forearm" +"M06.04","Seronegative rheumatoid arthritis, hand" +"M06.05","Seronegative rheumatoid arthritis, pelvic and thigh" +"M06.06","Seronegative rheumatoid arthritis, lower leg" +"M06.07","Seronegative rheumatoid arthritis, ankle and foot" +"M06.08","Seronegative rheumatoid arthritis, other sites" +"M06.09","Seronegative rheumatoid arthritis, unspecified site" +"M06.1","Adult-onset still's disease" +"M06.10","Adult-onset still's disease, multiple sites" +"M06.11","Adult-onset still's disease, shoulder region" +"M06.12","Adult-onset still's disease, upper arm" +"M06.13","Adult-onset still's disease, forearm" +"M06.14","Adult-onset still's disease, hand" +"M06.15","Adult-onset still's disease, pelvic and thigh" +"M06.16","Adult-onset still's disease, lower leg" +"M06.17","Adult-onset still's disease, ankle and foot" +"M06.18","Adult-onset still's disease, other sites" +"M06.19","Adult-onset still's disease, unspecified site" +"M06.2","Rheumatoid bursitis" +"M06.20","Rheumatoid bursitis, multiple sites" +"M06.21","Rheumatoid bursitis, shoulder region" +"M06.22","Rheumatoid bursitis, upper arm" +"M06.23","Rheumatoid bursitis, forearm" +"M06.24","Rheumatoid bursitis, hand" +"M06.25","Rheumatoid bursitis, pelvic and thigh" +"M06.26","Rheumatoid bursitis, lower leg" +"M06.27","Rheumatoid bursitis, ankle and foot" +"M06.28","Rheumatoid bursitis, other sites" +"M06.29","Rheumatoid bursitis, unspecified site" +"M06.3","Rheumatoid nodule" +"M06.30","Rheumatoid nodule, multiple sites" +"M06.31","Rheumatoid nodule, shoulder region" +"M06.32","Rheumatoid nodule, upper arm" +"M06.33","Rheumatoid nodule, forearm" +"M06.34","Rheumatoid nodule, hand" +"M06.35","Rheumatoid nodule, pelvic and thigh" +"M06.36","Rheumatoid nodule, lower leg" +"M06.37","Rheumatoid nodule, ankle and foot" +"M06.38","Rheumatoid nodule, other sites" +"M06.39","Rheumatoid nodule, unspecified site" +"M06.4","Inflammatory polyarthropathy" +"M06.40","Inflammatory polyarthropathy, multiple sites" +"M06.41","Inflammatory polyarthropathy, shoulder region" +"M06.42","Inflammatory polyarthropathy, upper arm" +"M06.43","Inflammatory polyarthropathy, forearm" +"M06.44","Inflammatory polyarthropathy, hand" +"M06.45","Inflammatory polyarthropathy, pelvic and thigh" +"M06.46","Inflammatory polyarthropathy, lower leg" +"M06.47","Inflammatory polyarthropathy, ankle and foot" +"M06.48","Inflammatory polyarthropathy, other sites" +"M06.49","Inflammatory polyarthropathy, unspecified site" +"M06.8","Other specified rheumatoid arthritis" +"M06.80","Other specified rheumatoid arthritis, multiple sites" +"M06.81","Other specified rheumatoid arthritis, shoulder region" +"M06.82","Other specified rheumatoid arthritis, upper arm" +"M06.83","Other specified rheumatoid arthritis, forearm" +"M06.84","Other specified rheumatoid arthritis, hand" +"M06.85","Other specified rheumatoid arthritis, pelvic and thigh" +"M06.86","Other specified rheumatoid arthritis, lower leg" +"M06.87","Other specified rheumatoid arthritis, ankle and foot" +"M06.88","Other specified rheumatoid arthritis, other sites" +"M06.89","Other specified rheumatoid arthritis, unspecified site" +"M06.9","Rheumatoid arthritis, unspecified" +"M06.90","Rheumatoid arthritis, unspecified, multiple sites" +"M06.91","Rheumatoid arthritis, unspecified, shoulder region" +"M06.92","Rheumatoid arthritis, unspecified, upper arm" +"M06.93","Rheumatoid arthritis, unspecified, forearm" +"M06.94","Rheumatoid arthritis, unspecified, hand" +"M06.95","Rheumatoid arthritis, unspecified, pelvic and thigh" +"M06.96","Rheumatoid arthritis, unspecified, lower leg" +"M06.97","Rheumatoid arthritis, unspecified, ankle and foot" +"M06.98","Rheumatoid arthritis, unspecified, other sites" +"M06.99","Rheumatoid arthritis, unspecified, unspecified site" +"M07","Psoriatic and enteropathic arthropathies" +"M07.0","Distal interphalangeal proriatic arthropathy" +"M07.00","Distal interphalangeal psoriatic arthropathy, multiple sites" +"M07.04","Distal interphalangeal psoriatic arthropathy, hand" +"M07.07","Distal interphalangeal psoriatic arthropathy, ankle and foot" +"M07.09","Distal interphalangeal psoriatic arthropathy, site unspecified" +"M07.1","Arthritis mutilans" +"M07.10","Arthritis mutilans, multiple sites" +"M07.11","Arthritis mutilans, shoulder region" +"M07.12","Arthritis mutilans, upper arm" +"M07.13","Arthritis mutilans, forearm" +"M07.14","Arthritis mutilans, hand" +"M07.15","Arthritis mutilans, pelvic and thigh" +"M07.16","Arthritis mutilans, lower leg" +"M07.17","Arthritis mutilans, ankle and foot" +"M07.18","Arthritis mutilans, other sites" +"M07.19","Arthritis mutilans, unspecified site" +"M07.2","Psoriatic spondylitis" +"M07.3","Other psoriatic arthropathies" +"M07.30","Other psoriatic arthropathies, multiple sites" +"M07.31","Other psoriatic arthropathies, sholder region" +"M07.32","Other psoriatic arthropathies, upper arm" +"M07.33","Other psoriatic arthropathies, forearm" +"M07.34","Other psoriatic arthropathies, hand" +"M07.35","Other psoriatic arthropathies, pelvic and thigh" +"M07.36","Other psoriatic arthropathies, lower leg" +"M07.37","Other psoriatic arthropathies, ankle and foot" +"M07.38","Other psoriatic arthropathies, other sites" +"M07.39","Other psoriatic arthropathies, unspecified site" +"M07.4","Arthropathy in crohn's disease [regional enteritis]" +"M07.40","Arthropathy in crohn's disease [regional enteritis], multiple sites" +"M07.41","Arthropathy in crohn's disease [regional enteritis], shoulder region" +"M07.42","Arthropathy in crohn's disease [regional enteritis], upper arm" +"M07.43","Arthropathy in crohn's disease [regional enteritis], forearm" +"M07.44","Arthropathy in crohn's disease [regional enteritis], hand" +"M07.45","Arthropathy in crohn's disease [regional enteritis], pelvic and thigh" +"M07.46","Arthropathy in crohn's disease [regional enteritis], lower leg" +"M07.47","Arthropathy in crohn's disease [regional enteritis], ankle and foot" +"M07.48","Arthropathy in crohn's disease [regional enteritis], other sites" +"M07.49","Arthropathy in crohn's disease [regional enteritis], unspecified site" +"M07.5","Arthropathy in ulcerative colitis" +"M07.50","Arthropathy in ulcerative colitis, multiple sites" +"M07.51","Arthropathy in ulcerative colitis, shoulder region" +"M07.52","Arthropathy in ulcerative colitis, upper arm" +"M07.53","Arthropathy in ulcerative colitis, forearm" +"M07.54","Arthropathy in ulcerative colitis, hand" +"M07.55","Arthropathy in ulcerative colitis, pelvic and thigh" +"M07.56","Arthropathy in ulcerative colitis, lower leg" +"M07.57","Arthropathy in ulcerative colitis, ankle and foot" +"M07.58","Arthropathy in ulcerative colitis, other sites" +"M07.59","Arthropathy in ulcerative colitis, unspecified site" +"M07.6","Other enteropathic arthropathies" +"M07.60","Other enteropathic arthropathies, multiple sites" +"M07.61","Other enteropathic arthropathies, shoulder region" +"M07.62","Other enteropathic arthropathies, upper arm" +"M07.63","Other enteropathic arthropathies, forearm" +"M07.64","Other enteropathic arthropathies, hand" +"M07.65","Other enteropathic arthropathies, pelvic and thigh" +"M07.66","Other enteropathic arthropathies, lower leg" +"M07.67","Other enteropathic arthropathies, ankle and foot" +"M07.68","Other enteropathic arthropathies, other sites" +"M07.69","Other enteropathic arthropathies, unspecified site" +"M08","JUVENILE ARTHRITIS" +"M08.0","Juvenile rheumatoid arthritis" +"M08.00","Juvenile rheumatoid arthritis, multiple sites" +"M08.01","Juvenile rheumatoid arthritis, shoulder region" +"M08.02","Juvenile rheumatoid arthritis, upper arm" +"M08.03","Juvenile rheumatoid arthritis, forearm" +"M08.04","Juvenile rheumatoid arthritis, hand" +"M08.05","Juvenile rheumatoid arthritis, pelvic and thigh" +"M08.06","Juvenile rheumatoid arthritis, lower leg" +"M08.07","Juvenile rheumatoid arthritis, ankle and foot" +"M08.08","Juvenile rheumatoid arthritis, other sites" +"M08.09","Juvenile rheumatoid arthritis, unspecified site" +"M08.1","Juvenile ankylosing spondylitis" +"M08.10","Juvenile ankylosing spondylitis, multiple sites" +"M08.11","Juvenile ankylosing spondylitis, shouder region" +"M08.12","Juvenile ankylosing spondylitis, upper arm" +"M08.13","Juvenile ankylosing spondylitis, forearm" +"M08.14","Juvenile ankylosing spondylitis, hand" +"M08.15","Juvenile ankylosing spondylitis, pelvic and thigh" +"M08.16","Juvenile ankylosing spondylitis, lower leg" +"M08.17","Juvenile ankylosing spondylitis, ankle and foot" +"M08.18","Juvenile ankylosing spondylitis, other sites" +"M08.19","Juvenile ankylosing spondylitis, unspecified site" +"M08.2","Juvenile arthritis with systemic onset" +"M08.20","Juvenile arthritis with systemic onset, multiple sites" +"M08.21","Juvenile arthritis with systemic onset, shoulder region" +"M08.22","Juvenile arthritis with systemic onset, upper arm" +"M08.23","Juvenile arthritis with systemic onset, forearm" +"M08.24","Juvenile arthritis with systemic onset, hand" +"M08.25","Juvenile arthritis with systemic onset, pelvic and thigh" +"M08.26","Juvenile arthritis with systemic onset, lower leg" +"M08.27","Juvenile arthritis with systemic onset, ankle and foot" +"M08.28","Juvenile arthritis with systemic onset, other sites" +"M08.29","Juvenile arthritis with systemic onset, unspecified site" +"M08.3","Juvenile polyarthritis (seronegative)" +"M08.30","Juvenile polyarthritis (seronegative), multiple sites" +"M08.31","Juvenile polyarthritis (seronegative), shoulder region" +"M08.32","Juvenile polyarthritis (seronegative), upper arm" +"M08.33","Juvenile polyarthritis (seronegative), forearm" +"M08.34","Juvenile polyarthritis (seronegative), hand" +"M08.35","Juvenile polyarthritis (seronegative), pelvic and thigh" +"M08.36","Juvenile polyarthritis (seronegative), lower leg" +"M08.37","Juvenile polyarthritis (seronegative), ankle and foot" +"M08.38","Juvenile polyarthritis (seronegative), other sites" +"M08.39","Juvenile polyarthritis (seronegative), unspecified site" +"M08.4","Pauciarticular juvenile arthritis" +"M08.40","Pauciarticular juvenile arthritis, multiple sites" +"M08.41","Pauciarticular juvenile arthritis, shoulder region" +"M08.42","Pauciarticular juvenile arthritis, upper arm" +"M08.43","Pauciarticular juvenile arthritis, forearm" +"M08.44","Pauciarticular juvenile arthritis, hand" +"M08.45","Pauciarticular juvenile arthritis, pelvica and thigh" +"M08.46","Pauciarticular juvenile arthritis, lower leg" +"M08.47","Pauciarticular juvenile arthritis, ankle and foot" +"M08.48","Pauciarticular juvenile arthritis, other sites" +"M08.49","Pauciarticular juvenile arthritis, unspecified site" +"M08.8","Other juvenile arthritis" +"M08.80","Other juvenile arthritis, multiple sites" +"M08.81","Other juvenile arthritis, shoulder region" +"M08.82","Other juvenile arthritis, upper arm" +"M08.83","Other juvenile arthritis, forearm" +"M08.84","Other juvenile arthritis, hand" +"M08.85","Other juvenile arthritis, pelvic and thigh" +"M08.86","Other juvenile arthritis, lower leg" +"M08.87","Other juvenile arthritis, ankle and foot" +"M08.88","Other juvenile arthritis, other sites" +"M08.89","Other juvenile arthritis, unspecified site" +"M08.9","Juvenile arthritis, unspecified" +"M08.90","Juvenile arthritis, unspecified, multiple sites" +"M08.91","Juvenile arthritis, unspecified, shoulder region" +"M08.92","Juvenile arthritis, unspecified, upper arm" +"M08.93","Juvenile arthritis, unspecified, forearm" +"M08.94","Juvenile arthritis, unspecified, hand" +"M08.95","Juvenile arthritis, unspecified, pelvic and thigh" +"M08.96","Juvenile arthritis, unspecified, lower leg" +"M08.97","Juvenile arthritis, unspecified, ankle and foot" +"M08.98","Juvenile arthritis, unspecified, other sites" +"M08.99","Juvenile arthritis, unspecified, unspecified site" +"M09","Juvenile arthritis in diseases classified elsewhere" +"M09.0","Juvenile arthritis in psoriasis" +"M09.00","Juvenile arthritis in psoriasis, multiple sites" +"M09.01","Juvenile arthritis in psoriasis, shoulder region" +"M09.02","Juvenile arthritis in psoriasis, upper arm" +"M09.03","Juvenile arthritis in psoriasis, forearm" +"M09.04","Juvenile arthritis in psoriasis, hand" +"M09.05","Juvenile arthritis in psoriasis, pelvic and thigh" +"M09.06","Juvenile arthritis in psoriasis, lower leg" +"M09.07","Juvenile arthritis in psoriasis, ankle and foot" +"M09.08","Juvenile arthritis in psoriasis, other sites" +"M09.09","Juvenile arthritis in psoriasis, unspecified site" +"M09.1","Juvenile arthritis in crohn's disease [regional enteritis]" +"M09.10","Juvenile arthritis in crohn's disease [regional enteritis], multiple sites" +"M09.11","Juvenile arthritis in crohn's disease [regional enteritis], shoulder region" +"M09.12","Juvenile arthritis in crohn's disease [regional enteritis], upper arm" +"M09.13","Juvenile arthritis in crohn's disease [regional enteritis], forearm" +"M09.14","Juvenile arthritis in crohn's disease [regional enteritis], hand" +"M09.15","Juvenile arthritis in crohn's disease [regional enteritis], pelvic and thigh" +"M09.16","Juvenile arthritis in crohn's disease [regional enteritis], lower leg" +"M09.17","Juvenile arthritis in crohn's disease [regional enteritis], ankle and foot" +"M09.18","Juvenile arthritis in crohn's disease [regional enteritis], other sites" +"M09.19","Juvenile arthritis in crohn's disease [regional enteritis], unspecified site" +"M09.2","Juvenile arthritis in ulcerative colitis" +"M09.20","Juvenile arthritis in ulcerative colitis, multiple sites" +"M09.21","Juvenile arthritis in ulcerative colitis, shoulder region" +"M09.22","Juvenile arthritis in ulcerative colitis, upper arm" +"M09.23","Juvenile arthritis in ulcerative colitis, forearm" +"M09.24","Juvenile arthritis in ulcerative colitis, hand" +"M09.25","Juvenile arthritis in ulcerative colitis, pelvic and thigh" +"M09.26","Juvenile arthritis in ulcerative colitis, lower leg" +"M09.27","Juvenile arthritis in ulcerative colitis, ankle and foot" +"M09.28","Juvenile arthritis in ulcerative colitis, other sites" +"M09.29","Juvenile arthritis in ulcerative colitis, unspecified site" +"M09.8","Juvenile arthritis in other diseases classified elsewhere" +"M09.80","Juvenile arthritis in other diseases classified elsewhere, multiple sites" +"M09.81","Juvenile arthritis in other diseases classified elsewhere, shoulder region" +"M09.82","Juvenile arthritis in other diseases classified elsewhere, upper arm" +"M09.83","Juvenile arthritis in other diseases classified elsewhere, forearm" +"M09.84","Juvenile arthritis in other diseases classified elsewhere, hand" +"M09.85","Juvenile arthritis in other diseases classified elsewhere, pelvic and thigh" +"M09.86","Juvenile arthritis in other diseases classified elsewhere, lower leg" +"M09.87","Juvenile arthritis in other diseases classified elsewhere, ankle and foot" +"M09.88","Juvenile arthritis in other diseases classified elsewhere, other sites" +"M09.89","Juvenile arthritis in other diseases classified elsewhere, unspecified site" +"M10","GOUT" +"M10.0","Idiopathic gout" +"M10.00","Idiopathic gout, multiple sites" +"M10.01","Idiopathic gout, shoulder region" +"M10.02","Idiopathic gout, upper arm" +"M10.03","Idiopathic gout, forearm" +"M10.04","Idiopathic gout, hand" +"M10.05","Idiopathic gout, pelvic and thigh" +"M10.06","Idiopathic gout, lower leg" +"M10.07","Idiopathic gout, ankle and foot" +"M10.08","Idiopathic gout, other sites" +"M10.09","Idiopathic gout, unspecified site" +"M10.1","Lead-induced gout" +"M10.10","Lead-induced gout, multiple sites" +"M10.11","Lead-induced gout, shoulder region" +"M10.12","Lead-induced gout, upper arm" +"M10.13","Lead-induced gout, forearm" +"M10.14","Lead-induced gout, hand" +"M10.15","Lead-induced gout, pelvic and thigh" +"M10.16","Lead-induced gout, lower leg" +"M10.17","Lead-induced gout, ankle and foot" +"M10.18","Lead-induced gout, other sites" +"M10.19","Lead-induced gout, unspecified site" +"M10.2","Drug-induced gout" +"M10.20","Drug-induced gout, multiple sites" +"M10.21","Drug-induced gout, shoulder region" +"M10.22","Drug-induced gout, upper arm" +"M10.23","Drug-induced gout, forearm" +"M10.24","Drug-induced gout, hand" +"M10.25","Drug-induced gout, pelvic and thigh" +"M10.26","Drug-induced gout, lower leg" +"M10.27","Drug-induced gout, ankle and foot" +"M10.28","Drug-induced gout, other sites" +"M10.29","Drug-induced gout, unspecified site" +"M10.3","Gout due to impairment of renal function" +"M10.30","Gout due to impairment of renal function, multiple sites" +"M10.31","Gout due to impairment of renal function, shoulder region" +"M10.32","Gout due to impairment of renal function, upper arm" +"M10.33","Gout due to impairment of renal function, forearm" +"M10.34","Gout due to impairment of renal function, hand" +"M10.35","Gout due to impairment of renal function, pelvic and thigh" +"M10.36","Gout due to impairment of renal function, lower leg" +"M10.37","Gout due to impairment of renal function, ankle and foot" +"M10.38","Gout due to impairment of renal function, other sites" +"M10.39","Gout due to impairment of renal function, unspecified site" +"M10.4","Other secondary gout" +"M10.40","Other secondary gout, multiple sites" +"M10.41","Other secondary gout, shoulder region" +"M10.42","Other secondary gout, upper arm" +"M10.43","Other secondary gout, forearm" +"M10.44","Other secondary gout, hand" +"M10.45","Other secondary gout, pelvic and thigh" +"M10.46","Other secondary gout, lower leg" +"M10.47","Other secondary gout, ankle and foot" +"M10.48","Other secondary gout, other sites" +"M10.49","Other secondary gout, unspecified site" +"M10.9","Gout, unspecified" +"M10.90","Gout, unspecified, multiple sites" +"M10.91","Gout, unspecified, shoulder region" +"M10.92","Gout, unspecified, upper arm" +"M10.93","Gout, unspecified, forearm" +"M10.94","Gout, unspecified, hand" +"M10.95","Gout, unspecified, pelvic and thigh" +"M10.96","Gout, unspecified, lower leg" +"M10.97","Gout, unspecified, ankle and foot" +"M10.98","Gout, unspecified, other sites" +"M10.99","Gout, unspecified, unspecified site" +"M11","OTHER CRYSTAL ARTHROPATHIES" +"M11.0","Hydroxyapatite deposition disease" +"M11.00","Hydroxyapatite deposition disease, multiple sites" +"M11.01","Hydroxyapatite deposition disease, shoulder region" +"M11.02","Hydroxyapatite deposition disease, upper arm" +"M11.03","Hydroxyapatite deposition disease, forearm" +"M11.04","Hydroxyapatite deposition disease, hand" +"M11.05","Hydroxyapatite deposition disease, pelvic and thigh" +"M11.06","Hydroxyapatite deposition disease, lower leg" +"M11.07","Hydroxyapatite deposition disease, ankle and foot" +"M11.08","Hydroxyapatite deposition disease, other sites" +"M11.09","Hydroxyapatite deposition disease, unspecified site" +"M11.1","Familial chondrocalcinosis" +"M11.10","Familial chondrocalcinosis, multiple sites" +"M11.11","Familial chondrocalcinosis, shoulder region" +"M11.12","Familial chondrocalcinosis, upper arm" +"M11.13","Familial chondrocalcinosis, forearm" +"M11.14","Familial chondrocalcinosis, hand" +"M11.15","Familial chondrocalcinosis, pelvic and thigh" +"M11.16","Familial chondrocalcinosis, lower leg" +"M11.17","Familial chondrocalcinosis, ankle and foot" +"M11.18","Familial chondrocalcinosis, other sites" +"M11.19","Familial chondrocalcinosis, unspecified site" +"M11.2","Other chondrocalcinosis" +"M11.20","Other chondrocalcinosis, multiple sites" +"M11.21","Other chondrocalcinosis, shoulder region" +"M11.22","Other chondrocalcinosis, upper arm" +"M11.23","Other chondrocalcinosis, forearm" +"M11.24","Other chondrocalcinosis, hand" +"M11.25","Other chondrocalcinosis, pelvic and thigh" +"M11.26","Other chondrocalcinosis, lower leg" +"M11.27","Other chondrocalcinosis, ankle and foot" +"M11.28","Other chondrocalcinosis, other sites" +"M11.29","Other chondrocalcinosis, unspecified site" +"M11.8","Other specified crystal arthropathies" +"M11.80","Other specified crystal arthropathies, multiple sites" +"M11.81","Other specified crystal arthropathies, shoulder region" +"M11.82","Other specified crystal arthropathies, upper arm" +"M11.83","Other specified crystal arthropathies, forearm" +"M11.84","Other specified crystal arthropathies, hand" +"M11.85","Other specified crystal arthropathies, pelvic and thigh" +"M11.86","Other specified crystal arthropathies, lower leg" +"M11.87","Other specified crystal arthropathies, ankle and foot" +"M11.88","Other specified crystal arthropathies, other sites" +"M11.89","Other specified crystal arthropathies, unspecified site" +"M11.9","Crystal arthropathy, unspecified" +"M11.90","Crystal arthropathy, unspecified, multiple sites" +"M11.91","Crystal arthropathy, unspecified, shoulder region" +"M11.92","Crystal arthropathy, unspecified, upper arm" +"M11.93","Crystal arthropathy, unspecified, forearm" +"M11.94","Crystal arthropathy, unspecified, hand" +"M11.95","Crystal arthropathy, unspecified, pelvic and thigh" +"M11.96","Crystal arthropathy, unspecified, lower leg" +"M11.97","Crystal arthropathy, unspecified, ankle and foot" +"M11.98","Crystal arthropathy, unspecified, other sites" +"M11.99","Crystal arthropathy, unspecified, unspecified site" +"M12","OTHER SPECIFIC ARTHROPATHIES" +"M12.0","Chronic postrheumatic arthropathy [Jaccoud]" +"M12.00","Chronic postrheumatic arthropathy [jaccoud], multiple sites" +"M12.01","Chronic postrheumatic arthropathy [jaccoud], shoulder region" +"M12.02","Chronic postrheumatic arthropathy [jaccoud], upper arm" +"M12.03","Chronic postrheumatic arthropathy [jaccoud], forearm" +"M12.04","Chronic postrheumatic arthropathy [jaccoud], hand" +"M12.05","Chronic postrheumatic arthropathy [jaccoud], pelvic and thigh" +"M12.06","Chronic postrheumatic arthropathy [jaccoud], lower leg" +"M12.07","Chronic postrheumatic arthropathy [jaccoud], ankle and foot" +"M12.08","Chronic postrheumatic arthropathy [jaccoud], other sites" +"M12.09","Chronic postrheumatic arthropathy [jaccoud], unspecified site" +"M12.1","Kaschin-Beck disease" +"M12.10","Kaschin-beck disease, multiple sites" +"M12.11","Kaschin-beck disease, shoulder region" +"M12.12","Kaschin-beck disease, upper arm" +"M12.13","Kaschin-beck disease, forearm" +"M12.14","Kaschin-beck disease, hand" +"M12.15","Kaschin-beck disease, pelvic and thigh" +"M12.16","Kaschin-beck disease, lower leg" +"M12.17","Kaschin-beck disease, ankle and foot" +"M12.18","Kaschin-beck disease, other sites" +"M12.19","Kaschin-beck disease, unspecified site" +"M12.2","Villonodular synovitis (pigmented)" +"M12.20","Villonodular synovitis (pigmented), multiple sites" +"M12.21","Villonodular synovitis (pigmented), shoulder region" +"M12.22","Villonodular synovitis (pigmented), upper arm" +"M12.23","Villonodular synovitis (pigmented), forearm" +"M12.24","Villonodular synovitis (pigmented), hand" +"M12.25","Villonodular synovitis (pigmented), pelvic and thigh" +"M12.26","Villonodular synovitis (pigmented), lower leg" +"M12.27","Villonodular synovitis (pigmented), ankle and foot" +"M12.28","Villonodular synovitis (pigmented), other sites" +"M12.29","Villonodular synovitis (pigmented), unspecified site" +"M12.3","Palindromic rheumatism" +"M12.30","Palindromic rheumatism, multiple sites" +"M12.31","Palindromic rheumatism, shoulder region" +"M12.32","Palindromic rheumatism, upper arm" +"M12.33","Palindromic rheumatism, forearm" +"M12.34","Palindromic rheumatism, hand" +"M12.35","Palindromic rheumatism, pelvic and thigh" +"M12.36","Palindromic rheumatism, lower leg" +"M12.37","Palindromic rheumatism, ankle and foot" +"M12.38","Palindromic rheumatism, other sites" +"M12.39","Palindromic rheumatism, unspecified site" +"M12.4","Intermittent hydrarthrosis" +"M12.40","Intermittent hydrarthrosis, multiple sites" +"M12.41","Intermittent hydrarthrosis, shoulder region" +"M12.42","Intermittent hydrarthrosis, upper arm" +"M12.43","Intermittent hydrarthrosis, forearm" +"M12.44","Intermittent hydrarthrosis, hand" +"M12.45","Intermittent hydrarthrosis, pelvic and thigh" +"M12.46","Intermittent hydrarthrosis, lower leg" +"M12.47","Intermittent hydrarthrosis, ankle and foot" +"M12.48","Intermittent hydrarthrosis, other sites" +"M12.49","Intermittent hydrarthrosis, unspecified site" +"M12.5","Traumatic arthropathy" +"M12.50","Traumatic arthropathy, multiple sites" +"M12.51","Traumatic arthropathy, shoulder region" +"M12.52","Traumatic arthropathy, upper arm" +"M12.53","Traumatic arthropathy, forearm" +"M12.54","Traumatic arthropathy, hand" +"M12.55","Traumatic arthropathy, pelvic and thigh" +"M12.56","Traumatic arthropathy, lower leg" +"M12.57","Traumatic arthropathy, ankle and foot" +"M12.58","Traumatic arthropathy, other sites" +"M12.59","Traumatic arthropathy, unspecified site" +"M12.8","Other specific arthropathies, not elsewhere classified" +"M12.80","Other specific arthropathies, not elsewhere classified, multiple sites" +"M12.81","Other specific arthropathies, not elsewhere classified, shoulder region" +"M12.82","Other specific arthropathies, not elsewhere classified, upper arm" +"M12.83","Other specific arthropathies, not elsewhere classified, forearm" +"M12.84","Other specific arthropathies, not elsewhere classified, hand" +"M12.85","Other specific arthropathies, not elsewhere classified, pelvic and thigh" +"M12.86","Other specific arthropathies, not elsewhere classified, lower leg" +"M12.87","Other specific arthropathies, not elsewhere classified, ankle and foot" +"M12.88","Other specific arthropathies, not elsewhere classified, other sites" +"M12.89","Other specific arthropathies, not elsewhere classified, unspecified site" +"M13","OTHER ARTHRITIS" +"M13.0","Polyarthritis, unspecified" +"M13.00","Polyarthritis, unspecified, multiple sites" +"M13.01","Polyarthritis, unspecified, shoulder region" +"M13.02","Polyarthritis, unspecified, upper arm" +"M13.03","Polyarthritis, unspecified, forearm" +"M13.04","Polyarthritis, unspecified, hand" +"M13.05","Polyarthritis, unspecified, pelvic and thigh" +"M13.06","Polyarthritis, unspecified, lower leg" +"M13.07","Polyarthritis, unspecified, ankle and foot" +"M13.08","Polyarthritis, unspecified, other sites" +"M13.09","Polyarthritis, unspecified, unspecified site" +"M13.1","Monoarthritis, not elsewhere classified" +"M13.10","Monoarthritis, not elsewhere classified, multiple sites" +"M13.11","Monoarthritis, not elsewhere classified, shoulder region" +"M13.12","Monoarthritis, not elsewhere classified, upper arm" +"M13.13","Monoarthritis, not elsewhere classified, forearm" +"M13.14","Monoarthritis, not elsewhere classified, hand" +"M13.15","Monoarthritis, not elsewhere classified, pelvic and thigh" +"M13.16","Monoarthritis, not elsewhere classified, lower leg" +"M13.17","Monoarthritis, not elsewhere classified, ankle and foot" +"M13.18","Monoarthritis, not elsewhere classified, other sites" +"M13.19","Monoarthritis, not elsewhere classified, unspecified site" +"M13.8","Other specified arthritis" +"M13.80","Other specified arthritis, multiple sites" +"M13.81","Other specified arthritis, shoulder region" +"M13.82","Other specified arthritis, upper arm" +"M13.83","Other specified arthritis, forearm" +"M13.84","Other specified arthritis, hand" +"M13.85","Other specified arthritis, pelvic and thigh" +"M13.86","Other specified arthritis, lower leg" +"M13.87","Other specified arthritis, ankle and foot" +"M13.88","Other specified arthritis, other sites" +"M13.89","Other specified arthritis, unspecified site" +"M13.9","Arthritis, unspecified" +"M13.90","Arthritis, unspecified, multiple sites" +"M13.91","Arthritis, unspecified, shoulder region" +"M13.92","Arthritis, unspecified, upper arm" +"M13.93","Arthritis, unspecified, forearm" +"M13.94","Arthritis, unspecified, hand" +"M13.95","Arthritis, unspecified, pelvic and thigh" +"M13.96","Arthritis, unspecified, lower leg" +"M13.97","Arthritis, unspecified, ankle and foot" +"M13.98","Arthritis, unspecified, other sites" +"M13.99","Arthritis, unspecified, unspecified site" +"M14","ARTHROPATHIES IN OTHER DISEASES CLASSIFIED ELSEWHERE" +"M14.0","Gouty arthropathy due to enzyme defects and other inherited disorders" +"M14.1","Crystal arthropathy in other metabolic disorders" +"M14.2","Diabetic arthropathy" +"M14.3","Lipoid dermatoarthritis" +"M14.4","Arthropathy in amylodosis" +"M14.5","Arthropathies in other endocrine nutritional and metabolic disorders" +"M14.6","Neuropathic arthropathy" +"M14.8","Arthropathies in other specified diseases classified elsewhere" +"M15","POLYARTHROSIS" +"M15.0","Primary generalized (osteo)arthrosis" +"M15.1","Heberden's nodes (with arthropathy)" +"M15.2","Bouchard's nodes (with arthropathy)" +"M15.3","Secondary multiple arthrosis" +"M15.4","Erosive (osteo)arthrosis" +"M15.8","Other polyarthrosis" +"M15.9","Polyarthrosis, unspecified" +"M16","COXARTHROSIS [ARTHROSIS OF HIP]" +"M16.0","Primary coxarthrosis, bilateral" +"M16.1","Other primary coxarthrosis" +"M16.2","Coxarthrosis resulting from dysplasia, bilateral" +"M16.3","Other dysplastic coxarthrosis" +"M16.4","Post-traumatic coxarthrosis, bilateral" +"M16.5","Other post-traumatic coxarthrosis" +"M16.6","Other secondary coxarthrosis, bilateral" +"M16.7","Other secondary coxarthrosis" +"M16.9","Coxarthrosis, unspecified" +"M17","GONARTHROSIS [ARTHROSIS OF KNEE]" +"M17.0","Primary gonarthrosis, bilateral" +"M17.1","Other primary gonarthrosis" +"M17.2","Post-traumatic gonarthrosis, bilateral" +"M17.3","Other post-traumatic gonarthrosis" +"M17.4","Other secondary gonarthrosis, bilateral" +"M17.5","Other secondary gonarthrosis" +"M17.9","Gonarthrosis, unspecified" +"M18","ARTHROSIS OF FIRST CARPOMETACARPAL JOINT" +"M18.0","Primary arthrosis of first carpometacarpal joints, bilateral" +"M18.1","Other primary arthrosis of first carpometacarpal joint" +"M18.2","Post-traumatic arthrosis of first carpometacarpal joints, bilateral" +"M18.3","Other post-traumatic arthrosis of first carpometacarpal joints" +"M18.4","Other secondary arthrosis of first carpometacarpal joints, bilateral" +"M18.5","Other secondary arthrosis of first carpometacarpal joint" +"M18.9","Arthrosis of first carpometacarpal joint, unspecified" +"M19","OTHER ARTHROSIS" +"M19.0","Primary arthrosis of other joints" +"M19.00","Primary arthrosis of other joints, multiple sites" +"M19.01","Primary arthrosis of other joints, shoulder region" +"M19.02","Primary arthrosis of other joints, upper arm" +"M19.03","Primary arthrosis of other joints, forearm" +"M19.04","Primary arthrosis of other joints, hand" +"M19.05","Primary arthrosis of other joints, pelvic and thigh" +"M19.06","Primary arthrosis of other joints, lower leg" +"M19.07","Primary arthrosis of other joints, ankle and foot" +"M19.08","Primary arthrosis of other joints, other sites" +"M19.09","Primary arthrosis of other joints, unspecified site" +"M19.1","Post-traumatic arthrosis of other joints" +"M19.10","Post-traumatic arthrosis of other joints, multiple sites" +"M19.11","Post-traumatic arthrosis of other joints, shoulder region" +"M19.12","Post-traumatic arthrosis of other joints, upper arm" +"M19.13","Post-traumatic arthrosis of other joints, forearm" +"M19.14","Post-traumatic arthrosis of other joints, hand" +"M19.15","Post-traumatic arthrosis of other joints, pelvic and thigh" +"M19.16","Post-traumatic arthrosis of other joints, lower leg" +"M19.17","Post-traumatic arthrosis of other joints, ankle and foot" +"M19.18","Post-traumatic arthrosis of other joints, other sites" +"M19.19","Post-traumatic arthrosis of other joints, unspecified site" +"M19.2","Secondary arthrosis of other joints" +"M19.20","Secondary arthrosis of other joints, multiple sites" +"M19.21","Secondary arthrosis of other joints, shoulder region" +"M19.22","Secondary arthrosis of other joints, upper arm" +"M19.23","Secondary arthrosis of other joints, forearm" +"M19.24","Secondary arthrosis of other joints, hand" +"M19.25","Secondary arthrosis of other joints, pelvic and thigh" +"M19.26","Secondary arthrosis of other joints, lower leg" +"M19.27","Secondary arthrosis of other joints, ankle and foot" +"M19.28","Secondary arthrosis of other joints, other sites" +"M19.29","Secondary arthrosis of other joints, unspecified site" +"M19.8","Other specified arthrosis" +"M19.80","Other specified arthrosis, multiple sites" +"M19.81","Other specified arthrosis, shoulder region" +"M19.82","Other specified arthrosis, upper arm" +"M19.83","Other specified arthrosis, forearm" +"M19.84","Other specified arthrosis, hand" +"M19.85","Other specified arthrosis, pelvic and thigh" +"M19.86","Other specified arthrosis, lower leg" +"M19.87","Other specified arthrosis, ankle and foot" +"M19.88","Other specified arthrosis, other sites" +"M19.89","Other specified arthrosis, unspecified site" +"M19.9","Arthrosis, unspecified" +"M19.90","Arthrosis, unspecified, multiple sites" +"M19.91","Arthrosis, unspecified, shouder region" +"M19.92","Arthrosis, unspecified, upper arm" +"M19.93","Arthrosis, unspecified, forearm" +"M19.94","Arthrosis, unspecified, hand" +"M19.95","Arthrosis, unspecified, pelvic and thigh" +"M19.96","Arthrosis, unspecified, lower leg" +"M19.97","Arthrosis, unspecified, ankle and foot" +"M19.98","Arthrosis, unspecified, other sites" +"M19.99","Arthrosis, unspecified, unspecified site" +"M20","ACQUIRED DEFORMITIES OF FINGERS AND TOES" +"M20.0","Deformity of finger(s)" +"M20.1","Hallux valgus (acquired)" +"M20.2","Hallux rigidus" +"M20.3","Other deformity of hallux (acquired)" +"M20.4","Other hammer toe(s) (acquired)" +"M20.5","Other deformities of toe(s) (acquired)" +"M20.6","Acquired deformity of toe(s), unspecified" +"M21","OTHER ACQUIRED DEFORMITIES OF LIMBS" +"M21.0","Valgus deformity, not elsewhere classified" +"M21.00","Valgus deformity, not elsewhere classified, multiple sites" +"M21.01","Valgus deformity, not elsewhere classified, shoulder region" +"M21.02","Valgus deformity, not elsewhere classified, upper arm" +"M21.03","Valgus deformity, not elsewhere classified, forearm" +"M21.04","Valgus deformity, not elsewhere classified, hand" +"M21.05","Valgus deformity, not elsewhere classified, pelvic and thigh" +"M21.06","Valgus deformity, not elsewhere classified, lower leg" +"M21.07","Valgus deformity, not elsewhere classified, ankle and foot" +"M21.08","Valgus deformity, not elsewhere classified, other sites" +"M21.09","Valgus deformity, not elsewhere classified, unspecified site" +"M21.1","Varus deformity, not elsewhere classified" +"M21.10","Varus deformity, not elsewhere classified, multiple sites" +"M21.11","Varus deformity, not elsewhere classified, shoulder region" +"M21.12","Varus deformity, not elsewhere classified, upper arm" +"M21.13","Varus deformity, not elsewhere classified, forearm" +"M21.14","Varus deformity, not elsewhere classified, hand" +"M21.15","Varus deformity, not elsewhere classified, pelvic and thigh" +"M21.16","Varus deformity, not elsewhere classified, lower leg" +"M21.17","Varus deformity, not elsewhere classified, ankle and foot" +"M21.18","Varus deformity, not elsewhere classified, other sites" +"M21.19","Varus deformity, not elsewhere classified, unspecified site" +"M21.2","Flexion deformity" +"M21.20","Flexion deformity, multiple sites" +"M21.21","Flexion deformity, shoulder region" +"M21.22","Flexion deformity, upper arm" +"M21.23","Flexion deformity, forearm" +"M21.24","Flexion deformity, hand" +"M21.25","Flexion deformity, pelvic and thigh" +"M21.26","Flexion deformity, lower leg" +"M21.27","Flexion deformity, ankle and foot" +"M21.28","Flexion deformity, other sites" +"M21.29","Flexion deformity, unspecified site" +"M21.3","Wrist or foot drop (acquired)" +"M21.34","Wrist or foot drop (acquired), hand" +"M21.37","Wrist or foot drop (acquired), ankle and foot" +"M21.4","Flat foot [pes planus] (acquired)" +"M21.47","Flat foot [pes planus] (acquired), ankle and foot" +"M21.5","Acquired clawhand, clubhand, clawfoot and clubfoot" +"M21.54","Acquired clawhand, clubhand, clawfoot and clubfoot, hand" +"M21.57","Acquired clawhand, clubhand, clawfoot and clubfoot, ankle and foot" +"M21.6","Other acquired deformities of ankle and foot" +"M21.67","Other acquired deformities of ankle and foot, ankle and foot" +"M21.7","Unequal limb length (acquired)" +"M21.70","Unequal limb length (acquired), multiple sites" +"M21.71","Unequal limb length (acquired), shoulder region" +"M21.72","Unequal limb length (acquired), upper arm" +"M21.73","Unequal limb length (acquired), forearm" +"M21.74","Unequal limb length (acquired), hand" +"M21.75","Unequal limb length (acquired), pelvic and thigh" +"M21.76","Unequal limb length (acquired), lower leg" +"M21.77","Unequal limb length (acquired), ankle and foot" +"M21.78","Unequal limb length (acquired), other sites" +"M21.79","Unequal limb length (acquired), unspecified site" +"M21.8","Other specified acquired deformities of limbs" +"M21.80","Other specified acquired deformities of limbs, multiple sites" +"M21.81","Other specified acquired deformities of limbs, shoulder region" +"M21.82","Other specified acquired deformities of limbs, upper arm" +"M21.83","Other specified acquired deformities of limbs, forearm" +"M21.84","Other specified acquired deformities of limbs, hand" +"M21.85","Other specified acquired deformities of limbs, pelvic and thigh" +"M21.86","Other specified acquired deformities of limbs, lower leg 1" +"M21.87","Other specified acquired deformities of limbs, ankle and foot 1" +"M21.88","Other specified acquired deformities of limbs, other sites 1" +"M21.89","Other specified acquired deformities of limbs, unspecified site 1" +"M21.9","Acquired deformity of limb, unspecified 1" +"M21.90","Acquired deformity of limb, unspecified, multiple sites 1" +"M21.91","Acquired deformity of limb, unspecified, shoulder region 1" +"M21.92","Acquired deformity of limb, unspecified, upper arm 1" +"M21.93","Acquired deformity of limb, unspecified, forearm 1" +"M21.94","Acquired deformity of limb, unspecified, hand 1" +"M21.95","Acquired deformity of limb, unspecified, pelvic and thigh 1" +"M21.96","Acquired deformity of limb, unspecified, lower leg 1" +"M21.97","Acquired deformity of limb, unspecified, ankle and foot 1" +"M21.98","Acquired deformity of limb, unspecified, other sites 1" +"M21.99","Acquired deformity of limb, unspecified, unspecified site 1" +"M22","Disorders of patella" +"M22.0","Recurrent dislocation of patella 1" +"M22.1","Recurrent subluxation of patella 1" +"M22.2","Patellofemoral disorders 1" +"M22.3","Other derangements of patella 1" +"M22.4","Chondromalacia patellae" +"M22.8","Other disorders of patella" +"M22.9","Disorder of patella, unspecified" +"M23","INTERNAL DERANGEMENT OF KNEE" +"M23.0","Cystic meniscus" +"M23.00","Cystic meniscus, multiple sites" +"M23.01","Cystic meniscus, anterior cruciate ligament or anterior horn medial meniscus" +"M23.02","Cystic meniscus, posterior cruciate ligament or anterior horn medial meniscus" +"M23.03","Cystic meniscus, medial collateral ligament or other and unspecified medial meniscus" +"M23.04","Cystic meniscus, lateral collateral ligament or anterior horn of lateral meniscus" +"M23.05","Cystic meniscus, posterior horn of lateral meniscus" +"M23.06","Cystic meniscus, other and unspecified lateral meniscus" +"M23.07","Cystic meniscus, capsular ligament" +"M23.09","Cystic meniscus, unspecified ligament or unspecified meniscus" +"M23.1","Discoid meniscus (congenital)" +"M23.10","Discoid meniscus (congenital), multiple sites" +"M23.11","Discoid meniscus (congenital), anterior cruciate ligament or anterior horn medial meniscus" +"M23.12","Discoid meniscus (congenital), posterior cruciate ligament or anterior horn medial meniscus" +"M23.13","Discoid meniscus (congenital), medial collateral ligament or other and unspecified medial meniscus" +"M23.14","Discoid meniscus (congenital), lateral collateral ligament or anterior horn of lateral meniscus" +"M23.15","Discoid meniscus (congenital), posterior horn of lateral meniscus" +"M23.16","Discoid meniscus (congenital), other and unspecified lateral meniscus" +"M23.17","Discoid meniscus (congenital),capsular ligament" +"M23.19","Discoid meniscus (congenital), unspecified ligament or unspecified meniscus" +"M23.2","Derangement of meniscus due to old tear or injury" +"M23.20","Derangement of meniscus due to old tear or injury, multiple sites" +"M23.21","Derangement of meniscus due to old tear or injury, anterior cruciate ligament or anterior horn medial meniscus" +"M23.22","Derangement of meniscus due to old tear or injury, posterior cruciate ligament or anterior horn medial meniscus" +"M23.23","Derangement of meniscus due to old tear or injury, medial collateral ligament or other and unspecified medial meniscus" +"M23.24","Derangement of meniscus due to old tear or injury, lateral collateral ligament or anterior horn of lateral meniscus" +"M23.25","Derangement of meniscus due to old tear or injury, posterior horn of lateral meniscus" +"M23.26","Derangement of meniscus due to old tear or injury, other and unspecified lateral meniscus" +"M23.27","Derangement of meniscus due to old tear or injury, capsular ligament" +"M23.29","Derangement of meniscus due to old tear or injury, unspecified ligament or unspecified meniscus" +"M23.3","Other meniscus derangements" +"M23.30","Other meniscus derangements, multiple sites" +"M23.31","Other meniscus derangements, anterior cruciate ligament or anterior horn medial meniscus" +"M23.32","Other meniscus derangements, posterior cruciate ligament or anterior horn medial meniscus" +"M23.33","Other meniscus derangements, medial collateral ligament or other and unspecified medial meniscus" +"M23.34","Other meniscus derangements, lateral collateral ligament or anterior horn of lateral meniscus" +"M23.35","Other meniscus derangements, posterior horn of lateral meniscus" +"M23.36","Other meniscus derangements, other and unspecified lateral meniscus" +"M23.37","Other meniscus derangements, capsular ligament" +"M23.39","Other meniscus derangements, unspecified ligament or unspecified meniscus" +"M23.4","Loose body in knee" +"M23.40","Loose body in knee, multiple sites" +"M23.41","Loose body in knee, anterior cruciate ligament or anterior horn medial meniscus" +"M23.42","Loose body in knee, posterior cruciate ligament or anterior horn medial meniscus" +"M23.43","Loose body in knee, medial collateral ligament or other and unspecified medial meniscus" +"M23.44","Loose body in knee, lateral collateral ligament or anterior horn of lateral meniscus" +"M23.45","Loose body in knee, posterior horn of lateral meniscus" +"M23.46","Loose body in knee, other and unspecified lateral meniscus" +"M23.47","Loose body in knee, capsular ligament" +"M23.49","Loose body in knee, unspecified ligament or unspecified meniscus" +"M23.5","Chronic instability of knee" +"M23.50","Chronic instability of knee, multiple sites" +"M23.51","Chronic instability of knee, anterior cruciate ligament or anterior horn medial meniscus" +"M23.52","Chronic instability of knee, posterior cruciate ligament or anterior horn medial meniscus" +"M23.53","Chronic instability of knee, medial collateral ligament or other and unspecified medial meniscus" +"M23.54","Chronic instability of knee, lateral collateral ligament or anterior horn of lateral meniscus" +"M23.55","Chronic instability of knee, posterior horn of lateral meniscus" +"M23.56","Chronic instability of knee, other and unspecified lateral meniscus" +"M23.57","Chronic instability of knee, capsular ligament" +"M23.59","Chronic instability of knee, unspecified ligament or unspecified meniscus" +"M23.6","Other spontaneous disruption of ligament(s) of knee" +"M23.60","Other spontaneous disruption of ligament(s) of knee, multiple sites" +"M23.61","Other spontaneous disruption of ligament(s) of knee, anterior cruciate ligament or anterior horn medial meniscus" +"M23.62","Other spontaneous disruption of ligament(s) of knee, posterior cruciate ligament or anterior horn medial meniscus" +"M23.63","Other spontaneous disruption of ligament(s) of knee, medial collateral ligament or other and unspecified medial meniscus" +"M23.64","Other spontaneous disruption of ligament(s) of knee, lateral collateral ligament or anterior horn of lateral meniscus" +"M23.65","Other spontaneous disruption of ligament(s) of knee, posterior horn of lateral meniscus" +"M23.66","Other spontaneous disruption of ligament(s) of knee, other and unspecified lateral meniscus" +"M23.67","Other spontaneous disruption of ligament(s) of knee, capsular ligament" +"M23.69","Other spontaneous disruption of ligament(s) of knee, unspecified ligament or unspecified meniscus" +"M23.8","Other internal derangements of knee" +"M23.80","Other internal derangements of knee, multiple sites" +"M23.81","Other internal derangements of knee, anterior cruciate ligament or anterior horn medial meniscus" +"M23.82","Other internal derangements of knee, posterior cruciate ligament or anterior horn medial meniscus" +"M23.83","Other internal derangements of knee, medial collateral ligament or other and unspecified medial meniscus" +"M23.84","Other internal derangements of knee, lateral collateral ligament or anterior horn of lateral meniscus" +"M23.85","Other internal derangements of knee, posterior horn of lateral meniscus" +"M23.86","Other internal derangements of knee, other and unspecified lateral meniscus" +"M23.87","Other internal derangements of knee, capsular ligament" +"M23.89","Other internal derangements of knee, unspecified ligament or unspecified meniscus" +"M23.9","Internal derangement of knee, unspecified" +"M23.90","Internal derangement of knee, unspecified, multiple sites" +"M23.91","Internal derangement of knee, unspecified,anterior cruciate ligament or anterior horn medial meniscus" +"M23.92","Internal derangement of knee, unspecified, posterior cruciate ligament or anterior horn medial meniscus" +"M23.93","Internal derangement of knee, unspecified, medial collateral ligament or other and unspecified medial meniscus" +"M23.94","Internal derangement of knee, unspecified, lateral collateral ligament or anterior horn of lateral meniscus" +"M23.95","Internal derangement of knee, unspecified, posterior horn of lateral meniscus" +"M23.96","Internal derangement of knee, unspecified, other and unspecified lateral meniscus" +"M23.97","Internal derangement of knee, unspecified, capsular ligament" +"M23.99","Internal derangement of knee, unspecified, unspecified ligament or unspecified meniscus" +"M24","Other specific joint derangements" +"M24.0","Loose body in joint" +"M24.00","Loose body in joint, multiple sites" +"M24.01","Loose body in joint, shouder region" +"M24.02","Loose body in joint, upper arm" +"M24.03","Loose body in joint, forearm" +"M24.04","Loose body in joint, hand" +"M24.05","Loose body in joint, pelvic and thigh" +"M24.06","Loose body in joint, lower leg" +"M24.07","Loose body in joint, ankle and foot" +"M24.08","Loose body in joint, other sites" +"M24.09","Loose body in joint, unspecified site" +"M24.1","Other articular cartilage disorders" +"M24.10","Other articular cartilage disorders, multiple sites" +"M24.11","Other articular cartilage disorders, shoulder region" +"M24.12","Other articular cartilage disorders, upper arm" +"M24.13","Other articular cartilage disorders, forearm" +"M24.14","Other articular cartilage disorders, hand" +"M24.15","Other articular cartilage disorders, pelvic and thigh" +"M24.16","Other articular cartilage disorders, lower leg" +"M24.17","Other articular cartilage disorders, ankle and foot" +"M24.18","Other articular cartilage disorders, other sites" +"M24.19","Other articular cartilage disorders, unspecified site" +"M24.2","Disorder of ligament" +"M24.20","Disorder of ligament, multiple sites" +"M24.21","Disorder of ligament, shouder region" +"M24.22","Disorder of ligament, upper arm" +"M24.23","Disorder of ligament, forearm" +"M24.24","Disorder of ligament, hand" +"M24.25","Disorder of ligament, pelvic and thigh" +"M24.26","Disorder of ligament, lower leg" +"M24.27","Disorder of ligament, ankle and foot" +"M24.28","Disorder of ligament, other sites" +"M24.29","Disorder of ligament, unspecified site" +"M24.3","Pathological dislocation and subluxation of joint, not elsewhere classified" +"M24.30","Pathological dislocation and subluxation of joint not elsewhere classified, multiple sites" +"M24.31","Pathological dislocation and subluxation of joint not elsewhere classified, shoulder region" +"M24.32","Pathological dislocation and subluxation of joint not elsewhere classified, upper arm" +"M24.33","Pathological dislocation and subluxation of joint not elsewhere classified, forearm" +"M24.34","Pathological dislocation and subluxation of joint not elsewhere classified, hand" +"M24.35","Pathological dislocation and subluxation of joint not elsewhere classified, pelvic and thigh" +"M24.36","Pathological dislocation and subluxation of joint not elsewhere classified, lower leg" +"M24.37","Pathological dislocation and subluxation of joint not elsewhere classified, ankle and foot" +"M24.38","Pathological dislocation and subluxation of joint not elsewhere classified, other sites" +"M24.39","Pathological dislocation and subluxation of joint not elsewhere classified, unspecified site" +"M24.4","Recurrent dislocation and subluxation of joint" +"M24.40","Recurrent dislocation and subluxation of joint, multiple sites" +"M24.41","Recurrent dislocation and subluxation of joint, shoulder region" +"M24.42","Recurrent dislocation and subluxation of joint, upper arm" +"M24.43","Recurrent dislocation and subluxation of joint, forearm" +"M24.44","Recurrent dislocation and subluxation of joint, hand" +"M24.45","Recurrent dislocation and subluxation of joint, pelvic and thigh" +"M24.46","Recurrent dislocation and subluxation of joint, lower leg" +"M24.47","Recurrent dislocation and subluxation of joint, ankle and foot" +"M24.48","Recurrent dislocation and subluxation of joint, other sites" +"M24.49","Recurrent dislocation and subluxation of joint, unspecified site" +"M24.5","Contracture of joint" +"M24.50","Contracture of joint, multiple sites" +"M24.51","Contracture of joint, shouder region" +"M24.52","Contracture of joint, upper arm" +"M24.53","Contracture of joint, forearm" +"M24.54","Contracture of joint, hand" +"M24.55","Contracture of joint, pelvic and thigh" +"M24.56","Contracture of joint, lower leg" +"M24.57","Contracture of joint, ankle and foot" +"M24.58","Contracture of joint, other sites" +"M24.59","Contracture of joint, unspecified site" +"M24.6","Ankylosis of joint" +"M24.60","Ankylosis of joint, multiple sites" +"M24.61","Ankylosis of joint, shoulder region" +"M24.62","Ankylosis of joint, upper arm" +"M24.63","Ankylosis of joint, forearm" +"M24.64","Ankylosis of joint, hand" +"M24.65","Ankylosis of joint, pelvic and thigh" +"M24.66","Ankylosis of joint, lower leg" +"M24.67","Ankylosis of joint, ankle and foot" +"M24.68","Ankylosis of joint, other sites" +"M24.69","Ankylosis of joint, unspecified site" +"M24.7","Protrusio acetabuli" +"M24.75","Protrusio acetabuli, pelvic andthigh" +"M24.8","Other specific joint derangements, not elsewhere classified" +"M24.80","Other specific joint derangements, not elsewhere classified, multiple sites" +"M24.81","Other specific joint derangements, not elsewhere classified, shoulder region" +"M24.82","Other specific joint derangements, not elsewhere classified, upper arm" +"M24.83","Other specific joint derangements, not elsewhere classified, forearm" +"M24.84","Other specific joint derangements, not elsewhere classified, hand" +"M24.85","Other specific joint derangements, not elsewhere classified, pelvic and thigh" +"M24.86","Other specific joint derangements, not elsewhere classified, lower leg" +"M24.87","Other specific joint derangements, not elsewhere classified, ankle and foot" +"M24.88","Other specific joint derangements, not elsewhere classified, other sites" +"M24.89","Other specific joint derangements, not elsewhere classified, unspecified site" +"M24.9","Joint derangement, unspecified" +"M24.90","Joint derangement, unspecified, multiple sites" +"M24.91","Joint derangement, unspecified, shoulder region" +"M24.92","Joint derangement, unspecified, upper arm" +"M24.93","Joint derangement, unspecified, forearm" +"M24.94","Joint derangement, unspecified, hand" +"M24.95","Joint derangement, unspecified, pelvic and thigh" +"M24.96","Joint derangement, unspecified, lower leg" +"M24.97","Joint derangement, unspecified, ankle and foot" +"M24.98","Joint derangement, unspecified, other sites" +"M24.99","Joint derangement, unspecified, unspecified site" +"M25","OTHER JOINT DISORDERS, NOT ELSEWHERE CLASSIFIED" +"M25.0","Haemarthrosis" +"M25.00","Haemarthrosis, multiple sites" +"M25.01","Haemarthrosis, shoulder region" +"M25.02","Haemarthrosis, upper arm" +"M25.03","Haemarthrosis, forearm" +"M25.04","Haemarthrosis, hand" +"M25.05","Haemarthrosis, pelvic and thigh" +"M25.06","Haemarthrosis, lower leg" +"M25.07","Haemarthrosis, ankle and foot" +"M25.08","Haemarthrosis, other sites" +"M25.09","Haemarthrosis, unspecified site" +"M25.1","Fistula of joint" +"M25.10","Fistula of joint, multiple sites" +"M25.11","Fistula of joint, shoulder region" +"M25.12","Fistula of joint, upper arm" +"M25.13","Fistula of joint, forearm" +"M25.14","Fistula of joint, hand" +"M25.15","Fistula of joint, pelvic and thigh" +"M25.16","Fistula of joint, lower leg" +"M25.17","Fistula of joint, ankle and foot" +"M25.18","Fistula of joint, other sites" +"M25.19","Fistula of joint, unspecified site" +"M25.2","Flail joint" +"M25.20","Flail joint, multiple sites" +"M25.21","Flail joint, shoulder region" +"M25.22","Flail joint, upper arm" +"M25.23","Flail joint, forearm" +"M25.24","Flail joint, hand" +"M25.25","Flail joint, pelvic and thigh" +"M25.26","Flail joint, lower leg" +"M25.27","Flail joint, ankle and foot" +"M25.28","Flail joint, other sites" +"M25.29","Flail joint, unspecified site" +"M25.3","Other instability of joint" +"M25.30","Other instability of joint, multiple sites" +"M25.31","Other instability of joint, shoulder region" +"M25.32","Other instability of joint, upper arm" +"M25.33","Other instability of joint, forearm" +"M25.34","Other instability of joint, hand" +"M25.35","Other instability of joint, pelvic and thigh" +"M25.36","Other instability of joint, lower leg" +"M25.37","Other instability of joint, ankle and foot" +"M25.38","Other instability of joint, other sites" +"M25.39","Other instability of joint, unspecified site" +"M25.4","Effusion of joint" +"M25.40","Effusion of joint, multiple sites" +"M25.41","Effusion of joint, shoulder region" +"M25.42","Effusion of joint, upper arm" +"M25.43","Effusion of joint, forearm" +"M25.44","Effusion of joint, hand" +"M25.45","Effusion of joint, pelvic and thigh" +"M25.46","Effusion of joint, lower leg" +"M25.47","Effusion of joint, ankle and foot" +"M25.48","Effusion of joint, other sites" +"M25.49","Effusion of joint, unspecified site" +"M25.5","Pain in joint" +"M25.50","Pain in joint, multiple sites" +"M25.51","Pain in joint, shouder region" +"M25.52","Pain in joint, upper arm" +"M25.53","Pain in joint, forearm" +"M25.54","Pain in joint, hand" +"M25.55","Pain in joint, pelvic and thigh" +"M25.56","Pain in joint, lower leg" +"M25.57","Pain in joint, ankle and foot" +"M25.58","Pain in joint, other sites" +"M25.59","Pain in joint, unspecified site" +"M25.6","Stiffness of joint, not elsewhere classified" +"M25.60","Stiffness of joint, not elsewhere classified, multiple sites" +"M25.61","Stiffness of joint, not elsewhere classified, shoulder region" +"M25.62","Stiffness of joint, not elsewhere classified, upper arm" +"M25.63","Stiffness of joint, not elsewhere classified, forearm" +"M25.64","Stiffness of joint, not elsewhere classified, hand" +"M25.65","Stiffness of joint, not elsewhere classified, pelvic and thigh" +"M25.66","Stiffness of joint, not elsewhere classified, lower leg" +"M25.67","Stiffness of joint, not elsewhere classified, ankle and foot" +"M25.68","Stiffness of joint, not elsewhere classified, other sites" +"M25.69","Stiffness of joint, not elsewhere classified, unspecified site" +"M25.7","Osteophyte" +"M25.70","Osteophyte, multiple sites" +"M25.71","Osteophyte, shoulder region" +"M25.72","Osteophyte, upper arm" +"M25.73","Osteophyte, forearm" +"M25.74","Osteophyte, hand" +"M25.75","Osteophyte, pelvic and thigh" +"M25.76","Osteophyte, lower leg" +"M25.77","Osteophyte, ankle and foot" +"M25.78","Osteophyte, other sites" +"M25.79","Osteophyte, unspecified site" +"M25.8","Other specified joint disorders" +"M25.80","Other specified joint disorders, multiple sites" +"M25.81","Other specified joint disorders, sholder region" +"M25.82","Other specified joint disorders, upper arm" +"M25.83","Other specified joint disorders, forearm" +"M25.84","Other specified joint disorders, hand" +"M25.85","Other specified joint disorders, pelvic and thigh" +"M25.86","Other specified joint disorders, lower leg" +"M25.87","Other specified joint disorders, ankle and foot" +"M25.88","Other specified joint disorders, other sites" +"M25.89","Other specified joint disorders, unspecified site" +"M25.9","Joint disorder, unspecified" +"M25.90","Joint disorder, unspecified, multiple sites" +"M25.91","Joint disorder, unspecified, shoulder region" +"M25.92","Joint disorder, unspecified, upper arm" +"M25.93","Joint disorder, unspecified, forearm" +"M25.94","Joint disorder, unspecified, hand" +"M25.95","Joint disorder, unspecified, pelvic and thigh" +"M25.96","Joint disorder, unspecified, lower leg" +"M25.97","Joint disorder, unspecified, ankle and foot" +"M25.98","Joint disorder, unspecified, other sites" +"M25.99","Joint disorder, unspecified, unspecified site" +"M30","POLYARTERITIS NODOSA AND RELATED CONDITIONS" +"M30.0","Polyarteritis nodosa" +"M30.1","Polyarteritis with lung involvement [Churg-strauss]" +"M30.2","Juvenile polyarteritis" +"M30.3","Mucocutaneous lymph node syndrome [Kawasaki]" +"M30.8","Other conditions related to polyarteritis nodosa" +"M31","OTHER NECROTIZING VASCULOPATHIES" +"M31.0","Hypersensitivity angiitis" +"M31.1","Thrombotic microangiopathy" +"M31.2","Lethal midline granuloma" +"M31.3","Wegener's granulomatosis" +"M31.4","Aortic arch syndrome [Takayasu]" +"M31.5","Giant cell arteritis with polymyalgia rheumatica" +"M31.6","Other giant cell arteritis" +"M31.7","Microscopic polyangiitis" +"M31.8","Other specified necrotizing vasculopathies" +"M31.9","Necrotizing vasculopathy, unspecified" +"M32","Systemic lupus erythematosus" +"M32.0","Drug-induced systemic lupus erythematosus" +"M32.1","systemic lupus erythematosus with organ or system involvement" +"M32.8","Other forms of systemic lupus erythematosus" +"M32.9","Systemic lupus erythematosus, unspecified" +"M33","DERMATOPOLYMYOSITIS" +"M33.0","Juvenile dermatomyositis" +"M33.1","Other dermatomyositis" +"M33.2","Polymyositis" +"M33.9","Dermatopolymyositis, unspecified" +"M34","SYSTEMIC SCLEROSIS" +"M34.0","Progressive systemic sclerosis" +"M34.1","CR(E)ST syndrome" +"M34.2","Systemic sclerosis induced by drugs and chemicals" +"M34.8","Other forms of systemic sclerosis" +"M34.9","Systemic sclerosis, unspecified" +"M35","OTHER SYSTEMIC INVOLVEMENT OF CONNECTIVE TISSUE" +"M35.0","Sicca syndrome [Sjogren]" +"M35.1","Other overlap syndromes" +"M35.2","Behcet's disease" +"M35.3","Polymyalgia rheumatica" +"M35.4","Diffuse (eosinophilic) fasciitis" +"M35.5","Multifocal fibrosclerosis" +"M35.6","Relapsing panniculitis [Weber-Christian]" +"M35.7","Hypermobility syndrome" +"M35.8","Other specified systemic involvement of connective tissue" +"M35.9","Systemic involvement of connective tissue, unspecified" +"M36","Systemic disorders of connective tissue in diseases classified elsewhere" +"M36.0","Dermato(poly)myositis in neoplastic disease" +"M36.1","Arthropathy in neoplastic disease" +"M36.2","Haemophilic arthropathy" +"M36.3","Arthropathy in other blood disorders" +"M36.4","Arthropathy in hypersensitivity reactions classified elsewhere" +"M36.8","Systemic disorder of connective tissue in other diseases classified elsewhere" +"M40","KYPHOSIS AND LORDOSIS" +"M40.0","Postural kyphosis" +"M40.00","Postural kyphosis, multiple sites in spine" +"M40.01","Postural kyphosis, occipito-atlanto-axial region" +"M40.02","Postural kyphosis, cervical region" +"M40.03","Postural kyphosis, cervicothoracic region" +"M40.04","Postural kyphosis, thoracic region" +"M40.05","Postural kyphosis, thoracolumbar region" +"M40.06","Postural kyphosis, lumbar region" +"M40.07","Postural kyphosis, lumbosacral region" +"M40.08","Postural kyphosis, sacral and sacrococcygeal region" +"M40.09","Postural kyphosis, site unspecified" +"M40.1","Other secondary kyphosis" +"M40.10","Other secondary kyphosis, multiple sites in spine" +"M40.11","Other secondary kyphosis, occipito-atlanto-axial region" +"M40.12","Other secondary kyphosis, cervical region" +"M40.13","Other secondary kyphosis, cervicothoracic region" +"M40.14","Other secondary kyphosis, thoracic region" +"M40.15","Other secondary kyphosis, thoracolumbar region" +"M40.16","Other secondary kyphosis, lumbar region" +"M40.17","Other secondary kyphosis, lumbosacral region" +"M40.18","Other secondary kyphosis, sacral and sacrococcygeal region" +"M40.19","Other secondary kyphosis, site unspecified" +"M40.2","Other and unspecified kyphosis" +"M40.20","Other and unspecified kyphosis, multiple sites in spine" +"M40.21","Other and unspecified kyphosis, occipito-atlanto-axial region" +"M40.22","Other and unspecified kyphosis, cervical region" +"M40.23","Other and unspecified kyphosis, cervicothoracic region" +"M40.24","Other and unspecified kyphosis, thoracic region" +"M40.25","Other and unspecified kyphosis, thoracolumbar region" +"M40.26","Other and unspecified kyphosis, lumbar region" +"M40.27","Other and unspecified kyphosis, lumbosacral region" +"M40.28","Other and unspecified kyphosis, sacral and sacrococcygeal region" +"M40.29","Other and unspecified kyphosis, site unspecified" +"M40.3","Flatback syndrome" +"M40.30","Flatback syndrome, multiple sites in spine" +"M40.31","Flatback syndrome, occipito-atlanto-axial region" +"M40.32","Flatback syndrome, cervical region" +"M40.33","Flatback syndrome, cervicothoracic region" +"M40.34","Flatback syndrome, thoracic region" +"M40.35","Flatback syndrome, thoracolumbar region" +"M40.36","Flatback syndrome, lumbar region" +"M40.37","Flatback syndrome, lumbosacral region" +"M40.38","Flatback syndrome, sacral and sacrococcygeal region" +"M40.39","Flatback syndrome, site unspecified" +"M40.4","Other lordosis" +"M40.40","Other lordosis, multiple sites in spine" +"M40.41","Other lordosis, occipito-atlanto-axial region" +"M40.42","Other lordosis, cervical region" +"M40.43","Other lordosis, cervicothoracic region" +"M40.44","Other lordosis, thoracic region" +"M40.45","Other lordosis, thoracolumbar region" +"M40.46","Other lordosis, lumbar region" +"M40.47","Other lordosis, lumbosacral region" +"M40.48","Other lordosis, sacral and sacrococcygeal region" +"M40.49","Other lordosis, site unspecified" +"M40.5","Lordosis, unspecified" +"M40.50","Lordosis unspecified, multiple sites in spine" +"M40.51","Lordosis, unspecified, occipito-atlanto-axial region" +"M40.52","Lordosis, unspecified, cervical region" +"M40.53","Lordosis, unspecified, cervicothoracic region" +"M40.54","Lordosis, unspecified, thoracic region" +"M40.55","Lordosis, unspecified, thoracolumbar region" +"M40.56","Lordosis, unspecified, lumbar region" +"M40.57","Lordosis, unspecified, lumbosacral region" +"M40.58","Lordosis, unspecified, sacral and sacrococcygeal region" +"M40.59","Lordosis, unspecified, site unspecified" +"M41","SCOLIOSIS" +"M41.0","Infantile idiopathic scoliosis" +"M41.00","Infantile idiopathic scoliosis, multiple sites in spine" +"M41.01","Infantile idiopathic scoliosis, occipito-atlanto-axial region" +"M41.02","Infantile idiopathic scoliosis , cervical region" +"M41.03","Infantile idiopathic scoliosis, cervicothoracic region" +"M41.04","Infantile idiopathic scoliosis, thoracic region" +"M41.05","Infantile idiopathic scoliosis, thoracolumbar region" +"M41.06","Infantile idiopathic scoliosis, lumbar region" +"M41.07","Infantile idiopathic scoliosis, lumbosacral region" +"M41.08","Infantile idiopathic scoliosis, sacral and sacrococcygeal region" +"M41.09","Infantile idiopathic scoliosis, site unspecified" +"M41.1","Juvenile idiopathic scoliosis" +"M41.10","Juvenile idiopathic scoliosis, multiple sites in spine" +"M41.11","Juvenile idiopathic scoliosis, occipito-atlanto-axial region" +"M41.12","Juvenile idiopathic scoliosis, cervical region" +"M41.13","Juvenile idiopathic scoliosis, cervicothoracic region" +"M41.14","Juvenile idiopathic scoliosis, thoracic region" +"M41.15","Juvenile idiopathic scoliosis, thoracolumbar region" +"M41.16","Juvenile idiopathic scoliosis, lumbar region" +"M41.17","Juvenile idiopathic scoliosis, lumbosacral region" +"M41.18","Juvenile idiopathic scoliosis, sacral and sacrococcygeal region" +"M41.19","Juvenile idiopathic scoliosis, site unspecified" +"M41.2","Other idiopathic scoliosis" +"M41.20","Other idiopathic scoliosis, multiple sites in spine" +"M41.21","Other idiopathic scoliosis, occipito-atlanto-axial region" +"M41.22","Other idiopathic scoliosis, cervical region" +"M41.23","Other idiopathic scoliosis, cervicothoracic region" +"M41.24","Other idiopathic scoliosis, thoracic region" +"M41.25","Other idiopathic scoliosis, thoracolumbar region" +"M41.26","Other idiopathic scoliosis, lumbar region" +"M41.27","Other idiopathic scoliosis, lumbosacral region" +"M41.28","Other idiopathic scoliosis, sacral and sacrococcygeal region" +"M41.29","Other idiopathic scoliosis, site unspecified" +"M41.3","Thoracogenic scoliosis" +"M41.30","Thoracogenic scoliosis, multiple sites in spine" +"M41.31","Thoracogenic scoliosis, occipito-atlanto-axial region" +"M41.32","Thoracogenic scoliosis, cervical region" +"M41.33","Thoracogenic scoliosis, cervicothoracic region" +"M41.34","Thoracogenic scoliosis, thoracic region" +"M41.35","Thoracogenic scoliosis, thoracolumbar region" +"M41.36","Thoracogenic scoliosis, lumbar region" +"M41.37","Thoracogenic scoliosis, lumbosacral region" +"M41.38","Thoracogenic scoliosis, sacral and sacrococcygeal region" +"M41.39","Thoracogenic scoliosis, site unspecified" +"M41.4","Neuromuscular scoliosis" +"M41.40","Neuromuscular scoliosis, multiple sites in spine" +"M41.41","Neuromuscular scoliosis, occipito-atlanto-axial region" +"M41.42","Neuromuscular scoliosis, cervical region" +"M41.43","Neuromuscular scoliosis, cervicothoracic region" +"M41.44","Neuromuscular scoliosis, thoracic region" +"M41.45","Neuromuscular scoliosis, thoracolumbar region" +"M41.46","Neuromuscular scoliosis, lumbar region" +"M41.47","Neuromuscular scoliosis, lumbosacral region" +"M41.48","Neuromuscular scoliosis, sacral and sacrococcygeal region" +"M41.49","Neuromuscular scoliosis, site unspecified" +"M41.5","Other secondary scoliosis" +"M41.50","Other secondary scoliosis, multiple sites in spine" +"M41.51","Other secondary scoliosis, occipito-atlanto-axial region" +"M41.52","Other secondary scoliosis, cervical region" +"M41.53","Other secondary scoliosis, cervicothoracic region" +"M41.54","Other secondary scoliosis, thoracic region" +"M41.55","Other secondary scoliosis, thoracolumbar region" +"M41.56","Other secondary scoliosis, lumbar region" +"M41.57","Other secondary scoliosis, lumbosacral region" +"M41.58","Other secondary scoliosis, sacral and sacrococcygeal region" +"M41.59","Other secondary scoliosis, site unspecified" +"M41.8","Other forms of scoliosis" +"M41.80","Other forms of scoliosis, multiple sites in spine" +"M41.81","Other forms of scoliosis, occipito-atlanto-axial region" +"M41.82","Other forms of scoliosis, cervical region" +"M41.83","Other forms of scoliosis, cervicothoracic region" +"M41.84","Other forms of scoliosis, thoracic region" +"M41.85","Other forms of scoliosis, thoracolumbar region" +"M41.86","Other forms of scoliosis, lumbar region" +"M41.87","Other forms of scoliosis, lumbosacral region" +"M41.88","Other forms of scoliosis, sacral and sacrococcygeal region" +"M41.89","Other forms of scoliosis, site unspecified" +"M41.9","Scoliosis, unspecified" +"M41.90","Scoliosis, multiple sites in spine" +"M41.91","Scoliosis, unspecified, occipito-atlanto-axial region" +"M41.92","Scoliosis, unspecified, cervical region" +"M41.93","Scoliosis, unspecified, cervicothoracic region" +"M41.94","Scoliosis, unspecified, thoracic region" +"M41.95","Scoliosis, unspecified, thoracolumbar region" +"M41.96","Scoliosis, unspecified, lumbar region" +"M41.97","Scoliosis, unspecified, lumbosacral region" +"M41.98","Scoliosis, unspecified, sacral and sacrococcygeal region" +"M41.99","Scoliosis, unspecified, site unspecified" +"M42","SPINAL OSTEOCHONDROSIS" +"M42.0","Juvenile osteochondrosis of spine" +"M42.00","Juvenile osteochondrosis of spine, multiple sites in spine" +"M42.01","Juvenile osteochondrosis of spine, occipito-atlanto-axial region" +"M42.02","Juvenile osteochondrosis of spine, cervical region" +"M42.03","Juvenile osteochondrosis of spine, cervicothoracic region" +"M42.04","Juvenile osteochondrosis of spine, thoracic region" +"M42.05","Juvenile osteochondrosis of spine, thoracolumbar region" +"M42.06","Juvenile osteochondrosis of spine, lumbar region" +"M42.07","Juvenile osteochondrosis of spine, lumbosacral region" +"M42.08","Juvenile osteochondrosis of spine, sacral and sacrococcygeal region" +"M42.09","Juvenile osteochondrosis of spine, site unspecified" +"M42.1","Adult osteochondrosis of spine" +"M42.10","Adult osteochondrosis of spine, multiple sites in spine" +"M42.11","Adult osteochondrosis of spine, occipito-atlanto-axial region" +"M42.12","Adult osteochondrosis of spine, cervical region" +"M42.13","Adult osteochondrosis of spine, cervicothoracic region" +"M42.14","Adult osteochondrosis of spine, thoracic region" +"M42.15","Adult osteochondrosis of spine, thoracolumbar region" +"M42.16","Adult osteochondrosis of spine, lumbar region" +"M42.17","Adult osteochondrosis of spine, lumbosacral region" +"M42.18","Adult osteochondrosis of spine, sacral and sacrococcygeal region" +"M42.19","Adult osteochondrosis of spine, site unspecified" +"M42.9","Spinal osteochondrosis, unspecified" +"M42.90","Spinal osteochondrosis, unspecified, multiple sites in spine" +"M42.91","Spinal osteochondrosis, unspecified, occipito-atlanto-axial region" +"M42.92","Spinal osteochondrosis, unspecified, cervical region" +"M42.93","Spinal osteochondrosis, unspecified, cervicothoracic region" +"M42.94","Spinal osteochondrosis, unspecified, thoracic region" +"M42.95","Spinal osteochondrosis, unspecified, thoracolumbar region" +"M42.96","Spinal osteochondrosis, unspecified, lumbar region" +"M42.97","Spinal osteochondrosis, unspecified, lumbosacral region" +"M42.98","Spinal osteochondrosis, unspecified, sacral and sacrococcygeal region" +"M42.99","Spinal osteochondrosis, unspecified, site unspecified" +"M43","OTHER DEFORMING DORSOPATHIES" +"M43.0","Spondylolysis" +"M43.00","Spondylolysis, multiple sites in spine" +"M43.01","Spondylolysis, occipito-atlanto-axial region" +"M43.02","Spondylolysis, cervical region" +"M43.03","Spondylolysis, cervicothoracic region" +"M43.04","Spondylolysis, thoracic region" +"M43.05","Spondylolysis, thoracolumbar region" +"M43.06","Spondylolysis, lumbar region" +"M43.07","Spondylolysis, lumbosacral region" +"M43.08","Spondylolysis, sacral and sacrococcygeal region" +"M43.09","Spondylolysis, site unspecified" +"M43.1","Spondylolisthesis" +"M43.10","Spondylolisthesis, multiple sites in spine" +"M43.11","Spondylolisthesis, occipito-atlanto-axial region" +"M43.12","Spondylolisthesis, cervical region" +"M43.13","Spondylolisthesis, cervicothoracic region" +"M43.14","Spondylolisthesis, thoracic region" +"M43.15","Spondylolisthesis, thoracolumbar region" +"M43.16","Spondylolisthesis, lumbar region" +"M43.17","Spondylolisthesis, lumbosacral region" +"M43.18","Spondylolisthesis, sacral and sacrococcygeal region" +"M43.19","Spondylolisthesis, site unspecified" +"M43.2","Other fusion of spine" +"M43.20","Other fusion of spine, multiple sites in spine" +"M43.21","Other fusion of spine, occipito-atlanto-axial region" +"M43.22","Other fusion of spine, cervical region" +"M43.23","Other fusion of spine, cervicothoracic region" +"M43.24","Other fusion of spine, thoracic region" +"M43.25","Other fusion of spine, thoracolumbar region" +"M43.26","Other fusion of spine, lumbar region" +"M43.27","Other fusion of spine, lumbosacral region" +"M43.28","Other fusion of spine, sacral and sacrococcygeal region" +"M43.29","Other fusion of spine, site unspecified" +"M43.3","Recurrent atlantoaxial subluxation with myelopathy" +"M43.30","Recurrent atlantoaxial subluxation with myelopathy, multiple sites in spine" +"M43.31","Recurrent atlantoaxial subluxation with myelopathy, occipito-atlanto-axial region" +"M43.32","Recurrent atlantoaxial subluxation with myelopathy, cervical region" +"M43.33","Recurrent atlantoaxial subluxation with myelopathy, cervicothoracic region" +"M43.34","Recurrent atlantoaxial subluxation with myelopathy, thoracic region" +"M43.35","Recurrent atlantoaxial subluxation with myelopathy, thoracolumbar region" +"M43.36","Recurrent atlantoaxial subluxation with myelopathy, lumbar region" +"M43.37","Recurrent atlantoaxial subluxation with myelopathy, lumbosacral region" +"M43.38","Recurrent atlantoaxial subluxation with myelopathy, sacral and sacrococcygeal region" +"M43.39","Recurrent atlantoaxial subluxation with myelopathy, site unspecified" +"M43.4","Other recurrent atlantoaxial subluxation" +"M43.40","Other recurrent atlantoaxial subluxation, multiple sites in spine" +"M43.41","Other recurrent atlantoaxial subluxation, occipito-atlanto-axial region" +"M43.42","Other recurrent atlantoaxial subluxation, cervical region" +"M43.43","Other recurrent atlantoaxial subluxation, cervicothoracic region" +"M43.44","Other recurrent atlantoaxial subluxation, thoracic region" +"M43.45","Other recurrent atlantoaxial subluxation, thoracolumbar region" +"M43.46","Other recurrent atlantoaxial subluxation, lumbar region" +"M43.47","Other recurrent atlantoaxial subluxation, lumbosacral region" +"M43.48","Other recurrent atlantoaxial subluxation, sacral and sacrococcygeal region" +"M43.49","Other recurrent atlantoaxial subluxation, site unspecified" +"M43.5","Other recurrent vertebral subluxation" +"M43.50","Other recurrent vertebral subluxation, multiple sites in spine" +"M43.51","Other recurrent vertebral subluxation, occipito-atlanto-axial region" +"M43.52","Other recurrent vertebral subluxation, cervical region" +"M43.53","Other recurrent vertebral subluxation, cervicothoracic region" +"M43.54","Other recurrent vertebral subluxation, thoracic region" +"M43.55","Other recurrent vertebral subluxation, thoracolumar region" +"M43.56","Other recurrent vertebral subluxation, lumbar region" +"M43.57","Other recurrent vertebral subluxation, lumbosacral region" +"M43.58","Other recurrent vertebral subluxation, sacral and sacrococcygeal region" +"M43.59","Other recurrent vertebral subluxation, site unspecified" +"M43.6","Torticollis" +"M43.60","Torticollis, multiple sites in spine" +"M43.61","Torticollis, occipito-atlanto-axial region" +"M43.62","Torticollis, cervical region" +"M43.63","Torticollis, cervicothoracic region" +"M43.64","Torticollis, thoracic region" +"M43.65","Torticollis, thoracolumar region" +"M43.66","Torticollis, lumbar region" +"M43.67","Torticollis, lumbosacral region" +"M43.68","Torticollis, sacral and sacrococcygeal region" +"M43.69","Torticollis, site unspecified" +"M43.8","Other specified deforming dorsopathies" +"M43.80","Other specified deforming dorsopathies, multiple sites" +"M43.81","Other specified deforming dorsopathies, occipito and atlanto and axial region" +"M43.82","Other specified deforming dorsopathies, cervical region" +"M43.83","Other specified deforming dorsopathies, cervicothoracic region" +"M43.84","Other specified deforming dorsopathies, thoracic region" +"M43.85","Other specified deforming dorsopathies, thoracolumbar region" +"M43.86","Other specified deforming dorsopathies, lumbar region" +"M43.87","Other specified deforming dorsopathies, lumbosacral region" +"M43.88","Other specified deforming dorsopathies, sacral and sacrococcygeal region" +"M43.89","Other specified deforming dorsopathies, site unspecified" +"M43.9","Deforming dorsopathy, unspecified" +"M43.90","Deforming dorsopathy, unspecified, multiple sites" +"M43.91","Deforming dorsopathy, unspecified, occipito-atlanto-axial region" +"M43.92","Deforming dorsopathy, unspecified, cervical region" +"M43.93","Deforming dorsopathy, unspecified, cervicothoracic region" +"M43.94","Deforming dorsopathy, unspecified, thoracic region" +"M43.95","Deforming dorsopathy, unspecified, thoracolumbar region" +"M43.96","Deforming dorsopathy, unspecified, lumbar region" +"M43.97","Deforming dorsopathy, unspecified, lumbosacral region" +"M43.98","Deforming dorsopathy, unspecified, sacral and sacrococcygeal region" +"M43.99","Deforming dorsopathy, unspecified, site unspecified" +"M45","ANKYLOSING SPONDYLITIS" +"M45.0","Ankylosing spondylitis, multiple sites in spine" +"M45.1","Ankylosing spondylitis, occipito-atlanto-axial region" +"M45.2","Ankylosing spondylitis, cervical region" +"M45.3","Ankylosing spondylitis, cervicothoracic region" +"M45.4","Ankylosing spondylitis, thoracic region" +"M45.5","Ankylosing spondylitis, thoracolumbar region" +"M45.6","Ankylosing spondylitis, lumbar region" +"M45.7","Ankylosing spondylitis, lumbosacral region" +"M45.8","Ankylosing spondylitis, sacral and sacrococcygeal region" +"M45.9","Ankylosing spondylitis, site unspecified" +"M46","Spinal enthesopathy" +"M46.0","Spinal enthesopathy" +"M46.00","Spinal enthesopathy, multiple sites" +"M46.01","Spinal enthesopathy, occipito-atlanto-axial region" +"M46.02","Spinal enthesopathy, cervical region" +"M46.03","Spinal enthesopathy, cervicothoracic region" +"M46.04","Spinal enthesopathy, thoracic region" +"M46.05","Spinal enthesopathy, thoracolumbar region" +"M46.06","Spinal enthesopathy, lumbar region" +"M46.07","Spinal enthesopathy, lumbosacral region" +"M46.08","Spinal enthesopathy, sacral and sacrococcygeal region" +"M46.09","Spinal enthesopathy, site unspecified" +"M46.1","Sacroiliitis, not elsewhere classified" +"M46.10","Sacroiliitis, not elsewhere classified, multiple sites" +"M46.11","Sacroiliitis, not elsewhere classified, occipito-atlanto-axial region" +"M46.12","Sacroiliitis, not elsewhere classified, cervical region" +"M46.13","Sacroiliitis, not elsewhere classified, cervicothoracic region" +"M46.14","Sacroiliitis, not elsewhere classified, thoracic region" +"M46.15","Sacroiliitis, not elsewhere classified, thoracolumbar region" +"M46.16","Sacroiliitis, not elsewhere classified, lumbar region" +"M46.17","Sacroiliitis, not elsewhere classified, lumbosacral region" +"M46.18","Sacroiliitis, not elsewhere classified, sacral and sacrococcygeal region" +"M46.19","Sacroiliitis, not elsewhere classified, site unspecified" +"M46.2","Osteomyelitis of vertebra" +"M46.20","Osteomyelitis of vertebra, multiple sites" +"M46.21","Osteomyelitis of vertebra, occipito-atlanto-axial region" +"M46.22","Osteomyelitis of vertebra, cervical region" +"M46.23","Osteomyelitis of vertebra, cervicothoracic region" +"M46.24","Osteomyelitis of vertebra, thoracic region" +"M46.25","Osteomyelitis of vertebra, thoracolumbar region" +"M46.26","Osteomyelitis of vertebra, lumbar region" +"M46.27","Osteomyelitis of vertebra, lumbosacral region" +"M46.28","Osteomyelitis of vertebra, sacral and sacrococcygeal region" +"M46.29","Osteomyelitis of vertebra, site unspecified" +"M46.3","Infection of intervertebral disc (pyogenic)" +"M46.30","Infection of intervertebral disc (pyogenic), multiple sites" +"M46.31","Infection of intervertebral disc (pyogenic), occipito-atlanto-axial region" +"M46.32","Infection of intervertebral disc (pyogenic), cervical region" +"M46.33","Infection of intervertebral disc (pyogenic), cervicothoracic region" +"M46.34","Infection of intervertebral disc (pyogenic), thoracic region" +"M46.35","Infection of intervertebral disc (pyogenic), thoracolumbar region" +"M46.36","Infection of intervertebral disc (pyogenic), lumbar region" +"M46.37","Infection of intervertebral disc (pyogenic), lumbosacral region" +"M46.38","Infection of intervertebral disc (pyogenic), sacral and sacrococcygeal region" +"M46.39","Infection of intervertebral disc (pyogenic), site unspecified" +"M46.4","Discitis, unspecified" +"M46.40","Discitis, unspecified, multiple sites" +"M46.41","Discitis, unspecified, occipito-atlanto-axial region" +"M46.42","Discitis, unspecified, cervical region" +"M46.43","Discitis, unspecified, cervicothoracic region" +"M46.44","Discitis, unspecified, thoracic region" +"M46.45","Discitis, unspecified, thoracolumbar region" +"M46.46","Discitis, unspecified, lumbar region" +"M46.47","Discitis, unspecified, lumbosacral region" +"M46.48","Discitis, unspecified, sacral and sacrococcygeal region" +"M46.49","Discitis, unspecified, site unspecified" +"M46.5","Other infective spondylopathies" +"M46.50","Other infective spondylopathies, multiple sites" +"M46.51","Other infective spondylopathies, occipito-atlanto-axial region" +"M46.52","Other infective spondylopathies, cervical region" +"M46.53","Other infective spondylopathies, cervicothoracic region" +"M46.54","Other infective spondylopathies, thoracic region" +"M46.55","Other infective spondylopathies, thoracolumbar region" +"M46.56","Other infective spondylopathies, lumbar region" +"M46.57","Other infective spondylopathies, lumbosacral region" +"M46.58","Other infective spondylopathies, sacral and sacrococcygeal region" +"M46.59","Other infective spondylopathies, site unspecified" +"M46.8","Other specified inflammatory spondylopathies" +"M46.80","Other specified inflammatory spondylopathies, multiple sites" +"M46.81","Other specified inflammatory spondylopathies, occipito-atlanto-axial region" +"M46.82","Other specified inflammatory spondylopathies, cervical region" +"M46.83","Other specified inflammatory spondylopathies, cervicothoracic region" +"M46.84","Other specified inflammatory spondylopathies, thoracic region" +"M46.85","Other specified inflammatory spondylopathies, thoracolumbar region" +"M46.86","Other specified inflammatory spondylopathies, lumbar region" +"M46.87","Other specified inflammatory spondylopathies, lumbosacral region" +"M46.88","Other specified inflammatory spondylopathies, sacral and sacrococcygeal region" +"M46.89","Other specified inflammatory spondylopathies, site unspecified" +"M46.9","Inflammatory spondylopathy, unspecified" +"M46.90","Inflammatory spondylopathy, unspecified, multiple sites" +"M46.91","Inflammatory spondylopathy, unspecified, occipito-atlanto-axial region" +"M46.92","Inflammatory spondylopathy, unspecified, cervical region" +"M46.93","Inflammatory spondylopathy, unspecified, cervicothoracic region" +"M46.94","Inflammatory spondylopathy, unspecified, thoracic region" +"M46.95","Inflammatory spondylopathy, unspecified, thoracolumbar region" +"M46.96","Inflammatory spondylopathy, unspecified, lumbar region" +"M46.97","Inflammatory spondylopathy, unspecified, lumbosacral region" +"M46.98","Inflammatory spondylopathy, unspecified, sacral and sacrococcygeal region" +"M46.99","Inflammatory spondylopathy, unspecified, site unspecified" +"M47","SPONDYLOSIS" +"M47.0","Ant spinal and vertebral artery compression syndromes, multiple sites" +"M47.00","Anterior spinal and vertebral artery compression syndromes, multiple sites" +"M47.01","Anterior spinal and vertebral artery compression syndromes, occipito-atlanto-axial region" +"M47.02","Anterior spinal and vertebral artery compression syndromes, cervical region" +"M47.03","Anterior spinal and vertebral artery compression syndromes, cervicothoracic region" +"M47.04","Anterior spinal and vertebral artery compression syndromes, thoracic region" +"M47.05","Anterior spinal and vertebral artery compression syndromes, thoracolumbar region" +"M47.06","Anterior spinal and vertebral artery compression syndromes, lumbar region" +"M47.07","Anterior spinal and vertebral artery compression syndromes, lumbosacral region" +"M47.08","Anterior spinal and vertebral artery compression syndromes, sacral and sacrococcygeal region" +"M47.09","Anterior spinal and vertebral artery compression syndromes, site unspecified" +"M47.1","Ant spinal and vertebral artery compression syndromes, occipito-atlanto-axial region" +"M47.10","Other spondylosis with myelopathy, multiple sites" +"M47.11","Other spondylosis with myelopathy, occipito-atlanto-axial region" +"M47.12","Other spondylosis with myelopathy, cervical region" +"M47.13","Other spondylosis with myelopathy, cervicothoracic region" +"M47.14","Other spondylosis with myelopathy, thoracic region" +"M47.15","Other spondylosis with myelopathy, thoracolumbar region" +"M47.16","Other spondylosis with myelopathy, lumbar region" +"M47.17","Other spondylosis with myelopathy, lumbosacral region" +"M47.18","Other spondylosis with myelopathy, sacral and sacrococcygeal region" +"M47.19","Other spondylosis with myelopathy, site unspecified" +"M47.2","Other spondylosis with radiculopathy" +"M47.20","Other spondylosis with radiculopathy, multiple sites" +"M47.21","Other spondylosis with radiculopathy, occipito-atlanto-axial region" +"M47.22","Other spondylosis with radiculopathy, cervical region" +"M47.23","Other spondylosis with radiculopathy, cervicothoracic region" +"M47.24","Other spondylosis with radiculopathy, thoracic region" +"M47.25","Other spondylosis with radiculopathy, thoracolumbar region" +"M47.26","Other spondylosis with radiculopathy, lumbar region" +"M47.27","Other spondylosis with radiculopathy, lumbosacral region" +"M47.28","Other spondylosis with radiculopathy, sacral and sacrococcygeal region" +"M47.29","Other spondylosis with radiculopathy, site unspecified" +"M47.3","Ant spinal and vertebral artery compression syndromes, cervicothoracic region" +"M47.4","Ant spinal and vertebral artery compression syndromes, thoracic region" +"M47.5","Ant spinal and vertebral artery compression syndromes, thoracolumbar region" +"M47.6","Ant spinal and vertebral artery compression syndromes, lumbar region" +"M47.7","Ant spinal and vertebral artery compression syndromes, lumbosacral region" +"M47.8","Ant spinal and vertebral artery compression syndromes, sacral and sacrococcygeal region" +"M47.80","Other spondylosis, multiple sites" +"M47.81","Other spondylosis, occipito-atlanto-axial region" +"M47.82","Other spondylosis, cervical region" +"M47.83","Other spondylosis, cervicothoracic region" +"M47.84","Other spondylosis, thoracic region" +"M47.85","Other spondylosis, thoracolumbar region" +"M47.86","Other spondylosis, lumbar region" +"M47.87","Other spondylosis, lumbosacral region" +"M47.88","Other spondylosis, sacral and sacrococcygeal region" +"M47.89","Other spondylosis, site unspecified" +"M47.9","Ant spinal and vertebral artery compression syndromes, site unspecified" +"M47.90","Spondylosis, unspecified, multiple sites" +"M47.91","Spondylosis, unspecified, occipito-atlanto-axial region" +"M47.92","Spondylosis, unspecified, cervical region" +"M47.93","Spondylosis, unspecified, cervicothoracic region" +"M47.94","Spondylosis, unspecified, thoracic region" +"M47.95","Spondylosis, unspecified, thoracolumbar region" +"M47.96","Spondylosis, unspecified, lumbar region" +"M47.97","Spondylosis, unspecified, lumbosacral region" +"M47.98","Spondylosis, unspecified, sacral and sacrococcygeal region" +"M47.99","Spondylosis, unspecified, site unspecified" +"M48","OTHER SPONDYLOPATHIES" +"M48.0","Spinal stenosis" +"M48.00","Spinal stenosis, multiple sites" +"M48.01","Spinal stenosis, occipito-atlanto-axial region" +"M48.02","Spinal stenosis, cervical region" +"M48.03","Spinal stenosis, cervicothoracic region" +"M48.04","Spinal stenosis, thoracic region" +"M48.05","Spinal stenosis, thoracolumbar region" +"M48.06","Spinal stenosis, lumbar region" +"M48.07","Spinal stenosis, lumbosacral region" +"M48.08","Spinal stenosis, sacral and sacrococcygeal region" +"M48.09","Spinal stenosis, site unspecified" +"M48.1","Ankylosing hyperostosis [Forestier]" +"M48.10","Ankylosing hyperostosis [forestier], multiple sites" +"M48.11","Ankylosing hyperostosis [forestier], occipito-atlanto-axial region" +"M48.12","Ankylosing hyperostosis [forestier], cervical region" +"M48.13","Ankylosing hyperostosis [forestier], cervicothoracic region" +"M48.14","Ankylosing hyperostosis [forestier], thoracic region" +"M48.15","Ankylosing hyperostosis [forestier], thoracolumbar region" +"M48.16","Ankylosing hyperostosis [forestier], lumbar region" +"M48.17","Ankylosing hyperostosis [forestier], lumbosacral region" +"M48.18","Ankylosing hyperostosis [forestier], sacral and sacrococcygeal region" +"M48.19","Ankylosing hyperostosis [forestier], site unspecified" +"M48.2","Kissing spine" +"M48.20","Kissing spine, multiple sites" +"M48.21","Kissing spine, occipito-atlanto-axial region" +"M48.22","Kissing spine, cervical region" +"M48.23","Kissing spine, cervicothoracic region" +"M48.24","Kissing spine, thoracic region" +"M48.25","Kissing spine, thoracolumbar region" +"M48.26","Kissing spine, lumbar region" +"M48.27","Kissing spine, lumbosacral region" +"M48.28","Kissing spine, sacral and sacrococcygeal region" +"M48.29","Kissing spine, site unspecified" +"M48.3","Traumatic spondylopathy" +"M48.30","Traumatic spondylopathy, multiple sites" +"M48.31","Traumatic spondylopathy, occipito-atlanto-axial region" +"M48.32","Traumatic spondylopathy, cervical region" +"M48.33","Traumatic spondylopathy, cervicothoracic region" +"M48.34","Traumatic spondylopathy, thoracic region" +"M48.35","Traumatic spondylopathy, thoracolumbar region" +"M48.36","Traumatic spondylopathy, lumbar region" +"M48.37","Traumatic spondylopathy, lumbosacral region" +"M48.38","Traumatic spondylopathy, sacral and sacrococcygeal region" +"M48.39","Traumatic spondylopathy, site unspecified" +"M48.4","Fatigue fracture of vertebra" +"M48.40","Fatigue fracture of vertebra, multiple sites" +"M48.41","Fatigue fracture of vertebra, occipito-atlanto-axial region" +"M48.42","Fatigue fracture of vertebra, cervical region" +"M48.43","Fatigue fracture of vertebra, cervicothoracic region" +"M48.44","Fatigue fracture of vertebra, thoracic region" +"M48.45","Fatigue fracture of vertebra, thoracolumbar region" +"M48.46","Fatigue fracture of vertebra, lumbar region" +"M48.47","Fatigue fracture of vertebra, lumbosacral region" +"M48.48","Fatigue fracture of vertebra, sacral and sacrococcygeal region" +"M48.49","Fatigue fracture of vertebra, site unspecified" +"M48.5","Collapsed vertebra, not elsewhere classified" +"M48.50","Collapsed vertebra, not elsewhere classified, multiple sites" +"M48.51","Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region" +"M48.52","Collapsed vertebra, not elsewhere classified, cervical region" +"M48.53","Collapsed vertebra, not elsewhere classified, cervicothoracic region" +"M48.54","Collapsed vertebra, not elsewhere classified, thoracic region" +"M48.55","Collapsed vertebra, not elsewhere classified, thoracolumbar region" +"M48.56","Collapsed vertebra, not elsewhere classified, lumbar region" +"M48.57","Collapsed vertebra, not elsewhere classified, lumbosacral region" +"M48.58","Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region" +"M48.59","Collapsed vertebra, not elsewhere classified, site unspecified" +"M48.8","Other specified spondylopathies" +"M48.80","Other specified spondylopathies, multiple sites" +"M48.81","Other specified spondylopathies, occipito-atlanto-axial region" +"M48.82","Other specified spondylopathies, cervical region" +"M48.83","Other specified spondylopathies, cervicothoracic region" +"M48.84","Other specified spondylopathies, thoracic region" +"M48.85","Other specified spondylopathies, thoracolumbar region" +"M48.86","Other specified spondylopathies, lumbar region" +"M48.87","Other specified spondylopathies, lumbosacral region" +"M48.88","Other specified spondylopathies, sacral and sacrococcygeal region" +"M48.89","Other specified spondylopathies, site unspecified" +"M48.9","Spondylopathy, unspecified" +"M48.90","Spondylopathy, unspecified, multiple sites" +"M48.91","Spondylopathy, unspecified, occipito-atlanto-axial region" +"M48.92","Spondylopathy, unspecified, cervical region" +"M48.93","Spondylopathy, unspecified, cervicothoracic region" +"M48.94","Spondylopathy, unspecified, thoracic region" +"M48.95","Spondylopathy, unspecified, thoracolumbar region" +"M48.96","Spondylopathy, unspecified, lumbar region" +"M48.97","Spondylopathy, unspecified, lumbosacral region" +"M48.98","Spondylopathy, unspecified, sacral and sacrococcygeal region" +"M48.99","Spondylopathy, unspecified, site unspecified" +"M49","SPONDYLOPATHIES IN DISEASES CLASSIFIED ELSEWHERE" +"M49.0","Tuberculosis of spine" +"M49.00","Tuberculosis of spine, multiple sites" +"M49.01","Tuberculosis of spine, occipito-atlanto-axial region" +"M49.02","Tuberculosis of spine, cervical region" +"M49.03","Tuberculosis of spine, cervicothoracic region" +"M49.04","Tuberculosis of spine, thoracic region" +"M49.05","Tuberculosis of spine, thoracolumbar region" +"M49.06","Tuberculosis of spine, lumbar region" +"M49.07","Tuberculosis of spine, lumbosacral region" +"M49.08","Tuberculosis of spine, sacral and sacrococcygeal region" +"M49.09","Tuberculosis of spine, site unspecified" +"M49.1","Brucella spondylitis" +"M49.10","Brucella spondylitis, multiple sites" +"M49.11","Brucella spondylitis, occipito-atlanto-axial region" +"M49.12","Brucella spondylitis, cervical region" +"M49.13","Brucella spondylitis, cervicothoracic region" +"M49.14","Brucella spondylitis, thoracic region" +"M49.15","Brucella spondylitis, thoracolumbar region" +"M49.16","Brucella spondylitis, lumbar region" +"M49.17","Brucella spondylitis, lumbosacral region" +"M49.18","Brucella spondylitis, sacral and sacrococcygeal region" +"M49.19","Brucella spondylitis, site unspecified" +"M49.2","Enterobacterial spondylitis" +"M49.20","Enterobacterial spondylitis, multiple sites" +"M49.21","Enterobacterial spondylitis, occipito-atlanto-axial region" +"M49.22","Enterobacterial spondylitis, cervical region" +"M49.23","Enterobacterial spondylitis, cervicothoracic region" +"M49.24","Enterobacterial spondylitis, thoracic region" +"M49.25","Enterobacterial spondylitis, thoracolumbar region" +"M49.26","Enterobacterial spondylitis, lumbar region" +"M49.27","Enterobacterial spondylitis, lumbosacral region" +"M49.28","Enterobacterial spondylitis, sacral and sacrococcygeal region" +"M49.29","Enterobacterial spondylitis, site unspecified" +"M49.3","Spondylopathy in other infectious and parasitic disease classified elsewhere" +"M49.30","Spondylopathy in other infectious and parasitic disease, multiple sites" +"M49.31","Spondylopathy in other infectious and parasitic disease, occipito-atlanto-axial region" +"M49.32","Spondylopathy in other infectious and parasitic disease, cervical region" +"M49.33","Spondylopathy in other infectious and parasitic disease, cervicothoracic region" +"M49.34","Spondylopathy in other infectious and parasitic disease, thoracic region" +"M49.35","Spondylopathy in other infectious and parasitic disease, thoracolumbar region" +"M49.36","Spondylopathy in other infectious and parasitic disease, lumbar region" +"M49.37","Spondylopathy in other infectious and parasitic disease, lumbosacral region" +"M49.38","Spondylopathy in other infectious and parasitic disease, sacral and sacrococcygeal region" +"M49.39","Spondylopathy in other infectious and parasitic disease, site unspecified" +"M49.4","Neuropathic spondylopathy" +"M49.40","Neuropathic spondylopathy, multiple sites" +"M49.41","Neuropathic spondylopathy, occipito-atlanto-axial region" +"M49.42","Neuropathic spondylopathy, cervical region" +"M49.43","Neuropathic spondylopathy, cervicothoracic region" +"M49.44","Neuropathic spondylopathy, thoracic region" +"M49.45","Neuropathic spondylopathy, thoracolumbar region" +"M49.46","Neuropathic spondylopathy, lumbar region" +"M49.47","Neuropathic spondylopathy, lumbosacral region" +"M49.48","Neuropathic spondylopathy, sacral and sacrococcygeal region" +"M49.49","Neuropathic spondylopathy, site unspecified" +"M49.5","Collapsed vertebra in diseases classified elsewhere" +"M49.50","Collapsed vertebra in diseases classified elsewhere, multiple sites" +"M49.51","Collapsed vertebra in diseases classified elsewhere, occipito-atlanto-axial region" +"M49.52","Collapsed vertebra in diseases classified elsewhere, cervical region" +"M49.53","Collapsed vertebra in diseases classified elsewhere, cervicothoracic region" +"M49.54","Collapsed vertebra in diseases classified elsewhere, thoracic region" +"M49.55","Collapsed vertebra in diseases classified elsewhere, thoracolumbar region" +"M49.56","Collapsed vertebra in diseases classified elsewhere, lumbar region" +"M49.57","Collapsed vertebra in diseases classified elsewhere, lumbosacral region" +"M49.58","Collapsed vertebra in diseases classified elsewhere, sacral and sacrococcygeal region" +"M49.59","Collapsed vertebra in diseases classified elsewhere, site unspecified" +"M49.8","Spondylopathy in other diseases classified elsewhere" +"M49.80","Spondylopathy in other diseases classified elsewhere, multiple sites" +"M49.81","Spondylopathy in other diseases classified elsewhere, occipito-atlanto-axial region" +"M49.82","Spondylopathy in other diseases classified elsewhere, cervical region" +"M49.83","Spondylopathy in other diseases classified elsewhere, cervicothoracic region" +"M49.84","Spondylopathy in other diseases classified elsewhere, thoracic region" +"M49.85","Spondylopathy in other diseases classified elsewhere, thoracolumbar region" +"M49.86","Spondylopathy in other diseases classified elsewhere, lumbar region" +"M49.87","Spondylopathy in other diseases classified elsewhere, lumbosacral region" +"M49.88","Spondylopathy in other diseases classified elsewhere, sacral and sacrococcygeal region" +"M49.89","Spondylopathy in other diseases classified elsewhere, site unspecified" +"M50","Cervical disc disorders" +"M50.0","Cervical disc disorder with myelopathy" +"M50.1","Cervical disc disorder with radiculopathy" +"M50.2","Other cervical disc displacement" +"M50.3","Other cervical disc degeneration" +"M50.8","Other cervical disc disorders" +"M50.9","Cervical disc disorder, unspecified" +"M51","OTHER INTERVERTEBRAL DISC DISORDERS" +"M51.0","Lumbar and other intervertebral disc disorder with mylopathy" +"M51.1","Lumbar and other intervertebral disc disorders with radiculopathy" +"M51.2","Other specified intervertebral disc displacement" +"M51.3","Other specified intervertebral disc degeneration" +"M51.4","Schmorl's nodes" +"M51.8","Other specified intervertebral disc disorders" +"M51.9","Intervertebral disc disorder, unspecified" +"M53","OTHER DORSOPATHIES, NOT ELSEWHERE CLASSIFIED" +"M53.0","Cervicocranial syndrome" +"M53.00","Cervicocranial syndrome, multiple sites" +"M53.01","Cervicocranial syndrome, occipito-atlanto-axial region" +"M53.02","Cervicocranial syndrome, cervical region" +"M53.03","Cervicocranial syndrome, cervicothoracic region" +"M53.04","Cervicocranial syndrome, thoracic region" +"M53.05","Cervicocranial syndrome, thoracolumbar region" +"M53.06","Cervicocranial syndrome, lumbar region" +"M53.07","Cervicocranial syndrome, lumbosacral region" +"M53.08","Cervicocranial syndrome, sacral and sacrococcygeal region" +"M53.09","Cervicocranial syndrome, site unspecified" +"M53.1","Cervicobrachial syndrome" +"M53.10","Cervicobrachial syndrome, multiple sites" +"M53.11","Cervicobrachial syndrome, occipito-atlanto-axial region" +"M53.12","Cervicobrachial syndrome, cervical region" +"M53.13","Cervicobrachial syndrome, cervicothoracic region" +"M53.14","Cervicobrachial syndrome, thoracic region" +"M53.15","Cervicobrachial syndrome, thoracolumbar region" +"M53.16","Cervicobrachial syndrome, lumbar region" +"M53.17","Cervicobrachial syndrome, lumbosacral region" +"M53.18","Cervicobrachial syndrome, sacral and sacrococcygeal region" +"M53.19","Cervicobrachial syndrome, site unspecified" +"M53.2","Spinal instabilities" +"M53.20","Spinal instabilities, multiple sites" +"M53.21","Spinal instabilities, occipito-atlanto-axial region" +"M53.22","Spinal instabilities, cervical region" +"M53.23","Spinal instabilities, cervicothoracic region" +"M53.24","Spinal instabilities, thoracic region" +"M53.25","Spinal instabilities, thoracolumbar region" +"M53.26","Spinal instabilities, lumbar region" +"M53.27","Spinal instabilities, lumbosacral region" +"M53.28","Spinal instabilities, sacral and sacrococcygeal region" +"M53.29","Spinal instabilities, site unspecified" +"M53.3","Sacrococcygeal disorders, not elsewhere classified" +"M53.30","Sacrococcygeal disorders, not elsewhere classified, multiple sites" +"M53.31","Sacrococcygeal disorders, not elsewhere classified, occipito-atlanto-axial region" +"M53.32","Sacrococcygeal disorders, not elsewhere classified, cervical region" +"M53.33","Sacrococcygeal disorders, not elsewhere classified, cervicothoracic region" +"M53.34","Sacrococcygeal disorders, not elsewhere classified, thoracic region" +"M53.35","Sacrococcygeal disorders, not elsewhere classified, thoracolumbar region" +"M53.36","Sacrococcygeal disorders, not elsewhere classified, lumbosacral region" +"M53.37","Sacrococcygeal disorders, not elsewhere classified, sacral and sacrococcygeal region" +"M53.38","Sacrococcygeal disorders, not elsewhere classified, sacral and sacrococcygeal region" +"M53.39","Sacrococcygeal disorders, not elsewhere classified, site unspecified" +"M53.8","Other specified dorsopathies" +"M53.80","Other specified dorsopathies, multiple sites" +"M53.81","Other specified dorsopathies, occipito-atlanto-axial region" +"M53.82","Other specified dorsopathies, cervical region" +"M53.83","Other specified dorsopathies, cervicothoracic region" +"M53.84","Other specified dorsopathies, thoracic region" +"M53.85","Other specified dorsopathies, thoracolumbar region" +"M53.86","Other specified dorsopathies, lumbar region" +"M53.87","Other specified dorsopathies, lumbosacral region" +"M53.88","Other specified dorsopathies, sacral and sacrococcygeal region" +"M53.89","Other specified dorsopathies, site unspecified" +"M53.9","Dorsopathy, unspecified" +"M53.90","Dorsopathy, unspecified, multiple sites" +"M53.91","Dorsopathy, unspecified, occipito-atlanto-axial region" +"M53.92","Dorsopathy, unspecified, cervical region" +"M53.93","Dorsopathy, unspecified, cervicothoracic region" +"M53.94","Dorsopathy, unspecified, thoracic region" +"M53.95","Dorsopathy, unspecified, thoracolumbar region" +"M53.96","Dorsopathy, unspecified, lumbar region" +"M53.97","Dorsopathy, unspecified, lumbosacral region" +"M53.98","Dorsopathy, unspecified, sacral and sacrococcygeal region" +"M53.99","Dorsopathy, unspecified, site unspecified" +"M54","DORSALGIA" +"M54.0","Panniculitis affecting regions of neck and back" +"M54.00","Panniculitis affecting regions of neck and back, multiple sites" +"M54.01","Panniculitis affecting regions of neck and back, occipito-atlanto-axial region" +"M54.02","Panniculitis affecting regions of neck and back, cervical region" +"M54.03","Panniculitis affecting regions of neck and back, cervicothoracic region" +"M54.04","Panniculitis affecting regions of neck and back, thoracic region" +"M54.05","Panniculitis affecting regions of neck and back, thoracolumbar region" +"M54.06","Panniculitis affecting regions of neck and back, lumbar region" +"M54.07","Panniculitis affecting regions of neck and back, lumbosacral region" +"M54.08","Panniculitis affecting regions of neck and back, sacral and sacrococcygeal region" +"M54.09","Panniculitis affecting regions of neck and back, site unspecified" +"M54.1","Radiculopathy" +"M54.10","Radiculopathy, multiple sites" +"M54.11","Radiculopathy, occipito-atlanto-axial region" +"M54.12","Radiculopathy, cervical region" +"M54.13","Radiculopathy, cervicothoracic region" +"M54.14","Radiculopathy, thoracic region" +"M54.15","Radiculopathy, thoracolumbar region" +"M54.16","Radiculopathy, lumbar region" +"M54.17","Radiculopathy, lumbosacral region" +"M54.18","Radiculopathy, sacral and sacrococcygeal region" +"M54.19","Radiculopathy, site unspecified" +"M54.2","Cervicalgia" +"M54.20","Cervicalgia, multiple sites" +"M54.21","Cervicalgia, occipito-atlanto-axial region" +"M54.22","Cervicalgia, cervical region" +"M54.23","Cervicalgia, cervicothoracic region" +"M54.24","Cervicalgia, thoracic region" +"M54.25","Cervicalgia, thoracolumbar region" +"M54.26","Cervicalgia, lumbar region" +"M54.27","Cervicalgia, lumbosacral region" +"M54.28","Cervicalgia, sacral and sacrococcygeal region" +"M54.29","Cervicalgia, site unspecified" +"M54.3","Sciatica" +"M54.30","Sciatica, multiple sites" +"M54.31","Sciatica, occipito-atlanto-axial region" +"M54.32","Sciatica, cervical region" +"M54.33","Sciatica, cervicothoracic region" +"M54.34","Sciatica, thoracic region" +"M54.35","Sciatica, thoracolumbar region" +"M54.36","Sciatica, lumbar region" +"M54.37","Sciatica, lumbosacral region" +"M54.38","Sciatica, sacral and sacrococcygeal region" +"M54.39","Sciatica, site unspecified" +"M54.4","Lumbago with sciatica" +"M54.40","Lumbago with sciatica, multiple sites" +"M54.41","Lumbago with sciatica, occipito-atlanto-axial region" +"M54.42","Lumbago with sciatica, cervical region" +"M54.43","Lumbago with sciatica, cervicothoracic region" +"M54.44","Lumbago with sciatica, thoracic region" +"M54.45","Lumbago with sciatica, thoracolumbar region" +"M54.46","Lumbago with sciatica, lumbar region" +"M54.47","Lumbago with sciatica, lumbosacral region" +"M54.48","Lumbago with sciatica, sacral and sacrococcygeal region" +"M54.49","Lumbago with sciatica, site unspecified" +"M54.5","Low back pain" +"M54.50","Low back pain, multiple sites" +"M54.51","Low back pain, occipito-atlanto-axial region" +"M54.52","Low back pain, cervical region" +"M54.53","Low back pain, cervicothoracic region" +"M54.54","Low back pain, thoracic region" +"M54.55","Low back pain, thoracolumbar region" +"M54.56","Low back pain, lumbar region" +"M54.57","Low back pain, lumbosacral region" +"M54.58","Low back pain, sacral and sacrococcygeal region" +"M54.59","Low back pain, site unspecified" +"M54.6","Pain in thoracic spine" +"M54.60","Pain in thoracic spine, multiple sites" +"M54.61","Pain in thoracic spine, occipito-atlanto-axial region" +"M54.62","Pain in thoracic spine, cervical region" +"M54.63","Pain in thoracic spine, cervicothoracic region" +"M54.64","Pain in thoracic spine, thoracic region" +"M54.65","Pain in thoracic spine, thoracolumbar region" +"M54.66","Pain in thoracic spine, lumbar region" +"M54.67","Pain in thoracic spine, lumbosacral region" +"M54.68","Pain in thoracic spine, sacral and sacrococcygeal region" +"M54.69","Pain in thoracic spine, site unspecified" +"M54.8","Other dorsalgia" +"M54.80","Other dorsalgia, multiple sites" +"M54.81","Other dorsalgia, occipito-atlanto-axial region" +"M54.82","Other dorsalgia, cervical region" +"M54.83","Other dorsalgia, cervicothoracic region" +"M54.84","Other dorsalgia, thoracic region" +"M54.85","Other dorsalgia, thoracolumbar region" +"M54.86","Other dorsalgia, lumbar region" +"M54.87","Other dorsalgia, lumbosacral region" +"M54.88","Other dorsalgia, sacral and sacrococcygeal region" +"M54.89","Other dorsalgia, site unspecified" +"M54.9","Dorsalgia, unspecified" +"M54.90","Dorsalgia, unspecified, multiple sites" +"M54.91","Dorsalgia, unspecified, occipito-atlanto-axial region" +"M54.92","Dorsalgia, unspecified, cervical region" +"M54.93","Dorsalgia, unspecified, cervicothoracic region" +"M54.94","Dorsalgia, unspecified, thoracic region" +"M54.95","Dorsalgia, unspecified, thoracolumbar region" +"M54.96","Dorsalgia, unspecified, lumbar region" +"M54.97","Dorsalgia, unspecified, lumbosacral region" +"M54.98","Dorsalgia, unspecified, sacral and sacrococcygeal region" +"M54.99","Dorsalgia, unspecified, site unspecified" +"M60","MYOSITIS" +"M60.0","Infective myositis" +"M60.00","Infective myositis, mulitple sites" +"M60.01","Infective myositis, shoulder" +"M60.02","Infective myositis, upper arm" +"M60.03","Infective myositis, forearm" +"M60.04","Infective myositis, hand" +"M60.05","Infective myositis, pelvic region and thigh" +"M60.06","Infective myositis, lower leg" +"M60.07","Infective myositis, ankle and foot" +"M60.08","Infective myositis, other" +"M60.09","Infective myositis, site unspecified" +"M60.1","Interstitial myositis" +"M60.10","Interstitial myositis, mulitple sites" +"M60.11","Interstitial myositis, shoulder" +"M60.12","Interstitial myositis, upper arm" +"M60.13","Interstitial myositis, forearm" +"M60.14","Interstitial myositis, hand" +"M60.15","Interstitial myositis, pelvic region and thigh" +"M60.16","Interstitial myositis, lower leg" +"M60.17","Interstitial myositis, ankle and foot" +"M60.18","Interstitial myositis, other" +"M60.19","Interstitial myositis, site unspecified" +"M60.2","Foreign body granuloma of soft tissue, not elsewhere classified" +"M60.20","Foreign body graniloma of soft tissue, mulitple sites" +"M60.21","Foreign body graniloma of soft tissue, shoulder" +"M60.22","Foreign body graniloma of soft tissue, upper arm" +"M60.23","Foreign body graniloma of soft tissue, forearm" +"M60.24","Foreign body graniloma of soft tissue, hand" +"M60.25","Foreign body granuloma of soft tissue, pelvic region and thigh" +"M60.26","Foreign body graniloma of soft tissue, lower leg" +"M60.27","Foreign body graniloma of soft tissue, ankle and foot" +"M60.28","Foreign body granuloma of soft tissue, other" +"M60.29","Foreign body granuloma of soft tissue, site unspecified" +"M60.8","Other myositis" +"M60.80","Other myositis, mulitple sites" +"M60.81","Other myositis, shoulder" +"M60.82","Other myositis, upper arm" +"M60.83","Other myositis, forearm" +"M60.84","Other myositis, hand" +"M60.85","Other myositis, pelvic region and thigh" +"M60.86","Other myositis, lower leg" +"M60.87","Other myositis, ankle and foot" +"M60.88","Other myositis, other" +"M60.89","Other myositis, site unspecified" +"M60.9","Myositis, unspecified" +"M60.90","Myositis unspecified, mulitple sites" +"M60.91","Myositis unspecified, shoulder" +"M60.92","Myositis unspecified, upper arm" +"M60.93","Myositis unspecified, forearm" +"M60.94","Myositis unspecified, hand" +"M60.95","Myositis unspecified, pelvic region and thigh" +"M60.96","Myositis unspecified, lower leg" +"M60.97","Myositis unspecified, ankle and foot" +"M60.98","Myositis unspecified, other" +"M60.99","Myositis unspecified, site unspecified" +"M61","Calcification and ossification of muscle" +"M61.0","Myositis ossificans traumatica" +"M61.00","Myositis ossificans traumatica, mulitple sites" +"M61.01","Myositis ossificans traumatica, shoulder" +"M61.02","Myositis ossificans traumatica, upper arm" +"M61.03","Myositis ossificans traumatica, forearm" +"M61.04","Myositis ossificans traumatica, hand" +"M61.05","Myositis ossificans traumatica, pelvic region and thigh" +"M61.06","Myositis ossificans traumatica, lower leg" +"M61.07","Myositis ossificans traumatica, ankle and foot" +"M61.08","Myositis ossificans traumatica, other" +"M61.09","Myositis ossificans traumatica, site unspecified" +"M61.1","Myositis ossificans progressiva" +"M61.10","Myositis ossificans progressiva, mulitple sites" +"M61.11","Myositis ossificans progressiva, shoulder" +"M61.12","Myositis ossificans progressiva, upper arm" +"M61.13","Myositis ossificans progressiva, forearm" +"M61.14","Myositis ossificans progressiva, hand" +"M61.15","Myositis ossificans progressiva, pelvic region and thigh" +"M61.16","Myositis ossificans progressiva, lower leg" +"M61.17","Myositis ossificans progressiva, ankle and foot" +"M61.18","Myositis ossificans progressiva, other" +"M61.19","Myositis ossificans progressiva, site unspecified" +"M61.2","Paralytic calcification and ossification of muscle" +"M61.20","Paralytic calcification and ossifcation of muscle, mulitple sites" +"M61.21","Paralytic calcification and ossifcation of muscle, shoulder" +"M61.22","Paralytic calcification and ossifcation of muscle, upper arm" +"M61.23","Paralytic calcification and ossifcation of muscle, forearm" +"M61.24","Paralytic calcification and ossifcation of muscle, hand" +"M61.25","Paralytic calcification and ossifcation of muscle, pelvic region and thigh" +"M61.26","Paralytic calcification and ossifcation of muscle, lower leg" +"M61.27","Paralytic calcification and ossifcation of muscle, ankle and foot" +"M61.28","Paralytic calcification and ossifcation of muscle, other" +"M61.29","Paralytic calcification and ossifcation of muscle, site unspecified" +"M61.3","Calcification and ossification of muscles assoc with burns" +"M61.30","Calcification and ossification of muscles assco with burns, multiple sites" +"M61.31","Calcification and ossification of muscles assco with burns, shoulder" +"M61.32","Calcification and ossification of muscles assco with burns, upper arm" +"M61.33","Calcification and ossification of muscles assco with burns, forearm" +"M61.34","Calcification and ossification of muscles assco with burns, hand" +"M61.35","Calcification and ossification of muscles assco with burns, pelvic region and thigh" +"M61.36","Calcification and ossification of muscles assco with burns, lower leg" +"M61.37","Calcification and ossification of muscles assco with burns, ankle and foot" +"M61.38","Calcification and ossification of muscles assco with burns, other" +"M61.39","Calcification and ossification of muscles assco with burns, site unspecified" +"M61.4","Other calcification of muscle" +"M61.40","Other calcification of muscle, multiple sites" +"M61.41","Other calcification of muscle, shoulder" +"M61.42","Other calcification of muscle, upper arm" +"M61.43","Other calcification of muscle, forearm" +"M61.44","Other calcification of muscle, hand" +"M61.45","Other calcification of muscle, pelvic region and thigh" +"M61.46","Other calcification of muscle, lower leg" +"M61.47","Other calcification of muscle, ankle and foot" +"M61.48","Other calcification of muscle, other" +"M61.49","Other calcification of muscle, site unspecified" +"M61.5","Other ossification of muscle" +"M61.50","Other ossification of muscle, multiple sites" +"M61.51","Other ossification of muscle, shoulder" +"M61.52","Other ossification of muscle, upper arm" +"M61.53","Other ossification of muscle, forearm" +"M61.54","Other ossification of muscle, hand" +"M61.55","Other ossification of muscle, pelvic region and thigh" +"M61.56","Other ossification of muscle, lower leg" +"M61.57","Other ossification of muscle, ankle and foot" +"M61.58","Other ossification of muscle, other" +"M61.59","Other ossification of muscle, site unspecified" +"M61.9","Calcification and ossification of muscle, unspecified" +"M61.90","Calcification and ossification of muscle unspecified, multiple sites" +"M61.91","Calcification and ossification of muscle unspecified, shoulder" +"M61.92","Calcification and ossification of muscle unspecified, upper arm" +"M61.93","Calcification and ossification of muscle unspecified, forearm" +"M61.94","Calcification and ossification of muscle unspecified, hand" +"M61.95","Calcification and ossification of muscle unspecified, pelvic region and thigh" +"M61.96","Calcification and ossification of muscle unspecified, lower leg" +"M61.97","Calcification and ossification of muscle unspecified, ankle and foot" +"M61.98","Calcification and ossification of muscle unspecified, other" +"M61.99","Calcification and ossification of muscle unspecified, site unspecified" +"M62","OTHER DISORDERS OF MUSCLE" +"M62.0","Diastasis of muscle" +"M62.00","Diastasis of muscle, mulitple sites" +"M62.01","Diastasis of muscle, shoulder" +"M62.02","Diastasis of muscle, upper arm" +"M62.03","Diastasis of muscle, forearm" +"M62.04","Diastasis of muscle, hand" +"M62.05","Diastasis of muscle, pelvic region and thigh" +"M62.06","Diastasis of muscle, lower leg" +"M62.07","Diastasis of muscle, ankle and foot" +"M62.08","Diastasis of muscle, other" +"M62.09","Diastasis of muscle, site unspecified" +"M62.1","Other rupture of muscle (nontraumatic)" +"M62.10","Other rupture of muscle (nontraumatic), multiple sites" +"M62.11","Other rupture of muscle (nontraumatic), shoulder" +"M62.12","Other rupture of muscle (nontraumatic), upper arm" +"M62.13","Other rupture of muscle (nontraumatic), forearm" +"M62.14","Other rupture of muscle (nontraumatic), hand" +"M62.15","Other rupture of muscle (nontraumatic), pelvic region and thigh" +"M62.16","Other rupture of muscle (nontraumatic), lower leg" +"M62.17","Other rupture of muscle (nontraumatic), ankle and foot" +"M62.18","Other rupture of muscle (nontraumatic), other" +"M62.19","Other rupture of muscle (nontraumatic), site unspecified" +"M62.2","Ischaemic infarction of muscle" +"M62.20","Ischaemic infarction of muscle, multiple sites" +"M62.21","Ischaemic infarction of muscle, shoulder" +"M62.22","Ischaemic infarction of muscle, upper arm" +"M62.23","Ischaemic infarction of muscle, forearm" +"M62.24","Ischaemic infarction of muscle, hand" +"M62.25","Ischaemic infarction of muscle, pelvic region and thigh" +"M62.26","Ischaemic infarction of muscle, lower leg" +"M62.27","Ischaemic infarction of muscle, ankle and foot" +"M62.28","Ischaemic infarction of muscle, other" +"M62.29","Ischaemic infarction of muscle, site unspecified" +"M62.3","Immobility syndrome (paraplegic)" +"M62.30","Immobility syndrome (paraplegic), multiple sites" +"M62.31","Immobility syndrome (paraplegic), shoulder" +"M62.32","Immobility syndrome (paraplegic), upper arm" +"M62.33","Immobility syndrome (paraplegic), forearm" +"M62.34","Immobility syndrome (paraplegic), hand" +"M62.35","Immobility syndrome (paraplegic), pelvic region and thigh" +"M62.36","Immobility syndrome (paraplegic), lower leg" +"M62.37","Immobility syndrome (paraplegic), ankle and foot" +"M62.38","Immobility syndrome (paraplegic), other" +"M62.39","Immobility syndrome (paraplegic), site unspecified" +"M62.4","Contracture of muscle" +"M62.40","Contracture of muscle, multiple sites" +"M62.41","Contracture of muscle, shoulder" +"M62.42","Contracture of muscle, upper arm" +"M62.43","Contracture of muscle, forearm" +"M62.44","Contracture of muscle, hand" +"M62.45","Contracture of muscle, pelvic region and thigh" +"M62.46","Contracture of muscle, lower leg" +"M62.47","Contracture of muscle, ankle and foot" +"M62.48","Contracture of muscle, other" +"M62.49","Contracture of muscle, site unspecified" +"M62.5","Muscle wasting and atrophy, not elsewhere classified" +"M62.50","Muscle wasting and atrophy, multiple sites" +"M62.51","Muscle wasting and atrophy, shoulder" +"M62.52","Muscle wasting and atrophy, upper arm" +"M62.53","Muscle wasting and atrophy, forearm" +"M62.54","Muscle wasting and atrophy, hand" +"M62.55","Muscle wasting and atrophy, pelvic region and thigh" +"M62.56","Muscle wasting and atrophy, lower leg" +"M62.57","Muscle wasting and atrophy, ankle and foot" +"M62.58","Muscle wasting and atrophy, other" +"M62.59","Muscle wasting and atrophy, site unspecified" +"M62.6","Muscle strain" +"M62.60","Muscle strain, multiple sites" +"M62.61","Muscle strain, shoulder" +"M62.62","Muscle strain, upper arm" +"M62.63","Muscle strain, forearm" +"M62.64","Muscle strain, hand" +"M62.65","Muscle strain, pelvic region and thigh" +"M62.66","Muscle strain, lower leg" +"M62.67","Muscle strain, ankle and foot" +"M62.68","Muscle strain, other" +"M62.69","Muscle strain, site unspecified" +"M62.8","Other specified disorders of muscle" +"M62.80","Other specified disorders of muscle, multiple sites" +"M62.81","Other specified disorders of muscle, shoulder" +"M62.82","Other specified disorders of muscle, upper arm" +"M62.83","Other specified disorders of muscle, forearm" +"M62.84","Other specified disorders of muscle, hand" +"M62.85","Other specified disorders of muscle, pelvic region and thigh" +"M62.86","Other specified disorders of muscle, lower leg" +"M62.87","Other specified disorders of muscle, ankle and foot" +"M62.88","Other specified disorders of muscle, other" +"M62.89","Other specified disorders of muscle, site unspecified" +"M62.9","Disorder of muscle, unspecified" +"M62.90","Disorder of muscle, unspecified, multiple sites" +"M62.91","Disorder of muscle, unspecified, shoulder" +"M62.92","Disorder of muscle, unspecified, upper arm" +"M62.93","Disorder of muscle, unspecified, forearm" +"M62.94","Disorder of muscle, unspecified, hand" +"M62.95","Disorder of muscle, unspecified, pelvic region and thigh" +"M62.96","Disorder of muscle, unspecified, lower leg" +"M62.97","Disorder of muscle, unspecified, ankle and foot" +"M62.98","Disorder of muscle, unspecified, other" +"M62.99","Disorder of muscle, unspecified, site unspecified" +"M63","Disorders of muscle in diseases classified elsewhere" +"M63.0","Myositis in bacterial diseases classified elsewhere" +"M63.1","Myositis in protozoal and parasitic infections classified elsewhere" +"M63.2","Myositis in other infectious diseases classified elsewhere" +"M63.3","Myositis in sarcoidosis" +"M63.8","Other disorders of muscle in diseases classified elsewhere" +"M65","SYNOVITIS AND TENOSYNOVITIS" +"M65.0","Abscess of tendon sheath" +"M65.00","Abscess of tendon sheath, multiple sites" +"M65.01","Abscess of tendon sheath, shoulder region" +"M65.02","Abscess of tendon sheath, upper arm" +"M65.03","Abscess of tendon sheath, forearm" +"M65.04","Abscess of tendon sheath, hand" +"M65.05","Abscess of tendon sheath, pelvic and thigh" +"M65.06","Abscess of tendon sheath, lower leg" +"M65.07","Abscess of tendon sheath, ankle and foot" +"M65.08","Abscess of tendon sheath, other" +"M65.09","Abscess of tendon sheath, site unspecified" +"M65.1","Other infective (teno)synovitis" +"M65.10","Other infective (teno)synovitis, multiple sites" +"M65.11","Other infective (teno)synovitis, shoulder region" +"M65.12","Other infective (teno)synovitis, upper arm" +"M65.13","Other infective (teno)synovitis, forearm" +"M65.14","Other infective (teno)synovitis, hand" +"M65.15","Other infective (teno)synovitis, pelvic and thigh" +"M65.16","Other infective (teno)synovitis, lower leg" +"M65.17","Other infective (teno)synovitis, ankle and foot" +"M65.18","Other infective (teno)synovitis, other" +"M65.19","Other infective (teno)synovitis, site unspecified" +"M65.2","Calcific tendinitis" +"M65.20","Calcific tendinitis, multiple sites" +"M65.21","Calcific tendinitis, shoulder region" +"M65.22","Calcific tendinitis, upper arm" +"M65.23","Calcific tendinitis, forearm" +"M65.24","Calcific tendinitis, hand" +"M65.25","Calcific tendinitis, pelvic region and thigh" +"M65.26","Calcific tendinitis, lower leg" +"M65.27","Calcific tendinitis, ankle and foot" +"M65.28","Calcific tendinitis, other" +"M65.29","Calcific tendinitis, site unspecified" +"M65.3","Trigger finger" +"M65.30","Trigger finger, multiple sites" +"M65.31","Trigger finger, shoulder region" +"M65.32","Trigger finger, upper arm" +"M65.33","Trigger finger, forearm" +"M65.34","Trigger finger, hand" +"M65.35","Trigger finger, pelvic region and thigh" +"M65.36","Trigger finger, lower leg" +"M65.37","Trigger finger, ankle and foot" +"M65.38","Trigger finger, other" +"M65.39","Trigger finger, site unspecified" +"M65.4","Radial styloid tenosynovitis [de Quervain]" +"M65.40","Radial styloid tenosynovitis [de quervain], multiple sites" +"M65.41","Radial styloid tenosynovitis [de quervain], shoulder region" +"M65.42","Radial styloid tenosynovitis [de quervain], upper arm" +"M65.43","Radial styloid tenosynovitis [de quervain], forearm" +"M65.44","Radial styloid tenosynovitis [de quervain], hand" +"M65.45","Radial styloid tenosynovitis [de quervain], pelvic region and thigh" +"M65.46","Radial styloid tenosynovitis [de quervain], lower leg" +"M65.47","Radial styloid tenosynovitis [de quervain], ankle and foot" +"M65.48","Radial styloid tenosynovitis [de quervain], other" +"M65.49","Radial styloid tenosynovitis [de quervain], site unspecified" +"M65.8","Other synovitis and tenosynovitis" +"M65.80","Other synovitis and tenosynovitis, multiple sites" +"M65.81","Other synovitis and tenosynovitis, shoulder region" +"M65.82","Other synovitis and tenosynovitis, upper arm" +"M65.83","Other synovitis and tenosynovitis, forearm" +"M65.84","Other synovitis and tenosynovitis, hand" +"M65.85","Other synovitis and tenosynovitis, pelvic region and thigh" +"M65.86","Other synovitis and tenosynovitis, lower leg" +"M65.87","Other synovitis and tenosynovitis, ankle and foot" +"M65.88","Other synovitis and tenosynovitis, other" +"M65.89","Other synovitis and tenosynovitis, site unspecified" +"M65.9","Synovitis and tenosynovitis, unspecified" +"M65.90","Synovitis and tenosynovitis, unspecified, multiple sites" +"M65.91","Synovitis and tenosynovitis, unspecified, shoulder region" +"M65.92","Synovitis and tenosynovitis, unspecified, upper arm" +"M65.93","Synovitis and tenosynovitis, unspecified, forearm" +"M65.94","Synovitis and tenosynovitis, unspecified, hand" +"M65.95","Synovitis and tenosynovitis, unspecified, pelvic region and thigh" +"M65.96","Synovitis and tenosynovitis, unspecified, lower leg" +"M65.97","Synovitis and tenosynovitis, unspecified, ankle and foot" +"M65.98","Synovitis and tenosynovitis, unspecified, other" +"M65.99","Synovitis and tenosynovitis, unspecified, site unspecified" +"M66","SPONTANEOUS RUPTURE OF SYNOVIUM AND TENDON" +"M66.0","Rupture of popliteal cyst" +"M66.00","Rupture of popliteal cyst, multiple sites" +"M66.01","Rupture of popliteal cyst, shoulder region" +"M66.02","Rupture of popliteal cyst, upper arm" +"M66.03","Rupture of popliteal cyst, forearm" +"M66.04","Rupture of popliteal cyst, hand" +"M66.05","Rupture of popliteal cyst, pelvic region and thigh" +"M66.06","Rupture of popliteal cyst, lower leg" +"M66.07","Rupture of popliteal cyst, ankle and foot" +"M66.08","Rupture of popliteal cyst, other" +"M66.09","Rupture of popliteal cyst, site unspecified" +"M66.1","Rupture of synovium" +"M66.10","Rupture of synovium, multiple sites" +"M66.11","Rupture of synovium, shoulder region" +"M66.12","Rupture of synovium, upper arm" +"M66.13","Rupture of synovium, forearm" +"M66.14","Rupture of synovium, hand" +"M66.15","Rupture of synovium, pelvic region and thigh" +"M66.16","Rupture of synovium, lower leg" +"M66.17","Rupture of synovium, ankle and foot" +"M66.18","Rupture of synovium, other" +"M66.19","Rupture of synovium, site unspecified" +"M66.2","Spontaneous rupture of extensor tendons" +"M66.20","Spontaneous rupture of extensor tendons, multiple sites" +"M66.21","Spontaneous rupture of extensor tendons, shoulder region" +"M66.22","Spontaneous rupture of extensor tendons, upper arm" +"M66.23","Spontaneous rupture of extensor tendons, forearm" +"M66.24","Spontaneous rupture of extensor tendons, hand" +"M66.25","Spontaneous rupture of extensor tendons, pelvic region and thigh" +"M66.26","Spontaneous rupture of extensor tendons, lower leg" +"M66.27","Spontaneous rupture of extensor tendons, ankle and foot" +"M66.28","Spontaneous rupture of extensor tendons, other" +"M66.29","Spontaneous rupture of extensor tendons, site unspecified" +"M66.3","Spontaneous rupture of flexor tendons" +"M66.30","Spontaneous rupture of flexor tendons, multiple sites" +"M66.31","Spontaneous rupture of flexor tendons, shoulder region" +"M66.32","Spontaneous rupture of flexor tendons, upper arm" +"M66.33","Spontaneous rupture of flexor tendons, forearm" +"M66.34","Spontaneous rupture of flexor tendons, hand" +"M66.35","Spontaneous rupture of flexor tendons, pelvic region and thigh" +"M66.36","Spontaneous rupture of flexor tendons, lower leg" +"M66.37","Spontaneous rupture of flexor tendons, ankle and foot" +"M66.38","Spontaneous rupture of flexor tendons, other" +"M66.39","Spontaneous rupture of flexor tendons, site unspecified" +"M66.4","Spontaneous rupture of other tendons" +"M66.40","Spontaneous rupture of other tendons, multiple sites" +"M66.41","Spontaneous rupture of other tendons, shoulder region" +"M66.42","Spontaneous rupture of other tendons, upper arm" +"M66.43","Spontaneous rupture of other tendons, forearm" +"M66.44","Spontaneous rupture of other tendons, hand" +"M66.45","Spontaneous rupture of other tendons, pelvic region and thigh" +"M66.46","Spontaneous rupture of other tendons, lower leg" +"M66.47","Spontaneous rupture of other tendons, ankle and foot" +"M66.48","Spontaneous rupture of other tendons, other" +"M66.49","Spontaneous rupture of other tendons, site unspecified" +"M66.5","Spontaneous rupture of unspecified tendon" +"M66.50","Spontaneous rupture of unspecified tendon, multiple sites" +"M66.51","Spontaneous rupture of unspecified tendon, shoulder region" +"M66.52","Spontaneous rupture of unspecified tendon, upper arm" +"M66.53","Spontaneous rupture of unspecified tendon, forearm" +"M66.54","Spontaneous rupture of unspecified tendon, hand" +"M66.55","Spontaneous rupture of unspecified tendon, pelvic region and thigh" +"M66.56","Spontaneous rupture of unspecified tendon, lower leg" +"M66.57","Spontaneous rupture of unspecified tendon, ankle and foot" +"M66.58","Spontaneous rupture of unspecified tendon, other" +"M66.59","Spontaneous rupture of unspecified tendon, site unspecified" +"M67","OTHER DISORDERS OF SYNOVIUM AND TENDON" +"M67.0","Short Achilles tendon (acquired)" +"M67.1","Other contracture of tendon (sheath)" +"M67.2","Synovial hypertrophy, not elsewhere classified" +"M67.3","Transient synovitis" +"M67.4","Ganglion" +"M67.8","Other specified disorders of synovium and tendon" +"M67.9","Disorder of synovium and tendon, unspecified" +"M68","DISORDERS OF SYNOVIUM AND TENDON IN DISEASES CLASSIFIED ELSEWHERE" +"M68.0","Synovitis and tenosynovitis in bacterial diseases classified elsewhere" +"M68.8","Other disorders of synovium and tendon in diseases classified elsewhere" +"M70","SOFT TISSUE DISORDERS RELATED TO USE, OVERUSE AND PRESSURE" +"M70.0","Chronic crepitant synovitis of hand and wrist" +"M70.00","Chronic crepitant synovitis of hand and wrist, multiple sites" +"M70.01","Chronic crepitant synovitis of hand and wrist, shoulder region" +"M70.02","Chronic crepitant synovitis of hand and wrist, upper arm" +"M70.03","Chronic crepitant synovitis of hand and wrist, forearm" +"M70.04","Chronic crepitant synovitis of hand and wrist, hand" +"M70.05","Chronic crepitant synovitis of hand and wrist, pelvic region and thigh" +"M70.06","Chronic crepitant synovitis of hand and wrist, lower leg" +"M70.07","Chronic crepitant synovitis of hand and wrist, ankle and foot" +"M70.08","Chronic crepitant synovitis of hand and wrist, other" +"M70.09","Chronic crepitant synovitis of hand and wrist, site unspecified" +"M70.1","Bursitis of hand" +"M70.10","Bursitis of hand, multiple sites" +"M70.11","Bursitis of hand, shoulder region" +"M70.12","Bursitis of hand, upper arm" +"M70.13","Bursitis of hand, forearm" +"M70.14","Bursitis of hand, hand" +"M70.15","Bursitis of hand, pelvic region and thigh" +"M70.16","Bursitis of hand, lower leg" +"M70.17","Bursitis of hand, ankle and foot" +"M70.18","Bursitis of hand, other" +"M70.19","Bursitis of hand, site unspecified" +"M70.2","Olecranon bursitis" +"M70.20","Olecranon bursitis, multiple sites" +"M70.21","Olecranon bursitis, shoulder region" +"M70.22","Olecranon bursitis, upper arm" +"M70.23","Olecranon bursitis, forearm" +"M70.24","Olecranon bursitis, hand" +"M70.25","Olecranon bursitis, pelvic region and thigh" +"M70.26","Olecranon bursitis, lower leg" +"M70.27","Olecranon bursitis, ankle and foot" +"M70.28","Olecranon bursitis, other" +"M70.29","Olecranon bursitis, site unspecified" +"M70.3","Other bursitis of elbow" +"M70.30","Other bursitis of elbow, multiple sites" +"M70.31","Other bursitis of elbow, shoulder region" +"M70.32","Other bursitis of elbow, upper arm" +"M70.33","Other bursitis of elbow, forearm" +"M70.34","Other bursitis of elbow, hand" +"M70.35","Other bursitis of elbow, pelvic region and thigh" +"M70.36","Other bursitis of elbow, lower leg" +"M70.37","Other bursitis of elbow, ankle and foot" +"M70.38","Other bursitis of elbow, other" +"M70.39","Other bursitis of elbow, site unspecified" +"M70.4","Prepatellar bursitis" +"M70.40","Prepatellar bursitis, multiple sites" +"M70.41","Prepatellar bursitis, shoulder region" +"M70.42","Prepatellar bursitis, upper arm" +"M70.43","Prepatellar bursitis, forearm" +"M70.44","Prepatellar bursitis, hand" +"M70.45","Prepatellar bursitis, pelvic region and thigh" +"M70.46","Prepatellar bursitis, lower leg" +"M70.47","Prepatellar bursitis, ankle and foot" +"M70.48","Prepatellar bursitis, other" +"M70.49","Prepatellar bursitis, site unspecified" +"M70.5","Other bursitis of knee" +"M70.50","Other bursitis of knee, multiple sites" +"M70.51","Other bursitis of knee, shoulder region" +"M70.52","Other bursitis of knee, upper arm" +"M70.53","Other bursitis of knee, forearm" +"M70.54","Other bursitis of knee, hand" +"M70.55","Other bursitis of knee, pelvic region and thigh" +"M70.56","Other bursitis of knee, lower leg" +"M70.57","Other bursitis of knee, ankle and foot" +"M70.58","Other bursitis of knee, other" +"M70.59","Other bursitis of knee, site unspecified" +"M70.6","Trochanteric bursitis" +"M70.60","Trochanteric bursitis, multiple sites" +"M70.61","Trochanteric bursitis, shoulder region" +"M70.62","Trochanteric bursitis, upper arm" +"M70.63","Trochanteric bursitis, forearm" +"M70.64","Trochanteric bursitis, hand" +"M70.65","Trochanteric bursitis, pelvic region and thigh" +"M70.66","Trochanteric bursitis, lower leg" +"M70.67","Trochanteric bursitis, ankle and foot" +"M70.68","Trochanteric bursitis, other" +"M70.69","Trochanteric bursitis, site unspecified" +"M70.7","Other bursitis of hip" +"M70.70","Other bursitis of hip, multiple sites" +"M70.71","Other bursitis of hip, shoulder region" +"M70.72","Other bursitis of hip, upper arm" +"M70.73","Other bursitis of hip, forearm" +"M70.74","Other bursitis of hip, hand" +"M70.75","Other bursitis of hip, pelvic region and thigh" +"M70.76","Other bursitis of hip, lower leg" +"M70.77","Other bursitis of hip, ankle and foot" +"M70.78","Other bursitis of hip, other" +"M70.79","Other bursitis of hip, site unspecified" +"M70.8","Other soft tissue disorder related to use overuse and pressure" +"M70.80","Other soft tissue disorder related to use overuse and pressure, multiple sites" +"M70.81","Other soft tissue disorder related to use overuse and pressure, shoulder region" +"M70.82","Other soft tissue disorder related to use overuse and pressure, upper arm" +"M70.83","Other soft tissue disorder related to use overuse and pressure, forearm" +"M70.84","Other soft tissue disorder related to use overuse and pressure, hand" +"M70.85","Other soft tissue disorder related to use overuse and pressure, pelvic region and thigh" +"M70.86","Other soft tissue disorder related to use overuse and pressure, lower leg" +"M70.87","Other soft tissue disorder related to use overuse and pressure, ankle and foot" +"M70.88","Other soft tissue disorder related to use overuse and pressure, other" +"M70.89","Other soft tissue disorder related to use overuse and pressure, site unspecified" +"M70.9","Unspecified soft tissue disorder related to use overuse and pressure" +"M70.90","Unspecified soft tissue disorder related to use overuse and pressure, multiple sites" +"M70.91","Unspecified soft tissue disorder related to use overuse and pressure, shoulder region" +"M70.92","Unspecified soft tissue disorder related to use overuse and pressure, upper arm" +"M70.93","Unspecified soft tissue disorder related to use overuse and pressure, forearm" +"M70.94","Unspecified soft tissue disorder related to use overuse and pressure, hand" +"M70.95","Unspecified soft tissue disorder related to use overuse and pressure, pelvic region and thigh" +"M70.96","Unspecified soft tissue disorder related to use overuse and pressure, lower leg" +"M70.97","Unspecified soft tissue disorder related to use overuse and pressure, ankle and foot" +"M70.98","Unspecified soft tissue disorder related to use overuse and pressure, other" +"M70.99","Unspecified soft tissue disorder related to use overuse and pressure, site unspecified" +"M71","OTHER BURSOPATHIES" +"M71.0","Abscess of bursa" +"M71.00","Abscess of bursa, multiple sites" +"M71.01","Abscess of bursa, shoulder region" +"M71.02","Abscess of bursa, upper arm" +"M71.03","Abscess of bursa, forearm" +"M71.04","Abscess of bursa, hand" +"M71.05","Abscess of bursa, pelvic region and thigh" +"M71.06","Abscess of bursa, lower leg" +"M71.07","Abscess of bursa, ankle and foot" +"M71.08","Abscess of bursa, other" +"M71.09","Abscess of bursa, site unspecified" +"M71.1","Other infective bursitis" +"M71.10","Other infective bursitis, multiple sites" +"M71.11","Other infective bursitis, shoulder region" +"M71.12","Other infective bursitis, upper arm" +"M71.13","Other infective bursitis, forearm" +"M71.14","Other infective bursitis, hand" +"M71.15","Other infective bursitis, pelvic region and thigh" +"M71.16","Other infective bursitis, lower leg" +"M71.17","Other infective bursitis, ankle and foot" +"M71.18","Other infective bursitis, other" +"M71.19","Other infective bursitis, site unspecified" +"M71.2","Synovial cyst of popliteal space [Baker]" +"M71.20","Synovial cyst of popliteal space [Baker], multiple sites" +"M71.21","Synovial cyst of popliteal space [Baker], shoulder region" +"M71.22","Synovial cyst of popliteal space [Baker], upper arm" +"M71.23","Synovial cyst of popliteal space [Baker], forearm" +"M71.24","Synovial cyst of popliteal space [Baker], hand" +"M71.25","Synovial cyst of popliteal space [Baker], pelvic region and thigh" +"M71.26","Synovial cyst of popliteal space [Baker], lower leg" +"M71.27","Synovial cyst of popliteal space [Baker], ankle and foot" +"M71.28","Synovial cyst of popliteal space [Baker], other" +"M71.29","Synovial cyst of popliteal space [Baker], site unspecified" +"M71.3","Other bursal cyst" +"M71.30","Other bursal cyst, multiple sites" +"M71.31","Other bursal cyst, shoulder region" +"M71.32","Other bursal cyst, upper arm" +"M71.33","Other bursal cyst, forearm" +"M71.34","Other bursal cyst, hand" +"M71.35","Other bursal cyst, pelvic region and thigh" +"M71.36","Other bursal cyst, lower leg" +"M71.37","Other bursal cyst, ankle and foot" +"M71.38","Other bursal cyst, other" +"M71.39","Other bursal cyst, site unspecified" +"M71.4","Calcium deposit in bursa" +"M71.40","Calcium deposit in bursa, multiple sites" +"M71.42","Calcium deposit in bursa, upper arm" +"M71.43","Calcium deposit in bursa, forearm" +"M71.44","Calcium deposit in bursa, hand" +"M71.45","Calcium deposit in bursa, pelvic region and thigh" +"M71.46","Calcium deposit in bursa, lower leg" +"M71.47","Calcium deposit in bursa, ankle and foot" +"M71.48","Calcium deposit in bursa, other" +"M71.49","Calcium deposit in bursa, site unspecified" +"M71.5","Other bursitis, not elsewhere classified" +"M71.50","Other bursitis, not elsewhere classified, multiple sites" +"M71.52","Other bursitis, not elsewhere classified, upper arm" +"M71.53","Other bursitis, not elsewhere classified, forearm" +"M71.54","Other bursitis, not elsewhere classified, hand" +"M71.55","Other bursitis, not elsewhere classified, pelvic region and thigh" +"M71.56","Other bursitis, not elsewhere classified, lower leg" +"M71.57","Other bursitis, not elsewhere classified, ankle and foot" +"M71.58","Other bursitis, not elsewhere classified, other" +"M71.59","Other bursitis, not elsewhere classified, site unspecified" +"M71.8","Other specified bursopathies" +"M71.80","Other specified bursopathies, multiple sites" +"M71.81","Other specified bursopathies, shoulder region" +"M71.82","Other specified bursopathies, upper arm" +"M71.83","Other specified bursopathies, forearm" +"M71.84","Other specified bursopathies, hand" +"M71.85","Other specified bursopathies, pelvic region and thigh" +"M71.86","Other specified bursopathies, lower leg" +"M71.87","Other specified bursopathies, ankle and foot" +"M71.88","Other specified bursopathies, other" +"M71.89","Other specified bursopathies, site unspecified" +"M71.9","Bursopathy, unspecified" +"M71.90","Bursopathy, unspecified, multiple sites" +"M71.91","Bursopathy, unspecified, shoulder region" +"M71.92","Bursopathy, unspecified, upper arm" +"M71.93","Bursopathy, unspecified, forearm" +"M71.94","Bursopathy, unspecified, hand" +"M71.95","Bursopathy, unspecified, pelvic region and thigh" +"M71.96","Bursopathy, unspecified, lower leg" +"M71.97","Bursopathy, unspecified, ankle and foot" +"M71.98","Bursopathy, unspecified, other" +"M71.99","Bursopathy, unspecified, site unspecified" +"M72","FIBROBLASTIC DISORDERS" +"M72.0","Palmar fascial fibromatosis [Dupuytren]" +"M72.00","Palmar fascial fibromatosis [Dupuytren], multiple sites" +"M72.01","Palmar fascial fibromatosis [Dupuytren], shoulder region" +"M72.02","Palmar fascial fibromatosis [Dupuytren], upper arm" +"M72.03","Palmar fascial fibromatosis [Dupuytren], forearm" +"M72.04","Palmar fascial fibromatosis [Dupuytren], hand" +"M72.05","Palmar fascial fibromatosis [Dupuytren], pelvic region and thigh" +"M72.06","Palmar fascial fibromatosis [Dupuytren], lower leg" +"M72.07","Palmar fascial fibromatosis [Dupuytren], ankle and foot" +"M72.08","Palmar fascial fibromatosis [Dupuytren], other" +"M72.09","Palmar fascial fibromatosis [Dupuytren], site unspecified" +"M72.1","Knuckle pads" +"M72.10","Knuckle pads, multiple sites" +"M72.11","Knuckle pads, shoulder region" +"M72.12","Knuckle pads, upper arm" +"M72.13","Knuckle pads, forearm" +"M72.14","Knuckle pads, hand" +"M72.15","Knuckle pads, pelvic region and thigh" +"M72.16","Knuckle pads, lower leg" +"M72.17","Knuckle pads, ankle and foot" +"M72.18","Knuckle pads, other" +"M72.19","Knuckle pads, site unspecified" +"M72.2","Plantar fascial fibromatosis" +"M72.20","Plantar fascial fibromatosis, multiple sites" +"M72.21","Plantar fascial fibromatosis, shoulder region" +"M72.22","Plantar fascial fibromatosis, upper arm" +"M72.23","Plantar fascial fibromatosis, forearm" +"M72.24","Plantar fascial fibromatosis, hand" +"M72.25","Plantar fascial fibromatosis, pelvic region and thigh" +"M72.26","Plantar fascial fibromatosis, lower leg" +"M72.27","Plantar fascial fibromatosis, ankle and foot" +"M72.28","Plantar fascial fibromatosis, other" +"M72.29","Plantar fascial fibromatosis, site unspecified" +"M72.3","Nodular fascilitis" +"M72.4","Pseudosarcomatous fibromatosis" +"M72.40","Pseudosarcomatous fibromatosis, multiple sites" +"M72.41","Pseudosarcomatous fibromatosis, shoulder region" +"M72.42","Pseudosarcomatous fibromatosis, upper arm" +"M72.43","Pseudosarcomatous fibromatosis, forearm" +"M72.44","Pseudosarcomatous fibromatosis, hand" +"M72.45","Pseudosarcomatous fibromatosis, pelvic region and thigh" +"M72.46","Pseudosarcomatous fibromatosis, lower leg" +"M72.47","Pseudosarcomatous fibromatosis, ankle and foot" +"M72.48","Pseudosarcomatous fibromatosis, other" +"M72.49","Pseudosarcomatous fibromatosis, site unspecified" +"M72.5","Fasciitis, not elsewhere classified" +"M72.50","Fasciitis, not elsewhere classified, multiple sites" +"M72.51","Fasciitis, not elsewhere classified, shoulder region" +"M72.52","Fasciitis, not elsewhere classified, upper arm" +"M72.53","Fasciitis, not elsewhere classified, forearm" +"M72.54","Fasciitis, not elsewhere classified, hand" +"M72.55","Fasciitis, not elsewhere classified, pelvic region and thigh" +"M72.56","Fasciitis, not elsewhere classified, lower leg" +"M72.57","Fasciitis, not elsewhere classified, ankle and foot" +"M72.58","Fasciitis, not elsewhere classified, other" +"M72.59","Fasciitis, not elsewhere classified, site unspecified" +"M72.6","Necrotizing fasciitis" +"M72.60","Necrotizing fasciitis, multiple sites" +"M72.61","Necrotizing fasciitis, shoulder region" +"M72.62","Necrotizing fasciitis, upper arm" +"M72.63","Necrotizing fasciitis, forearm" +"M72.64","Necrotizing fasciitis, hand" +"M72.65","Necrotizing fasciitis, pelvic region and thigh" +"M72.66","Necrotizing fasciitis, lower leg" +"M72.67","Necrotizing fasciitis, ankle and foot" +"M72.68","Necrotizing fasciitis, other" +"M72.69","Necrotizing fasciitis, site unspecified" +"M72.8","Other fibroblastic disorders" +"M72.80","Other fibroblastic disorders, multiple sites" +"M72.81","Other fibroblastic disorders, shoulder region" +"M72.82","Other fibroblastic disorders, upper arm" +"M72.83","Other fibroblastic disorders, forearm" +"M72.84","Other fibroblastic disorders, hand" +"M72.85","Other fibroblastic disorders, pelvic region and thigh" +"M72.86","Other fibroblastic disorders, lower leg" +"M72.87","Other fibroblastic disorders, ankle and foot" +"M72.88","Other fibroblastic disorders, other" +"M72.89","Other fibroblastic disorders, site unspecified" +"M72.9","Fibroblastic disorder, unspecified" +"M72.90","Fibroblastic disorder, unspecified, multiple sites" +"M72.91","Fibroblastic disorder, unspecified, shoulder region" +"M72.92","Fibroblastic disorder, unspecified, upper arm" +"M72.93","Fibroblastic disorder, unspecified, forearm" +"M72.94","Fibroblastic disorder, unspecified, hand" +"M72.95","Fibroblastic disorder, unspecified, pelvic region and thigh" +"M72.96","Fibroblastic disorder, unspecified, lower leg" +"M72.97","Fibroblastic disorder, unspecified, ankle and foot" +"M72.98","Fibroblastic disorder, unspecified, other" +"M72.99","Fibroblastic disorder, unspecified, site unspecified" +"M73","SOFT TISSUE DISORDERS IN DISEASES CLASSIFIED ELSEWHERE" +"M73.0","Gonococcal bursitis" +"M73.00","Gonococcal bursitis, multiple sites" +"M73.01","Gonococcal bursitis, shoulder region" +"M73.02","Gonococcal bursitis, upper arm" +"M73.03","Gonococcal bursitis, forearm" +"M73.04","Gonococcal bursitis, hand" +"M73.05","Gonococcal bursitis, pelvic region and thigh" +"M73.06","Gonococcal bursitis, lower leg" +"M73.07","Gonococcal bursitis, ankle and foot" +"M73.08","Gonococcal bursitis, other" +"M73.09","Gonococcal bursitis, site unspecified" +"M73.1","Syphilitic bursitis" +"M73.10","Syphilitic bursitis, multiple sites" +"M73.11","Syphilitic bursitis, shoulder region" +"M73.12","Syphilitic bursitis, upper arm" +"M73.13","Syphilitic bursitis, forearm" +"M73.14","Syphilitic bursitis, hand" +"M73.15","Syphilitic bursitis, pelvic region and thigh" +"M73.16","Syphilitic bursitis, lower leg" +"M73.17","Syphilitic bursitis, ankle and foot" +"M73.18","Syphilitic bursitis, other" +"M73.19","Syphilitic bursitis, site unspecified" +"M73.8","Other soft tissue disorders in diseases classified elsewhere" +"M73.80","Other soft tissue disorders in diseases classified elsewhere, multiple sites" +"M73.81","Other soft tissue disorders in diseases classified elsewhere, shoulder region" +"M73.82","Other soft tissue disorders in diseases classified elsewhere, upper arm" +"M73.83","Other soft tissue disorders in diseases classified elsewhere, forearm" +"M73.84","Other soft tissue disorders in diseases classified elsewhere, hand" +"M73.85","Other soft tissue disorders in diseases classified elsewhere, pelvic region and thigh" +"M73.86","Other soft tissue disorders in diseases classified elsewhere, lower leg" +"M73.87","Other soft tissue disorders in diseases classified elsewhere, ankle and foot" +"M73.88","Other soft tissue disorders in diseases classified elsewhere, other" +"M73.89","Other soft tissue disorders in diseases classified elsewhere, site unspecified" +"M75","SHOULDER LESIONS" +"M75.0","Adhesive capsulitis of shoulder" +"M75.1","Rotator cuff syndrome" +"M75.2","Bicipital tendinitis" +"M75.3","Calcific tendinitis of shoulder" +"M75.4","Impingement syndrome of shoulder" +"M75.5","Bursitis of shoulder" +"M75.8","Other shoulder lesions" +"M75.9","Shoulder lesion, unspecified" +"M76","ENTHESOPATHIES OF LOWER LIMB, EXCLUDING FOOT" +"M76.0","Gluteal tendinitis" +"M76.00","Gluteal tendinitis, multiple sites" +"M76.01","Gluteal tendinitis, shoulder region" +"M76.02","Gluteal tendinitis, upper arm" +"M76.03","Gluteal tendinitis, forearm" +"M76.04","Gluteal tendinitis, hand" +"M76.05","Gluteal tendinitis, pelvic region and thigh" +"M76.06","Gluteal tendinitis, lower leg" +"M76.07","Gluteal tendinitis, ankle and foot" +"M76.08","Gluteal tendinitis, other" +"M76.09","Gluteal tendinitis, site unspecified" +"M76.1","Psoas tendinitis" +"M76.10","Psoas tendinitis, multiple sites" +"M76.11","Psoas tendinitis, shoulder region" +"M76.12","Psoas tendinitis, upper arm" +"M76.13","Psoas tendinitis, forearm" +"M76.14","Psoas tendinitis, hand" +"M76.15","Psoas tendinitis, pelvic region and thigh" +"M76.16","Psoas tendinitis, lower leg" +"M76.17","Psoas tendinitis, ankle and foot" +"M76.18","Psoas tendinitis, other" +"M76.19","Psoas tendinitis, site unspecified" +"M76.2","Iliac crest spur" +"M76.20","Iliac crest spur, multiple sites" +"M76.21","Iliac crest spur, shoulder region" +"M76.22","Iliac crest spur, upper arm" +"M76.23","Iliac crest spur, forearm" +"M76.24","Iliac crest spur, hand" +"M76.25","Iliac crest spur, pelvic region and thigh" +"M76.26","Iliac crest spur, lower leg" +"M76.27","Iliac crest spur, ankle and foot" +"M76.28","Iliac crest spur, other" +"M76.29","Iliac crest spur, site unspecified" +"M76.3","Iliotibial band syndrome" +"M76.30","Iliotibial band syndrome, multiple sites" +"M76.31","Iliotibial band syndrome, shoulder region" +"M76.32","Iliotibial band syndrome, upper arm" +"M76.33","Iliotibial band syndrome, forearm" +"M76.34","Iliotibial band syndrome, hand" +"M76.35","Iliotibial band syndrome, pelvic region and thigh" +"M76.36","Iliotibial band syndrome, lower leg" +"M76.37","Iliotibial band syndrome, ankle and foot" +"M76.38","Iliotibial band syndrome, other" +"M76.39","Iliotibial band syndrome, site unspecified" +"M76.4","Tibial collateral bursitis [pellegrini-stieda]" +"M76.40","Tibial collateral bursitis [Pellegrini-Stieda], multiple sites" +"M76.41","Tibial collateral bursitis [Pellegrini-Stieda], shoulder region" +"M76.42","Tibial collateral bursitis [Pellegrini-Stieda], upper arm" +"M76.43","Tibial collateral bursitis [Pellegrini-Stieda], forearm" +"M76.44","Tibial collateral bursitis [Pellegrini-Stieda], hand" +"M76.45","Tibial collateral bursitis [Pellegrini-Stieda], pelvic region and thigh" +"M76.46","Tibial collateral bursitis [Pellegrini-Stieda], lower leg" +"M76.47","Tibial collateral bursitis [Pellegrini-Stieda], ankle and foot" +"M76.48","Tibial collateral bursitis [Pellegrini-Stieda], other" +"M76.49","Tibial collateral bursitis [pellegrini-stieda], site unspecified" +"M76.5","Patellar tendinitis" +"M76.50","Patellar tendinitis, multiple sites" +"M76.51","Patellar tendinitis, shoulder region" +"M76.52","Patellar tendinitis, upper arm" +"M76.53","Patellar tendinitis, forearm" +"M76.54","Patellar tendinitis, hand" +"M76.55","Patellar tendinitis, pelvic region and thigh" +"M76.56","Patellar tendinitis, lower leg" +"M76.57","Patellar tendinitis, ankle and foot" +"M76.58","Patellar tendinitis, other" +"M76.59","Patellar tendinitis, site unspecified" +"M76.6","Achilles tendinitis" +"M76.60","Achilles tendinitis, multiple sites" +"M76.61","Achilles tendinitis, shoulder region" +"M76.62","Achilles tendinitis, upper arm" +"M76.63","Achilles tendinitis, forearm" +"M76.64","Achilles tendinitis, hand" +"M76.65","Achilles tendinitis, pelvic region and thigh" +"M76.66","Achilles tendinitis, lower leg" +"M76.67","Achilles tendinitis, ankle and foot" +"M76.68","Achilles tendinitis, other" +"M76.69","Achilles tendinitis, site unspecified" +"M76.7","Peroneal tendinitis" +"M76.70","Peroneal tendinitis, multiple sites" +"M76.71","Peroneal tendinitis, shoulder region" +"M76.72","Peroneal tendinitis, upper arm" +"M76.73","Peroneal tendinitis, forearm" +"M76.74","Peroneal tendinitis, hand" +"M76.75","Peroneal tendinitis, pelvic region and thigh" +"M76.76","Peroneal tendinitis, lower leg" +"M76.77","Peroneal tendinitis, ankle and foot" +"M76.78","Peroneal tendinitis, other" +"M76.79","Peroneal tendinitis, site unspecified" +"M76.8","Other enthesopathies of lower limb, excluding foot" +"M76.80","Other enthesopathies of lower limb, excluding foot, multiple sites" +"M76.81","Other enthesopathies of lower limb, excluding foot, shoulder region" +"M76.82","Other enthesopathies of lower limb, excluding foot, upper arm" +"M76.83","Other enthesopathies of lower limb, excluding foot, forearm" +"M76.84","Other enthesopathies of lower limb, excluding foot, hand" +"M76.85","Other enthesopathies of lower limb, excluding foot, pelvic region and thigh" +"M76.86","Other enthesopathies of lower limb, excluding foot, lower leg" +"M76.87","Other enthesopathies of lower limb, excluding foot, ankle and foot" +"M76.88","Other enthesopathies of lower limb, excluding foot, other" +"M76.89","Other enthesopathies of lower limb, excluding foot, site unspecified" +"M76.9","Enthesopathy of lower limb, unspecified" +"M76.90","Enthesopathy of lower limb, unspecified, multiple sites" +"M76.91","Enthesopathy of lower limb, unspecified, shoulder region" +"M76.92","Enthesopathy of lower limb, unspecified, upper arm" +"M76.93","Enthesopathy of lower limb, unspecified, forearm" +"M76.94","Enthesopathy of lower limb, unspecified, hand" +"M76.95","Enthesopathy of lower limb, unspecified, pelvic region and thigh" +"M76.96","Enthesopathy of lower limb, unspecified, lower leg" +"M76.97","Enthesopathy of lower limb, unspecified, ankle and foot" +"M76.98","Enthesopathy of lower limb, unspecified, other" +"M76.99","Enthesopathy of lower limb, unspecified, site unspecified" +"M77","OTHER ENTHESOPATHIES" +"M77.0","Medial epicondylitis" +"M77.00","Medial epicondylitis, multiple sites" +"M77.01","Medial epicondylitis, shoulder region" +"M77.02","Medial epicondylitis, upper arm" +"M77.03","Medial epicondylitis, forearm" +"M77.04","Medial epicondylitis, hand" +"M77.05","Medial epicondylitis, pelvic region and thigh" +"M77.06","Medial epicondylitis, lower leg" +"M77.07","Medial epicondylitis, ankle and foot" +"M77.08","Medial epicondylitis, other" +"M77.09","Medial epicondylitis, site unspecified" +"M77.1","Lateral epicondylitis" +"M77.10","Lateral epicondylitis, multiple sites" +"M77.11","Lateral epicondylitis, shoulder region" +"M77.12","Lateral epicondylitis, upper arm" +"M77.13","Lateral epicondylitis, forearm" +"M77.14","Lateral epicondylitis, hand" +"M77.15","Lateral epicondylitis, pelvic region and thigh" +"M77.16","Lateral epicondylitis, lower leg" +"M77.17","Lateral epicondylitis, ankle and foot" +"M77.18","Lateral epicondylitis, other" +"M77.19","Lateral epicondylitis, site unspecified" +"M77.2","Periarthritis of wrist" +"M77.20","Periarthritis of wrist, multiple sites" +"M77.21","Periarthritis of wrist, shoulder region" +"M77.22","Periarthritis of wrist, upper arm" +"M77.23","Periarthritis of wrist, forearm" +"M77.24","Periarthritis of wrist, hand" +"M77.25","Periarthritis of wrist, pelvic region and thigh" +"M77.26","Periarthritis of wrist, lower leg" +"M77.27","Periarthritis of wrist, ankle and foot" +"M77.28","Periarthritis of wrist, other" +"M77.29","Periarthritis of wrist, site unspecified" +"M77.3","Calcaneal spur" +"M77.30","Calcaneal spur, multiple sites" +"M77.31","Calcaneal spur, shoulder region" +"M77.32","Calcaneal spur, upper arm" +"M77.33","Calcaneal spur, forearm" +"M77.34","Calcaneal spur, hand" +"M77.35","Calcaneal spur, pelvic region and thigh" +"M77.36","Calcaneal spur, lower leg" +"M77.37","Calcaneal spur, ankle and foot" +"M77.38","Calcaneal spur, other" +"M77.39","Calcaneal spur, site unspecified" +"M77.4","Metatarsalgia" +"M77.40","Metatarsalgia, multiple sites" +"M77.41","Metatarsalgia, shoulder region" +"M77.42","Metatarsalgia, upper arm" +"M77.43","Metatarsalgia, forearm" +"M77.44","Metatarsalgia, hand" +"M77.45","Metatarsalgia, pelvic region and thigh" +"M77.46","Metatarsalgia, lower leg" +"M77.47","Metatarsalgia, ankle and foot" +"M77.48","Metatarsalgia, other" +"M77.49","Metatarsalgia, site unspecified" +"M77.5","Other enthesopathy of foot" +"M77.50","Other enthesopathy of foot, multiple sites" +"M77.51","Other enthesopathy of foot, shoulder region" +"M77.52","Other enthesopathy of foot, upper arm" +"M77.53","Other enthesopathy of foot, forearm" +"M77.54","Other enthesopathy of foot, hand" +"M77.55","Other enthesopathy of foot, pelvic region and thigh" +"M77.56","Other enthesopathy of foot, lower leg" +"M77.57","Other enthesopathy of foot, ankle and foot" +"M77.58","Other enthesopathy of foot, other" +"M77.59","Other enthesopathy of foot, site unspecified" +"M77.8","Other enthesopathies, not elsewhere classified" +"M77.80","Other enthesopathies, not elsewhere classified, multiple sites" +"M77.81","Other enthesopathies, not elsewhere classified, shoulder region" +"M77.82","Other enthesopathies, not elsewhere classified, upper arm" +"M77.83","Other enthesopathies, not elsewhere classified, forearm" +"M77.84","Other enthesopathies, not elsewhere classified, hand" +"M77.85","Other enthesopathies, not elsewhere classified, pelvic region and thigh" +"M77.86","Other enthesopathies, not elsewhere classified, lower leg" +"M77.87","Other enthesopathies, not elsewhere classified, ankle and foot" +"M77.88","Other enthesopathies, not elsewhere classified, other" +"M77.89","Other enthesopathies, not elsewhere classified, site unspecified" +"M77.9","Enthesopathy, unspecified" +"M77.90","Enthesopathy, unspecified, multiple sites" +"M77.91","Enthesopathy, unspecified, shoulder region" +"M77.92","Enthesopathy, unspecified, upper arm" +"M77.93","Enthesopathy, unspecified, forearm" +"M77.94","Enthesopathy, unspecified, hand" +"M77.95","Enthesopathy, unspecified, pelvic region and thigh" +"M77.96","Enthesopathy, unspecified, lower leg" +"M77.97","Enthesopathy, unspecified, ankle and foot" +"M77.98","Enthesopathy, unspecified, other" +"M77.99","Enthesopathy, unspecified, site unspecified" +"M79","OTHER SOFT TISSUE DISORDERS, NOT ELSEWHERE CLASSIFIED" +"M79.0","Rheumatism, unspecified" +"M79.00","Rheumatism, unspecified, multiple sites" +"M79.01","Rheumatism, unspecified, shoulder region" +"M79.02","Rheumatism, unspecified, upper arm" +"M79.03","Rheumatism, unspecified, forearm" +"M79.04","Rheumatism, unspecified, hand" +"M79.05","Rheumatism, unspecified, pelvic region and thigh" +"M79.06","Rheumatism, unspecified, lower leg" +"M79.07","Rheumatism, unspecified, ankle and foot" +"M79.08","Rheumatism, unspecified, other" +"M79.09","Rheumatism, unspecified, site unspecified" +"M79.1","Myalgia" +"M79.10","Myalgia, multiple sites" +"M79.11","Myalgia, shoulder region" +"M79.12","Myalgia, upper arm" +"M79.13","Myalgia, forearm" +"M79.14","Myalgia, hand" +"M79.15","Myalgia, pelvic and thigh" +"M79.16","Myalgia, lower leg" +"M79.17","Myalgia, ankle and foot" +"M79.18","Myalgia, other site" +"M79.19","Myalgia, site unspecified" +"M79.2","Neuralgia and neuritis, unspecified" +"M79.20","Neuralgia and neuritis, unspecified, multiple sites" +"M79.21","Neuralgia and neuritis, unspecified, shoulder region" +"M79.22","Neuralgia and neuritis, unspecified, upper arm" +"M79.23","Neuralgia and neuritis, unspecified, forearm" +"M79.24","Neuralgia and neuritis, unspecified, hand" +"M79.25","Neuralgia and neuritis, unspecified, pelvic and thigh" +"M79.26","Neuralgia and neuritis, unspecified, lower leg" +"M79.27","Neuralgia and neuritis, unspecified, ankle and foot" +"M79.28","Neuralgia and neuritis, unspecified, other site" +"M79.29","Neuralgia and neuritis, unspecified, site unspecified" +"M79.3","Panniculitis, unspecified" +"M79.30","Panniculitis, unspecified, multiple sites" +"M79.31","Panniculitis, unspecified, shoulder region" +"M79.32","Panniculitis, unspecified, upper arm" +"M79.33","Panniculitis, unspecified, forearm" +"M79.34","Panniculitis, unspecified, hand" +"M79.35","Panniculitis, unspecified, pelvic and thigh" +"M79.36","Panniculitis, unspecified, lower leg" +"M79.37","Panniculitis, unspecified, ankle and foot" +"M79.38","Panniculitis, unspecified, other site" +"M79.39","Panniculitis, unspecified, site unspecified" +"M79.4","Hypertrophy of (infrapatellar) fat pad" +"M79.40","Hypertrophy of (infrapatellar) fat pad, multiple sites" +"M79.41","Hypertrophy of (infrapatellar) fat pad, shoulder region" +"M79.42","Hypertrophy of (infrapatellar) fat pad, upper arm" +"M79.43","Hypertrophy of (infrapatellar) fat pad, forearm" +"M79.44","Hypertrophy of (infrapatellar) fat pad, hand" +"M79.45","Hypertrophy of (infrapatellar) fat pad, pelvic region and thigh" +"M79.46","Hypertrophy of (infrapatellar) fat pad, lower leg" +"M79.47","Hypertrophy of (infrapatellar) fat pad, ankle and foot" +"M79.48","Hypertrophy of (infrapatellar) fat pad, other" +"M79.49","Hypertrophy of (infrapatellar) fat pad, site unspecified" +"M79.5","Residual foreign body in soft tissue" +"M79.50","Residual foreign body in soft tissue, multiple sites" +"M79.51","Residual foreign body in soft tissue, shoulder region" +"M79.52","Residual foreign body in soft tissue, upper arm" +"M79.53","Residual foreign body in soft tissue, forearm" +"M79.54","Residual foreign body in soft tissue, hand" +"M79.55","Residual foreign body in soft tissue, pelvic and thigh" +"M79.56","Residual foreign body in soft tissue, lower leg" +"M79.57","Residual foreign body in soft tissue, ankle and foot" +"M79.58","Residual foreign body in soft tissue, other site" +"M79.59","Residual foreign body in soft tissue, site unspecified" +"M79.6","Pain in limb" +"M79.60","Pain in limb, multiple sites" +"M79.61","Pain in limb, shoulder region" +"M79.62","Pain in limb, upper arm" +"M79.63","Pain in limb, forearm" +"M79.64","Pain in limb, hand" +"M79.65","Pain in limb, pelvic and thigh" +"M79.66","Pain in limb, lower leg" +"M79.67","Pain in limb, ankle and foot" +"M79.68","Pain in limb, other site" +"M79.69","Pain in limb, site unspecified" +"M79.7","Fibromyalgia" +"M79.70","Fibromyalgia, multiple sites" +"M79.71","Fibromyalgia, shoulder region" +"M79.72","Fibromyalgia, upper arm" +"M79.73","Fibromyalgia, forearm" +"M79.74","Fibromyalgia, hand" +"M79.75","Fibromyalgia, pelvic and thigh" +"M79.76","Fibromyalgia, lower leg" +"M79.77","Fibromyalgia, ankle and foot" +"M79.78","Fibromyalgia, other site" +"M79.79","Fibromyalgia, site unspecified" +"M79.8","Other specified soft tissue disorders" +"M79.80","Other specified soft tissue disorders, multiple sites" +"M79.81","Other specified soft tissue disorders, shoulder region" +"M79.82","Other specified soft tissue disorders, upper arm" +"M79.83","Other specified soft tissue disorders, forearm" +"M79.84","Other specified soft tissue disorders, hand" +"M79.85","Other specified soft tissue disorders, pelvic and thigh" +"M79.86","Other specified soft tissue disorders, lower leg" +"M79.87","Other specified soft tissue disorders, ankle and foot" +"M79.88","Other specified soft tissue disorders, other site" +"M79.89","Other specified soft tissue disorders, site unspecified" +"M79.9","Soft tissue disorder, unspecified" +"M79.90","Soft tissue disorder, unspecified, multiple sites" +"M79.91","Soft tissue disorder, unspecified, shoulder region" +"M79.92","Soft tissue disorder, unspecified, upper arm" +"M79.93","Soft tissue disorder, unspecified, forearm" +"M79.94","Soft tissue disorder, unspecified, hand" +"M79.95","Soft tissue disorder, unspecified, pelvic and thigh" +"M79.96","Soft tissue disorder, unspecified, lower leg" +"M79.97","Soft tissue disorder, unspecified, ankle and foot" +"M79.98","Soft tissue disorder, unspecified, other site" +"M79.99","Soft tissue disorder, unspecified, site unspecified" +"M80","Osteoporosis with pathological fracture" +"M80.0","Postmenopausal osteoporosis with pathological fracture" +"M80.00","Postmenopausal osteoporosis with pathological fracture, multiple sites" +"M80.01","Postmenopausal osteoporosis with pathological fracture, shoulder region" +"M80.02","Postmenopausal osteoporosis with pathological fracture, upper arm" +"M80.03","Postmenopausal osteoporosis with pathological fracture, forearm" +"M80.04","Postmenopausal osteoporosis with pathological fracture, hand" +"M80.05","Postmenopausal osteoporosis with pathological fracture, pelvic and thigh" +"M80.06","Postmenopausal osteoporosis with pathological fracture, lower leg" +"M80.07","Postmenopausal osteoporosis with pathological fracture, ankle and foot" +"M80.08","Postmenopausal osteoporosis with pathological fracture, other site" +"M80.09","Postmenopausal osteoporosis with pathological fracture, site unspecified" +"M80.1","Postoophorectomy osteoporosis with pathological fracture" +"M80.10","Postoophorectomy osteoporosis with pathological fracture, multiple sites" +"M80.11","Postoophorectomy osteoporosis with pathological fracture, shoulder region" +"M80.12","Postoophorectomy osteoporosis with pathological fracture, upper arm" +"M80.13","Postoophorectomy osteoporosis with pathological fracture, forearm" +"M80.14","Postoophorectomy osteoporosis with pathological fracture, hand" +"M80.15","Postoophorectomy osteoporosis with pathological fracture, pelvic and thigh" +"M80.16","Postoophorectomy osteoporosis with pathological fracture, lower leg" +"M80.17","Postoophorectomy osteoporosis with pathological fracture, ankle and foot" +"M80.18","Postoophorectomy osteoporosis with pathological fracture, other site" +"M80.19","Postoophorectomy osteoporosis with pathological fracture, site unspecified" +"M80.2","Osteoporosis of disuse with pathological fracture" +"M80.20","Osteoporosis of disuse with pathological fracture, multiple sites" +"M80.21","Osteoporosis of disuse with pathological fracture, shoulder region" +"M80.22","Osteoporosis of disuse with pathological fracture, upper arm" +"M80.23","Osteoporosis of disuse with pathological fracture, forearm" +"M80.24","Osteoporosis of disuse with pathological fracture, hand" +"M80.25","Osteoporosis of disuse with pathological fracture, pelvic and thigh" +"M80.26","Osteoporosis of disuse with pathological fracture, lower leg" +"M80.27","Osteoporosis of disuse with pathological fracture, ankle and foot" +"M80.28","Osteoporosis of disuse with pathological fracture, other site" +"M80.29","Osteoporosis of disuse with pathological fracture, site unspecified" +"M80.3","Postsurgical malabsorption osteoporosis with path fracture" +"M80.30","Postsurgical malabsorption osteoporosis with path fracture, multiple sites" +"M80.31","Postsurgical malabsorption osteoporosis with path fracture, shoulder region" +"M80.32","Postsurgical malabsorption osteoporosis with path fracture, upper arm" +"M80.33","Postsurgical malabsorption osteoporosis with path fracture, forearm" +"M80.34","Postsurgical malabsorption osteoporosis with path fracture, hand" +"M80.35","Postsurgical malabsorption osteoporosis with path fracture, pelvic and thigh" +"M80.36","Postsurgical malabsorption osteoporosis with path fracture, lower leg" +"M80.37","Postsurgical malabsorption osteoporosis with path fracture, ankle and foot" +"M80.38","Postsurgical malabsorption osteoporosis with path fracture, other site" +"M80.39","Postsurgical malabsorption osteoporosis with path fracture, site unspecified" +"M80.4","Drug-induced osteoporosis with pathological fracture" +"M80.40","Drug-induced osteoporosis with pathological fracture, multiple sites" +"M80.41","Drug-induced osteoporosis with pathological fracture, shoulder region" +"M80.42","Drug-induced osteoporosis with pathological fracture, upper arm" +"M80.43","Drug-induced osteoporosis with pathological fracture, forearm" +"M80.44","Drug-induced osteoporosis with pathological fracture, hand" +"M80.45","Drug-induced osteoporosis with pathological fracture, pelvic and thigh" +"M80.46","Drug-induced osteoporosis with pathological fracture, lower leg" +"M80.47","Drug-induced osteoporosis with pathological fracture, ankle and foot" +"M80.48","Drug-induced osteoporosis with pathological fracture, other site" +"M80.49","Drug-induced osteoporosis with pathological fracture, site unspecified" +"M80.5","Idiopathic osteoporosis with pathological fracture" +"M80.50","Idiopathic osteoporosis with pathological fracture, multiple sites" +"M80.51","Idiopathic osteoporosis with pathological fracture, shoulder region" +"M80.52","Idiopathic osteoporosis with pathological fracture, upper arm" +"M80.53","Idiopathic osteoporosis with pathological fracture, forearm" +"M80.54","Idiopathic osteoporosis with pathological fracture, hand" +"M80.55","Idiopathic osteoporosis with pathological fracture, pelvic and thigh" +"M80.56","Idiopathic osteoporosis with pathological fracture, lower leg" +"M80.57","Idiopathic osteoporosis with pathological fracture, ankle and foot" +"M80.58","Idiopathic osteoporosis with pathological fracture, other site" +"M80.59","Idiopathic osteoporosis with pathological fracture, site unspecified" +"M80.8","Other osteoporosis with pathological fracture" +"M80.80","Other osteoporosis with pathological fracture, multiple sites" +"M80.81","Other osteoporosis with pathological fracture, shoulder region" +"M80.82","Other osteoporosis with pathological fracture, upper arm" +"M80.83","Other osteoporosis with pathological fracture, forearm" +"M80.84","Other osteoporosis with pathological fracture, hand" +"M80.85","Other osteoporosis with pathological fracture, pelvic and thigh" +"M80.86","Other osteoporosis with pathological fracture, lower leg" +"M80.87","Other osteoporosis with pathological fracture, ankle and foot" +"M80.88","Other osteoporosis with pathological fracture, other site" +"M80.89","Other osteoporosis with pathological fracture, site unspecified" +"M80.9","Unspecified osteoporosis with pathological fracture" +"M80.90","Unspecified osteoporosis with pathological fracture, multiple sites" +"M80.91","Unspecified osteoporosis with pathological fracture, shoulder region" +"M80.92","Unspecified osteoporosis with pathological fracture, upper arm" +"M80.93","Unspecified osteoporosis with pathological fracture, forearm" +"M80.94","Unspecified osteoporosis with pathological fracture, hand" +"M80.95","Unspecified osteoporosis with pathological fracture, pelvic and thigh" +"M80.96","Unspecified osteoporosis with pathological fracture, lower leg" +"M80.97","Unspecified osteoporosis with pathological fracture, ankle and foot" +"M80.98","Unspecified osteoporosis with pathological fracture, other site" +"M80.99","Unspecified osteoporosis with pathological fracture, site unspecified" +"M81","Osteoporosis without pathological fracture" +"M81.0","Postmenopausal osteoporosis" +"M81.00","Postmenopausal osteoporosis, multiple sites" +"M81.01","Postmenopausal osteoporosis, shoulder region" +"M81.02","Postmenopausal osteoporosis, upper arm" +"M81.03","Postmenopausal osteoporosis, forearm" +"M81.04","Postmenopausal osteoporosis, hand" +"M81.05","Postmenopausal osteoporosis, pelvic and thigh" +"M81.06","Postmenopausal osteoporosis, lower leg" +"M81.07","Postmenopausal osteoporosis, ankle and foot" +"M81.08","Postmenopausal osteoporosis, other site" +"M81.09","Postmenopausal osteoporosis, site unspecified" +"M81.1","Postoophorectomy osteoporosis" +"M81.10","Postoophorectomy osteoporosis, multiple sites" +"M81.11","Postoophorectomy osteoporosis, shoulder region" +"M81.12","Postoophorectomy osteoporosis, upper arm" +"M81.13","Postoophorectomy osteoporosis, forearm" +"M81.14","Postoophorectomy osteoporosis, hand" +"M81.15","Postoophorectomy osteoporosis, pelvic and thigh" +"M81.16","Postoophorectomy osteoporosis, lower leg" +"M81.17","Postoophorectomy osteoporosis, ankle and foot" +"M81.18","Postoophorectomy osteoporosis, other site" +"M81.19","Postoophorectomy osteoporosis, site unspecified" +"M81.2","Osteoporosis of disuse" +"M81.20","Osteoporosis of disuse, multiple sites" +"M81.21","Osteoporosis of disuse, shoulder region" +"M81.22","Osteoporosis of disuse, upper arm" +"M81.23","Osteoporosis of disuse, forearm" +"M81.24","Osteoporosis of disuse, hand" +"M81.25","Osteoporosis of disuse, pelvic and thigh" +"M81.26","Osteoporosis of disuse, lower leg" +"M81.27","Osteoporosis of disuse, ankle and foot" +"M81.28","Osteoporosis of disuse, other site" +"M81.29","Osteoporosis of disuse, site unspecified" +"M81.3","Postsurgical malabsorption osteoporosis" +"M81.30","Postsurgical malabsorption osteoporosis, multiple sites" +"M81.31","Postsurgical malabsorption osteoporosis, shoulder region" +"M81.32","Postsurgical malabsorption osteoporosis, upper arm" +"M81.33","Postsurgical malabsorption osteoporosis, forearm" +"M81.34","Postsurgical malabsorption osteoporosis, hand" +"M81.35","Postsurgical malabsorption osteoporosis, pelvic and thigh" +"M81.36","Postsurgical malabsorption osteoporosis, lower leg" +"M81.37","Postsurgical malabsorption osteoporosis, ankle and foot" +"M81.38","Postsurgical malabsorption osteoporosis, other site" +"M81.39","Postsurgical malabsorption osteoporosis, site unspecified" +"M81.4","Drug-induced osteoporosis" +"M81.40","Drug-induced osteoporosis, multiple sites" +"M81.41","Drug-induced osteoporosis, shoulder region" +"M81.42","Drug-induced osteoporosis, upper arm" +"M81.43","Drug-induced osteoporosis, forearm" +"M81.44","Drug-induced osteoporosis, hand" +"M81.45","Drug-induced osteoporosis, pelvic and thigh" +"M81.46","Drug-induced osteoporosis, lower leg" +"M81.47","Drug-induced osteoporosis, ankle and foot" +"M81.48","Drug-induced osteoporosis, other site" +"M81.49","Drug-induced osteoporosis, site unspecified" +"M81.5","Idiopathic osteoporosis" +"M81.50","Idiopathic osteoporosis, multiple sites" +"M81.51","Idiopathic osteoporosis, shoulder region" +"M81.52","Idiopathic osteoporosis, upper arm" +"M81.53","Idiopathic osteoporosis, forearm" +"M81.54","Idiopathic osteoporosis, hand" +"M81.55","Idiopathic osteoporosis, pelvic and thigh" +"M81.56","Idiopathic osteoporosis, lower leg" +"M81.57","Idiopathic osteoporosis, ankle and foot" +"M81.58","Idiopathic osteoporosis, other site" +"M81.59","Idiopathic osteoporosis, site unspecified" +"M81.6","Localized osteoporosis [Lequesne]" +"M81.60","Localized osteoporosis [lequesne], multiple sites" +"M81.61","Localized osteoporosis [lequesne], shoulder region" +"M81.62","Localized osteoporosis [lequesne], upper arm" +"M81.63","Localized osteoporosis [lequesne], forearm" +"M81.64","Localized osteoporosis [lequesne], hand" +"M81.65","Localized osteoporosis [lequesne], pelvic and thigh" +"M81.66","Localized osteoporosis [lequesne], lower leg" +"M81.67","Localized osteoporosis [lequesne], ankle and foot" +"M81.68","Localized osteoporosis [lequesne], other site" +"M81.69","Localized osteoporosis [lequesne], site unspecified" +"M81.8","Other osteoporosis" +"M81.80","Other osteoporosis, multiple sites" +"M81.81","Other osteoporosis, shoulder region" +"M81.82","Other osteoporosis, upper arm" +"M81.83","Other osteoporosis, forearm" +"M81.84","Other osteoporosis, hand" +"M81.85","Other osteoporosis, pelvic and thigh" +"M81.86","Other osteoporosis, lower leg" +"M81.87","Other osteoporosis, ankle and foot" +"M81.88","Other osteoporosis, other site" +"M81.89","Other osteoporosis, site unspecified" +"M81.9","Osteoporosis, unspecified" +"M81.90","Osteoporosis, unspecified, multiple sites" +"M81.91","Osteoporosis, unspecified, shoulder region" +"M81.92","Osteoporosis, unspecified, upper arm" +"M81.93","Osteoporosis, unspecified, forearm" +"M81.94","Osteoporosis, unspecified, hand" +"M81.95","Osteoporosis, unspecified, pelvic and thigh" +"M81.96","Osteoporosis, unspecified, lower leg" +"M81.97","Osteoporosis, unspecified, ankle and foot" +"M81.98","Osteoporosis, unspecified, other site" +"M81.99","Osteoporosis, unspecified, site unspecified" +"M82","OSTEOPOROSIS IN DISEASES CLASSIFIED ELSEWHERE" +"M82.0","Osteoporosis in multiple myelomatosis" +"M82.00","Osteoporosis in multiple myelomatosis, multiple sites" +"M82.01","Osteoporosis in multiple myelomatosis, shoulder region" +"M82.02","Osteoporosis in multiple myelomatosis, upper arm" +"M82.03","Osteoporosis in multiple myelomatosis, forearm" +"M82.04","Osteoporosis in multiple myelomatosis, hand" +"M82.05","Osteoporosis in multiple myelomatosis, pelvic and thigh" +"M82.06","Osteoporosis in multiple myelomatosis, lower leg" +"M82.07","Osteoporosis in multiple myelomatosis, ankle and foot" +"M82.08","Osteoporosis in multiple myelomatosis, other site" +"M82.09","Osteoporosis in multiple myelomatosis, site unspecified" +"M82.1","Osteoporosis in endocrine disorders" +"M82.10","Osteoporosis in endocrine disorders, multiple sites" +"M82.11","Osteoporosis in endocrine disorders, shoulder region" +"M82.12","Osteoporosis in endocrine disorders, upper arm" +"M82.13","Osteoporosis in endocrine disorders, forearm" +"M82.14","Osteoporosis in endocrine disorders, hand" +"M82.15","Osteoporosis in endocrine disorders, pelvic and thigh" +"M82.16","Osteoporosis in endocrine disorders, lower leg" +"M82.17","Osteoporosis in endocrine disorders, ankle and foot" +"M82.18","Osteoporosis in endocrine disorders, other site" +"M82.19","Osteoporosis in endocrine disorders, site unspecified" +"M82.8","Osteoporosis in other diseases classified elsewhere" +"M82.80","Osteoporosis in other diseases classified elsewhere, multiple sites" +"M82.81","Osteoporosis in other diseases classified elsewhere, shoulder region" +"M82.82","Osteoporosis in other diseases classified elsewhere, upper arm" +"M82.83","Osteoporosis in other diseases classified elsewhere, forearm" +"M82.84","Osteoporosis in other diseases classified elsewhere, hand" +"M82.85","Osteoporosis in other diseases classified elsewhere, pelvic and thigh" +"M82.86","Osteoporosis in other diseases classified elsewhere, lower leg" +"M82.87","Osteoporosis in other diseases classified elsewhere, ankle and foot" +"M82.88","Osteoporosis in other diseases classified elsewhere, other site" +"M82.89","Osteoporosis in other diseases classified elsewhere, site unspecified" +"M83","ADULT OSTEOMALACIA" +"M83.0","Puerperal osteomalacia" +"M83.00","Puerperal osteomalacia, multiple sites" +"M83.01","Puerperal osteomalacia, shoulder region" +"M83.02","Puerperal osteomalacia, upper arm" +"M83.03","Puerperal osteomalacia, forearm" +"M83.04","Puerperal osteomalacia, hand" +"M83.05","Puerperal osteomalacia, pelvic and thigh" +"M83.06","Puerperal osteomalacia, lower leg" +"M83.07","Puerperal osteomalacia, ankle and foot" +"M83.08","Puerperal osteomalacia, other site" +"M83.09","Puerperal osteomalacia, site unspecified" +"M83.1","Senile osteomalacia" +"M83.10","Senile osteomalacia, multiple sites" +"M83.11","Senile osteomalacia, shoulder region" +"M83.12","Senile osteomalacia, upper arm" +"M83.13","Senile osteomalacia, forearm" +"M83.14","Senile osteomalacia, hand" +"M83.15","Senile osteomalacia, pelvic and thigh" +"M83.16","Senile osteomalacia, lower leg" +"M83.17","Senile osteomalacia, ankle and foot" +"M83.18","Senile osteomalacia, other site" +"M83.19","Senile osteomalacia, site unspecified" +"M83.2","Adult osteomalacia due to malabsorption" +"M83.20","Adult osteomalacia due to malabsorption, multiple sites" +"M83.21","Adult osteomalacia due to malabsorption, shoulder region" +"M83.22","Adult osteomalacia due to malabsorption, upper arm" +"M83.23","Adult osteomalacia due to malabsorption, forearm" +"M83.24","Adult osteomalacia due to malabsorption, hand" +"M83.25","Adult osteomalacia due to malabsorption, pelvic and thigh" +"M83.26","Adult osteomalacia due to malabsorption, lower leg" +"M83.27","Adult osteomalacia due to malabsorption, ankle and foot" +"M83.28","Adult osteomalacia due to malabsorption, other site" +"M83.29","Adult osteomalacia due to malabsorption, site unspecified" +"M83.3","Adult osteomalacia due to malnutrition" +"M83.30","Adult osteomalacia due to malnutrition, multiple sites" +"M83.31","Adult osteomalacia due to malnutrition, shoulder region" +"M83.32","Adult osteomalacia due to malnutrition, upper arm" +"M83.33","Adult osteomalacia due to malnutrition, forearm" +"M83.34","Adult osteomalacia due to malnutrition, hand" +"M83.35","Adult osteomalacia due to malnutrition, pelvic and thigh" +"M83.36","Adult osteomalacia due to malnutrition, lower leg" +"M83.37","Adult osteomalacia due to malnutrition, ankle and foot" +"M83.38","Adult osteomalacia due to malnutrition, other site" +"M83.39","Adult osteomalacia due to malnutrition, site unspecified" +"M83.4","Aluminium bone disease" +"M83.40","Aluminium bone disease, multiple sites" +"M83.41","Aluminium bone disease, shoulder region" +"M83.42","Aluminium bone disease, upper arm" +"M83.43","Aluminium bone disease, forearm" +"M83.44","Aluminium bone disease, hand" +"M83.45","Aluminium bone disease, pelvic and thigh" +"M83.46","Aluminium bone disease, lower leg" +"M83.47","Aluminium bone disease, ankle and foot" +"M83.48","Aluminium bone disease, other site" +"M83.49","Aluminium bone disease, site unspecified" +"M83.5","Other drug-induced osteomalacia in adults" +"M83.50","Other drug-induced osteomalacia in adults, multiple sites" +"M83.51","Other drug-induced osteomalacia in adults, shoulder region" +"M83.52","Other drug-induced osteomalacia in adults, upper arm" +"M83.53","Other drug-induced osteomalacia in adults, forearm" +"M83.54","Other drug-induced osteomalacia in adults, hand" +"M83.55","Other drug-induced osteomalacia in adults, pelvic and thigh" +"M83.56","Other drug-induced osteomalacia in adults, lower leg" +"M83.57","Other drug-induced osteomalacia in adults, ankle and foot" +"M83.58","Other drug-induced osteomalacia in adults, other site" +"M83.59","Other drug-induced osteomalacia in adults, site unspecified" +"M83.8","Other adult osteomalacia" +"M83.80","Other adult osteomalacia, multiple sites" +"M83.81","Other adult osteomalacia, shoulder region" +"M83.82","Other adult osteomalacia, upper arm" +"M83.83","Other adult osteomalacia, forearm" +"M83.84","Other adult osteomalacia, hand" +"M83.85","Other adult osteomalacia, pelvic and thigh" +"M83.86","Other adult osteomalacia, lower leg" +"M83.87","Other adult osteomalacia, ankle and foot" +"M83.88","Other adult osteomalacia, other site" +"M83.89","Other adult osteomalacia, site unspecified" +"M83.9","Adult osteomalacia, unspecified" +"M83.90","Adult osteomalacia, unspecified, multiple sites" +"M83.91","Adult osteomalacia, unspecified, shoulder region" +"M83.92","Adult osteomalacia, unspecified, upper arm" +"M83.93","Adult osteomalacia, unspecified, forearm" +"M83.94","Adult osteomalacia, unspecified, hand" +"M83.95","Adult osteomalacia, unspecified, pelvic and thigh" +"M83.96","Adult osteomalacia, unspecified, lower leg" +"M83.97","Adult osteomalacia, unspecified, ankle and foot" +"M83.98","Adult osteomalacia, unspecified, other site" +"M83.99","Adult osteomalacia, unspecified, site unspecified" +"M84","DISORDERS OF CONTINUITY OF BONE" +"M84.0","Malunion of fracture" +"M84.00","Malunion of fracture, multiple sites" +"M84.01","Malunion of fracture, shoulder region" +"M84.02","Malunion of fracture, upper arm" +"M84.03","Malunion of fracture, forearm" +"M84.04","Malunion of fracture, hand" +"M84.05","Malunion of fracture, pelvic and thigh" +"M84.06","Malunion of fracture, lower leg" +"M84.07","Malunion of fracture, ankle and foot" +"M84.08","Malunion of fracture, other site" +"M84.09","Malunion of fracture, site unspecified" +"M84.1","Nonunion of fracture [pseudarthrosis]" +"M84.10","Nonunion of fracture [pseudarthrosis], multiple sites" +"M84.11","Nonunion of fracture [pseudarthrosis], shoulder region" +"M84.12","Nonunion of fracture [pseudarthrosis], upper arm" +"M84.13","Nonunion of fracture [pseudarthrosis], forearm" +"M84.14","Nonunion of fracture [pseudarthrosis], hand" +"M84.15","Nonunion of fracture [pseudarthrosis], pelvic and thigh" +"M84.16","Nonunion of fracture [pseudarthrosis], lower leg" +"M84.17","Nonunion of fracture [pseudarthrosis], ankle and foot" +"M84.18","Nonunion of fracture [pseudarthrosis], other site" +"M84.19","Nonunion of fracture [pseudarthrosis], site unspecified" +"M84.2","Delayed union of fracture" +"M84.20","Delayed union of fracture, multiple sites" +"M84.21","Delayed union of fracture, shoulder region" +"M84.22","Delayed union of fracture, upper arm" +"M84.23","Delayed union of fracture, forearm" +"M84.24","Delayed union of fracture, hand" +"M84.25","Delayed union of fracture, pelvic and thigh" +"M84.26","Delayed union of fracture, lower leg" +"M84.27","Delayed union of fracture, ankle and foot" +"M84.28","Delayed union of fracture, other site" +"M84.29","Delayed union of fracture, site unspecified" +"M84.3","Stress fracture, not elsewhere classified" +"M84.30","Stress fracture, not elsewhere classified, multiple sites" +"M84.31","Stress fracture, not elsewhere classified, shoulder region" +"M84.32","Stress fracture, not elsewhere classified, upper arm" +"M84.33","Stress fracture, not elsewhere classified, forearm" +"M84.34","Stress fracture, not elsewhere classified, hand" +"M84.35","Stress fracture, not elsewhere classified, pelvic and thigh" +"M84.36","Stress fracture, not elsewhere classified, lower leg" +"M84.37","Stress fracture, not elsewhere classified, ankle and foot" +"M84.38","Stress fracture, not elsewhere classified, other site" +"M84.39","Stress fracture, not elsewhere classified, site unspecified" +"M84.4","Pathological fracture, not elsewhere classified" +"M84.40","Pathological fracture, not elsewhere classified, multiple sites" +"M84.41","Pathological fracture, not elsewhere classified, shoulder region" +"M84.42","Pathological fracture, not elsewhere classified, upper arm" +"M84.43","Pathological fracture, not elsewhere classified, forearm" +"M84.44","Pathological fracture, not elsewhere classified, hand" +"M84.45","Pathological fracture, not elsewhere classified, pelvic and thigh" +"M84.46","Pathological fracture, not elsewhere classified, lower leg" +"M84.47","Pathological fracture, not elsewhere classified, ankle and foot" +"M84.48","Pathological fracture, not elsewhere classified, other site" +"M84.49","Pathological fracture, not elsewhere classified, site unspecified" +"M84.8","Other disorders of continuity of bone" +"M84.80","Other disorders of continuity of bone, multiple sites" +"M84.81","Other disorders of continuity of bone, shoulder region" +"M84.82","Other disorders of continuity of bone, upper arm" +"M84.83","Other disorders of continuity of bone, forearm" +"M84.84","Other disorders of continuity of bone, hand" +"M84.85","Other disorders of continuity of bone, pelvic and thigh" +"M84.86","Other disorders of continuity of bone, lower leg" +"M84.87","Other disorders of continuity of bone, ankle and foot" +"M84.88","Other disorders of continuity of bone, other site" +"M84.89","Other disorders of continuity of bone, site unspecified" +"M84.9","Disorder of continuity of bone, unspecified" +"M84.90","Disorder of continuity of bone, unspecified, multiple sites" +"M84.91","Disorder of continuity of bone, unspecified, shoulder region" +"M84.92","Disorder of continuity of bone, unspecified, upper arm" +"M84.93","Disorder of continuity of bone, unspecified, forearm" +"M84.94","Disorder of continuity of bone, unspecified, hand" +"M84.95","Disorder of continuity of bone, unspecified, pelvic and thigh" +"M84.96","Disorder of continuity of bone, unspecified, lower leg" +"M84.97","Disorder of continuity of bone, unspecified, ankle and foot" +"M84.98","Disorder of continuity of bone, unspecified, other site" +"M84.99","Disorder of continuity of bone, unspecified, site unspecified" +"M85","OTHER DISORDERS OF BONE DENSITY AND STRUCTURE" +"M85.0","Fibrous dysplasia (monostotic)" +"M85.00","Fibrous dysplasia (monostotic), multiple sites" +"M85.01","Fibrous dysplasia (monostotic), shoulder region" +"M85.02","Fibrous dysplasia (monostotic), upper arm" +"M85.03","Fibrous dysplasia (monostotic), forearm" +"M85.04","Fibrous dysplasia (monostotic), hand" +"M85.05","Fibrous dysplasia (monostotic), pelvic and thigh" +"M85.06","Fibrous dysplasia (monostotic), lower leg" +"M85.07","Fibrous dysplasia (monostotic), ankle and foot" +"M85.08","Fibrous dysplasia (monostotic), other site" +"M85.09","Fibrous dysplasia (monostotic), site unspecified" +"M85.1","Skeletal fluorosis" +"M85.10","Skeletal fluorosis, multiple sites" +"M85.11","Skeletal fluorosis, shoulder region" +"M85.12","Skeletal fluorosis, upper arm" +"M85.13","Skeletal fluorosis, forearm" +"M85.14","Skeletal fluorosis, hand" +"M85.15","Skeletal fluorosis, pelvic and thigh" +"M85.16","Skeletal fluorosis, lower leg" +"M85.17","Skeletal fluorosis, ankle and foot" +"M85.18","Skeletal fluorosis, other site" +"M85.19","Skeletal fluorosis, site unspecified" +"M85.2","Hyperostosis of skull" +"M85.20","Hyperostosis of skull, multiple sites" +"M85.21","Hyperostosis of skull, shoulder region" +"M85.22","Hyperostosis of skull, upper arm" +"M85.23","Hyperostosis of skull, forearm" +"M85.24","Hyperostosis of skull, hand" +"M85.25","Hyperostosis of skull, pelvic region and thigh" +"M85.26","Hyperostosis of skull, lower leg" +"M85.27","Hyperostosis of skull, ankle and foot" +"M85.28","Hyperostosis of skull, other" +"M85.29","Hyperostosis of skull, site unspecified" +"M85.3","Osteitis condensans" +"M85.30","Osteitis condensans, multiple sites" +"M85.31","Osteitis condensans, shoulder region" +"M85.32","Osteitis condensans, upper arm" +"M85.33","Osteitis condensans, forearm" +"M85.34","Osteitis condensans, hand" +"M85.35","Osteitis condensans, pelvic and thigh" +"M85.36","Osteitis condensans, lower leg" +"M85.37","Osteitis condensans, ankle and foot" +"M85.38","Osteitis condensans, other site" +"M85.39","Osteitis condensans, site unspecified" +"M85.4","Solitary bone cyst" +"M85.40","Solitary bone cyst, multiple sites" +"M85.41","Solitary bone cyst, shoulder region" +"M85.42","Solitary bone cyst, upper arm" +"M85.43","Solitary bone cyst, forearm" +"M85.44","Solitary bone cyst, hand" +"M85.45","Solitary bone cyst, pelvic and thigh" +"M85.46","Solitary bone cyst, lower leg" +"M85.47","Solitary bone cyst, ankle and foot" +"M85.48","Solitary bone cyst, other site" +"M85.49","Solitary bone cyst, site unspecified" +"M85.5","Aneurysmal bone cyst" +"M85.50","Aneurysmal bone cyst, multiple sites" +"M85.51","Aneurysmal bone cyst, shoulder region" +"M85.52","Aneurysmal bone cyst, upper arm" +"M85.53","Aneurysmal bone cyst, forearm" +"M85.54","Aneurysmal bone cyst, hand" +"M85.55","Aneurysmal bone cyst, pelvic and thigh" +"M85.56","Aneurysmal bone cyst, lower leg" +"M85.57","Aneurysmal bone cyst, ankle and foot" +"M85.58","Aneurysmal bone cyst, other site" +"M85.59","Aneurysmal bone cyst, site unspecified" +"M85.6","Other cyst of bone" +"M85.60","Other cyst of bone, multiple sites" +"M85.61","Other cyst of bone, shoulder region" +"M85.62","Other cyst of bone, upper arm" +"M85.63","Other cyst of bone, forearm" +"M85.64","Other cyst of bone, hand" +"M85.65","Other cyst of bone, pelvic and thigh" +"M85.66","Other cyst of bone, lower leg" +"M85.67","Other cyst of bone, ankle and foot" +"M85.68","Other cyst of bone, other site" +"M85.69","Other cyst of bone, site unspecified" +"M85.8","Other specified disorders of bone density and structure" +"M85.80","Other specified disorders of bone density and structure, multiple sites" +"M85.81","Other specified disorders of bone density and structure, shoulder region" +"M85.82","Other specified disorders of bone density and structure, upper arm" +"M85.83","Other specified disorders of bone density and structure, forearm" +"M85.84","Other specified disorders of bone density and structure, hand" +"M85.85","Other specified disorders of bone density and structure, pelvic and thigh" +"M85.86","Other specified disorders of bone density and structure, lower leg" +"M85.87","Other specified disorders of bone density and structure, ankle and foot" +"M85.88","Other specified disorders of bone density and structure, other site" +"M85.89","Other specified disorders of bone density and structure, site unspecified" +"M85.9","Disorder of bone density and structure, unspecified" +"M85.90","Disorder of bone density and structure, unspecified, multiple sites" +"M85.91","Disorder of bone density and structure, unspecified, shoulder region" +"M85.92","Disorder of bone density and structure, unspecified, upper arm" +"M85.93","Disorder of bone density and structure, unspecified, forearm" +"M85.94","Disorder of bone density and structure, unspecified, hand" +"M85.95","Disorder of bone density and structure, unspecified, pelvic and thigh" +"M85.96","Disorder of bone density and structure, unspecified, lower leg" +"M85.97","Disorder of bone density and structure, unspecified, ankle and foot" +"M85.98","Disorder of bone density and structure, unspecified, other site" +"M85.99","Disorder of bone density and structure, unspecified, site unspecified" +"M86","OSTEOMYELITIS" +"M86.0","Acute haematogenous osteomyelitis" +"M86.00","Acute haematogenous osteomyelitis, multiple sites" +"M86.01","Acute haematogenous osteomyelitis, shoulder region" +"M86.02","Acute haematogenous osteomyelitis, upper arm" +"M86.03","Acute haematogenous osteomyelitis, forearm" +"M86.04","Acute haematogenous osteomyelitis, hand" +"M86.05","Acute haematogenous osteomyelitis, pelvic and thigh" +"M86.06","Acute haematogenous osteomyelitis, lower leg" +"M86.07","Acute haematogenous osteomyelitis, ankle and foot" +"M86.08","Acute haematogenous osteomyelitis, other site" +"M86.09","Acute haematogenous osteomyelitis, site unspecified" +"M86.1","Other acute osteomyelitis" +"M86.10","Other acute osteomyelitis, multiple sites" +"M86.11","Other acute osteomyelitis, shoulder region" +"M86.12","Other acute osteomyelitis, upper arm" +"M86.13","Other acute osteomyelitis, forearm" +"M86.14","Other acute osteomyelitis, hand" +"M86.15","Other acute osteomyelitis, pelvic and thigh" +"M86.16","Other acute osteomyelitis, lower leg" +"M86.17","Other acute osteomyelitis, ankle and foot" +"M86.18","Other acute osteomyelitis, other site" +"M86.19","Other acute osteomyelitis, site unspecified" +"M86.2","Subacute osteomyelitis" +"M86.20","Subacute osteomyelitis, multiple sites" +"M86.21","Subacute osteomyelitis, shoulder region" +"M86.22","Subacute osteomyelitis, upper arm" +"M86.23","Subacute osteomyelitis, forearm" +"M86.24","Subacute osteomyelitis, hand" +"M86.25","Subacute osteomyelitis, pelvic and thigh" +"M86.26","Subacute osteomyelitis, lower leg" +"M86.27","Subacute osteomyelitis, ankle and foot" +"M86.28","Subacute osteomyelitis, other site" +"M86.29","Subacute osteomyelitis, site unspecified" +"M86.3","Chronic multifocal osteomyelitis" +"M86.30","Chronic multifocal osteomyelitis, multiple sites" +"M86.31","Chronic multifocal osteomyelitis, shoulder region" +"M86.32","Chronic multifocal osteomyelitis, upper arm" +"M86.33","Chronic multifocal osteomyelitis, forearm" +"M86.34","Chronic multifocal osteomyelitis, hand" +"M86.35","Chronic multifocal osteomyelitis, pelvic and thigh" +"M86.36","Chronic multifocal osteomyelitis, lower leg" +"M86.37","Chronic multifocal osteomyelitis, ankle and foot" +"M86.38","Chronic multifocal osteomyelitis, other site" +"M86.39","Chronic multifocal osteomyelitis, site unspecified" +"M86.4","Chronic osteomyelitis with draining sinus" +"M86.40","Chronic osteomyelitis with draining sinus, multiple sites" +"M86.41","Chronic osteomyelitis with draining sinus, shoulder region" +"M86.42","Chronic osteomyelitis with draining sinus, upper arm" +"M86.43","Chronic osteomyelitis with draining sinus, forearm" +"M86.44","Chronic osteomyelitis with draining sinus, hand" +"M86.45","Chronic osteomyelitis with draining sinus, pelvic and thigh" +"M86.46","Chronic osteomyelitis with draining sinus, lower leg" +"M86.47","Chronic osteomyelitis with draining sinus, ankle and foot" +"M86.48","Chronic osteomyelitis with draining sinus, other site" +"M86.49","Chronic osteomyelitis with draining sinus, site unspecified" +"M86.5","Other chronic haematogenous osteomyelitis" +"M86.50","Other chronic haematogenous osteomyelitis, multiple sites" +"M86.51","Other chronic haematogenous osteomyelitis, shoulder region" +"M86.52","Other chronic haematogenous osteomyelitis, upper arm" +"M86.53","Other chronic haematogenous osteomyelitis, forearm" +"M86.54","Other chronic haematogenous osteomyelitis, hand" +"M86.55","Other chronic haematogenous osteomyelitis, pelvic and thigh" +"M86.56","Other chronic haematogenous osteomyelitis, lower leg" +"M86.57","Other chronic haematogenous osteomyelitis, ankle and foot" +"M86.58","Other chronic haematogenous osteomyelitis, other site" +"M86.59","Other chronic haematogenous osteomyelitis, site unspecified" +"M86.6","Other chronic osteomyelitis" +"M86.60","Other chronic osteomyelitis, multiple sites" +"M86.61","Other chronic osteomyelitis, shoulder region" +"M86.62","Other chronic osteomyelitis, upper arm" +"M86.63","Other chronic osteomyelitis, forearm" +"M86.64","Other chronic osteomyelitis, hand" +"M86.65","Other chronic osteomyelitis, pelvic and thigh" +"M86.66","Other chronic osteomyelitis, lower leg" +"M86.67","Other chronic osteomyelitis, ankle and foot" +"M86.68","Other chronic osteomyelitis, other site" +"M86.69","Other chronic osteomyelitis, site unspecified" +"M86.8","Other osteomyelitis" +"M86.80","Other osteomyelitis, multiple sites" +"M86.81","Other osteomyelitis, shoulder region" +"M86.82","Other osteomyelitis, upper arm" +"M86.83","Other osteomyelitis, forearm" +"M86.84","Other osteomyelitis, hand" +"M86.85","Other osteomyelitis, pelvic and thigh" +"M86.86","Other osteomyelitis, lower leg" +"M86.87","Other osteomyelitis, ankle and foot" +"M86.88","Other osteomyelitis, other site" +"M86.89","Other osteomyelitis, site unspecified" +"M86.9","Osteomyelitis, unspecified" +"M86.90","Osteomyelitis, unspecified, multiple sites" +"M86.91","Osteomyelitis, unspecified, shoulder region" +"M86.92","Osteomyelitis, unspecified, upper arm" +"M86.93","Osteomyelitis, unspecified, forearm" +"M86.94","Osteomyelitis, unspecified, hand" +"M86.95","Osteomyelitis, unspecified, pelvic and thigh" +"M86.96","Osteomyelitis, unspecified, lower leg" +"M86.97","Osteomyelitis, unspecified, ankle and foot" +"M86.98","Osteomyelitis, unspecified, other site" +"M86.99","Osteomyelitis, unspecified, site unspecified" +"M87","Osteonecrosis" +"M87.0","Idiopathic aseptic necrosis of bone" +"M87.00","Idiopathic aseptic necrosis of bone, multiple sites" +"M87.01","Idiopathic aseptic necrosis of bone, shoulder region" +"M87.02","Idiopathic aseptic necrosis of bone, upper arm" +"M87.03","Idiopathic aseptic necrosis of bone, forearm" +"M87.04","Idiopathic aseptic necrosis of bone, hand" +"M87.05","Idiopathic aseptic necrosis of bone, pelvic and thigh" +"M87.06","Idiopathic aseptic necrosis of bone, lower leg" +"M87.07","Idiopathic aseptic necrosis of bone, ankle and foot" +"M87.08","Idiopathic aseptic necrosis of bone, other site" +"M87.09","Idiopathic aseptic necrosis of bone, site unspecified" +"M87.1","Osteonecrosis due to drugs" +"M87.10","Osteonecrosis due to drugs, multiple sites" +"M87.11","Osteonecrosis due to drugs, shoulder region" +"M87.12","Osteonecrosis due to drugs, upper arm" +"M87.13","Osteonecrosis due to drugs, forearm" +"M87.14","Osteonecrosis due to drugs, hand" +"M87.15","Osteonecrosis due to drugs, pelvic and thigh" +"M87.16","Osteonecrosis due to drugs, lower leg" +"M87.17","Osteonecrosis due to drugs, ankle and foot" +"M87.18","Osteonecrosis due to drugs, other site" +"M87.19","Osteonecrosis due to drugs, site unspecified" +"M87.2","Osteonecrosis due to previous trauma" +"M87.20","Osteonecrosis due to previous trauma, multiple sites" +"M87.21","Osteonecrosis due to previous trauma, shoulder region" +"M87.22","Osteonecrosis due to previous trauma, upper arm" +"M87.23","Osteonecrosis due to previous trauma, forearm" +"M87.24","Osteonecrosis due to previous trauma, hand" +"M87.25","Osteonecrosis due to previous trauma, pelvic and thigh" +"M87.26","Osteonecrosis due to previous trauma, lower leg" +"M87.27","Osteonecrosis due to previous trauma, ankle and foot" +"M87.28","Osteonecrosis due to previous trauma, other site" +"M87.29","Osteonecrosis due to previous trauma, site unspecified" +"M87.3","Other secondary osteonecrosis" +"M87.30","Other secondary osteonecrosis, multiple sites" +"M87.31","Other secondary osteonecrosis, shoulder region" +"M87.32","Other secondary osteonecrosis, upper arm" +"M87.33","Other secondary osteonecrosis, forearm" +"M87.34","Other secondary osteonecrosis, hand" +"M87.35","Other secondary osteonecrosis, pelvic and thigh" +"M87.36","Other secondary osteonecrosis, lower leg" +"M87.37","Other secondary osteonecrosis, ankle and foot" +"M87.38","Other secondary osteonecrosis, other site" +"M87.39","Other secondary osteonecrosis, site unspecified" +"M87.8","Other osteonecrosis" +"M87.80","Other osteonecrosis, multiple sites" +"M87.81","Other osteonecrosis, shoulder region" +"M87.82","Other osteonecrosis, upper arm" +"M87.83","Other osteonecrosis, forearm" +"M87.84","Other osteonecrosis, hand" +"M87.85","Other osteonecrosis, pelvic and thigh" +"M87.86","Other osteonecrosis, lower leg" +"M87.87","Other osteonecrosis, ankle and foot" +"M87.88","Other osteonecrosis, other site" +"M87.89","Other osteonecrosis, site unspecified" +"M87.9","Osteonecrosis, unspecified" +"M87.90","Osteonecrosis, unspecified, multiple sites" +"M87.91","Osteonecrosis, unspecified, shoulder region" +"M87.92","Osteonecrosis, unspecified, upper arm" +"M87.93","Osteonecrosis, unspecified, forearm" +"M87.94","Osteonecrosis, unspecified, hand" +"M87.95","Osteonecrosis, unspecified, pelvic and thigh" +"M87.96","Osteonecrosis, unspecified, lower leg" +"M87.97","Osteonecrosis, unspecified, ankle and foot" +"M87.98","Osteonecrosis, unspecified, other site" +"M87.99","Osteonecrosis, unspecified, site unspecified" +"M88","Paget disease of bone [osteitis deformans]" +"M88.0","Paget's disease of skull" +"M88.09","Paget's disease of skull, site unspecified" +"M88.8","Paget's disease of other bones" +"M88.80","Paget's disease of other bones, multiple sites" +"M88.81","Paget's disease of other bones, shoulder region" +"M88.82","Paget's disease of other bones, upper arm" +"M88.83","Paget's disease of other bones, forearm" +"M88.84","Paget's disease of other bones, hand" +"M88.85","Paget's disease of other bones, pelvic and thigh" +"M88.86","Paget's disease of other bones, lower leg" +"M88.87","Paget's disease of other bones, ankle and foot" +"M88.88","Paget's disease of other bones, other site" +"M88.89","Paget's disease of other bones, site unspecified" +"M88.9","Paget's disease of bone, unspecified" +"M88.90","Paget's disease of bone, unspecified, multiple sites" +"M88.91","Paget's disease of bone, unspecified, shoulder region" +"M88.92","Paget's disease of bone, unspecified, upper arm" +"M88.93","Paget's disease of bone, unspecified, forearm" +"M88.94","Paget's disease of bone, unspecified, hand" +"M88.95","Paget's disease of bone, unspecified, pelvic and thigh" +"M88.96","Paget's disease of bone, unspecified, lower leg" +"M88.97","Paget's disease of bone, unspecified, ankle and foot" +"M88.98","Paget's disease of bone, unspecified, other site" +"M88.99","Paget's disease of bone, unspecified, site unspecified" +"M89","OTHER DISORDERS OF BONE" +"M89.0","Algoneurodystrophy" +"M89.00","Algoneurodystrophy, multiple sites" +"M89.01","Algoneurodystrophy, shoulder region" +"M89.02","Algoneurodystrophy, upper arm" +"M89.03","Algoneurodystrophy, forearm" +"M89.04","Algoneurodystrophy, hand" +"M89.05","Algoneurodystrophy, pelvic and thigh" +"M89.06","Algoneurodystrophy, lower leg" +"M89.07","Algoneurodystrophy, ankle and foot" +"M89.08","Algoneurodystrophy, other site" +"M89.09","Algoneurodystrophy, site unspecified" +"M89.1","Epiphyseal arrest" +"M89.10","Epiphyseal arrest, multiple sites" +"M89.11","Epiphyseal arrest, shoulder region" +"M89.12","Epiphyseal arrest, upper arm" +"M89.13","Epiphyseal arrest, forearm" +"M89.14","Epiphyseal arrest, hand" +"M89.15","Epiphyseal arrest, pelvic and thigh" +"M89.16","Epiphyseal arrest, lower leg" +"M89.17","Epiphyseal arrest, ankle and foot" +"M89.18","Epiphyseal arrest, other site" +"M89.19","Epiphyseal arrest, site unspecified" +"M89.2","Other disorders of bone development and growth" +"M89.20","Other disorders of bone development and growth, multiple sites" +"M89.21","Other disorders of bone development and growth, shoulder region" +"M89.22","Other disorders of bone development and growth, upper arm" +"M89.23","Other disorders of bone development and growth, forearm" +"M89.24","Other disorders of bone development and growth, hand" +"M89.25","Other disorders of bone development and growth, pelvic and thigh" +"M89.26","Other disorders of bone development and growth, lower leg" +"M89.27","Other disorders of bone development and growth, ankle and foot" +"M89.28","Other disorders of bone development and growth, other site" +"M89.29","Other disorders of bone development and growth, site unspecified" +"M89.3","Hypertrophy of bone" +"M89.30","Hypertrophy of bone, multiple sites" +"M89.31","Hypertrophy of bone, shoulder region" +"M89.32","Hypertrophy of bone, upper arm" +"M89.33","Hypertrophy of bone, forearm" +"M89.34","Hypertrophy of bone, hand" +"M89.35","Hypertrophy of bone, pelvic and thigh" +"M89.36","Hypertrophy of bone, lower leg" +"M89.37","Hypertrophy of bone, ankle and foot" +"M89.38","Hypertrophy of bone, other site" +"M89.39","Hypertrophy of bone, site unspecified" +"M89.4","Other hypertrophic osteoarthropathy" +"M89.40","Other hypertrophic osteoarthropathy, multiple sites" +"M89.41","Other hypertrophic osteoarthropathy, shoulder region" +"M89.42","Other hypertrophic osteoarthropathy, upper arm" +"M89.43","Other hypertrophic osteoarthropathy, forearm" +"M89.44","Other hypertrophic osteoarthropathy, hand" +"M89.45","Other hypertrophic osteoarthropathy, pelvic and thigh" +"M89.46","Other hypertrophic osteoarthropathy, lower leg" +"M89.47","Other hypertrophic osteoarthropathy, ankle and foot" +"M89.48","Other hypertrophic osteoarthropathy, other site" +"M89.49","Other hypertrophic osteoarthropathy, site unspecified" +"M89.5","Osteolysis" +"M89.50","Osteolysis, multiple sites" +"M89.51","Osteolysis, shoulder region" +"M89.52","Osteolysis, upper arm" +"M89.53","Osteolysis, forearm" +"M89.54","Osteolysis, hand" +"M89.55","Osteolysis, pelvic and thigh" +"M89.56","Osteolysis, lower leg" +"M89.57","Osteolysis, ankle and foot" +"M89.58","Osteolysis, other site" +"M89.59","Osteolysis, site unspecified" +"M89.6","Osteopathy after poliomyelitis" +"M89.60","Osteopathy after poliomyelitis, multiple sites" +"M89.61","Osteopathy after poliomyelitis, shoulder region" +"M89.62","Osteopathy after poliomyelitis, upper arm" +"M89.63","Osteopathy after poliomyelitis, forearm" +"M89.64","Osteopathy after poliomyelitis, hand" +"M89.65","Osteopathy after poliomyelitis, pelvic and thigh" +"M89.66","Osteopathy after poliomyelitis, lower leg" +"M89.67","Osteopathy after poliomyelitis, ankle and foot" +"M89.68","Osteopathy after poliomyelitis, other site" +"M89.69","Osteopathy after poliomyelitis, site unspecified" +"M89.8","Other specified disorders of bone" +"M89.80","Other specified disorders of bone, multiple sites" +"M89.81","Other specified disorders of bone, shoulder region" +"M89.82","Other specified disorders of bone, upper arm" +"M89.83","Other specified disorders of bone, forearm" +"M89.84","Other specified disorders of bone, hand" +"M89.85","Other specified disorders of bone, pelvic and thigh" +"M89.86","Other specified disorders of bone, lower leg" +"M89.87","Other specified disorders of bone, ankle and foot" +"M89.88","Other specified disorders of bone, other site" +"M89.89","Other specified disorders of bone, site unspecified" +"M89.9","Disorder of bone, unspecified" +"M89.90","Disorder of bone, unspecified, multiple sites" +"M89.91","Disorder of bone, unspecified, shoulder region" +"M89.92","Disorder of bone, unspecified, upper arm" +"M89.93","Disorder of bone, unspecified, forearm" +"M89.94","Disorder of bone, unspecified, hand" +"M89.95","Disorder of bone, unspecified, pelvic and thigh" +"M89.96","Disorder of bone, unspecified, lower leg" +"M89.97","Disorder of bone, unspecified, ankle and foot" +"M89.98","Disorder of bone, unspecified, other site" +"M89.99","Disorder of bone, unspecified, site unspecified" +"M90","OSTEOPATHIES IN DISEASES CLASSIFIED ELSEWHERE" +"M90.0","Tuberculosis of bone" +"M90.00","Tuberculosis of bone, multiple sites" +"M90.01","Tuberculosis of bone, shoulder region" +"M90.02","Tuberculosis of bone, upper arm" +"M90.03","Tuberculosis of bone, forearm" +"M90.04","Tuberculosis of bone, hand" +"M90.05","Tuberculosis of bone, pelvic and thigh" +"M90.06","Tuberculosis of bone, lower leg" +"M90.07","Tuberculosis of bone, ankle and foot" +"M90.08","Tuberculosis of bone, other site" +"M90.09","Tuberculosis of bone, site unspecified" +"M90.1","Periostitis in other infectious diseases classified elsewhere" +"M90.10","Periostitis in other infectious diseases classified elsewhere, multiple sites" +"M90.11","Periostitis in other infectious diseases classified elsewhere, shoulder region" +"M90.12","Periostitis in other infectious diseases classified elsewhere, upper arm" +"M90.13","Periostitis in other infectious diseases classified elsewhere, forearm" +"M90.14","Periostitis in other infectious diseases classified elsewhere, hand" +"M90.15","Periostitis in other infectious diseases classified elsewhere, pelvic and thigh" +"M90.16","Periostitis in other infectious diseases classified elsewhere, lower leg" +"M90.17","Periostitis in other infectious diseases classified elsewhere, ankle and foot" +"M90.18","Periostitis in other infectious diseases classified elsewhere, other site" +"M90.19","Periostitis in other infectious diseases classified elsewhere, site unspecified" +"M90.2","Osteopathy in other infectious diseases classified elsewhere" +"M90.20","Osteopathy in other infectious diseases classified elsewhere, multiple sites" +"M90.21","Osteopathy in other infectious diseases classified elsewhere, shoulder region" +"M90.22","Osteopathy in other infectious diseases classified elsewhere, upper arm" +"M90.23","Osteopathy in other infectious diseases classified elsewhere, forearm" +"M90.24","Osteopathy in other infectious diseases classified elsewhere, hand" +"M90.25","Osteopathy in other infectious diseases classified elsewhere, pelvic and thigh" +"M90.26","Osteopathy in other infectious diseases classified elsewhere, lower leg" +"M90.27","Osteopathy in other infectious diseases classified elsewhere, ankle and foot" +"M90.28","Osteopathy in other infectious diseases classified elsewhere, other site" +"M90.29","Osteopathy in other infectious diseases classified elsewhere, site unspecified" +"M90.3","Osteonecrosis in caisson disease" +"M90.30","Osteonecrosis in caisson disease, multiple sites" +"M90.31","Osteonecrosis in caisson disease, shoulder region" +"M90.32","Osteonecrosis in caisson disease, upper arm" +"M90.33","Osteonecrosis in caisson disease, forearm" +"M90.34","Osteonecrosis in caisson disease, hand" +"M90.35","Osteonecrosis in caisson disease, pelvic and thigh" +"M90.36","Osteonecrosis in caisson disease, lower leg" +"M90.37","Osteonecrosis in caisson disease, ankle and foot" +"M90.38","Osteonecrosis in caisson disease, other site" +"M90.39","Osteonecrosis in caisson disease, site unspecified" +"M90.4","Osteonecrosis due to haemoglobinopathy" +"M90.40","Osteonecrosis due to haemoglobinopathy, multiple sites" +"M90.41","Osteonecrosis due to haemoglobinopathy, shoulder region" +"M90.42","Osteonecrosis due to haemoglobinopathy, upper arm" +"M90.43","Osteonecrosis due to haemoglobinopathy, forearm" +"M90.44","Osteonecrosis due to haemoglobinopathy, hand" +"M90.45","Osteonecrosis due to haemoglobinopathy, pelvic and thigh" +"M90.46","Osteonecrosis due to haemoglobinopathy, lower leg" +"M90.47","Osteonecrosis due to haemoglobinopathy, ankle and foot" +"M90.48","Osteonecrosis due to haemoglobinopathy, other site" +"M90.49","Osteonecrosis due to haemoglobinopathy, site unspecified" +"M90.5","Osteonecrosis in other diseases classified elsewhere" +"M90.50","Osteonecrosis in other diseases classified elsewhere, multiple sites" +"M90.51","Osteonecrosis in other diseases classified elsewhere, shoulder region" +"M90.52","Osteonecrosis in other diseases classified elsewhere, upper arm" +"M90.53","Osteonecrosis in other diseases classified elsewhere, forearm" +"M90.54","Osteonecrosis in other diseases classified elsewhere, hand" +"M90.55","Osteonecrosis in other diseases classified elsewhere, pelvic and thigh" +"M90.56","Osteonecrosis in other diseases classified elsewhere, lower leg" +"M90.57","Osteonecrosis in other diseases classified elsewhere, ankle and foot" +"M90.58","Osteonecrosis in other diseases classified elsewhere, other site" +"M90.59","Osteonecrosis in other diseases classified elsewhere, site unspecified" +"M90.6","Osteitis deformans in neoplastic disease" +"M90.60","Osteitis deformans in neoplastic disease, multiple sites" +"M90.61","Osteitis deformans in neoplastic disease, shoulder region" +"M90.62","Osteitis deformans in neoplastic disease, upper arm" +"M90.63","Osteitis deformans in neoplastic disease, forearm" +"M90.64","Osteitis deformans in neoplastic disease, hand" +"M90.65","Osteitis deformans in neoplastic disease, pelvic and thigh" +"M90.66","Osteitis deformans in neoplastic disease, lower leg" +"M90.67","Osteitis deformans in neoplastic disease, ankle and foot" +"M90.68","Osteitis deformans in neoplastic disease, other site" +"M90.69","Osteitis deformans in neoplastic disease, site unspecified" +"M90.7","Fracture of bone in neoplastic disease" +"M90.70","Fracture of bone in neoplastic disease, multiple sites" +"M90.71","Fracture of bone in neoplastic disease, shoulder region" +"M90.72","Fracture of bone in neoplastic disease, upper arm" +"M90.73","Fracture of bone in neoplastic disease, forearm" +"M90.74","Fracture of bone in neoplastic disease, hand" +"M90.75","Fracture of bone in neoplastic disease, pelvic and thigh" +"M90.76","Fracture of bone in neoplastic disease, lower leg" +"M90.77","Fracture of bone in neoplastic disease, ankle and foot" +"M90.78","Fracture of bone in neoplastic disease, other site" +"M90.79","Fracture of bone in neoplastic disease, site unspecified" +"M90.8","Osteopathy in other diseases classified elsewhere" +"M90.80","Osteopathy in other diseases classified elsewhere, multiple sites" +"M90.81","Osteopathy in other diseases classified elsewhere, shoulder region" +"M90.82","Osteopathy in other diseases classified elsewhere, upper arm" +"M90.83","Osteopathy in other diseases classified elsewhere, forearm" +"M90.84","Osteopathy in other diseases classified elsewhere, hand" +"M90.85","Osteopathy in other diseases classified elsewhere, pelvic and thigh" +"M90.86","Osteopathy in other diseases classified elsewhere, lower leg" +"M90.87","Osteopathy in other diseases classified elsewhere, ankle and foot" +"M90.88","Osteopathy in other diseases classified elsewhere, other site" +"M90.89","Osteopathy in other diseases classified elsewhere, site unspecified" +"M91","JUVENILE OSTEOCHONDROSIS OF HIP AND PELVIS" +"M91.0","Juvenile osteochondrosis of pelvis" +"M91.00","Juvenile osteochondrosis of pelvis, multiple sites" +"M91.01","Juvenile osteochondrosis of pelvis, shoulder region" +"M91.02","Juvenile osteochondrosis of pelvis, upper arm" +"M91.03","Juvenile osteochondrosis of pelvis, forearm" +"M91.04","Juvenile osteochondrosis of pelvis, hand" +"M91.05","Juvenile osteochondrosis of pelvis, pelvic region and thigh" +"M91.06","Juvenile osteochondrosis of pelvis, lower leg" +"M91.07","Juvenile osteochondrosis of pelvis, ankle and foot" +"M91.08","Juvenile osteochondrosis of pelvis, other" +"M91.09","Juvenile osteochondrosis of pelvis, site unspecified" +"M91.1","Juv osteochondrosis head of femur [legg-calv" +"M91.10","Juv osteochondrosis head of femur [legg-calv" +"M91.11","Juv osteochondrosis head of femur [legg-calv" +"M91.12","Juv osteochondrosis head of femur [legg-calv" +"M91.13","Juv osteochondrosis head of femur [legg-calv" +"M91.14","Juv osteochondrosis head of femur [legg-calv" +"M91.15","Juv osteochondrosis head of femur [legg-calv" +"M91.16","Juv osteochondrosis head of femur [legg-calv" +"M91.17","Juv osteochondrosis head of femur [legg-calv" +"M91.18","Juv osteochondrosis head of femur [legg-calv" +"M91.19","Juv osteochondrosis head of femur [legg-calv" +"M91.2","Coxa plana" +"M91.20","Coxa plana, multiple sites" +"M91.21","Coxa plana, shoulder region" +"M91.22","Coxa plana, upper arm" +"M91.23","Coxa plana, forearm" +"M91.24","Coxa plana, hand" +"M91.25","Coxa plana, pelvic region and thigh" +"M91.26","Coxa plana, lower leg" +"M91.27","Coxa plana, ankle and foot" +"M91.28","Coxa plana, other" +"M91.29","Coxa plana, site unspecified" +"M91.3","Pseudocoxalgia" +"M91.30","Pseudocoxalgia, multiple sites" +"M91.31","Pseudocoxalgia, shoulder region" +"M91.32","Pseudocoxalgia, upper arm" +"M91.33","Pseudocoxalgia, forearm" +"M91.34","Pseudocoxalgia, hand" +"M91.35","Pseudocoxalgia, pelvic region and thigh" +"M91.36","Pseudocoxalgia, lower leg" +"M91.37","Pseudocoxalgia, ankle and foot" +"M91.38","Pseudocoxalgia, other" +"M91.39","Pseudocoxalgia, site unspecified" +"M91.8","Other juvenile osteochondrosis of hip and pelvis" +"M91.80","Other juvenile osteochondrosis of hip and pelvis, multiple sites" +"M91.81","Other juvenile osteochondrosis of hip and pelvis, shoulder region" +"M91.82","Other juvenile osteochondrosis of hip and pelvis, upper arm" +"M91.83","Other juvenile osteochondrosis of hip and pelvis, forearm" +"M91.84","Other juvenile osteochondrosis of hip and pelvis, hand" +"M91.85","Other juvenile osteochondrosis of hip and pelvis, pelvic region and thigh" +"M91.86","Other juvenile osteochondrosis of hip and pelvis, lower leg" +"M91.87","Other juvenile osteochondrosis of hip and pelvis, ankle and foot" +"M91.88","Other juvenile osteochondrosis of hip and pelvis, other" +"M91.89","Other juvenile osteochondrosis of hip and pelvis, site unspecified" +"M91.9","Juvenile osteochondrosis of hip and pelvis, unspecified" +"M91.90","Juvenile osteochondrosis of hip and pelvis, unspecified, multiple sites" +"M91.91","Juvenile osteochondrosis of hip and pelvis, unspecified, shoulder region" +"M91.92","Juvenile osteochondrosis of hip and pelvis, unspecified, upper arm" +"M91.93","Juvenile osteochondrosis of hip and pelvis, unspecified, forearm" +"M91.94","Juvenile osteochondrosis of hip and pelvis, unspecified, hand" +"M91.95","Juvenile osteochondrosis of hip and pelvis, unspecified, pelvic region and thigh" +"M91.96","Juvenile osteochondrosis of hip and pelvis, unspecified, lower leg" +"M91.97","Juvenile osteochondrosis of hip and pelvis, unspecified, ankle and foot" +"M91.98","Juvenile osteochondrosis of hip and pelvis, unspecified, other" +"M91.99","Juvenile osteochondrosis of hip and pelvis, unspecified, site unspecified" +"M92","OTHER JUVENILE OSTEOCHONDROSIS" +"M92.0","Juvenile osteochondrosis of humerus" +"M92.00","Juvenile osteochondrosis of humerus, multiple sites" +"M92.01","Juvenile osteochondrosis of humerus, shoulder region" +"M92.02","Juvenile osteochondrosis of humerus, upper arm" +"M92.03","Juvenile osteochondrosis of humerus, forearm" +"M92.04","Juvenile osteochondrosis of humerus, hand" +"M92.05","Juvenile osteochondrosis of humerus, pelvic region and thigh" +"M92.06","Juvenile osteochondrosis of humerus, lower leg" +"M92.07","Juvenile osteochondrosis of humerus, ankle and foot" +"M92.08","Juvenile osteochondrosis of humerus, other" +"M92.09","Juvenile osteochondrosis of humerus, site unspecified" +"M92.1","Juvenile osteochondrosis of radius and ulna" +"M92.10","Juvenile osteochondrosis of radius and ulna, multiple sites" +"M92.11","Juvenile osteochondrosis of radius and ulna, shoulder region" +"M92.12","Juvenile osteochondrosis of radius and ulna, upper arm" +"M92.13","Juvenile osteochondrosis of radius and ulna, forearm" +"M92.14","Juvenile osteochondrosis of radius and ulna, hand" +"M92.15","Juvenile osteochondrosis of radius and ulna, pelvic region and thigh" +"M92.16","Juvenile osteochondrosis of radius and ulna, lower leg" +"M92.17","Juvenile osteochondrosis of radius and ulna, ankle and foot" +"M92.18","Juvenile osteochondrosis of radius and ulna, other" +"M92.19","Juvenile osteochondrosis of radius and ulna, site unspecified" +"M92.2","Juvenile osteochondrosis of hand" +"M92.20","Juvenile osteochondrosis of hand, multiple sites" +"M92.21","Juvenile osteochondrosis of hand, shoulder region" +"M92.22","Juvenile osteochondrosis of hand, upper arm" +"M92.23","Juvenile osteochondrosis of hand, forearm" +"M92.24","Juvenile osteochondrosis of hand, hand" +"M92.25","Juvenile osteochondrosis of hand, pelvic region and thigh" +"M92.26","Juvenile osteochondrosis of hand, lower leg" +"M92.27","Juvenile osteochondrosis of hand, ankle and foot" +"M92.28","Juvenile osteochondrosis of hand, other" +"M92.29","Juvenile osteochondrosis of hand, site unspecified" +"M92.3","Other juvenile osteochondrosis of upper limb" +"M92.30","Other juvenile osteochondrosis of upper limb, multiple sites" +"M92.31","Other juvenile osteochondrosis of upper limb, shoulder region" +"M92.32","Other juvenile osteochondrosis of upper limb, upper arm" +"M92.33","Other juvenile osteochondrosis of upper limb, forearm" +"M92.34","Other juvenile osteochondrosis of upper limb, hand" +"M92.35","Other juvenile osteochondrosis of upper limb, pelvic region and thigh" +"M92.36","Other juvenile osteochondrosis of upper limb, lower leg" +"M92.37","Other juvenile osteochondrosis of upper limb, ankle and foot" +"M92.38","Other juvenile osteochondrosis of upper limb, other" +"M92.39","Other juvenile osteochondrosis of upper limb, site unspecified" +"M92.4","Juvenile osteochondrosis of patella" +"M92.40","Juvenile osteochondrosis of patella, multiple sites" +"M92.41","Juvenile osteochondrosis of patella, shoulder region" +"M92.42","Juvenile osteochondrosis of patella, upper arm" +"M92.43","Juvenile osteochondrosis of patella, forearm" +"M92.44","Juvenile osteochondrosis of patella, hand" +"M92.45","Juvenile osteochondrosis of patella, pelvic region and thigh" +"M92.46","Juvenile osteochondrosis of patella, lower leg" +"M92.47","Juvenile osteochondrosis of patella, ankle and foot" +"M92.48","Juvenile osteochondrosis of patella, other" +"M92.49","Juvenile osteochondrosis of patella, site unspecified" +"M92.5","Juvenile osteochondrosis of tibia and fibula" +"M92.50","Juvenile osteochondrosis of tibia and fibula, multiple sites" +"M92.51","Juvenile osteochondrosis of tibia and fibula, shoulder region" +"M92.52","Juvenile osteochondrosis of tibia and fibula, upper arm" +"M92.53","Juvenile osteochondrosis of tibia and fibula, forearm" +"M92.54","Juvenile osteochondrosis of tibia and fibula, hand" +"M92.55","Juvenile osteochondrosis of tibia and fibula, pelvic region and thigh" +"M92.56","Juvenile osteochondrosis of tibia and fibula, lower leg" +"M92.57","Juvenile osteochondrosis of tibia and fibula, ankle and foot" +"M92.58","Juvenile osteochondrosis of tibia and fibula, other" +"M92.59","Juvenile osteochondrosis of tibia and fibula, site unspecified" +"M92.6","Juvenile osteochondrosis of tarsus" +"M92.60","Juvenile osteochondrosis of tarsus, multiple sites" +"M92.61","Juvenile osteochondrosis of tarsus, shoulder region" +"M92.62","Juvenile osteochondrosis of tarsus, upper arm" +"M92.63","Juvenile osteochondrosis of tarsus, forearm" +"M92.64","Juvenile osteochondrosis of tarsus, hand" +"M92.65","Juvenile osteochondrosis of tarsus, pelvic region and thigh" +"M92.66","Juvenile osteochondrosis of tarsus, lower leg" +"M92.67","Juvenile osteochondrosis of tarsus, ankle and foot" +"M92.68","Juvenile osteochondrosis of tarsus, other" +"M92.69","Juvenile osteochondrosis of tarsus, site unspecified" +"M92.7","Juvenile osteochondrosis of metatarsus" +"M92.70","Juvenile osteochondrosis of metatarsus, multiple sites" +"M92.71","Juvenile osteochondrosis of metatarsus, shoulder region" +"M92.72","Juvenile osteochondrosis of metatarsus, upper arm" +"M92.73","Juvenile osteochondrosis of metatarsus, forearm" +"M92.74","Juvenile osteochondrosis of metatarsus, hand" +"M92.75","Juvenile osteochondrosis of metatarsus, pelvic region and thigh" +"M92.76","Juvenile osteochondrosis of metatarsus, lower leg" +"M92.77","Juvenile osteochondrosis of metatarsus, ankle and foot" +"M92.78","Juvenile osteochondrosis of metatarsus, other" +"M92.79","Juvenile osteochondrosis of metatarsus, site unspecified" +"M92.8","Other specified juvenile osteochondrosis" +"M92.80","Other specified juvenile osteochondrosis, multiple sites" +"M92.81","Other specified juvenile osteochondrosis, shoulder region" +"M92.82","Other specified juvenile osteochondrosis, upper arm" +"M92.83","Other specified juvenile osteochondrosis, forearm" +"M92.84","Other specified juvenile osteochondrosis, hand" +"M92.85","Other specified juvenile osteochondrosis, pelvic region and thigh" +"M92.86","Other specified juvenile osteochondrosis, lower leg" +"M92.87","Other specified juvenile osteochondrosis, ankle and foot" +"M92.88","Other specified juvenile osteochondrosis, other" +"M92.89","Other specified juvenile osteochondrosis, site unspecified" +"M92.9","Juvenile osteochondrosis, unspecified" +"M92.90","Juvenile osteochondrosis, unspecified, multiple sites" +"M92.91","Juvenile osteochondrosis, unspecified, shoulder region" +"M92.92","Juvenile osteochondrosis, unspecified, upper arm" +"M92.93","Juvenile osteochondrosis, unspecified, forearm" +"M92.94","Juvenile osteochondrosis, unspecified, hand" +"M92.95","Juvenile osteochondrosis, unspecified, pelvic region and thigh" +"M92.96","Juvenile osteochondrosis, unspecified, lower leg" +"M92.97","Juvenile osteochondrosis, unspecified, ankle and foot" +"M92.98","Juvenile osteochondrosis, unspecified, other" +"M92.99","Juvenile osteochondrosis, unspecified, site unspecified" +"M93","OTHER OSTEOCHONDROPATHIES" +"M93.0","Slipped upper femoral epiphysis (nontraumatic)" +"M93.00","Slipped upper femoral epiphysis (nontraumatic), multiple sites" +"M93.01","Slipped upper femoral epiphysis (nontraumatic), shoulder region" +"M93.02","Slipped upper femoral epiphysis (nontraumatic), upper arm" +"M93.03","Slipped upper femoral epiphysis (nontraumatic), forearm" +"M93.04","Slipped upper femoral epiphysis (nontraumatic), hand" +"M93.05","Slipped upper femoral epiphysis (nontraumatic), pelvic region and thigh" +"M93.06","Slipped upper femoral epiphysis (nontraumatic), lower leg" +"M93.07","Slipped upper femoral epiphysis (nontraumatic), ankle and foot" +"M93.08","Slipped upper femoral epiphysis (nontraumatic), other" +"M93.09","Slipped upper femoral epiphysis (nontraumatic), site unspecified" +"M93.1","Kienbock disease of adults" +"M93.10","Kienbock disease of adults, multiple sites" +"M93.11","Kienbock disease of adults, shoulder region" +"M93.12","Kienbock disease of adults, upper arm" +"M93.13","Kienbock disease of adults, forearm" +"M93.14","Kienbock disease of adults, hand" +"M93.15","Kienbock disease of adults, pelvic region and thigh" +"M93.16","Kienbock disease of adults, lower leg" +"M93.17","Kienbock disease of adults, ankle and foot" +"M93.18","Kienbock disease of adults, other" +"M93.19","Kienbock disease of adults, site unspecified" +"M93.2","Osteochondritis dissecans" +"M93.20","Osteochondritis dissecans, multiple sites" +"M93.21","Osteochondritis dissecans, shoulder region" +"M93.22","Osteochondritis dissecans, upper arm" +"M93.23","Osteochondritis dissecans, forearm" +"M93.24","Osteochondritis dissecans, hand" +"M93.25","Osteochondritis dissecans, pelvic region and thigh" +"M93.26","Osteochondritis dissecans, lower leg" +"M93.27","Osteochondritis dissecans, ankle and foot" +"M93.28","Osteochondritis dissecans, other" +"M93.29","Osteochondritis dissecans, site unspecified" +"M93.8","Other specified osteochondropathies" +"M93.80","Other specified osteochondropathies, multiple sites" +"M93.81","Other specified osteochondropathies, shoulder region" +"M93.82","Other specified osteochondropathies, upper arm" +"M93.83","Other specified osteochondropathies, forearm" +"M93.84","Other specified osteochondropathies, hand" +"M93.85","Other specified osteochondropathies, pelvic region and thigh" +"M93.86","Other specified osteochondropathies, lower leg" +"M93.87","Other specified osteochondropathies, ankle and foot" +"M93.88","Other specified osteochondropathies, other" +"M93.89","Other specified osteochondropathies, site unspecified" +"M93.9","Osteochondropathy, unspecified" +"M93.90","Osteochondropathy, unspecified, multiple sites" +"M93.91","Osteochondropathy, unspecified, shoulder region" +"M93.92","Osteochondropathy, unspecified, upper arm" +"M93.93","Osteochondropathy, unspecified, forearm" +"M93.94","Osteochondropathy, unspecified, hand" +"M93.95","Osteochondropathy, unspecified, pelvic region and thigh" +"M93.96","Osteochondropathy, unspecified, lower leg" +"M93.97","Osteochondropathy, unspecified, ankle and foot" +"M93.98","Osteochondropathy, unspecified, other" +"M93.99","Osteochondropathy, unspecified, site unspecified" +"M94","OTHER DISORDERS OF CARTILAGE" +"M94.0","Chondrocostal junction syndrome [tietze]" +"M94.00","Chondrocostal junction syndrome [tietze], multiple sites" +"M94.01","Chondrocostal junction syndrome [tietze], shoulder region" +"M94.02","Chondrocostal junction syndrome [tietze], upper arm" +"M94.03","Chondrocostal junction syndrome [tietze], forearm" +"M94.04","Chondrocostal junction syndrome [tietze], hand" +"M94.05","Chondrocostal junction syndrome [tietze], pelvic region and thigh" +"M94.06","Chondrocostal junction syndrome [tietze], lower leg" +"M94.07","Chondrocostal junction syndrome [tietze], ankle and foot" +"M94.08","Chondrocostal junction syndrome [tietze], other" +"M94.09","Chondrocostal junction syndrome [tietze], site unspecified" +"M94.1","Relapsing polychondritis" +"M94.10","Relapsing polychondritis, multiple sites" +"M94.11","Relapsing polychondritis, shoulder region" +"M94.12","Relapsing polychondritis, upper arm" +"M94.13","Relapsing polychondritis, forearm" +"M94.14","Relapsing polychondritis, hand" +"M94.15","Relapsing polychondritis, pelvic and thigh" +"M94.16","Relapsing polychondritis, lower leg" +"M94.17","Relapsing polychondritis, ankle and foot" +"M94.18","Relapsing polychondritis, other site" +"M94.19","Relapsing polychondritis, site unspecified" +"M94.2","Chondromalacia" +"M94.20","Chondromalacia, multiple sites" +"M94.21","Chondromalacia, shoulder region" +"M94.22","Chondromalacia, upper arm" +"M94.23","Chondromalacia, forearm" +"M94.24","Chondromalacia, hand" +"M94.25","Chondromalacia, pelvic and thigh" +"M94.26","Chondromalacia, lower leg" +"M94.27","Chondromalacia, ankle and foot" +"M94.28","Chondromalacia, other site" +"M94.29","Chondromalacia, site unspecified" +"M94.3","Chondrolysis" +"M94.30","Chondrolysis, multiple sites" +"M94.31","Chondrolysis, shoulder region" +"M94.32","Chondrolysis, upper arm" +"M94.33","Chondrolysis, forearm" +"M94.34","Chondrolysis, hand" +"M94.35","Chondrolysis, pelvic and thigh" +"M94.36","Chondrolysis, lower leg" +"M94.37","Chondrolysis, ankle and foot" +"M94.38","Chondrolysis, other site" +"M94.39","Chondrolysis, site unspecified" +"M94.8","Other specified disorders of cartilage" +"M94.80","Other specified disorders of cartilage, multiple sites" +"M94.81","Other specified disorders of cartilage, shoulder region" +"M94.82","Other specified disorders of cartilage, upper arm" +"M94.83","Other specified disorders of cartilage, forearm" +"M94.84","Other specified disorders of cartilage, hand" +"M94.85","Other specified disorders of cartilage, pelvic and thigh" +"M94.86","Other specified disorders of cartilage, lower leg" +"M94.87","Other specified disorders of cartilage, ankle and foot" +"M94.88","Other specified disorders of cartilage, other site" +"M94.89","Other specified disorders of cartilage, site unspecified" +"M94.9","Disorder of cartilage, unspecified" +"M94.90","Disorder of cartilage, unspecified, multiple sites" +"M94.91","Disorder of cartilage, unspecified, shoulder region" +"M94.92","Disorder of cartilage, unspecified, upper arm" +"M94.93","Disorder of cartilage, unspecified, forearm" +"M94.94","Disorder of cartilage, unspecified, hand" +"M94.95","Disorder of cartilage, unspecified, pelvic and thigh" +"M94.96","Disorder of cartilage, unspecified, lower leg" +"M94.97","Disorder of cartilage, unspecified, ankle and foot" +"M94.98","Disorder of cartilage, unspecified, other site" +"M94.99","Disorder of cartilage, unspecified, site unspecified" +"M95","OTHER ACQUIRED DEFORMITIES OF MUSCULOSKELETAL SYSTEM AND CONNECTIVE TISSUE" +"M95.0","Acquired deformity of nose" +"M95.1","Cauliflower ear" +"M95.2","Other acquired deformity of head" +"M95.3","Acquired deformity of neck" +"M95.4","Acquired deformity of chest and rib" +"M95.5","Acquired deformity of pelvis" +"M95.8","Other specified acquired deformities of musculoskel sys" +"M95.9","Acquired deformity of musculoskeletal system, unspecified" +"M96","Postprocedural musculoskeletal disorders, not elsewhere classified" +"M96.0","Pseudarthrosis after fusion or arthrodesis" +"M96.1","Postlaminectomy syndrome, not elsewhere classified" +"M96.2","Postradiation kyphosis" +"M96.3","Postlaminectomy kyphosis" +"M96.4","Postsurgical lordosis" +"M96.5","Postradiation scoliosis" +"M96.6","Fract bone fllg ins orthopae implt jnt prosthesis and bone plate" +"M96.8","Other postprocedural musculoskeletal disorders" +"M96.9","Postprocedural musculoskeletal disorder, unspecified" +"M99","BIOMECHANICAL LESIONS, NOT ELSEWHERE CLASSIFIED" +"M99.0","Segmental and somatic dysfunction" +"M99.00","Segmental and somatic dysfunction, head region" +"M99.01","Segmental and somatic dysfunction, cervical region" +"M99.02","Segmental and somatic dysfunction , thoracic region" +"M99.03","Segmental and somatic dysfunction , lumbar region" +"M99.04","Segmental and somatic dysfunction , sacral region" +"M99.05","Segmental and somatic dysfunction , pelvic region" +"M99.06","Segmental and somatic dysfunction , lower extremity" +"M99.07","Segmental and somatic dysfunction, upper extremity" +"M99.08","Segmental and somatic dysfunction, rib region" +"M99.09","Segmental and somatic dysfunction, abdomen region" +"M99.1","Subluxation complex (vertebral)" +"M99.10","Subluxation complex (vertebral), head region" +"M99.11","Subluxation complex (vertebral), cervical region" +"M99.12"," Subluxation complex (vertebral), thoracic region" +"M99.13"," Subluxation complex (vertebral), lumbar region" +"M99.14","Subluxation complex (vertebral) , sacral region" +"M99.15"," Subluxation complex (vertebral), pelvic region" +"M99.16"," Subluxation complex (vertebral), lower extremity" +"M99.17","Subluxation complex (vertebral), upper extremity" +"M99.18","Subluxation complex (vertebral), rib cage" +"M99.19","Subluxation complex (vertebral), abdomen and other" +"M99.2","Subluxation stenosis of neural canal" +"M99.20","Subluxation stenosis of neural canal, head region" +"M99.21","Subluxation stenosis of neural canal, cervical region" +"M99.22","Subluxation stenosis of neural canal, thoracic region" +"M99.23","Subluxation stenosis of neural canal , lumbar region" +"M99.24","Subluxation stenosis of neural canal , sacral region" +"M99.25","Subluxation stenosis of neural canal , pelvic region" +"M99.26","Subluxation stenosis of neural canal , lower extremity" +"M99.27","Subluxation stenosis of neural canal, upper extremity" +"M99.28","Subluxation stenosis of neural canal, rib cage" +"M99.29","Subluxation stenosis of neural canal, abdomen and other" +"M99.3","Osseous stenosis of neural canal" +"M99.30","Osseous stenosis of neural canal, head region" +"M99.31","Osseous stenosis of neural canal, cervical region" +"M99.32","Osseous stenosis of neural canal , thoracic region" +"M99.33","Osseous stenosis of neural canal, lumbar region" +"M99.34","Osseous stenosis of neural canal , sacral region" +"M99.35","Osseous stenosis of neural canal , pelvic region" +"M99.36","Osseous stenosis of neural canal , lower extremity" +"M99.37","Osseous stenosis of neural canal, upper extremity" +"M99.38","Osseous stenosis of neural canal, rib cage" +"M99.39","Osseous stenosis of neural canal, abdomen and other" +"M99.4","Connective tissue stenosis of neural canal" +"M99.40","Connective tissue stenosis of neural canal, head region" +"M99.41","Connective tissue stenosis of neural canal, cervical region" +"M99.42","Connective tissue stenosis of neural canal, thoracic region" +"M99.43","Connective tissue stenosis of neural canal, lumbar region" +"M99.44","Connective tissue stenosis of neural canal , sacral region" +"M99.45","Connective tissue stenosis of neural canal , pelvic region" +"M99.46","Connective tissue stenosis of neural canal , lower extremity" +"M99.47","Connective tissue stenosis of neural canal, upper extremity" +"M99.48","Connective tissue stenosis of neural canal, rib cage" +"M99.49","Connective tissue stenosis of neural canal, abdomen and other" +"M99.5","Intervertebral disc stenosis of neural canal , pelvic region" +"M99.50","Intervertebral disc stenosis of neural canal , pelvic region, head region" +"M99.51","Intervertebral disc stenosis of neural canal , pelvic region, cervical region" +"M99.52","Intervertebral disc stenosis of neural canal , pelvic region , thoracic region" +"M99.53","Intervertebral disc stenosis of neural canal , pelvic region , lumbar region" +"M99.54","Intervertebral disc stenosis of neural canal , pelvic region , sacral region" +"M99.55","Intervertebral disc stenosis of neural canal , pelvic region , pelvic region" +"M99.56","Intervertebral disc stenosis of neural canal , pelvic region , lower extremity" +"M99.57","Intervertebral disc stenosis of neural canal , pelvic region, upper extremity" +"M99.58","Intervertebral disc stenosis of neural canal , pelvic region, rib cage" +"M99.59","Intervertebral disc stenosis of neural canal , pelvic region, abdomen and other" +"M99.6","Osseous and subluxation stenosis of intervertebral foramina" +"M99.60","Osseous and subluxation stenosis of intervertebral foramina, head region" +"M99.61","Osseous and subluxation stenosis of intervertebral foramina, cervical region" +"M99.62","Osseous and subluxation stenosis of intervertebral foramina , thoracic region" +"M99.63","Osseous and subluxation stenosis of intervertebral foramina , lumbar region" +"M99.64","Osseous and subluxation stenosis of intervertebral foramina , sacral region" +"M99.65","Osseous and subluxation stenosis of intervertebral foramina , pelvic region" +"M99.66","Osseous and subluxation stenosis of intervertebral foramina , lower extremity" +"M99.67","Osseous and subluxation stenosis of intervertebral foramina, upper extremity" +"M99.68","Osseous and subluxation stenosis of intervertebral foramina, rib cage" +"M99.69","Osseous and subluxation stenosis of intervertebral foramina, abdomen and other" +"M99.7","Connective tis and disc stenosis of intervertebral foramina" +"M99.70","Connective tis and disc stenosis of intervertebral foramina, head region" +"M99.71","Connective tis and disc stenosis of intervertebral foramina, cervical region" +"M99.72","Connective tis and disc stenosis of intervertebral foramina , thoracic region" +"M99.73","Connective tis and disc stenosis of intervertebral foramina , lumbar region" +"M99.74","Connective tis and disc stenosis of intervertebral foramina , sacral region" +"M99.75","Connective tis and disc stenosis of intervertebral foramina , pelvic region" +"M99.76","Connective tis and disc stenosis of intervertebral foramina , lower extremity" +"M99.77","Connective tis and disc stenosis of intervertebral foramina, upper extremity" +"M99.78","Connective tis and disc stenosis of intervertebral foramina, rib cage" +"M99.79","Connective tis and disc stenosis of intervertebral foramina, abdomen and other" +"M99.8","Other biomechanical lesions" +"M99.80","Other biomechanical lesions, head region" +"M99.81","Other biomechanical lesions, cervical region" +"M99.82","Other biomechanical lesions, thoracic region" +"M99.83","Other biomechanical lesions. lumbar region" +"M99.84","Other biomechanical lesions, sacral region" +"M99.85","Other biomechanical lesions, pelvic region" +"M99.86","Other biomechanical lesions, lower extremity" +"M99.87","Other biomechanical lesions, upper extremity" +"M99.88","Other biomechanical lesions, rib region" +"M99.89","Other biomechanical lesions, abdomen region" +"M99.9","Biomechanical lesion, unspecified" +"M99.90","Biomechanical lesion, unspecified, head region" +"M99.91","Biomechanical lesion, unspecified, cervical region" +"M99.92","Biomechanical lesion, unspecified, thoracic region" +"M99.93","Biomechanical lesion, unspecified, lumbar region" +"M99.94","Biomechanical lesion, unspecified, sacral region" +"M99.95","Biomechanical lesion, unspecified, pelvic region" +"M99.96","Biomechanical lesion, unspecified, lower extremity" +"M99.97","Biomechanical lesion, unspecified, upper extremity" +"M99.98","Biomechanical lesion, unspecified, rib region" +"M99.99","Biomechanical lesion, unspecified, abdomen region" +"N00","Acute nephritic syndrome" +"N00.0","Acute nephritic syndrome, minor glomerular abnormality" +"N00.1","Acute nephritic syndrome, focal and segmental glomerular lesions" +"N00.2","Acute nephritic syndrome, diffuse membranous glomerulonephritis" +"N00.3","Acute nephritic syndrome, diffuse mesangial proliferative glomerulonephritis" +"N00.4","Acute nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis" +"N00.5","Acute nephritic syndrome, diffuse mesangiocapillary glomerulonephritis" +"N00.6","Acute nephritic syndrome, dense deposit disease" +"N00.7","Acute nephritic syndrome, diffuse crescentic glomerulonephritis" +"N00.8","Acute nephritic syndrome, other" +"N00.9","Acute nephritic syndrome, unspecified" +"N01","RAPIDLY PROGRESSIVE NEPHRITIC SYNDROME" +"N01.0","Rapidly progressive nephritic syndrome, minor glomerular abnormality" +"N01.1","Rapidly progressive nephritic syndrome, focal and segmental glomerular lesions" +"N01.2","Rapidly progressive nephritic syndrome, diffuse membranous glomerulonephritis" +"N01.3","Rapidly progressive nephritic syndrome, diffuse mesangial proliferative glomerulonephritis" +"N01.4","Rapidly progressive nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis" +"N01.5","Rapidly progressive nephritic syndrome, diffuse mesangiocapillary glomerulonephritis" +"N01.6","Rapidly progressive nephritic syndrome, dense deposit disease" +"N01.7","Rapidly progressive nephritic syndrome, diffuse crescentic glomerulonephritis" +"N01.8","Rapidly progressive nephritic syndrome, other" +"N01.9","Rapidly progressive nephritic syndrome, unspecified" +"N02","RECURRENT AND PERSISTENT HAEMATURIA" +"N02.0","Recurrent and persistent haematuria, minor glomerular abnormality" +"N02.1","Recurrent and persistent haematuria, focal and segmental glomerular lesions" +"N02.2","Recurrent and persistent haematuria, diffuse membranous glomerulonephritis" +"N02.3","Recurrent and persistent haematuria, diffuse mesangial proliferative glomerulonephritis" +"N02.4","Recurrent and persistent haematuria, diffuse endocapillary proliferative glomerulonephritis" +"N02.5","Recurrent and persistent haematuria, diffuse mesangiocapillary glomerulonephritis" +"N02.6","Recurrent and persistent haematuria, dense deposit disease" +"N02.7","Recurrent and persistent haematuria, diffuse crescentic glomerulonephritis" +"N02.8","Recurrent and persistent haematuria, other" +"N02.9","Recurrent and persistent haematuria, unspecified" +"N03","CHRONIC NEPHRITIC SYNDROME" +"N03.0","Chronic nephritic syndrome, minor glomerular abnormality" +"N03.1","Chronic nephritic syndrome, focal and segmental glomerular lesions" +"N03.2","Chronic nephritic syndrome, diffuse membranous glomerulonephritis" +"N03.3","Chronic nephritic syndrome, diffuse mesangial proliferative glomerulonephritis" +"N03.4","Chronic nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis" +"N03.5","Chronic nephritic syndrome, diffuse mesangiocapillary glomerulonephritis" +"N03.6","Chronic nephritic syndrome, dense deposit disease" +"N03.7","Chronic nephritic syndrome, diffuse crescentic glomerulonephritis" +"N03.8","Chronic nephritic syndrome, other" +"N03.9","Chronic nephritic syndrome, unspecified" +"N04","NEPHROTIC SYNDROME" +"N04.0","Nephrotic syndrome, minor glomerular abnormality" +"N04.1","Nephrotic syndrome, focal and segmental glomerular lesions" +"N04.2","Nephrotic syndrome, diffuse membranous glomerulonephritis" +"N04.3","Nephrotic syndrome, diffuse mesangial proliferative glomerulonephritis" +"N04.4","Nephrotic syndrome, diffuse endocapillary proliferative glomerulonephritis" +"N04.5","Nephrotic syndrome, diffuse mesangiocapillary glomerulonephritis" +"N04.6","Nephrotic syndrome, dense deposit disease" +"N04.7","Nepthrotic syndrome, diffuse crescentic glomerulonephritis" +"N04.8","Nephtrotic syndrome, other" +"N04.9","Nepthrotic syndrome, unspecified" +"N05","Unspecified nephritic syndrome" +"N05.0","Unspecified nephritic syndrome, minor glomerular abnormality" +"N05.1","Unspecified nephritic syndrome, focal and segmental glomerular lesions" +"N05.2","Unspecified nephritic syndrome, diffuse membranous glomerulonephritis" +"N05.3","Unspecified nephritic syndrome, diffuse mesangial proliferative glomerulonephritis" +"N05.4","Unspecified nephritic syndrome, diffuse endocapillary proliferative glomerulonephritis" +"N05.5","Unspecified nephritic syndrome, diffuse mesangiocapillary glomeru" +"N05.6","Unspecified nephritic syndrome, dense deposit disease" +"N05.7","Unspecified nephritic syndrome, diffuse crescentic glomerulonephritis" +"N05.8","Unspecified nephritic syndrome, other" +"N05.9","Unspecified nephritic syndrome, unspecified" +"N06","Isolated proteinuria with specified morphological lesion" +"N06.0","Isolated proteinuria with specified morphological lesion, minor glomerular abnormality" +"N06.1","Isolated proteinuria with specified morphological lesion, focal and segmental glomerular lesions" +"N06.2","Isolated proteinuria with specified morphological lesion, diffuse membranous glomerulonephritis" +"N06.3","Isolated proteinuria with specified morphological lesion, diffuse mesangial proliferative glomerulonephritis" +"N06.4","Isolated proteinuria with specified morphological lesion, diffuse endocapillary proliferative glomerulonephritis" +"N06.5","Isolated proteinuria with specified morphological lesion, diffuse mesangiocapillary glomerulonephritis" +"N06.6","Isolated proteinuria with specified morphological lesion, dense deposit disease" +"N06.7","Isolated proteinuria with specified morphological lesion, diffuse crescentic glomerulonephritis" +"N06.8","Isolated proteinuria with specified morphological lesion, other" +"N06.9","Isolated proteinuria with specified morphological lesion, unspecified" +"N07","HEREDITARY NEPHROPATHY, NOT ELSEWHERE CLASSIFIED" +"N07.0","Hereditary nephropathy, not elsewhere classified, minor glomerular abnormality" +"N07.1","Hereditary nephropathy, not elsewhere classified, focal and segmental glomerular lesions" +"N07.2","Hereditary nephropathy, not elsewhere classified, diffuse membranous glomerulonephritis" +"N07.3","Hereditary nephropathy, not elsewhere classified, diffuse mesangial proliferative glomerulonephritis" +"N07.4","Hereditary nephropathy, not elsewhere classified, diffuse endocapillary proliferative glomerulonephritis" +"N07.5","Hereditary nephropathy, not elsewhere classified, diffuse mesangiocapillary glomerulonephritis" +"N07.6","Hereditary nephropathy, not elsewhere classified, dense deposit disease" +"N07.7","Hereditary nephropathy, not elsewhere classified, diffuse crescentic glomerulonephritis" +"N07.8","Hereditary nephropathy, not elsewhere classified, other" +"N07.9","Hereditary nephropathy, not elsewhere classified, unspecified" +"N08","Glomerular disorders in diseases classified elsewhere" +"N08.0","Glomerular disorder in infectious and parasitic diseases classified elsewhere" +"N08.1","Glomerular disorders in neoplastic diseases" +"N08.2","Glomerular disorders in blood diseases and disorders involving the immune mechanism" +"N08.3","Glomerular disorders in diabetes mellitus" +"N08.4","Glomerular disorders in other endocrine, nutritional and metabolic diseases" +"N08.5","Glomerular disorders in systemic connective tissue disorders" +"N08.8","Glomerular disorders in other diseases classified elsewhere" +"N10","ACUTE TUBULO-INTERSTITIAL NEPHRITIS" +"N11","CHRONIC TUBULO-INTERSTITIAL NEPHRITIS" +"N11.0","Nonobstructive reflux-associated chronic pyelonephritis" +"N11.1","Chronic obstructive pyelonephritis" +"N11.8","Other chronic tubulo-interstitial nephritis" +"N11.9","Chronic tubulo-interstitial nephritis, unspecified" +"N12","Tubulo-interstitial nephritis not specified as acute or chronic" +"N13","OBSTRUCTIVE AND REFLUX UROPATHY" +"N13.0","Hydronephrosis with ureteropelvic junction obstruction" +"N13.1","Hydronephrosis with ureteral stricture not elsewhere classified" +"N13.2","Hydronephrosis with renal and ureteral calculous obstruction" +"N13.3","Other and unspecified hydronephrosis" +"N13.4","Hydroureter" +"N13.5","Kinking and stricture of ureter without hydronephrosis" +"N13.6","Pyonephrosis" +"N13.7","Vesicoureteral-reflux-associated uropathy" +"N13.8","Other obstructive and reflux uropathy" +"N13.9","Obstructive and reflux uropathy, unspecified" +"N14","Drug- and heavy-metal-induced tubulo-interstitial and tubular conditions" +"N14.0","Analgesic nephropathy" +"N14.1","Nephropathy induced by other drugs, medicaments and biological substances" +"N14.2","Neuropathy induced by unspecified drug, medicament or biological substance" +"N14.3","Nephropathy induced by heavy metals" +"N14.4","Toxic nephropathy, not elsewhere classified" +"N15","OTHER RENAL TUBULO-INTERSTITIAL DISEASES" +"N15.0","Balkan nephropathy" +"N15.1","Renal and perinephric abscess" +"N15.8","Other specified renal tubulo-interstitial diseases" +"N15.9","Renal tubulo-interstitial disease, unspecified" +"N16","Renal tubulo-interstitial disorders in diseases classified elsewhere" +"N16.0","Renal tubulo-interstital disorders in infectious and parasitic diseases classified elsewhere" +"N16.1","Renal tubulo-interstitial disorders in neoplastic diseases" +"N16.2","Renal tubulo-interstitial disorders in blood diseases and disorders involving the immune mechanism" +"N16.3","Renal tubulo-interstitial disorders in metabolic diseases" +"N16.4","Renal tubulo-interstitial disorders systemic connective tissue disorders" +"N16.5","Renal tubulo-interstitial disorders in transplant rejection" +"N16.8","Renal tubulo-interstitial disorders in other diseases classified elsewhere" +"N17","ACUTE RENAL FAILURE" +"N17.0","Acute renal failure with tubular necrosis" +"N17.1","Acute renal failure with acute cortical necrosis" +"N17.2","Acute renal failure with medullary necrosis" +"N17.8","Other acute renal failure" +"N17.9","Acute renal failure, unspecified" +"N18","Chronic kidney disease" +"N18.0","End-stage renal disease" +"N18.1","Chronic kidney disease, stage 1" +"N18.2","Chronic kidney disease, stage 2" +"N18.3","Chronic kidney disease, stage 3" +"N18.4","Chronic kidney disease, stage 4" +"N18.5","Chronic kidney disease, stage 5" +"N18.8","Other chronic renal failure" +"N18.9","Chronic renal failure, unspecified" +"N19","Unspecified renal failure" +"N20","CALCULUS OF KIDNEY AND URETER" +"N20.0","Calculus of kidney" +"N20.1","Calculus of ureter" +"N20.2","Calculus of kidney with calculus of ureter" +"N20.9","Urinary calculus, unspecified" +"N21","CALCULUS OF LOWER URINARY TRACT" +"N21.0","Calculus in bladder" +"N21.1","Calculus in urethra" +"N21.8","Other lower urinary tract calculus" +"N21.9","Calculus of lower urinary tract, unspecified" +"N22","Calculus of urinary tract in diseases classified elsewhere" +"N22.0","Urinary calculus in schistosomiasis bilharziasis" +"N22.8","Calculus of urinary tract in other diseases classified elsewhere" +"N23","Unspecified renal colic" +"N25","Disorders resulting from impaired renal tubular function" +"N25.0","Renal osteodystrophy" +"N25.1","Nephrogenic diabetes insipidus" +"N25.8","Other disorders resulting from impaired renal tubular function" +"N25.9","Disorder resulting from impaired renal tubular function, unspecified" +"N26","Unspecified contracted kidney" +"N27","SMALL KIDNEY OF UNKNOWN CAUSE" +"N27.0","Small kidney, unilateral" +"N27.1","Small kidney, bilateral" +"N27.9","Small kidney, unspecified" +"N28","Other disorders of kidney and ureter, not elsewhere classified" +"N28.0","Ischaemia and infarction of kidney" +"N28.1","Cyst of kidney, acquired" +"N28.8","Other specified disorders of kidney and ureter" +"N28.9","Disorder of kidney and ureter, unspecified" +"N29","Other disorders of kidney and ureter in diseases classified elsewhere" +"N29.0","Late syphilis of kidney" +"N29.1","Other disorders of kidney and ureter in infectious and parasitic diseases classified elsewhere" +"N29.8","Other disorders of kidney and ureter in other diseases classified elsewhere" +"N30","CYSTITIS" +"N30.0","Acute cystitis" +"N30.1","Interstitial cystitis chronic" +"N30.2","Other chronic cystitis" +"N30.3","Trigonitis" +"N30.4","Irradiation cystitis" +"N30.8","Other cystitis" +"N30.9","Cystitis, unspecified" +"N31","NEUROMUSCULAR DYSFUNCTION OF BLADDER, NOT ELSEWHERE CLASSIFIED" +"N31.0","Uninhibited neuropathic bladder, not elsewhere classified" +"N31.1","Reflex neuropathic bladder, not elsewhere classified" +"N31.2","Flaccid neuropathic bladder, not elsewhere classified" +"N31.8","Other neuromuscular dysfunction of bladder" +"N31.9","Neuromuscular dysfunction of bladder, unspecified" +"N32","OTHER DISORDERS OF BLADDER" +"N32.0","Bladder-neck obstruction" +"N32.1","Vesicointestinal fistula" +"N32.2","Vesical fistula, not elsewhere classified" +"N32.3","Diverticulum of bladder" +"N32.4","Rupture of bladder, nontraumatic" +"N32.8","Other specified disorders of bladder" +"N32.9","Bladder disorder, unspecified" +"N33","Bladder disorders in diseases classified elsewhere" +"N33.0","Tuberculous cystitis" +"N33.8","Bladder disorders in other diseases classified elsewhere" +"N34","URETHRITIS AND URETHRAL SYNDROME" +"N34.0","Urethral abscess" +"N34.1","Nonspecific urethritis" +"N34.2","Other urethritis" +"N34.3","Urethral syndrome, unspecified" +"N35","URETHRAL STRICTURE" +"N35.0","Post-traumatic urethral stricture" +"N35.1","Postinfective urethral stricture, not elsewhere classified" +"N35.8","Other urethral stricture" +"N35.9","Urethral stricture, unspecified" +"N36","OTHER DISORDERS OF URETHRA" +"N36.0","Urethral fistula" +"N36.1","Urethral diverticulum" +"N36.2","Urethral caruncle" +"N36.3","Prolapsed urethral mucosa" +"N36.8","Other specified disorders of urethra" +"N36.9","Urethral disorder, unspecified" +"N37","Urethral disorders in diseases classified elsewhere" +"N37.0","Urethritis in diseases classified elsewhere" +"N37.8","Other urethral disorders in diseases classified elsewhere" +"N39","OTHER DISORDERS OF URINARY SYSTEM" +"N39.0","Urinary tract infection, site not specified" +"N39.1","Persistent proteinuria, unspecified" +"N39.2","Orthostatic proteinuria, unspecified" +"N39.3","Stress incontinence" +"N39.4","Other specified urinary incontinence" +"N39.8","Other specified disorders of urinary system" +"N39.9","Disorder of urinary system, unspecified" +"N40","HYPERPLASIA OF PROSTATE" +"N41","Inflammatory diseases of prostate" +"N41.0","Acute prostatitis" +"N41.1","Chronic prostatitis" +"N41.2","Abscess of prostate" +"N41.3","Prostatocystitis" +"N41.8","Other inflammatory diseases of prostate" +"N41.9","Inflammatory disease of prostate, unspecified" +"N42","Other disorders of prostate" +"N42.0","Calculus of prostate" +"N42.1","Congestion and haemorrhage of prostate" +"N42.2","Atrophy of prostate" +"N42.3","Dysplasia of prostate" +"N42.8","Other specified disorders of prostate" +"N42.9","Disorder of prostate, unspecified" +"N43","HYDROCELE AND SPERMATOCELE" +"N43.0","Encysted hydrocele" +"N43.1","Infected hydrocele" +"N43.2","Other hydrocele" +"N43.3","Hydrocele, unspecified" +"N43.4","Spermatocele" +"N44","Torsion of testis" +"N45","ORCHITIS AND EPIDIDYMITIS" +"N45.0","Orchitis, epididymitis and epididymo-orchitis with abscess" +"N45.9","Orchitis epididymitis and epididymo-orchitis without abscess" +"N46","MALE INFERTILITY" +"N47","Redundant prepuce, phimosis and paraphimosis" +"N48","OTHER DISORDERS OF PENIS" +"N48.0","Leukoplakia of penis" +"N48.1","Balanoposthitis" +"N48.2","Other inflammatory disorders of penis" +"N48.3","Priapism" +"N48.4","Impotence of organic origin" +"N48.5","Ulcer of penis" +"N48.6","Induratio penis plastica" +"N48.8","Other specified disorders of penis" +"N48.9","Disorder of penis, unspecified" +"N49","Inflammatory disorders of male genital organs, not elsewhere classified" +"N49.0","Inflammatory disorders of seminal vesicle" +"N49.1","Inflammatory disorders spermatic cord, tunica vaginalis and vas deferens" +"N49.2","Inflammatory disorders of scrotum" +"N49.8","Inflammatory disorders of other specified male genital organs" +"N49.9","Inflammatory disorder of unspecified male genital organ" +"N50","OTHER DISORDERS OF MALE GENITAL ORGANS" +"N50.0","Atrophy of testis" +"N50.1","Vascular disorders of male genital organs" +"N50.8","Other specified disorders of male genital organs" +"N50.9","Disorder of male genital organs, unspecified" +"N51","Disorders of male genital organs in diseases classified elsewhere" +"N51.0","Disorders of prostate in diseases classified elsewhere" +"N51.1","Disorders of testis and epididymis in diseases classified elsewhere" +"N51.2","Balanitis in diseases classified elsewhere" +"N51.8","Other disorders of male genital organs in diseases classified elsewhere" +"N60","BENIGN MAMMARY DYSPLASIA" +"N60.0","Solitary cyst of breast" +"N60.1","Diffuse cystic mastopathy" +"N60.2","Fibroadenosis of breast" +"N60.3","Fibrosclerosis of breast" +"N60.4","Mammary duct ectasia" +"N60.8","Other benign mammary dysplasias" +"N60.9","Benign mammary dysplasia, unspecified" +"N61","Inflammatory disorders of breast" +"N62","HYPERTROPHY OF BREAST" +"N63","Unspecified lump in breast" +"N64","OTHER DISORDERS OF BREAST" +"N64.0","Fissure and fistula of nipple" +"N64.1","Fat necrosis of breast" +"N64.2","Atrophy of breast" +"N64.3","Galactorrhoea not associated with childbirth" +"N64.4","Mastodynia" +"N64.5","Other signs and symptoms in breast" +"N64.8","Other specified disorders of breast" +"N64.9","Disorder of breast, unspecified" +"N70","SALPINGITIS AND OOPHORITIS" +"N70.0","Acute salpingitis and oophoritis" +"N70.1","Chronic salpingitis and oophoritis" +"N70.9","Salpingitis and oophoritis, unspecified" +"N71","INFLAMMATORY DISEASE OF UTERUS, EXCEPT CERVIX" +"N71.0","Acute inflammatory disease of uterus" +"N71.1","Chronic inflammatory disease of uterus" +"N71.9","Inflammatory disease of uterus, unspecified" +"N72","INFLAMMATORY DISEASE OF CERVIX UTERI" +"N73","OTHER FEMALE PELVIC INFLAMMATORY DISEASES" +"N73.0","Acute parametritis and pelvic cellulitis" +"N73.1","Chronic parametritis and pelvic cellulitis" +"N73.2","Unspecified parametritis and pelvic cellulitis" +"N73.3","Female acute pelvic peritonitis" +"N73.4","Female chronic pelvic peritonitis" +"N73.5","Female pelvic peritonitis, unspecified" +"N73.6","Female pelvic peritoneal adhesions" +"N73.8","Other specified female pelvic inflammatory diseases" +"N73.9","Female pelvic inflammatory disease, unspecified" +"N74","Female pelvic inflammatory disorders in diseases classified elsewhere" +"N74.0","Tuberculous infection of cervix uteri" +"N74.1","Female tuberculous pelvic inflammatory disease" +"N74.2","Female syphilitic pelvic inflammatory disease" +"N74.3","Female gonococcal pelvic inflammatory disease" +"N74.4","Female chlamydial pelvic inflammatory disease" +"N74.8","Female pelvic inflammatory disorders in other diseases classified elsewhere" +"N75","Diseases of Bartholin gland" +"N75.0","Cyst of Bartholin's gland" +"N75.1","Abscess of Bartholin's gland" +"N75.8","Other diseases of Bartholin's gland" +"N75.9","Disease of Bartholin's gland, unspecified" +"N76","Other inflammation of vagina and vulva" +"N76.0","Acute vaginitis" +"N76.1","Subacute and chronic vaginitis" +"N76.2","Acute vulvitis" +"N76.3","Subacute and chronic vulvitis" +"N76.4","Abscess of vulva" +"N76.5","Ulceration of vagina" +"N76.6","Ulceration of vulva" +"N76.8","Other specified inflammation of vagina and vulva" +"N77","Vulvovaginal ulceration and inflammation in diseases classified elsewhere" +"N77.0","Ulceration of vulva in infectious and parasitic diseases classified elsewhere" +"N77.1","Vaginitis vulvitis and vulvovaginitis in infectious and parasitic diseases classified elsewhere" +"N77.8","Vulvovaginal ulceration and inflammation in other diseases classified elsewhere" +"N80","ENDOMETRIOSIS" +"N80.0","Endometriosis of uterus" +"N80.1","Endometriosis of ovary" +"N80.2","Endometriosis of fallopian tube" +"N80.3","Endometriosis of pelvic peritoneum" +"N80.4","Endometriosis of rectovaginal septum and vagina" +"N80.5","Endometriosis of intestine" +"N80.6","Endometriosis in cutaneous scar" +"N80.8","Other endometriosis" +"N80.9","Endometriosis, unspecified" +"N81","FEMALE GENITAL PROLAPSE" +"N81.0","Female urethrocele" +"N81.1","Cystocele" +"N81.2","Incomplete uterovaginal prolapse" +"N81.3","Complete uterovaginal prolapse" +"N81.4","Uterovaginal prolapse, unspecified" +"N81.5","Vaginal enterocele" +"N81.6","Rectocele" +"N81.8","Other female genital prolapse" +"N81.9","Female genital prolapse, unspecified" +"N82","FISTULAE INVOLVING FEMALE GENITAL TRACT" +"N82.0","Vesicovaginal fistula" +"N82.1","Other female urinary-genital tract fistulae" +"N82.2","Fistula of vagina to small intestine" +"N82.3","Fistula of vagina to large intestine" +"N82.4","Other female intestinal-genital tract fistulae" +"N82.5","Female genital tract-skin fistulae" +"N82.8","Other female genital tract fistulae" +"N82.9","Female genital tract fistula, unspecified" +"N83","NONINFLAMMATORY DISORDERS OF OVARY, FALLOPIAN TUBE AND BROAD LIGAMENT" +"N83.0","Follicular cyst of ovary" +"N83.1","Corpus luteum cyst" +"N83.2","Other and unspecified ovarian cysts" +"N83.3","Acquired atrophy of ovary and fallopian tube" +"N83.4","Prolapse and hernia of ovary and fallopian tube" +"N83.5","Torsion of ovary, ovarian pedicle and fallopian tube" +"N83.6","Haematosalpinx" +"N83.7","Haematoma of broad ligament" +"N83.8","Other noninflamatory disorders of ovary, fallopian tube and broad ligament" +"N83.9","Noninflammatory disorder of ovary, fallopian tube and broad ligament, unspecified" +"N84","POLYP OF FEMALE GENITAL TRACT" +"N84.0","Polyp of corpus uteri" +"N84.1","Polyp of cervix uteri" +"N84.2","Polyp of vagina" +"N84.3","Polyp of vulva" +"N84.8","Polyp of other parts of female genital tract" +"N84.9","Polyp of female genital tract, unspecified" +"N85","OTHER NONINFLAMMATORY DISORDERS OF UTERUS, EXCEPT CERVIX" +"N85.0","Endometrial glandular hyperplasia" +"N85.1","Endometrial adenomatous hyperplasia" +"N85.2","Hypertrophy of uterus" +"N85.3","Subinvolution of uterus" +"N85.4","Malposition of uterus" +"N85.5","Inversion of uterus" +"N85.6","Intrauterine synechiae" +"N85.7","Haematometra" +"N85.8","Other specified noninflammatory disorders of uterus" +"N85.9","Noninflammatory disorder of uterus, unspecified" +"N86","EROSION AND ECTROPION OF CERVIX UTERI" +"N87","DYSPLASIA OF CERVIX UTERI" +"N87.0","Mild cervical dysplasia" +"N87.1","Moderate cervical dysplasia" +"N87.2","Severe cervical dysplasia, not elsewhere classified" +"N87.9","Dysplasia of cervix uteri, unspecified" +"N88","OTHER NONINFLAMMATORY DISORDERS OF CERVIX UTERI" +"N88.0","Leukoplakia of cervix uteri" +"N88.1","Old laceration of cervix uteri" +"N88.2","Stricture and stenosis of cervix uteri" +"N88.3","Incompetence of cervix uteri" +"N88.4","Hypertrophic elongation of cervix uteri" +"N88.8","Other specified noninflammatory disorders of cervix uteri" +"N88.9","Noninflammatory disorder of cervix uteri, unspecified" +"N89","OTHER NONINFLAMMATORY DISORDERS OF VAGINA" +"N89.0","Mild vaginal dysplasia" +"N89.1","Moderate vaginal dysplasia" +"N89.2","Severe vaginal dysplasia, not elsewhere classified" +"N89.3","Dysplasia of vagina, unspecified" +"N89.4","Leukoplakia of vagina" +"N89.5","Stricture and atresia of vagina" +"N89.6","Tight hymenal ring" +"N89.7","Haematocolpos" +"N89.8","Other specified noninflammatory disorders of vagina" +"N89.9","Noninflammatory disorder of vagina, unspecified" +"N90","OTHER NONINFLAMMATORY DISORDERS OF VULVA AND PERINEUM" +"N90.0","MIld vulvar dysplasia" +"N90.1","Moderate vulvar dysplasia" +"N90.2","Severe vulvar dysplasia, not elsewhere classified" +"N90.3","Dysplasia of vulva, unspecified" +"N90.4","Leukoplakia of vulva" +"N90.5","Atrophy of vulva" +"N90.6","Hypertrophy of vulva" +"N90.7","Vulvar cyst" +"N90.8","Other specified noninflammatory disorders of vulva and perineum" +"N90.9","Noninflammatory disorder of vulva and perineum, unspecified" +"N91","ABSENT, SCANTY AND RARE MENSTRUATION" +"N91.0","Primary amenorrhoea" +"N91.1","Secondary amenorrhoea" +"N91.2","Amenorrhoea, unspecified" +"N91.3","Primary oligomenorrhoea" +"N91.4","Secondary oligomenorrhoea" +"N91.5","Oligomenorrhoea, unspecified" +"N92","EXCESSIVE, FREQUENT AND IRREGULAR MENSTRUATION" +"N92.0","Excessive and frequent menstruation with regular cycle" +"N92.1","Excessive and frequent menstruation with irregular cycle" +"N92.2","Excessive menstruation at puberty" +"N92.3","Ovulation bleeding" +"N92.4","Excessive bleeding in the premenopausal period" +"N92.5","Other specified irregular menstruation" +"N92.6","Irregular menstruation, unspecified" +"N93","OTHER ABNORMAL UTERINE AND VAGINAL BLEEDING" +"N93.0","Postcoital and contact bleeding" +"N93.8","Other specified abnormal uterine and vaginal bleeding" +"N93.9","Abnormal uterine and vaginal bleeding, unspecified" +"N94","Pain and other conditions associated with female genital organs and menstrual cycle" +"N94.0","Mittelschmerz" +"N94.1","Dyspareunia" +"N94.2","Vaginismus" +"N94.3","Premenstrual tension syndrome" +"N94.4","Primary dysmenorrhoea" +"N94.5","Secondary dysmenorrhoea" +"N94.6","Dysmenorrhoea, unspecified" +"N94.8","Other specified conditions associated with female genital organs and menstrual cycle" +"N94.9","Unspecified condition associated with female genital organs and menstrual cycle" +"N95","MENOPAUSAL AND OTHER PERIMENOPAUSAL DISORDERS" +"N95.0","Postmenopausal bleeding" +"N95.1","Menopausal and female climacteric states" +"N95.2","Postmenopausal atrophic vaginitis" +"N95.3","States associated with artificial menopause" +"N95.8","Other specified menopausal and perimenopausal disorders" +"N95.9","Menopausal and perimenopausal disorder, unspecified" +"N96","HABITUAL ABORTER" +"N97","FEMALE INFERTILITY" +"N97.0","Female infertility associated with anovulation" +"N97.1","Female infertility of tubal origin" +"N97.2","Female infertility of uterine origin" +"N97.3","Female infertility of cervical origin" +"N97.4","Female infertility associated with male factors" +"N97.8","Female infertility of other origin" +"N97.9","Female infertility, unspecified" +"N98","Complications associated with artificial fertilization" +"N98.0","Infection associated with artificial insemination" +"N98.1","Hyperstimulation of ovaries" +"N98.2","Complications attempted introduction fertilized ovum following in vitro fertilization" +"N98.3","Complications attempted introduction of embryo in embryo transfer" +"N98.8","Other complications associated with artificial fertilization" +"N98.9","Complication associated with artificial fertilization, unspecified" +"N99","POSTPROCEDURAL DISORDERS OF GENITOURINARY SYSTEM, NOT ELSEWHERE CLASSIFIED" +"N99.0","Postprocedural renal failure" +"N99.1","Postprocedural urethral stricture" +"N99.2","Postoperative adhesions of vagina" +"N99.3","Prolapse of vaginal vault after hysterectomy" +"N99.4","Postprocedural pelvic peritoneal adhesions" +"N99.5","Malfunction of external stoma of urinary tract" +"N99.8","Other postprocedural disorders of genitourinary system" +"N99.9","Postprocedural disorder of genitourinary system, Unspecified" +"O00","ECTOPIC PREGNANCY" +"O00.0","Abdominal pregnancy" +"O00.1","Tubal pregnancy" +"O00.2","Ovarian pregnancy" +"O00.8","Other ectopic pregnancy" +"O00.9","Ectopic pregnancy, unspecified" +"O01","HYDATIDIFORM MOLE" +"O01.0","Classical hydatidiform mole" +"O01.1","Incomplete and partial hydatidiform mole" +"O01.9","Hydatidiform mole, unspecified" +"O02","OTHER ABNORMAL PRODUCTS OF CONCEPTION" +"O02.0","Blighted ovum and nonhydatidiform mole" +"O02.1","Missed abortion" +"O02.8","Other specified abnormal products of conception" +"O02.9","Abnormal product of conception, unspecified" +"O03","SPONTANEOUS ABORTION" +"O03.0","Spontaneous abortion, incomplete abortion complicated by genital tract and pelvic infection" +"O03.1","Spontaneous abortion, incomplete abortion complicated by delayed or excessive haemorrhage" +"O03.2","Spontaneous abortion, incomplete, complicated by embolism" +"O03.3","Spontaneous abortion, incomplete, with other and unspecified complications" +"O03.4","Spontaneous abortion, incomplete, without complication" +"O03.5","Spontaneous abortion, complete or unspecified, complicated by genital tract and pelvic infection" +"O03.6","Spontaneous abortion, complete or unspecified, complicated by delayed or excessive haemorrhage" +"O03.7","Spontaneous abortion, complete or unspecified, complicated by embolism" +"O03.8","Spontaneous abortion, complete or unspecified, with other and unspecified complications" +"O03.9","Spontaneous abortion, complete or unspecified, without complication" +"O04","MEDICAL ABORTION" +"O04.0","Medical abortion, incomplete, complicated by genital tract and pelvic infection" +"O04.1","Medical abortion, incomplete, complicated by delayed or excessive haemorrhage" +"O04.2","Medical abortion, incomplete, complicated by embolism" +"O04.3","Medical abortion, incomplete, with other and unspecified complications" +"O04.4","Medical abortion, incomplete, without complication" +"O04.5","Medical abortion, complete or unspecified, complicated by genital tract and pelvic infection" +"O04.6","Medical abortion, complete or unspecified, complicated by delayed or excessive haemorrhage" +"O04.7","Medical abortion, complete or unspecified, complicated by embolism" +"O04.8","Medical abortion, complete or unspecified, with other and unspecified complications" +"O04.9","Medical abortion, complete or unspecified, without complication" +"O05","OTHER ABORTION" +"O05.0","Other abortion, incomplete, complicated by genital tract and pelvic infection" +"O05.1","Other abortion, incomplete, complicated by delayed or excessive haemorrhage" +"O05.2","Other abortion, incomplete, complicated by embolism" +"O05.3","Other abortion, incomplete, with other and unspecified complications" +"O05.4","Other abortion, incomplete, without complication" +"O05.5","Other abortion, complete or unspecified, complicated by genital tract and pelvic infection" +"O05.6","Other abortion, complete or unspecified, complicated by delayed or excessive haemorrhage" +"O05.7","Other abortion, complete or unspecified, complicated by embolism" +"O05.8","Other abortion, complete or unspecified, with other and unspecified complications" +"O05.9","Other abortion, complete or unspecified, without complication" +"O06","Unspecified abortion" +"O06.0","Unspecified abortion, incomplete, complicated by genital tract and pelvic infection" +"O06.1","Unspecified abortion, incomplete, complicated by delayed or excessive haemorrhage" +"O06.2","Unspecified abortion, incomplete, complicated by embolism" +"O06.3","Unspecified abortion, incomplete, with other and unspecified complications" +"O06.4","Unspecified abortion, incomplete, without complication" +"O06.5","Unspecified abortion, complete or unspecified, complicated by genital tract and pelvic infection" +"O06.6","Unspecified abortion, complete or unspecified, complicated by delayed or excessive haemorrhage" +"O06.7","Unspecified abortion, complete or unspecified, complicated by embolism" +"O06.8","Unspecified abortion, complete or unspecified, with other and unspecified complications" +"O06.9","Unspecified abortion, complete or unspecified, without complication" +"O07","FAILED ATTEMPTED ABORTION" +"O07.0","Failed medical abortion, complicated by genital tract and pelvic infection" +"O07.1","Failed medical abortion complicated by delayed or excessive haemorrhage" +"O07.2","Failed medical abortion, complicated by embolism" +"O07.3","Failed medical abortion, with other and unspecified complications" +"O07.4","Failed medical abortion, without complication" +"O07.5","Other and unspecified failed attempted abortion, complicated by genital tract and pelvic infection" +"O07.6","Other and unspecified failed attempted abortion, complicated by delayed or excessive haemorrhage" +"O07.7","Other and unspecified failed attempted abortion, complicated by embolism" +"O07.8","Other and unspecified failed attempted abortion, with other and unspecified complications" +"O07.9","Other and unspecified failed attempted abortion, without complication" +"O08","COMPLICATIONS FOLLOWING ABORTION AND ECTOPIC AND MOLAR PREGNANCY" +"O08.0","Genital tract and pelvic infection following abortion and ectopic and molar pregnancy" +"O08.1","Delayed or excessive haemorrhage following abortion and ectopic and molar pregnancy" +"O08.2","Embolism following abortion and ectopic and molar pregnancy" +"O08.3","Shock following abortion and ectopic and molar pregnancy" +"O08.4","Renal failure following abortion and ectopic and molar pregnancy" +"O08.5","Metabolic disorders following abortion and ectopic and molar pregnancy" +"O08.6","Damage to pelvic organs and tissues following abortion and ectopic and molar pregnancy" +"O08.7","Other venous complications following abortion and ectopic and molar pregnancy" +"O08.8","Other complications following abortion and ectopic and molar pregnancy" +"O08.9","Complication following abortion and ectopic and molar pregnancy, unspecified" +"O10","Pre-existing hypertension complicating pregnancy, childbirth and the puerperium" +"O10.0","Pre-existing essential hypertension complicating pregnancy, childbirth and the puerperium" +"O10.1","Pre-existing hypertensive heart disease complicating pregnancy, childbirth and the puerperium" +"O10.2","Pre-existing hypertensive renal disease complicating pregnancy, childbirth and puerperium" +"O10.3","Pre-existing hypertensive heart and renal disease complicating pregnancy, childbirth and the puerperium" +"O10.4","Pre-existing secondary hypertension complicating pregnancy, childbirth and the puerperium" +"O10.9","Unspecified pre-existing hypertension complicating pregnancy, childbirth and the puerperium" +"O11","Pre-existing hypertensive disorder with superimposed proteinuria" +"O12","Gestational [pregnancy-induced] oedema and proteinuria without hypertension" +"O12.0","Gestational oedema" +"O12.1","Gestational proteinuria" +"O12.2","Gestational oedema with proteinuria" +"O13","Gestational [pregnancy-induced] hypertension without signification proteinuria" +"O14","Gestational [pregnancy-induced] hypertension with significant proteinuria" +"O14.0","Moderate pre-eclampsia" +"O14.1","Severe pre-eclampsia" +"O14.2","HELLP syndrome" +"O14.9","Pre-eclampsia, unspecified" +"O15","ECLAMPSIA" +"O15.0","Eclampsia in pregnancy" +"O15.1","Eclampsia in labour" +"O15.2","Eclampsia in the puerperium" +"O15.9","Eclampsia, unspecified as to time period" +"O16","Unspecified maternal hypertension" +"O20","HAEMORRHAGE IN EARLY PREGNANCY" +"O20.0","Threatened abortion" +"O20.8","Other haemorrhage in early pregnancy" +"O20.9","Haemorrhage in early pregnancy, unspecified" +"O21","EXCESSIVE VOMITING IN PREGNANCY" +"O21.0","Mild hyperemesis gravidarum" +"O21.1","Hyperemesis gravidarum with metabolic disturbance" +"O21.2","Late vomiting of pregnancy" +"O21.8","Other vomiting complicating pregnancy" +"O21.9","Vomiting of pregnancy, unspecified" +"O22","VENOUS COMPLICATIONS IN PREGNANCY" +"O22.0","Varicose veins of lower extremity in pregnancy" +"O22.1","Genital varices in pregnancy" +"O22.2","Superficial thrombophlebitis in pregnancy" +"O22.3","Deep phlebothrombosis in pregnancy" +"O22.4","Haemorrhoids in pregnancy" +"O22.5","Cerebral venous thrombosis in pregnancy" +"O22.8","Other venous complications in pregnancy" +"O22.9","Venous complication in pregnancy, unspecified" +"O23","INFECTIONS OF GENITOURINARY TRACT IN PREGNANCY" +"O23.0","Infections of kidney in pregnancy" +"O23.1","Infections of bladder in pregnancy" +"O23.2","Infections of urethra in pregnancy" +"O23.3","Infections of other parts of urinary tract in pregnancy" +"O23.4","Unspecified infection of urinary tract in pregnancy" +"O23.5","Infections of the genital tract in pregnancy" +"O23.9","Other and unspecified genitourinary tract infection in pregnancy" +"O24","DIABETES MELLITUS IN PREGNANCY" +"O24.0","Pre-existing diabetes mellitus, insulin-dependent" +"O24.1","Pre-existing diabetes mellitus, non-insulin-dependent" +"O24.2","Pre-existing malnutrition-related diabetes mellitus" +"O24.3","Pre-existing diabetes mellitus, unspecified" +"O24.4","Diabetes mellitus arising in pregnancy" +"O24.9","Diabetes mellitus in pregnancy, unspecified" +"O25","MALNUTRITION IN PREGNANCY" +"O26","MATERNAL CARE FOR OTHER CONDITIONS PREDOMINANTLY RELATED TO PREGNANCY" +"O26.0","Excessive weight gain in pregnancy" +"O26.1","Low weight gain in pregnancy" +"O26.2","Pregnancy care of habitual aborter" +"O26.3","Retained intrauterine contraceptive device in pregnancy" +"O26.4","Herpes gestationis" +"O26.5","Maternal hypotension syndrome" +"O26.6","Liver disorders in pregnancy, childbirth and the puerperium" +"O26.7","Subluxation of symphysis pubis in pregnancy, childbirth and the puerperium" +"O26.8","Other specified pregnancy-related conditions" +"O26.9","Pregnancy-related condition, unspecified" +"O28","ABNORMAL FINDINGS ON ANTENATAL SCREENING OF MOTHER" +"O28.0","Abnormal haematological finding on antenatal screening of mother" +"O28.1","Abnormal biochemical finding on antenatal screening of mother" +"O28.2","Abnormal cytological finding on antenatal screening of mother" +"O28.3","Abnormal ultrasonic finding on antenatal screening of mother" +"O28.4","Abnormal radiological find on antenatal screening of mother" +"O28.5","Abnormal chromosomal and genetic finding antenatal screening of mother" +"O28.8","Other abnormal findings on antenatal screening of mother" +"O28.9","Abnormal finding on antenatal screening of mother, unspecified" +"O29","Complications of anaesthesia during pregnancy" +"O29.0","Pulmonary complications of anaesthesia during pregnancy" +"O29.1","Cardiac complications of anaesthesia during pregnancy" +"O29.2","Central nervous system complications of anaesthesia during pregnancy" +"O29.3","Toxic reaction to local anaesthesia during pregnancy" +"O29.4","Spinal and epidural anaesthesia-induced headache during pregnancy" +"O29.5","Other complications of spinal and epidural anaesthesia during pregnancy" +"O29.6","Failed or difficult intubation during pregnancy" +"O29.8","Other complications of anaesthesia during pregnancy" +"O29.9","Complication of anaesthesia during pregnancy, Unspecified" +"O30","MULTIPLE GESTATION" +"O30.0","Twin pregnancy" +"O30.1","Triplet pregnancy" +"O30.2","Quadruplet pregnancy" +"O30.8","Other multiple gestation" +"O30.9","Multiple gestation, unspecified" +"O31","COMPLICATIONS SPECIFIC TO MULTIPLE GESTATION" +"O31.0","Papyraceous fetus" +"O31.1","Continuing pregnancy after abortion of one fetus or more" +"O31.2","Continuing pregnancy after intrauterine death of one fetus or more" +"O31.8","Other complications specific to multiple gestation" +"O32","MATERNAL CARE FOR KNOWN OR SUSPECTED MALPRESENTATION OF FETUS" +"O32.0","Maternal care for unstable lie" +"O32.1","Maternal care for breech presentation" +"O32.2","Maternal care for transverse and oblique lie" +"O32.3","Maternal care for face, brow and chin presentation" +"O32.4","Maternal care for high head at term" +"O32.5","Maternal care for multiple gestation with malpresentation of one fetus or more" +"O32.6","Maternal care for compound presentation" +"O32.8","Maternal care for other malpresentation of fetus" +"O32.9","Maternal care for malpresentation of fetus, unspecified" +"O33","MATERNAL CARE FOR KNOWN OR SUSPECTED DISPROPORTION" +"O33.0","Maternal care for disproportion due to deformity of maternal pelvic bones" +"O33.1","Maternal care for disproportion due to generally contracted pelvis" +"O33.2","Maternal care for disproportion due to inlet contraction of pelvis" +"O33.3","Maternalcare for disproportion due to outlet contract of pelvis" +"O33.4","Maternal care for disproportion of mixed maternal and fetal origin" +"O33.5","Maternal care for disproportion due to unusually large fetus" +"O33.6","Maternal care for disproportion due to hydrocephalic fetus" +"O33.7","Maternal care for disproportion due to other fetal deformities" +"O33.8","Maternal care for disproportion of other origin" +"O33.9","Maternal care for disproportion, unspecified" +"O34","MATERNAL CARE FOR KNOWN OR SUSPECTED ABNORMALITY OF PELVIC ORGANS" +"O34.0","Maternal care for congenital malformation of uterus" +"O34.1","Maternal care for tumour of corpus uteri" +"O34.2","Maternal care due to uterine scar from previous surgery" +"O34.3","Maternal care for cervical incompetence" +"O34.4","Maternal care for other abnormalities of cervix" +"O34.5","Maternal care for other abnormalities of gravid uterus" +"O34.6","Maternal care for abnormality of vagina" +"O34.7","Maternal care for abnormality of vulva and perineum" +"O34.8","Maternal care for other abnormalities of pelvic organs" +"O34.9","Maternal care for abnormality of pelvic organ, unspecified" +"O35","Maternal care for known or suspected fetal abnormality and damage" +"O35.0","Maternal care for suspected central nervous system malformation in fetus" +"O35.1","Maternal care for suspected chromosomal abnormality in fetus" +"O35.2","Maternal care for suspected hereditary disease in fetus" +"O35.3","Maternal care for suspected damage to fetus from viral disease in mother" +"O35.4","Maternal care for suspected damage to fetus from alcohol" +"O35.5","Maternal care for suspected damage to fetus by drugs" +"O35.6","Maternal care for suspected damage to fetus by radiation" +"O35.7","Maternal care for suspected damage to fetus by other medical procedures" +"O35.8","Maternal care for other suspected fetal abnormality and damage" +"O35.9","Maternal care for suspected fetal abnormality and damage, unspecified" +"O36","MATERNAL CARE FOR OTHER KNOWN OR SUSPECTED FETAL PROBLEMS" +"O36.0","Maternal care for rhesus isoimmunization" +"O36.1","Maternal care for other isoimmunization" +"O36.2","Maternal care for hydrops fetalis" +"O36.3","Maternal care for signs of fetal hypoxia" +"O36.4","Maternal care for intrauterine death" +"O36.5","Maternal care for poor fetal growth" +"O36.6","Maternal care for excessive fetal growth" +"O36.7","Maternal care for viable fetus in abdominal pregnancy" +"O36.8","Maternal care for other specified fetal problems" +"O36.9","Maternal care for fetal problem, unspecified" +"O40","POLYHYDRAMNIOS" +"O41","OTHER DISORDERS OF AMNIOTIC FLUID AND MEMBRANES" +"O41.0","Oligohydramnios" +"O41.1","Infection of amniotic sac and membranes" +"O41.8","Other specified disorders of amniotic fluid and membranes" +"O41.9","Disorder of amniotic fluid and membranes, unspecified" +"O42","PREMATURE RUPTURE OF MEMBRANES" +"O42.0","Premature rupture of membranes, onset of labour within 24 hours" +"O42.1","Premature rupture of membranes, onset of labour after 24 hours" +"O42.2","Premature rupture of membranes, labour delayed by therapy" +"O42.9","Premature rupture of membranes, unspecified" +"O43","PLACENTAL DISORDERS" +"O43.0","Placental transfusion syndromes" +"O43.1","Malformation of placenta" +"O43.2","Morbidly adherent placenta" +"O43.8","Other placental disorders" +"O43.9","Placental disorder, unspecified" +"O44","Placenta praevia" +"O44.0","Placenta praevia specified as without haemorrhage" +"O44.1","Placenta praevia with haemorrhage" +"O45","PREMATURE SEPARATION OF PLACENTA [ABRUPTIO PLACENTAE]" +"O45.0","Premature separation of placenta with coagulation defect" +"O45.8","Other premature separation of placenta" +"O45.9","Premature separation of placenta, unspecified" +"O46","ANTEPARTUM HAEMORRHAGE, NOT ELSEWHERE CLASSIFIED" +"O46.0","Antepartum haemorrhage with coagulation defect" +"O46.8","Other antepartum haemorrhage" +"O46.9","Antepartum haemorrhage, unspecified" +"O47","FALSE LABOUR" +"O47.0","False labour before 37 completed weeks of gestation" +"O47.1","False labour at or after 37 completed weeks of gestation" +"O47.9","False labour, unspecified" +"O48","PROLONGED PREGNANCY" +"O60","Preterm labour and delivery" +"O60.0","Preterm labour without delivery" +"O60.1","Preterm labour with preterm delivery" +"O60.2","Preterm labour with term delivery" +"O60.3","Preterm delivery without spontaneous labour" +"O61","FAILED INDUCTION OF LABOUR" +"O61.0","Failed medical induction of labour" +"O61.1","Failed instrumental induction of labour" +"O61.8","Other failed induction of labour" +"O61.9","Failed induction of labour, unspecified" +"O62","ABNORMALITIES OF FORCES OF LABOUR" +"O62.0","Primary inadequate contractions" +"O62.1","Secondary uterine inertia" +"O62.2","Other uterine inertia" +"O62.3","Precipitate labour" +"O62.4","Hypertonic, incoordinate, and prolonged uterine contractions" +"O62.8","Other abnormalities of forces of labour" +"O62.9","Abnormality of forces of labour, unspecified" +"O63","LONG LABOUR" +"O63.0","Prolonged first stage of labour" +"O63.1","Prolonged second stage of labour" +"O63.2","Delayed delivery of second twin, triplet, etc" +"O63.9","Long labour, unspecified" +"O64","Obstructed labour due to malposition and malpresentation of fetus" +"O64.0","Obstructed labour due to incomplete rotation of fetal head" +"O64.1","Obstructed labour due to breech presentation" +"O64.2","Obstructed labour due to face presentation" +"O64.3","Obstructed labour due to brow presentation" +"O64.4","Obstructed labour due to shoulder presentation" +"O64.5","Obstructed labour due to compound presentation" +"O64.8","Obstructed labour due other malposition and malpresentation" +"O64.9","Obstructed labour due malposition and malpresentation, unspecified" +"O65","OBSTRUCTED LABOUR DUE TO MATERNAL PELVIC ABNORMALITY" +"O65.0","Obstructed labour due to deformed pelvis" +"O65.1","Obstructed labour due to generally contracted pelvis" +"O65.2","Obstructed labour due to pelvic inlet contraction" +"O65.3","Obstructed labour due pelvic outlet and mid-cavity contraction" +"O65.4","Obstructed labour due to fetopelvic disproportion, Unspecified" +"O65.5","Obstructed labour due abnormality of maternal pelvic organs" +"O65.8","Obstructed labour due to other maternal pelvic abnormalities" +"O65.9","Obstructed labour due to maternal pelvic abnormality, unspecified" +"O66","OTHER OBSTRUCTED LABOUR" +"O66.0","Obstructed labour due to shoulder dystocia" +"O66.1","Obstructed labour due to locked twins" +"O66.2","Obstructed labour due to unusually large fetus" +"O66.3","Obstructed labour due to other abnormalities of fetus" +"O66.4","Failed trial of labour, unspecified" +"O66.5","Failed application of vacuum extractor and forceps, unspecified" +"O66.8","Other specified obstructed labour" +"O66.9","Obstructed labour, unspecified" +"O67","LABOUR AND DELIVERY COMPLICATED BY INTRAPARTUM HAEMORRHAGE, NOT ELSEWHERE CLASSIFIED" +"O67.0","Intrapartum haemorrhage with coagulation defect" +"O67.8","Other intrapartum haemorrhage" +"O67.9","Intrapartum haemorrhage, unspecified" +"O68","LABOUR AND DELIVERY COMPLICATED BY FETAL STRESS [DISTRESS]" +"O68.0","Labour and delivery complicated by fetal heart rate anomaly" +"O68.1","Labour and delivery complicated by meconium in amniotic fluid" +"O68.2","Labour and delivery complicated fetal heart rate anomaly with meconium in amniot fluid" +"O68.3","Labour and Delivery complicated by biochemical evidence of fetal stress" +"O68.8","Labour and Delivery complicated by other evidence of fetal stress" +"O68.9","Labour and Delivery complicated by fetal stress, unspecified" +"O69","LABOUR AND DELIVERY COMPLICATED BY UMBILICAL CORD COMPLICATIONS" +"O69.0","Labour and Delivery complicated by prolapse of cord" +"O69.1","Labour and delivery complicated cord around neck, with compression" +"O69.2","Labour and Delivery complicated by other cord entanglement" +"O69.3","Labour and Delivery complicated by short cord" +"O69.4","Labour and Delivery complicated by vasa praevia" +"O69.5","Labour and Delivery complicated by vascular lesion of cord" +"O69.8","Labour and Delivery complicated by other cord complications" +"O69.9","Labour and Delivery complicated by cord complication, Unspecified" +"O70","PERINEAL LACERATION DURING DELIVERY" +"O70.0","First degree perineal laceration during delivery" +"O70.1","Second degree perineal laceration during delivery" +"O70.2","Third degree perineal laceration during delivery" +"O70.3","Fourth degree perineal laceration during delivery" +"O70.9","Perineal laceration during delivery, unspecified" +"O71","OTHER OBSTETRIC TRAUMA" +"O71.0","Rupture of uterus before onset of labour" +"O71.1","Rupture of uterus during labour" +"O71.2","Postpartum inversion of uterus" +"O71.3","Obstetric laceration of cervix" +"O71.4","Obstetric high vaginal laceration alone" +"O71.5","Other obstetric injury to pelvic organs" +"O71.6","Obstetric damage to pelvic joints and ligaments" +"O71.7","Obstetric haematoma of pelvis" +"O71.8","Other specified obstetric trauma" +"O71.9","Obstetric trauma, unspecified" +"O72","POSTPARTUM HAEMORRHAGE" +"O72.0","Third-stage haemorrhage" +"O72.1","Other immediate postpartum haemorrhage" +"O72.2","Delayed and secondary postpartum haemorrhage" +"O72.3","Postpartum coagulation defects" +"O73","Retained placenta and membranes, without haemorrhage" +"O73.0","Retained placenta without haemorrhage" +"O73.1","Retained portions of placenta and membranes, without haemorrhage" +"O74","COMPLICATIONS OF ANAESTHESIA DURING LABOUR AND DELIVERY" +"O74.0","Aspiration pneumonitis due to anaesthesia during labour and delivery" +"O74.1","Other pulmonary complications anaesthesia during labour and delivery" +"O74.2","Cardiac complications of anaesthesia during labour and delivery" +"O74.3","Central nervous system complications of anaesthesia during labour and delivery" +"O74.4","Toxic reaction to local anaesthesia during labour and delivery" +"O74.5","Spinal and epidural anaesthesia-induced headache during labour and delivery" +"O74.6","Other complications of spinal and epidural anaesthesia during labour and delivery" +"O74.7","Failed or difficult intubation during labour and delivery" +"O74.8","Other complications of anaesthesia during labour and delivery" +"O74.9","Complication of anaesthesia during labour and delivery, unspecified" +"O75","Other complications of labour and delivery, not elsewhere classified" +"O75.0","Maternal distress during labour and delivery" +"O75.1","Shock during or following labour and delivery" +"O75.2","Pyrexia during labour, not elsewhere classified" +"O75.3","Other infection during labour" +"O75.4","Other complications of obstetric surgery and procedures" +"O75.5","Delayed delivery after artificial rupture of membranes" +"O75.6","Delayed delivery after spontaneous or unspecified rupture of membranes" +"O75.7","Vaginal delivery following previous caesarean section" +"O75.8","Other specified complications of labour and delivery" +"O75.9","Complication of labour and delivery, unspecified" +"O80","SINGLE SPONTANEOUS DELIVERY" +"O80.0","Spontaneous vertex delivery" +"O80.1","Spontaneous breech delivery" +"O80.8","Other single spontaneous delivery" +"O80.9","Single spontaneous delivery, unspecified" +"O81","SINGLE DELIVERY BY FORCEPS AND VACUUM EXTRACTOR" +"O81.0","Low forceps delivery" +"O81.1","Mid-cavity forceps delivery" +"O81.2","Mid-cavity forceps with rotation" +"O81.3","Other and unspecified forceps delivery" +"O81.4","Vacuum extractor delivery" +"O81.5","Delivery by combination of forceps and vacuum extractor" +"O82","SINGLE DELIVERY BY CAESAREAN SECTION" +"O82.0","Delivery by elective caesarean section" +"O82.1","Delivery by emergency caesarean section" +"O82.2","Delivery by caesarean hysterectomy" +"O82.8","Other single delivery by caesarean section" +"O82.9","Delivery by caesarean section, unspecified" +"O83","OTHER ASSISTED SINGLE DELIVERY" +"O83.0","Breech extraction" +"O83.1","Other assisted breech delivery" +"O83.2","Other manipulation-assisted delivery" +"O83.3","Delivery of viable fetus in abdominal pregnancy" +"O83.4","Destructive operation for delivery" +"O83.8","Other specified assisted single delivery" +"O83.9","Assisted single delivery, unspecified" +"O84","MULTIPLE DELIVERY" +"O84.0","Multiple delivery, all spontaneous" +"O84.1","Multiple delivery, all by forceps and vacuum extractor" +"O84.2","Multiple delivery, all by caesarean section" +"O84.8","Other multiple delivery" +"O84.9","Multiple delivery, unspecified" +"O85","PUERPERAL SEPSIS" +"O86","Other puerperal infections" +"O86.0","Infection of obstetric surgical wound" +"O86.1","Other infection of genital tract following delivery" +"O86.2","Urinary tract infection following delivery" +"O86.3","Other genitourinary tract infections following delivery" +"O86.4","Pyrexia of unknown origin following delivery" +"O86.8","Other specified puerperal infections" +"O87","VENOUS COMPLICATIONS IN THE PUERPERIUM" +"O87.0","Superficial thrombophlebitis in the puerperium" +"O87.1","Deep phlebothrombosis in the puerperium" +"O87.2","Haemorrhoids in the puerperium" +"O87.3","Cerebral venous thrombosis in the puerperium" +"O87.8","Other venous complications in the puerperium" +"O87.9","Venous complication in the puerperium, Unspecified" +"O88","OBSTETRIC EMBOLISM" +"O88.0","Obstetric air embolism" +"O88.1","Amniotic fluid embolism" +"O88.2","Obstetric blood-clot embolism" +"O88.3","Obstetric pyaemic and septic embolism" +"O88.8","Other obstetric embolism" +"O89","COMPLICATIONS OF ANAESTHESIA DURING THE PUERPERIUM" +"O89.0","Pulmonary complications of anaesthesia during the puerperium" +"O89.1","Cardiac complications of anaesthesia during the puerperium" +"O89.2","Central nervous system complications of anaesthesia during the puerperium" +"O89.3","Toxic reaction to local anaesthesia during the puerperium" +"O89.4","Spinal and epidural anaesthesia-induced headache during the puerperium" +"O89.5","Other complications of spinal and epidural anaesthesia during puerperium" +"O89.6","Failed or difficult intubation during the puerperium" +"O89.8","Other complications of anaesthesia during the puerperium" +"O89.9","Complication of anaesthesia during the puerperium, unspecified" +"O90","COMPLICATIONS OF THE PUERPERIUM, NOT ELSEWHERE CLASSIFIED" +"O90.0","Disruption of caesarean section wound" +"O90.1","Disruption of perineal obstetric wound" +"O90.2","Haematoma of obstetric wound" +"O90.3","Cardiomyopathy in the puerperium" +"O90.4","Postpartum acute renal failure" +"O90.5","Postpartum thyroiditis" +"O90.8","Other complications of the puerperium, not elsewhere classified" +"O90.9","Complication of the puerperium, unspecified" +"O91","Infections of breast associated with childbirth" +"O91.0","Infection of nipple associated with childbirth" +"O91.1","Abscess of breast associated with childbirth" +"O91.2","Nonpurulent mastitis associated with childbirth" +"O92","Other disorders of breast and lactation associated with childbirth" +"O92.0","Retracted nipple associated with childbirth" +"O92.1","Cracked nipple associated with childbirth" +"O92.2","Other and Unspecified disorders of breast associated with childbirth" +"O92.3","Agalactia" +"O92.4","Hypogalactia" +"O92.5","Suppressed lactation" +"O92.6","Galactorrhoea" +"O92.7","Other and unspecified disorders of lactation" +"O94","Sequelae of complication of pregnancy, childbirth and the puerperium" +"O95","Obstetric death of unspecified cause" +"O96","Death from any obstetric cause occuring more than 42 days but less than one year after delivery" +"O96.0","Death from direct obstetric cause" +"O96.1","Death from indirect obstetric cause" +"O96.9","Death from unspecified obstetric cause" +"O97","DEATH FROM SEQUELAE OF DIRECT OBSTETRIC CAUSES" +"O97.0","Death from sequelae of direct obstetric cause" +"O97.1","Death from sequelae of indirect obstetric cause" +"O97.9","Death from sequelae of obstetric cause, unspecified" +"O98","Maternal infectious and parasitic diseases classifiable elsewhere but complicating pregnancy, childbirth and the puerperium" +"O98.0","Tuberculosis complicating pregnancy, childbirth and the puerperium" +"O98.1","Syphilis complicating pregnancy, childbirth and the puerperium" +"O98.2","Gonorrhoea complicating pregnancy, Childbirth and the Puerperium" +"O98.3","Other infections predominantly sexual mode of transmission complicating pregnancy, childbirth and the puerperium" +"O98.4","Viral hepatitis complicating pregnancy, Childbirth and the Puerperium" +"O98.5","Other viral diseases complicating pregnancy, Childbirth and the Puerperium" +"O98.6","Protozoal diseases complicating pregnancy, Childbirth and the Puerperium" +"O98.7","Human immunodeficiency [HIV] disease complicating pregnancy, childbirth and the puerperium" +"O98.8","Other maternal infectious parasitic diseases complicating pregnancy, childbirth and the puerperium" +"O98.9","Unspecified maternal infectious parasitic disease complicating pregnancy, childbirth and the puerperium" +"O99","Other maternal diseases classifiable elsewhere but complicating pregnancy, childbirth and the puerperium" +"O99.0","Anaemia complicating pregnancy, childbirth and the puerperium" +"O99.1","Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, childbirth and the puerperium" +"O99.2","Endocrine, nutritional metabolic diseases complicating pregnancy, childbirth and the puerperium" +"O99.3","Mental disorders and diseases of the nervous system complicating pregnancy, Childbirth and the Puerperium" +"O99.4","Diseases of the circulatory system complicating pregnancy, Childbirth and the Puerperium" +"O99.5","Diseases of the respiratory system complicating pregnancy, Childbirth and the Puerperium" +"O99.6","Diseases of the digestive system complicating pregnancy, Childbirth and the Puerperium" +"O99.7","Diseases of the skin and subcutaneous tissue complicating pregnancy, Childbirth and the Puerperium" +"O99.8","Other specified diseases and conditions complicating pregnancy, Childbirth and the Puerperium" +"P00","Fetus and newborn affected by maternal conditions that may be unrelated to present pregnancy" +"P00.0","Fetus and newborn afected by maternal hypertensive disord" +"P00.1","Fet and newborn afected by mat renal and urinary tract dis" +"P00.2","Fetus and newborn affected by mat infect and parasitic dis" +"P00.3","Fetus and newborn affected oth mat circulatory and resp dis" +"P00.4","Fetus and newborn affected by maternal nutritional disorders" +"P00.5","Fetus and newborn affected by maternal injury" +"P00.6","Fetus and newborn affected by surgical procedure on mother" +"P00.7","Fetus and newborn affected other medic procs on mother nec" +"P00.8","Fetus and newborn affected by other maternal conditions" +"P00.9","Fetus and newborn affected by unspecified maternal condition" +"P01","FETUS AND NEWBORN AFFECTED BY MATERNAL COMPLICATIONS OF PREGNANCY" +"P01.0","Fetus and newborn affected by incompetent cervix" +"P01.1","Fetus and newborn affected by premature rupture of membranes" +"P01.2","Fetus and newborn affected by oligohydramnios" +"P01.3","Fetus and newborn affected by polyhydramnios" +"P01.4","Fetus and newborn affected by ectopic pregnancy" +"P01.5","Fetus and newborn affected by multiple pregnancy" +"P01.6","Fetus and newborn affected by maternal death" +"P01.7","Fetus and newborn affected by malpresentation before labour" +"P01.8","Fetus and newborn affected other maternal comps of preg" +"P01.9","Fetus and newborn affect by maternal comp of preg unspec act" +"P02","Fetus and newborn affected by complications of placenta, cord and membranes" +"P02.0","Fetus and newborn affected by placenta praevia" +"P02.1","Fetus and newborn affect oth forms placent sepn haemorrh" +"P02.2","Fetus newborn affect other unsp morph funct abnorm placent" +"P02.3","Fet and newborn affected by placental transfusion syndr" +"P02.4","Fetus and newborn affected by prolapsed cord" +"P02.5","Fetus and newborn affected other compression umb cord" +"P02.6","Fetus and newborn affect oth unspec conds of umbilical cord" +"P02.7","Fetus and newborn affected by chorioamnionitis" +"P02.8","Fetus and newborn affect by oth abnormalities of membr" +"P02.9","Fetus and newborn affected by abnorm of membranes unsp" +"P03","FETUS AND NEWBORN AFFECTED BY OTHER COMPLICATIONS OF LABOUR AND DELIVERY" +"P03.0","Fetus and newborn affected by breech delivery and extraction" +"P03.1","Fet newborn affect oth malpresent malpos disprop lab deliv" +"P03.2","Fetus and newborn affected by forceps delivery" +"P03.3","Fet and newborn affected deliv vacuum extractor ventouse" +"P03.4","Fetus and newborn affected by caesarean delivery" +"P03.5","Fetus and newborn affected by precipitate delivery" +"P03.6","Fetus and newborn affected by abnormal uterine contractions" +"P03.8","Fetus and newborn affected other spec comps of labour deliv" +"P03.9","Fetus and newborn affected by comp of lab and deliv unsp" +"P04","Fetus and newborn affected by noxious influences transmitted via placenta or breast milk" +"P04.0","Fet newborn affect mat anaesth and analges preg lab del" +"P04.1","Fetus and newborn affected by other maternal medication" +"P04.2","Fetus and newborn affected by maternal use of tobacco" +"P04.3","Fetus and newborn affected by maternal use of alcohol" +"P04.4","Fetus and newborn affected by mat use of drugs of addiction" +"P04.5","Fetus and newborn afect by mat use of nutritional chem subs" +"P04.6","Fet newborn affect mat exposure to environml chem subs" +"P04.8","Fetus and newborn affected by other mat noxious influences" +"P04.9","Fetus and newborn affected by mat noxious influence unspec act" +"P05","SLOW FETAL GROWTH AND FETAL MALNUTRITION" +"P05.0","Light for gestational age" +"P05.1","Small for gestational age" +"P05.2","Fet malnutrit without mention light or small for gestat age" +"P05.9","Slow fetal growth, unspecified" +"P07","Disorders related to short gestation and low birth weight, not elsewhere classified" +"P07.0","Extremely low birth weight" +"P07.1","Other low birth weight" +"P07.2","Extreme immaturity" +"P07.3","Other preterm infants" +"P08","DISORDERS RELATED TO LONG GESTATION AND HIGH BIRTH WEIGHT" +"P08.0","Exceptionally large baby" +"P08.1","Other heavy for gestational age infants" +"P08.2","Post-term infant, not heavy for gestational age" +"P10","Intracranial laceration and haemorrhage due to birth injury" +"P10.0","Subdural haemorrhage due to birth injury" +"P10.1","Cerebral haemorrhage due to birth injury" +"P10.2","Intraventricular haemorrhage due to birth injury" +"P10.3","Subarachnoid haemorrhage due to birth injury" +"P10.4","Tentorial tear due to birth injury" +"P10.8","Oth intracranial lacerations and haemorrhages due birth inj" +"P10.9","Unsp intracranial laceration and haemorrhage due birth inj" +"P11","OTHER BIRTH INJURIES TO CENTRAL NERVOUS SYSTEM" +"P11.0","Cerebral oedema due to birth injury" +"P11.1","Other specified brain damage due to birth injury" +"P11.2","Unspecified brain damage due to birth injury" +"P11.3","Birth injury to facial nerve" +"P11.4","Birth injury to other cranial nerves" +"P11.5","Birth injury to spine and spinal cord" +"P11.9","Birth injury to central nervous system, unspecified" +"P12","BIRTH INJURY TO SCALP" +"P12.0","Cephalhaematoma due to birth injury" +"P12.1","Chignon due to birth injury" +"P12.2","Epicranial subaponeurotic haemorrhage due to birth injury" +"P12.3","Bruising of scalp due to birth injury" +"P12.4","Monitoring injury of scalp of newborn" +"P12.8","Other birth injuries to scalp" +"P12.9","Birth injury to scalp, unspecified" +"P13","BIRTH INJURY TO SKELETON" +"P13.0","Fracture of skull due to birth injury" +"P13.1","Other birth injuries to skull" +"P13.2","Birth injury to femur" +"P13.3","Birth injury to other long bones" +"P13.4","Fracture of clavicle due to birth injury" +"P13.8","Birth injuries to other parts of skeleton" +"P13.9","Birth injury to skeleton, unspecified" +"P14","BIRTH INJURY TO PERIPHERAL NERVOUS SYSTEM" +"P14.0","Erb's paralysis due to birth injury" +"P14.1","Klumpke's paralysis due to birth injury" +"P14.2","Phrenic nerve paralysis due to birth injury" +"P14.3","Other brachial plexus birth injuries" +"P14.8","Birth injuries to other parts of peripheral nervous system" +"P14.9","Birth injury to peripheral nervous system, unspecified" +"P15","OTHER BIRTH INJURIES" +"P15.0","Birth injury to liver" +"P15.1","Birth injury to spleen" +"P15.2","Sternomastoid injury due to birth injury" +"P15.3","Birth injury to eye" +"P15.4","Birth injury to face" +"P15.5","Birth injury to external genitalia" +"P15.6","Subcutaneous fat necrosis due to birth injury" +"P15.8","Other specified birth injuries" +"P15.9","Birth injury, unspecified" +"P20","INTRAUTERINE HYPOXIA" +"P20.0","Intrauterine hypoxia first noted before onset of labour" +"P20.1","Intrauterine hypoxia first noted during labour and delivery" +"P20.9","Intrauterine hypoxia, unspecified" +"P21","BIRTH ASPHYXIA" +"P21.0","Severe birth asphyxia" +"P21.1","Mild and moderate birth asphyxia" +"P21.9","Birth asphyxia, unspecified" +"P22","Respiratory distress of newborn" +"P22.0","Respiratory distress syndrome of newborn" +"P22.1","Transient tachypnoea of newborn" +"P22.8","Other respiratory distress of newborn" +"P22.9","Respiratory distress of newborn, unspecified" +"P23","CONGENITAL PNEUMONIA" +"P23.0","Congenital pneumonia due to viral agent" +"P23.1","Congenital pneumonia due to Chlamydia" +"P23.2","Congenital pneumonia due to staphylococcus" +"P23.3","Congenital pneumonia due to streptococcus, group b" +"P23.4","Congenital pneumonia due to Escherichia coli" +"P23.5","Congenital pneumonia due to pseudomonas" +"P23.6","Congenital pneumonia due to other bacterial agents" +"P23.8","Congenital pneumonia due to other organisms" +"P23.9","Congenital pneumonia, unspecified" +"P24","NEONATAL ASPIRATION SYNDROMES" +"P24.0","Neonatal aspiration of meconium" +"P24.1","Neonatal aspiration of amniotic fluid and mucus" +"P24.2","Neonatal aspiration of blood" +"P24.3","Neonatal aspiration of milk and regurgitated food" +"P24.8","Other neonatal aspiration syndromes" +"P24.9","Neonatal aspiration syndrome, unspecified" +"P25","Interstitial emphysema and related conditions originating in the perinatal period" +"P25.0","Interstitial emphysema originating in the perinatal period" +"P25.1","Pneumothorax originating in the perinatal period" +"P25.2","Pneumomediastinum originating in the perinatal period" +"P25.3","Pneumopericardium originating in the perinatal period" +"P25.8","Oth conds rel interstit emphysema orig in perinatal period" +"P26","PULMONARY HAEMORRHAGE ORIGINATING IN THE PERINATAL PERIOD" +"P26.0","Tracheobronchial haemorrhage origin in the perinatal period" +"P26.1","Massive pulmonary haemorrhage orig in the perinatal period" +"P26.8","Oth pulmonary haemorrhages originating in perinatal period" +"P26.9","Unspec pulmonary haemorrhage origin in the perinatal period" +"P27","CHRONIC RESPIRATORY DISEASE ORIGINATING IN THE PERINATAL PERIOD" +"P27.0","Wilson-Mikity syndrome" +"P27.1","Bronchopulmonary dysplasia origin in the perinatal period" +"P27.8","Other chronic resp diseases origin in the perinatal period" +"P27.9","Unspec chronic resp disease origin in the perinatal period" +"P28","OTHER RESPIRATORY CONDITIONS ORIGINATING IN THE PERINATAL PERIOD" +"P28.0","Primary atelectasis of newborn" +"P28.1","Other and unspecified atelectasis of newborn" +"P28.2","Cyanotic attacks of newborn" +"P28.3","Primary sleep apnoea of newborn" +"P28.4","Other apnoea of newborn" +"P28.5","Respiratory failure of newborn" +"P28.8","Other specified respiratory conditions of newborn" +"P28.9","Respiratory condition of newborn, unspecified" +"P29","CARDIOVASCULAR DISORDERS ORIGINATING IN THE PERINATAL PERIOD" +"P29.0","Neonatal cardiac failure" +"P29.1","Neonatal cardiac dysrhythmia" +"P29.2","Neonatal hypertension" +"P29.3","Persistent fetal circulation" +"P29.4","Transient myocardial ischaemia of newborn" +"P29.8","Oth cardiovascular disorders origin in the perinatal period" +"P29.9","Cardiovascular disorder origin in the perinatal period unsp" +"P35","CONGENITAL VIRAL DISEASES" +"P35.0","Congenital rubella syndrome" +"P35.1","Congenital cytomegalovirus infection" +"P35.2","Congenital herpesviral [herpes simplex] infection" +"P35.3","Congenital viral hepatitis" +"P35.8","Other congenital viral diseases" +"P35.9","Congenital viral disease, unspecified" +"P36","BACTERIAL SEPSIS OF NEWBORN" +"P36.0","Sepsis of newborn due to streptococcus, group b" +"P36.1","Sepsis of newborn due to other and Unspecified streptococci" +"P36.2","Sepsis of newborn due to Staphylococcus aureus" +"P36.3","Sepsis of newborn due to other and Unspecified staphylococci" +"P36.4","Sepsis of newborn due to Escherichia coli" +"P36.5","Sepsis of newborn due to anaerobes" +"P36.8","Other bacterial sepsis of newborn" +"P36.9","Bacterial sepsis of newborn, unspecified" +"P37","Other congenital infectious and parasitic diseases" +"P37.0","Congenital tuberculosis" +"P37.1","Congenital toxoplasmosis" +"P37.2","Neonatal (disseminated) listeriosis" +"P37.3","Congenital falciparum malaria" +"P37.4","Other congenital malaria" +"P37.5","Neonatal candidiasis" +"P37.8","Other specified congenital infectious and parasitic diseases" +"P37.9","Congenital infectious and parasitic disease, unspecified" +"P38","Omphalitis of newborn with or without mild haemorrhage" +"P39","OTHER INFECTIONS SPECIFIC TO THE PERINATAL PERIOD" +"P39.0","Neonatal infective mastitis" +"P39.1","Neonatal conjunctivitis and dacryocystitis" +"P39.2","Intra-amniotic infection of fetus, not elsewhere classified" +"P39.3","Neonatal urinary tract infection" +"P39.4","Neonatal skin infection" +"P39.8","Other specified infections specific to the perinatal period" +"P39.9","Infection specific to the perinatal period, Unspecified" +"P50","FETAL BLOOD LOSS" +"P50.0","Fetal blood loss from vasa praevia" +"P50.1","Fetal blood loss from ruptured cord" +"P50.2","Fetal blood loss from placenta" +"P50.3","Haemorrhage into co-twin" +"P50.4","Haemorrhage into maternal circulation" +"P50.5","Fetal blood loss from cut end of co-twin's cord" +"P50.8","Other fetal blood loss" +"P50.9","Fetal blood loss, unspecified" +"P51","UMBILICAL HAEMORRHAGE OF NEWBORN" +"P51.0","Massive umbilical haemorrhage of newborn" +"P51.8","Other umbilical haemorrhages of newborn" +"P51.9","Umbilical haemorrhage of newborn, unspecified" +"P52","INTRACRANIAL NONTRAUMATIC HAEMORRHAGE OF FETUS AND NEWBORN" +"P52.0","Intraventric (nontraumatic) haemorhage grade 1 fet newborn" +"P52.1","Intraventric (nontraumatic) haemorhage grade 2 fet newborn" +"P52.2","Intraventric (nontraumatic) haemorhage grade 3 fet newborn" +"P52.3","Unspec intraventric (nontraumatic) haemorh fetus newborn" +"P52.4","Intracerebral (nontraumatic) haemorrhage of fet and newborn" +"P52.5","Subarachnoid (nontraumatic) haemorrhage of fetus and newborn" +"P52.6","Cerebelar (nontraum) an post fossa haemorhage fet newborn" +"P52.8","Oth intracranial (nontraumatic) haemorrhages fetus newborn" +"P52.9","Intracranial (nontraumatic) haemorrhage fetus newborn unsp" +"P53","HAEMORRHAGIC DISEASE OF FETUS AND NEWBORN" +"P54","OTHER NEONATAL HAEMORRHAGES" +"P54.0","Neonatal haematemesis" +"P54.1","Neonatal melaena" +"P54.2","Neonatal rectal haemorrhage" +"P54.3","Other neonatal gastrointestinal haemorrhage" +"P54.4","Neonatal adrenal haemorrhage" +"P54.5","Neonatal cutaneous haemorrhage" +"P54.6","Neonatal vaginal haemorrhage" +"P54.8","Other specified neonatal haemorrhages" +"P54.9","Neonatal haemorrhage, unspecified" +"P55","HAEMOLYTIC DISEASE OF FETUS AND NEWBORN" +"P55.0","Rh isoimmunization of fetus and newborn" +"P55.1","ABO isoimmunization of fetus and newborn" +"P55.8","Other haemolytic diseases of fetus and newborn" +"P55.9","Haemolytic disease of fetus and newborn, unspecified" +"P56","HYDROPS FETALIS DUE TO HAEMOLYTIC DISEASE" +"P56.0","Hydrops fetalis due to isoimmunization" +"P56.9","Hydrops fetalis due to other and unspec haemolytic disease" +"P57","KERNICTERUS" +"P57.0","Kernicterus due to isoimmunization" +"P57.8","Other specified kernicterus" +"P57.9","Kernicterus, unspecified" +"P58","NEONATAL JAUNDICE DUE TO OTHER EXCESSIVE HAEMOLYSIS" +"P58.0","Neonatal jaundice due to bruising" +"P58.1","Neonatal jaundice due to bleeding" +"P58.2","Neonatal jaundice due to infection" +"P58.3","Neonatal jaundice due to polycythaemia" +"P58.4","Neon jaund due drug tox transmit from mother or given nwbrn" +"P58.5","Neonatal jaundice due to swallowed maternal blood" +"P58.8","Neonatal jaundice due to oth specif excessive haemolysis" +"P58.9","Neonatal jaundice due to excessive haemolysis, unspecified" +"P59","Neonatal jaundice from other and unspecified causes" +"P59.0","Neonatal jaundice associated with preterm delivery" +"P59.1","Inspissated bile syndrome" +"P59.2","Neonat jaundice from oth and unspec hepatocellul damage" +"P59.3","Neonatal jaundice from breast milk inhibitor" +"P59.8","Neonatal jaundice from other specified causes" +"P59.9","Neonatal jaundice, unspecified" +"P60","DISSEMINATED INTRAVASCULAR COAGULATION OF FETUS AND NEWBORN" +"P61","OTHER PERINATAL HAEMATOLOGICAL DISORDERS" +"P61.0","Transient neonatal thrombocytopenia" +"P61.1","Polycythaemia neonatorum" +"P61.2","Anaemia of prematurity" +"P61.3","Congenital anaemia from fetal blood loss" +"P61.4","Other congenital anaemias, not elsewhere classified" +"P61.5","Transient neonatal neutropenia" +"P61.6","Other transient neonatal disorders of coagulation" +"P61.8","Other specified perinatal haematological disorders" +"P61.9","Perinatal haematological disorder, unspecified" +"P70","Transitory disorders of carbohydrate metabolism specific to fetus and newborn" +"P70.0","Syndrome of infant of mother with gestational diabetes" +"P70.1","Syndrome of infant of a diabetic mother" +"P70.2","Neonatal diabetes mellitus" +"P70.3","Iatrogenic neonatal hypoglycaemia" +"P70.4","Other neonatal hypoglycaemia" +"P70.8","Oth transitory disorder carbohydrate metab fet and newborn" +"P70.9","Trans disorder carbohydrate metab of fet and newborn unspec act" +"P71","TRANSITORY NEONATAL DISORDERS OF CALCIUM AND MAGNESIUM METABOLISM" +"P71.0","Cow's milk hypocalcaemia in newborn" +"P71.1","Other neonatal hypocalcaemia" +"P71.2","Neonatal hypomagnesaemia" +"P71.3","Neonatal tetany without calcium or magnesium deficiency" +"P71.4","Transitory neonatal hypoparathyroidism" +"P71.8","Oth transitory neonatl disord calcium and magnesium metab" +"P71.9","Transitory neonatl disord calcium and magnes metab uns" +"P72","OTHER TRANSITORY NEONATAL ENDOCRINE DISORDERS" +"P72.0","Neonatal goitre, not elsewhere classified" +"P72.1","Transitory neonatal hyperthyroidism" +"P72.2","Other transitory neonatal disorders of thyroid function nec" +"P72.8","Other specified transitory neonatal endocrine disorders" +"P72.9","Transitory neonatal endocrine disorder, unspecified" +"P74","OTHER TRANSITORY NEONATAL ELECTROLYTE AND METABOLIC DISTURBANCES" +"P74.0","Late metabolic acidosis of newborn" +"P74.1","Dehydration of newborn" +"P74.2","Disturbances of sodium balance of newborn" +"P74.3","Disturbances of potassium balance of newborn" +"P74.4","Other transitory electrolyte disturbances of newborn" +"P74.5","Transitory tyrosinaemia of newborn" +"P74.8","Other transitory metabolic disturbances of newborn" +"P74.9","Transitory metabolic disturbance of newborn, unspecified" +"P75","Meconium ileus" +"P76","OTHER INTESTINAL OBSTRUCTION OF NEWBORN" +"P76.0","Meconium plug syndrome" +"P76.1","Transitory ileus of newborn" +"P76.2","Intestinal obstruction due to inspissated milk" +"P76.8","Other specified intestinal obstruction of newborn" +"P76.9","Intestinal obstruction of newborn, unspecified" +"P77","NECROTIZING ENTEROCOLITIS OF FETUS AND NEWBORN" +"P78","OTHER PERINATAL DIGESTIVE SYSTEM DISORDERS" +"P78.0","Perinatal intestinal perforation" +"P78.1","Other neonatal peritonitis" +"P78.2","Neonat haematemesis and melaena due swallow mat blood" +"P78.3","Noninfective neonatal diarrhoea" +"P78.8","Other specified perinatal digestive system disorders" +"P78.9","Perinatal digestive system disorder, unspecified" +"P80","HYPOTHERMIA OF NEWBORN" +"P80.0","Cold injury syndrome" +"P80.8","Other hypothermia of newborn" +"P80.9","Hypothermia of newborn, unspecified" +"P81","OTHER DISTURBANCES OF TEMPERATURE REGULATION OF NEWBORN" +"P81.0","Environmental hyperthermia of newborn" +"P81.8","Oth spec disturbances of temperature regulation of newborn" +"P81.9","Disturbance of temperature regulation of newborn" +"P82","OTHER CONDITIONS OF INTEGUMENT" +"P83","Other conditions of integument specific to fetus and newborn" +"P83.0","Sclerema neonatorum" +"P83.1","Neonatal erythema toxicum" +"P83.2","Hydrops fetalis not due to haemolytic disease" +"P83.3","Other and unspecified oedema specific to fetus and newborn" +"P83.4","Breast engorgement of newborn" +"P83.5","Congenital hydrocele" +"P83.6","Umbilical polyp of newborn" +"P83.8","Other spec cond of integument specific to fetus and newborn" +"P83.9","Condition of integument specific to fetus and newborn uns" +"P90","CONVULSIONS OF NEWBORN" +"P91","OTHER DISTURBANCES OF CEREBRAL STATUS OF NEWBORN" +"P91.0","Neonatal cerebral ischaemia" +"P91.1","Acquired periventricular cysts of newborn" +"P91.2","Neonatal cerebral leukomalacia" +"P91.3","Neonatal cerebral irritability" +"P91.4","Neonatal cerebral depression" +"P91.5","Neonatal coma" +"P91.6","Hypoxic ischaemic encephalopathy of newborn" +"P91.8","Other specified disturbances of cerebral status of newborn" +"P91.9","Disturbance of cerebral status of newborn, unspecified" +"P92","FEEDING PROBLEMS OF NEWBORN" +"P92.0","Vomiting in newborn" +"P92.1","Regurgitation and rumination in newborn" +"P92.2","Slow feeding of newborn" +"P92.3","Underfeeding of newborn" +"P92.4","Overfeeding of newborn" +"P92.5","Neonatal difficulty in feeding at breast" +"P92.8","Other feeding problems of newborn" +"P92.9","Feeding problem of newborn, unspecified" +"P93","Reactions and intoxications due drug admin fet and newborn" +"P94","DISORDERS OF MUSCLE TONE OF NEWBORN" +"P94.0","Transient neonatal myasthenia gravis" +"P94.1","Congenital hypertonia" +"P94.2","Congenital hypotonia" +"P94.8","Other disorders of muscle tone of newborn" +"P94.9","Disorder of muscle tone of newborn, unspecified" +"P95","FETAL DEATH OF UNSPEC CAUSE" +"P96","OTHER CONDITIONS ORIGINATING IN THE PERINATAL PERIOD" +"P96.0","Congenital renal failure" +"P96.1","Neonat withdrawal symptom from mat use of drug of addiction" +"P96.2","Withdrawal symptoms from therapeutic use of drugs in newborn" +"P96.3","Wide cranial sutures of newborn" +"P96.4","Termination of pregnancy, fetus and newborn" +"P96.5","Complicationss of intrauterine procedures nec" +"P96.8","Other spec conditions originating in the perinatal period" +"P96.9","Condition originating in the perinatal period, unspecified" +"Q00","ANENCEPHALY AND SIMILAR MALFORMATIONS" +"Q00.0","Anencephaly" +"Q00.1","Craniorachischisis" +"Q00.2","Iniencephaly" +"Q01","ENCEPHALOCELE" +"Q01.0","Frontal encephalocele" +"Q01.1","Nasofrontal encephalocele" +"Q01.2","Occipital encephalocele" +"Q01.8","Encephalocele of other sites" +"Q01.9","Encephalocele, unspecified" +"Q02","Microcephaly" +"Q03","CONGENITAL HYDROCEPHALUS" +"Q03.0","Malformations of aqueduct of Sylvius" +"Q03.1","Atresia of foramina of magendie and luschka" +"Q03.8","Other congenital hydrocephalus" +"Q03.9","Congenital hydrocephalus, unspecified" +"Q04","OTHER CONGENITAL MALFORMATIONS OF BRAIN" +"Q04.0","Congenital malformations of corpus callosum" +"Q04.1","Arhinencephaly" +"Q04.2","Holoprosencephaly" +"Q04.3","Other reduction deformities of brain" +"Q04.4","Septo-optic dysplasia" +"Q04.5","Megalencephaly" +"Q04.6","Congenital cerebral cysts" +"Q04.8","Other specified congenital malformations of brain" +"Q04.9","Congenital malformation of brain, unspecified" +"Q05","SPINA BIFIDA" +"Q05.0","Cervical spina bifida with hydrocephalus" +"Q05.1","Thoracic spina bifida with hydrocephalus" +"Q05.2","Lumbar spina bifida with hydrocephalus" +"Q05.3","Sacral spina bifida with hydrocephalus" +"Q05.4","Unspecified spina bifida with hydrocephalus" +"Q05.5","Cervical spina bifida without hydrocephalus" +"Q05.6","Thoracic spina bifida without hydrocephalus" +"Q05.7","Lumbar spina bifida without hydrocephalus" +"Q05.8","Sacral spina bifida without hydrocephalus" +"Q05.9","Spina bifida, unspecified" +"Q06","Other congenital malformations of spinal cord" +"Q06.0","Amyelia" +"Q06.1","Hypoplasia and dysplasia of spinal cord" +"Q06.2","Diastematomyelia" +"Q06.3","Other congenital cauda equina malformations" +"Q06.4","Hydromyelia" +"Q06.8","Other specified congenital malformations of spinal cord" +"Q06.9","Congenital malformation of spinal cord, unspecified" +"Q07","OTHER CONGENITAL MALFORMATIONS OF NERVOUS SYSTEM" +"Q07.0","Arnold-chiari syndrome" +"Q07.8","Other specified congenital malformations of nervous system" +"Q07.9","Congenital malformation of nervous system, unspecified" +"Q10","Congenital malformations of eyelid, lacrimal apparatus and orbit" +"Q10.0","Congenital ptosis" +"Q10.1","Congenital ectropion" +"Q10.2","Congenital entropion" +"Q10.3","Other congenital malformations of eyelid" +"Q10.4","Absence and agenesis of lacrimal apparatus" +"Q10.5","Congenital stenosis and stricture of lacrimal duct" +"Q10.6","Other congenital malformations of lacrimal apparatus" +"Q10.7","Congenital malformation of orbit" +"Q11","Anophthalmos, microphthalmos and macrophthalmos" +"Q11.0","Cystic eyeball" +"Q11.1","Other anophthalmos" +"Q11.2","Microphthalmos" +"Q11.3","Macrophthalmos" +"Q12","CONGENITAL LENS MALFORMATIONS" +"Q12.0","Congenital cataract" +"Q12.1","Congenital displaced lens" +"Q12.2","Coloboma of lens" +"Q12.3","Congenital aphakia" +"Q12.4","Spherophakia" +"Q12.8","Other congenital lens malformations" +"Q12.9","Congenital lens malformation, unspecified" +"Q13","Congenital malformations of anterior segment of eye" +"Q13.0","Coloboma of iris" +"Q13.1","Absence of iris" +"Q13.2","Other congenital malformations of iris" +"Q13.3","Congenital corneal opacity" +"Q13.4","Other congenital corneal malformations" +"Q13.5","Blue sclera" +"Q13.8","Other congenital malformations of anterior segment of eye" +"Q13.9","Congenital malformation of anterior segment of eye unspecified" +"Q14","CONGENITAL MALFORMATIONS OF POSTERIOR SEGMENT OF EYE" +"Q14.0","Congenital malformation of vitreous humour" +"Q14.1","Congenital malformation of retina" +"Q14.2","Congenital malformation of optic disc" +"Q14.3","Congenital malformation of choroid" +"Q14.8","Other congenital malformations of posterior segment of eye" +"Q14.9","Congenital malformation of posterior segment of eye unspecified" +"Q15","OTHER CONGENITAL MALFORMATIONS OF EYE" +"Q15.0","Congenital glaucoma" +"Q15.8","Other specified congenital malformations of eye" +"Q15.9","Congenital malformation of eye, unspecified" +"Q16","CONGENITAL MALFORMATIONS OF EAR CAUSING IMPAIRMENT OF HEARING" +"Q16.0","Congenital absence of (ear) auricle" +"Q16.1","Congenital absence atresia & stricture auditory canal (external)" +"Q16.2","Absence of eustachian tube" +"Q16.3","Congenital malformation of ear ossicles" +"Q16.4","Other congenital malformations of middle ear" +"Q16.5","Congenital malformation of inner ear" +"Q16.9","Congenital malform of ear causing impairment of hearing unspecified" +"Q17","OTHER CONGENITAL MALFORMATIONS OF EAR" +"Q17.0","Accessory auricle" +"Q17.1","Macrotia" +"Q17.2","Microtia" +"Q17.3","Other misshapen ear" +"Q17.4","Misplaced ear" +"Q17.5","Prominent ear" +"Q17.8","Other specified congenital malformations of ear" +"Q17.9","Congenital malformation of ear, unspecified" +"Q18","OTHER CONGENITAL MALFORMATIONS OF FACE AND NECK" +"Q18.0","Sinus, fistula and cyst of branchial cleft" +"Q18.1","Preauricular sinus and cyst" +"Q18.2","Other branchial cleft malformations" +"Q18.3","Webbing of neck" +"Q18.4","Macrostomia" +"Q18.5","Microstomia" +"Q18.6","Macrocheilia" +"Q18.7","Microcheilia" +"Q18.8","Other specified congenital malformations of face and neck" +"Q18.9","Congenital malformation of face and neck, unspecified" +"Q20","CONGENITAL MALFORMATIONS OF CARDIAC CHAMBERS AND CONNECTIONS" +"Q20.0","Common arterial trunk" +"Q20.1","Double outlet right ventricle" +"Q20.2","Double outlet left ventricle" +"Q20.3","Discordant ventriculoarterial connection" +"Q20.4","Double inlet ventricle" +"Q20.5","Discordant atrioventricular connection" +"Q20.6","Isomerism of atrial appendages" +"Q20.8","Other congenital malformations of cardiac chambers and connections" +"Q20.9","Congenital malformation of cardiac chambers and connections unspecified" +"Q21","CONGENITAL MALFORMATIONS OF CARDIAC SEPTA" +"Q21.0","ventricular septal defect" +"Q21.1","Atrial septal defect" +"Q21.2","Atrioventricular septal defect" +"Q21.3","Tetralogy of Fallot" +"Q21.4","Aortopulmonary septal defect" +"Q21.8","Other congenital malformations of cardiac septa" +"Q21.9","Congenital malformation of cardiac septum, unspecified" +"Q22","CONGENITAL MALFORMATIONS OF PULMONARY AND TRICUSPID VALVES" +"Q22.0","Pulmonary valve atresia" +"Q22.1","Congenital pulmonary valve stenosis" +"Q22.2","Congenital pulmonary valve insufficiency" +"Q22.3","Other congenital malformations of pulmonary valve" +"Q22.4","Congenital tricuspid stenosis" +"Q22.5","Ebstein's anomaly" +"Q22.6","Hypoplastic right heart syndrome" +"Q22.8","Other congenital malformations of tricuspid valve" +"Q22.9","Congenital malformation of tricuspid valve, unspecified" +"Q23","Congenital malformations of aortic and mitral valves" +"Q23.0","Congenital stenosis of aortic valve" +"Q23.1","Congenital insufficiency of aortic valve" +"Q23.2","Congenital mitral stenosis" +"Q23.3","Congenital mitral insufficiency" +"Q23.4","Hypoplastic left heart syndrome" +"Q23.8","Other congenital malformations of aortic and mitral valves" +"Q23.9","Congenital malformation of aortic and mitral valves unspecified" +"Q24","OTHER CONGENITAL MALFORMATIONS OF HEART" +"Q24.0","Dextrocardia" +"Q24.1","Laevocardia" +"Q24.2","Cor triatriatum" +"Q24.3","Pulmonary infundibular stenosis" +"Q24.4","Congenital subaortic stenosis" +"Q24.5","Malformation of coronary vessels" +"Q24.6","Congenital heart block" +"Q24.8","Other specified congenital malformations of heart" +"Q24.9","Congenital malformation of heart, unspecified" +"Q25","CONGENITAL MALFORMATIONS OF GREAT ARTERIES" +"Q25.0","Patent ductus arteriosus" +"Q25.1","Coarctation of aorta" +"Q25.2","Atresia of aorta" +"Q25.3","Stenosis of aorta" +"Q25.4","Other congenital malformations of aorta" +"Q25.5","Atresia of pulmonary artery" +"Q25.6","Stenosis of pulmonary artery" +"Q25.7","Other congenital malformations of pulmonary artery" +"Q25.8","Other congenital malformations of great arteries" +"Q25.9","Congenital malformation of great arteries, Unspecified" +"Q26","CONGENITAL MALFORMATIONS OF GREAT VEINS" +"Q26.0","Congenital stenosis of vena cava" +"Q26.1","Persistent left superior vena cava" +"Q26.2","Total anomalous pulmonary venous connection" +"Q26.3","Partial anomalous pulmonary venous connection" +"Q26.4","Anomalous pulmonary venous connection, unspecified" +"Q26.5","Anomalous portal venous connection" +"Q26.6","Portal vein-hepatic artery fistula" +"Q26.8","Other congenital malformations of great veins" +"Q26.9","Congenital malformation of great vein, unspecified" +"Q27","OTHER CONGENITAL MALFORMATIONS OF PERIPHERAL VASCULAR SYSTEM" +"Q27.0","Congenital absence and hypoplasia of umbilical artery" +"Q27.1","Congenital renal artery stenosis" +"Q27.2","Other congenital malformations of renal artery" +"Q27.3","Peripheral arteriovenous malformation" +"Q27.4","Congenital phlebectasia" +"Q27.8","Other specified congenitalo malformations of peripheral vascular system" +"Q27.9","Congenital malformation of peripheral vascular system unspecified" +"Q28","OTHER CONGENITAL MALFORMATIONS OF CIRCULATORY SYSTEM" +"Q28.0","Arteriovenous malformation of precerebral vessels" +"Q28.1","Other malformations of precerebral vessels" +"Q28.2","Arteriovenous malformation of cerebral vessels" +"Q28.3","Other malformations of cerebral vessels" +"Q28.8","Other specified congenital malformations of circulatory system" +"Q28.9","Congenital malformation of circulatory system, unspecified" +"Q30","CONGENITAL MALFORMATIONS OF NOSE" +"Q30.0","Choanal atresia" +"Q30.1","Agenesis and underdevelopment of nose" +"Q30.2","Fissured, notched and cleft nose" +"Q30.3","Congenital perforated nasal septum" +"Q30.6","Other congenital malformations of nose" +"Q30.9","Congenital malformation of nose, unspecified" +"Q31","CONGENITAL MALFORMATIONS OF LARYNX" +"Q31.0","Web of larynx" +"Q31.1","Congenital subglottic stenosis" +"Q31.2","Laryngeal hypoplasia" +"Q31.3","Laryngocele" +"Q31.4","Congenital laryngeal stridor" +"Q31.5","Congenital laryngomalacia" +"Q31.8","Other congenital malformations of larynx" +"Q31.9","Congenital malformation of larynx, unspecified" +"Q32","CONGENITAL MALFORMATIONS OF TRACHEA AND BRONCHUS" +"Q32.0","Congenital tracheomalacia" +"Q32.1","Other congenital malformations of trachea" +"Q32.2","Congenital bronchomalacia" +"Q32.3","Congenital stenosis of bronchus" +"Q32.4","Other congenital malformations of bronchus" +"Q33","Congenital malformations of lung" +"Q33.0","Congenital cystic lung" +"Q33.1","Accessory lobe of lung" +"Q33.2","Sequestration of lung" +"Q33.3","Agenesis of lung" +"Q33.4","Congenital bronchiectasis" +"Q33.5","Ectopic tissue in lung" +"Q33.6","Hypoplasia and dysplasia of lung" +"Q33.8","Other congenital malformations of lung" +"Q33.9","Congenital malformation of lung, unspecified" +"Q34","OTHER CONGENITAL MALFORMATIONS OF RESPIRATORY SYSTEM" +"Q34.0","Anomaly of pleura" +"Q34.1","Congenital cyst of mediastinum" +"Q34.8","Other specified congenital malformations of respiratory system" +"Q34.9","Congenital malformation of respiratory system, unspecified" +"Q35","CLEFT PALATE" +"Q35.0","Cleft hard palate, bilateral*" +"Q35.1","Cleft hard palate" +"Q35.2","Cleft soft palate, bilateral*" +"Q35.3","Cleft soft palate" +"Q35.4","Cleft hard palate with cleft soft palate, bilateral*" +"Q35.5","Cleft hard palate with cleft soft palate" +"Q35.6","Cleft palate, medial" +"Q35.7","Cleft uvula" +"Q35.8","Cleft palate, unspecified, bilateral*" +"Q35.9","Cleft palate, unspecified" +"Q36","CLEFT LIP" +"Q36.0","Cleft lip, bilateral" +"Q36.1","Cleft lip, median" +"Q36.9","Cleft lip, unilateral" +"Q37","Cleft palate with cleft lip" +"Q37.0","Cleft hard palate with bilateral cleft lip" +"Q37.1","Cleft hard palate with unilateral cleft lip" +"Q37.2","Cleft soft palate with bilateral cleft lip" +"Q37.3","Cleft soft palate with unilateral cleft lip" +"Q37.4","Cleft hard and soft palate with bilateral cleft lip" +"Q37.5","Cleft hard and soft palate with unilateral cleft lip" +"Q37.8","Unspecified cleft palate with bilateral cleft lip" +"Q37.9","Unspecified cleft palate with unilateral cleft lip" +"Q38","OTHER CONGENITAL MALFORMATIONS OF TONGUE, MOUTH AND PHARYNX" +"Q38.0","Congenital malformations of lips, not elsewhere classified" +"Q38.1","Ankyloglossia" +"Q38.2","Macroglossia" +"Q38.3","Other congenital malformations of tongue" +"Q38.4","Congenital malformations of salivary glands and ducts" +"Q38.5","Congenital malformations of palate, not elsewhere classified" +"Q38.6","Other congenital malformations of mouth" +"Q38.7","Pharyngeal pouch" +"Q38.8","Other congenital malformations of pharynx" +"Q39","CONGENITAL MALFORMATIONS OF OESOPHAGUS" +"Q39.0","Atresia of oesophagus without fistula" +"Q39.1","Atresia of oesophagus with tracheo-oesophageal fistula" +"Q39.2","Congenital tracheo-oesophageal fistula without atresia" +"Q39.3","Congenital stenosis and stricture of oesophagus" +"Q39.4","Oesophageal web" +"Q39.5","Congenital dilatation of oesophagus" +"Q39.6","Diverticulum of oesophagus" +"Q39.8","Other congenital malformations of oesophagus" +"Q39.9","Congenital malformation of oesophagus, unspecified" +"Q40","OTHER CONGENITAL MALFORMATIONS OF UPPER ALIMENTARY TRACT" +"Q40.0","Congenital hypertrophic pyloric stenosis" +"Q40.1","Congenital hiatus hernia" +"Q40.2","Other specified congenital malformations of stomach" +"Q40.3","Congenital malformation of stomach, unspecified" +"Q40.8","Other specified congenital malforms of upper alimentary tract" +"Q40.9","Congenital malformation of upper alimentary tract, unspecified" +"Q41","CONGENITAL ABSENCE, ATRESIA AND STENOSIS OF SMALL INTESTINE" +"Q41.0","Congenital absence, atresia and stenosis of duodenum" +"Q41.1","Congenital absence, atresia and stenosis of jejunum" +"Q41.2","Congenital absence, atresia and stenosis of ileum" +"Q41.8","Congenital absence atresia stenosis other specified parts small intestine" +"Q41.9","Congenital absence atresia and stenosis small intestine part unspecified" +"Q42","CONGENITAL ABSENCE, ATRESIA AND STENOSIS OF LARGE INTESTINE" +"Q42.0","Congenital absence atresia and stenosis of rectum with fistula" +"Q42.1","Congenital absence atresia and stenosis rectum without fistula" +"Q42.2","Congenital absence atresia and stenosis anus with fistula" +"Q42.3","Congenital absence atresia and stenosis anus without fistula" +"Q42.8","Congenital absence atresia and stenosis other parts of large intest" +"Q42.9","Congenital absce atresia and sten of large intest part unspecified" +"Q43","OTHER CONGENITAL MALFORMATIONS OF INTESTINE" +"Q43.0","Meckel's diverticulum" +"Q43.1","Hirschsprung's disease" +"Q43.2","Other congenital functional disorders of colon" +"Q43.3","Congenital malformations of intestinal fixation" +"Q43.4","Duplication of intestine" +"Q43.5","Ectopic anus" +"Q43.6","Congenital fistula of rectum and anus" +"Q43.7","Persistent cloaca" +"Q43.8","Other specified congenital malformations of intestine" +"Q43.9","Congenital malformation of intestine, unspecified" +"Q44","CONGENITAL MALFORMATIONS OF GALLBLADDER, BILE DUCTS AND LIVER" +"Q44.0","Agenesis, aplasia and hypoplasia of gallbladder" +"Q44.1","Other congenital malformations of gallbladder" +"Q44.2","Atresia of bile ducts" +"Q44.3","Congenital stenosis and stricture of bile ducts" +"Q44.4","Choledochal cyst" +"Q44.5","Other congenital malformations of bile ducts" +"Q44.6","Cystic disease of liver" +"Q44.7","Other congenital malformations of liver" +"Q45","OTHER CONGENITAL MALFORMATIONS OF DIGESTIVE SYSTEM" +"Q45.0","Agenesis, aplasia and hypoplasia of pancreas" +"Q45.1","Annular pancreas" +"Q45.2","Congenital pancreatic cyst" +"Q45.3","Other congenital malformations of pancreas and pancreatic duct" +"Q45.8","Other specified congenital malformations of digestive system" +"Q45.9","Congenital malformation of digestive system, unspecified" +"Q50","Congenital malformations of ovaries, fallopian tubes and broad ligaments" +"Q50.0","Congenital absence of ovary" +"Q50.1","Developmental ovarian cyst" +"Q50.2","Congenital torsion of ovary" +"Q50.3","Other congenital malformations of ovary" +"Q50.4","Embryonic cyst of fallopian tube" +"Q50.5","Embryonic cyst of broad ligament" +"Q50.6","Other congenital malformations of fallopian tube and broad ligament" +"Q51","CONGENITAL MALFORMATIONS OF UTERUS AND CERVIX" +"Q51.0","Agenesis and aplasia of uterus" +"Q51.1","Doubling of uterus with doubling of cervix and vagina" +"Q51.2","Other doubling of uterus" +"Q51.3","Bicornate uterus" +"Q51.4","Unicornate uterus" +"Q51.5","Agenesis and aplasia of cervix" +"Q51.6","Embryonic cyst of cervix" +"Q51.7","Congenital fistulae btwn uterus and digestive and urinary tracts" +"Q51.8","Other congenital malformations of uterus and cervix" +"Q51.9","Congenital malformation of uterus and cervix, unspecified" +"Q52","OTHER CONGENITAL MALFORMATIONS OF FEMALE GENITALIA" +"Q52.0","Congenital absence of vagina" +"Q52.1","Doubling of vagina" +"Q52.2","Congenital rectovaginal fistula" +"Q52.3","Imperforate hymen" +"Q52.4","Other congenital malformations of vagina" +"Q52.5","Fusion of labia" +"Q52.6","Congenital malformation of clitoris" +"Q52.7","Other congenital malformations of vulva" +"Q52.8","Other specified congenital malformations of female genitalia" +"Q52.9","Congenital malformation of female genitalia, unspecified" +"Q53","UNDESCENDED TESTICLE" +"Q53.0","Ectopic testis" +"Q53.1","Undescended testicle, unilateral" +"Q53.2","Undescended testicle, bilateral" +"Q53.9","Undescended testicle, unspecified" +"Q54","HYPOSPADIAS" +"Q54.0","Hypospadias, balanic" +"Q54.1","Hypospadias, penile" +"Q54.2","Hypospadias, penoscrotal" +"Q54.3","Hypospadias, perineal" +"Q54.4","Congenital chordee" +"Q54.8","Other hypospadias" +"Q54.9","Hypospadias, unspecified" +"Q55","OTHER CONGENITAL MALFORMATIONS OF MALE GENITAL ORGANS" +"Q55.0","Absence and aplasia of testis" +"Q55.1","Hypoplasia of testis and scrotum" +"Q55.2","Other congenital malformations of testis and scrotum" +"Q55.3","Atresia of vas deferens" +"Q55.4","Other congenital malformations vas deferens, epididymis seminal vesicles and prostate" +"Q55.5","Congenital absence and aplasia of penis" +"Q55.6","Other congenital malformations of penis" +"Q55.8","Other specified congen malformations of male genital organs" +"Q55.9","Congenital malformation of male genital organ, unspecified" +"Q56","INDETERMINATE SEX AND PSEUDOHERMAPHRODITISM" +"Q56.0","Hermaphroditism, not elsewhere classified" +"Q56.1","Male pseudohermaphroditism, not elsewhere classified" +"Q56.2","Female pseudohermaphroditism, not elsewhere classified" +"Q56.3","Pseudohermaphroditism, unspecified" +"Q56.4","Indeterminate sex, unspecified" +"Q60","RENAL AGENESIS AND OTHER REDUCTION DEFECTS OF KIDNEY" +"Q60.0","Renal agenesis, unilateral" +"Q60.1","Renal agenesis, bilateral" +"Q60.2","Renal agenesis, unspecified" +"Q60.3","Renal hypoplasia, unilateral" +"Q60.4","Renal hypoplasia, bilateral" +"Q60.5","Renal hypoplasia, unspecified" +"Q60.6","Potter's syndrome" +"Q61","CYSTIC KIDNEY DISEASE" +"Q61.0","Congenital single renal cyst" +"Q61.1","Polycystic kidney, autosomal recessive" +"Q61.2","Polycystic kidney, autosomal dominant" +"Q61.3","Polycystic kidney, unspecified" +"Q61.4","Renal dysplasia" +"Q61.5","Medullary cystic kidney" +"Q61.8","Other cystic kidney diseases" +"Q61.9","Cystic kidney disease, unspecified" +"Q62","Congenital obstructive defects of renal pelvis and congenital malformations of ureter" +"Q62.0","Congenital hydronephrosis" +"Q62.1","Atresia and stenosis of ureter" +"Q62.2","Congenital megaloureter" +"Q62.3","Other obstructive defects of renal pelvis and ureter" +"Q62.4","Agenesis of ureter" +"Q62.5","Duplication of ureter" +"Q62.6","Malposition of ureter" +"Q62.7","Congenital vesico-uretero-renal reflux" +"Q62.8","Other congenital malformations of ureter" +"Q63","OTHER CONGENITAL MALFORMATIONS OF KIDNEY" +"Q63.0","Accessory kidney" +"Q63.1","Lobulated, fused and horseshoe kidney" +"Q63.2","Ectopic kidney" +"Q63.3","Hyperplastic and giant kidney" +"Q63.8","Other specified congenital malformations of kidney" +"Q63.9","Congenital malformation of kidney, unspecified" +"Q64","OTHER CONGENITAL MALFORMATIONS OF URINARY SYSTEM" +"Q64.0","Epispadias" +"Q64.1","Exstrophy of urinary bladder" +"Q64.2","Congenital posterior urethral valves" +"Q64.3","Other atresia and stenosis of urethra and bladder neck" +"Q64.4","Malformation of urachus" +"Q64.5","Congenital absence of bladder and urethra" +"Q64.6","Congenital diverticulum of bladder" +"Q64.7","Other congenital malformations of bladder and urethra" +"Q64.8","Other specified congenital malformations of urinary system" +"Q64.9","Congenital malformation of urinary system, unspecified" +"Q65","CONGENITAL DEFORMITIES OF HIP" +"Q65.0","Congenital dislocation of hip, unilateral" +"Q65.1","Congenital dislocation of hip, bilateral" +"Q65.2","Congenital dislocation of hip, unspecified" +"Q65.3","Congenital subluxation of hip, unilateral" +"Q65.4","Congenital subluxation of hip, bilateral" +"Q65.5","Congenital subluxation of hip, unspecified" +"Q65.6","Unstable hip" +"Q65.8","Other congenital deformities of hip" +"Q65.9","Congenital deformity of hip, unspecified" +"Q66","CONGENITAL DEFORMITIES OF FEET" +"Q66.0","Talipes equinovarus" +"Q66.1","Talipes calcaneovarus" +"Q66.2","Metatarsus varus" +"Q66.3","Other congenital varus deformities of feet" +"Q66.4","Talipes calcaneovalgus" +"Q66.5","Congenital pes planus" +"Q66.6","Other congenital valgus deformities of feet" +"Q66.7","Pes cavus" +"Q66.8","Other congenital deformities of feet" +"Q66.9","Congenital deformity of feet, unspecified" +"Q67","CONGENITAL MUSCULOSKELETAL DEFORMITIES OF HEAD, FACE, SPINE AND CHEST" +"Q67.0","Facial asymmetry" +"Q67.1","Compression facies" +"Q67.2","Dolichocephaly" +"Q67.3","Plagiocephaly" +"Q67.4","Other congenital deformities of skull, face and jaw" +"Q67.5","Congenital deformity of spine" +"Q67.6","Pectus excavatum" +"Q67.7","Pectus carinatum" +"Q67.8","Other congenital deformities of chest" +"Q68","OTHER CONGENITAL MUSCULOSKELETAL DEFORMITIES" +"Q68.0","Congenital deformity of sternocleidomastoid muscle" +"Q68.1","Congenital deformity of hand" +"Q68.2","Congenital deformity of knee" +"Q68.3","Congenital bowing of femur" +"Q68.4","Congenital bowing of tibia and fibula" +"Q68.5","Congenital bowing of long bones of leg, unspecified" +"Q68.8","Other specified congenital musculoskeletal deformities" +"Q69","POLYDACTYLY" +"Q69.0","Accessory finger(s)" +"Q69.1","Accessory thumb(s)" +"Q69.2","Accessory toe(s)" +"Q69.9","Polydactyly, unspecified" +"Q70","SYNDACTYLY" +"Q70.0","Fused fingers" +"Q70.1","Webbed fingers" +"Q70.2","Fused toes" +"Q70.3","Webbed toes" +"Q70.4","Polysyndactyly" +"Q70.9","Syndactyly, unspecified" +"Q71","REDUCTION DEFECTS OF UPPER LIMB" +"Q71.0","Congenital complete absence of upper limb(s)" +"Q71.1","Cong absence of upper arm and forearm with hand present" +"Q71.2","Congenital absence of both forearm and hand" +"Q71.3","Congenital absence of hand and finger(s)" +"Q71.4","Longitudinal reduction defect of radius" +"Q71.5","Longitudinal reduction defect of ulna" +"Q71.6","Lobster-claw hand" +"Q71.8","Other reduction defects of upper limb(S)" +"Q71.9","Reduction defect of upper limb, unspecified" +"Q72","REDUCTION DEFECTS OF LOWER LIMB" +"Q72.0","Congenital complete absence of lower limb(s)" +"Q72.1","Congenital absence of thigh and lower leg with foot present" +"Q72.2","Congenital absence of both lower leg and foot" +"Q72.3","Congenital absence of foot and toe(s)" +"Q72.4","Longitudinal reduction defect of femur" +"Q72.5","Longitudinal reduction defect of tibia" +"Q72.6","Longitudinal reduction defect of fibula" +"Q72.7","Split foot" +"Q72.8","Other reduction defects of lower limb(s)" +"Q72.9","Reduction defect of lower limb, unspecified" +"Q73","Reduction defects of unspecified limb" +"Q73.0","Congenital absence of unspecified limb(s)" +"Q73.1","Phocomelia, unspecified limb(s)" +"Q73.8","Other reduction defects of unspecified limb(s)" +"Q74","OTHER CONGENITAL MALFORMATIONS OF LIMB(S)" +"Q74.0","Other congenital malformation of upper limb(s) including shoulder girdle" +"Q74.1","Congenital malformation of knee" +"Q74.2","Other congenital malformation of lower limb(s) including pelvic girdle" +"Q74.3","Arthrogryposis multiplex congenita" +"Q74.8","Other specified congenital malformations of limb(s)" +"Q74.9","Unspecified congenital malformation of limb(s)" +"Q75","OTHER CONGENITAL MALFORMATIONS OF SKULL AND FACE BONES" +"Q75.0","Craniosynostosis" +"Q75.1","Craniofacial dysostosis" +"Q75.2","Hypertelorism" +"Q75.3","Macrocephaly" +"Q75.4","Mandibulofacial dysostosis" +"Q75.5","Oculomandibular dysostosis" +"Q75.8","Other specified congenital malformations of skull and face bones" +"Q75.9","Congenital malformation of skull and face bones, unspecified" +"Q76","CONGENITAL MALFORMATIONS OF SPINE AND BONY THORAX" +"Q76.0","Spina bifida occulta" +"Q76.1","Klippel-Feil syndrome" +"Q76.2","Congenital spondylolisthesis" +"Q76.3","Congenital scoliosis due to congenital bony malformation" +"Q76.4","Other congenital malformation of spine not associated with scoliosis" +"Q76.5","Cervical rib" +"Q76.6","Other congenital malformations of ribs" +"Q76.7","Congenital malformation of sternum" +"Q76.8","Other congenital malformations of bony thorax" +"Q76.9","Congenital malformation of bony thorax, unspecified" +"Q77","Osteochondrodysplasia with defects of growth of tubular bones and spine" +"Q77.0","Achondrogenesis" +"Q77.1","Thanatophoric short stature" +"Q77.2","Short rib syndrome" +"Q77.3","Chondrodysplasia punctata" +"Q77.4","Achondroplasia" +"Q77.5","Dystrophic dysplasia" +"Q77.6","Chondroectodermal dysplasia" +"Q77.7","Spondyloepiphyseal dysplasia" +"Q77.8","Other osteochondrodysplas with defect growth tubular bone spine" +"Q77.9","Osteochondrodyspl with defect growth tubular bones and spine, unspecified" +"Q78","Other osteochondrodysplasias" +"Q78.0","Osteogenesis imperfecta" +"Q78.1","Polyostotic fibrous dysplasia" +"Q78.2","Osteopetrosis" +"Q78.3","Progressive diaphyseal dysplasia" +"Q78.4","Enchondromatosis" +"Q78.5","Metaphyseal dysplasia" +"Q78.6","Multiple congenital exostoses" +"Q78.8","Other specified osteochondrodysplasias" +"Q78.9","Osteochondrodysplasia, unspecified" +"Q79","Congenital malformations of the musculoskeletal system, not elsewhere classified" +"Q79.0","Congenital diaphragmatic hernia" +"Q79.1","Other congenital malformations of diaphragm" +"Q79.2","Exomphalos" +"Q79.3","Gastroschisis" +"Q79.4","Prune belly syndrome" +"Q79.5","Other congenital malformations of abdominal wall" +"Q79.6","Ehlers-Danlos syndrome" +"Q79.8","Other congenital malformations of musculoskeletal system" +"Q79.9","Congenital malformation of musculoskeletal system unspecified" +"Q80","CONGENITAL ICHTHYOSIS" +"Q80.0","Ichthyosis vulgaris" +"Q80.1","X-linked ichthyosis" +"Q80.2","Lamellar ichthyosis" +"Q80.3","Congenital bullous ichthyosiform erythroderma" +"Q80.4","Harlequin fetus" +"Q80.8","Other congenital ichthyosis" +"Q80.9","Congenital ichthyosis, unspecified" +"Q81","EPIDERMOLYSIS BULLOSA" +"Q81.0","Epidermolysis bullosa simplex" +"Q81.1","Epidermolysis bullosa letalis" +"Q81.2","Epidermolysis bullosa dystrophica" +"Q81.8","Other epidermolysis bullosa" +"Q81.9","Epidermolysis bullosa, unspecified" +"Q82","OTHER CONGENITAL MALFORMATIONS OF SKIN" +"Q82.0","Hereditary lymphoedema" +"Q82.1","Xeroderma pigmentosum" +"Q82.2","Mastocytosis" +"Q82.3","Incontinentia pigmenti" +"Q82.4","Ectodermal dysplasia (anhidrotic)" +"Q82.5","Congenital non-neoplastic naevus" +"Q82.8","Other specified congenital malformations of skin" +"Q82.9","Congenital malformation of skin, unspecified" +"Q83","CONGENITAL MALFORMATIONS OF BREAST" +"Q83.0","Congenital absence of breast with absent nipple" +"Q83.1","Accessory breast" +"Q83.2","Absent nipple" +"Q83.3","Accessory nipple" +"Q83.8","Other congenital malformations of breast" +"Q83.9","Congenital malformation of breast, unspecified" +"Q84","OTHER CONGENITAL MALFORMATIONS OF INTEGUMENT" +"Q84.0","Congenital alopecia" +"Q84.1","Congenital morphological disturbances of hair nec" +"Q84.2","Other congenital malformations of hair" +"Q84.3","Anonychia" +"Q84.4","Congenital leukonychia" +"Q84.5","Enlarged and hypertrophic nails" +"Q84.6","Other congenital malformations of nails" +"Q84.8","Other specified congenital malformations of integument" +"Q84.9","Congenital malformation of integument, unspecified" +"Q85","Phakomatoses, not elsewhere classified" +"Q85.0","Neurofibromatosis (nonmalignant)" +"Q85.1","Tuberous sclerosis" +"Q85.8","Other phakomatoses, not elsewhere classified" +"Q85.9","Phakomatosis, unspecified" +"Q86","Congenital malformation syndromes due to known exogenous causes, not elsewhere classified" +"Q86.0","Fetal alcohol syndrome (dysmorphic)" +"Q86.1","Fetal hydantoin syndrome" +"Q86.2","Dysmorphism due to warfarin" +"Q86.8","Other congenital malformation syndromes due to known exogen causes" +"Q87","OTHER SPECIFIED CONGENITAL MALFORMATION SYNDROMES AFFECTING MULTIPLE SYSTEMS" +"Q87.0","Congenital malformation syndromes predominantly affect facial appearance" +"Q87.1","Congenital malformation syndromes predominantly associated with short stature" +"Q87.2","Congenital malformation syndromes predominantly involving limbs" +"Q87.3","Congenital malformation syndromes involving early overgrowth" +"Q87.4","Marfan's syndrome" +"Q87.5","Other Congenital malformation syndromes with Other skeletal changes" +"Q87.8","Other specified congenital malformation syndromes NEC" +"Q89","Other congenital malformations, not elsewhere classified" +"Q89.0","Congenital malformations of spleen" +"Q89.1","Congenital malformations of adrenal gland" +"Q89.2","Congenital malformations of other endocrine glands" +"Q89.3","Situs inversus" +"Q89.4","Conjoined twins" +"Q89.7","Multiple congenital malformations, not elsewhere classified" +"Q89.8","Other specified congenital malformations" +"Q89.9","Congenital malformation, unspecified" +"Q90","Down syndrome" +"Q90.0","Trisomy 21, meiotic nondisjunction" +"Q90.1","Trisomy 21, mosaicism (mitotic nondisjunction)" +"Q90.2","Trisomy 21, translocation" +"Q90.9","Down's syndrome, unspecified" +"Q91","Edwards syndrome and Patau syndrome" +"Q91.0","Trisomy 18, meiotic nondisjunction" +"Q91.1","Trisomy 18, mosaicism (mitotic nondisjunction)" +"Q91.2","Trisomy 18, translocation" +"Q91.3","Edwards' syndrome, unspecified" +"Q91.4","Trisomy 13, meiotic nondisjunction" +"Q91.5","Trisomy 13, mosaicism (mitotic nondisjunction)" +"Q91.6","Trisomy 13, translocation" +"Q91.7","Patau's syndrome, unspecified" +"Q92","OTHER TRISOMIES AND PARTIAL TRISOMIES OF THE AUTOSOMES, NOT ELSEWHERE CLASSIFIED" +"Q92.0","Whole chromosome trisomy, meiotic nondisjunction" +"Q92.1","Whole chromosome trisomy, mosaicism (mitotic nondisjunction)" +"Q92.2","Major partial trisomy" +"Q92.3","Minor partial trisomy" +"Q92.4","Duplications seen only at prometaphase" +"Q92.5","Duplications with other complex rearrangements" +"Q92.6","Extra marker chromosomes" +"Q92.7","Triploidy and polyploidy" +"Q92.8","Other specified trisomies and partial trisomies of autosomes" +"Q92.9","Trisomy and partial trisomy of autosomes, unspecified" +"Q93","MONOSOMIES AND DELETIONS FROM THE AUTOSOMES, NOT ELSEWHERE CLASSIFIED" +"Q93.0","Whole chromosome monosomy, meiotic nondisjunction" +"Q93.1","Whole chrom monosomy mosaicism (mitotic nondisjunction)" +"Q93.2","Chromosome replaced with ring or dicentric" +"Q93.3","Deletion of short arm of chromosome 4" +"Q93.4","Deletion of short arm of chromosome 5" +"Q93.5","Other deletions of part of a chromosome" +"Q93.6","Deletions seen only at prometaphase" +"Q93.7","Deletions with other complex rearrangements" +"Q93.8","Other deletions from the autosomes" +"Q93.9","Deletion from autosomes, unspecified" +"Q95","BALANCED REARRANGEMENTS AND STRUCTURAL MARKERS, NOT ELSEWHERE CLASSIFIED" +"Q95.0","Balanced translocation and insertion in normal individual" +"Q95.1","Chromosome inversion in normal individual" +"Q95.2","Balanced autosomal rearrangement in abnormal individual" +"Q95.3","Balanced sex/autosomal rearrangement in abnormal individual" +"Q95.4","Individuals with marker heterochromatin" +"Q95.5","Individuals with autosomal fragile site" +"Q95.8","Other balanced rearrangements and structural markers" +"Q95.9","Balanced rearrangement and structural marker, unspecified" +"Q96","Turner syndrome" +"Q96.0","Karyotype 45x" +"Q96.1","Karyotype 46x iso (xq)" +"Q96.2","Karyotype 46x with abnormal sex chromosome, except iso (Xq)" +"Q96.3","Mosaicism, 45, x/46, xx or xy" +"Q96.4","Mosaicism 45x/oth cell line(s) with abnorm sex chromosome" +"Q96.8","Other variants of Turner's syndrome" +"Q96.9","Turner's syndrome, unspecified" +"Q97","OTHER SEX CHROMOSOME ABNORMALITIES, FEMALE PHENOTYPE, NOT ELSEWHERE CLASSIFIED" +"Q97.0","Karotype 47, XXX" +"Q97.1","Female with more than three X chromosomes" +"Q97.2","Mosaicism, lines with various numbers of x chromosomes" +"Q97.3","Female with 46, XY karyotype" +"Q97.8","Other specified sex chromosome abnormalities female phrenotype" +"Q97.9","Sex chromosome abnormality, female phenotype, unspecified" +"Q98","Other sex chromosome abnormalities, male phenotype, not elsewhere classified" +"Q98.0","Klinefelters syndrome karyotype 47, XXY" +"Q98.1","Klinefelters syndrome male with more than two X chromosomes" +"Q98.2","Klinefelters syndrome karyotype male with 46, XX karyotype" +"Q98.3","Other male with 46 XX karyotype" +"Q98.4","Klinefelter's syndrome, unspecified" +"Q98.5","Karyotype 47 , XYY" +"Q98.6","Male with structurally abnormal sex chromosome" +"Q98.7","Male with sex chromosome mosaicism" +"Q98.8","Other specified sex chromosome abnormalities, male phenotype" +"Q98.9","Sex chromosome abnormality, male phenotype, unspecified" +"Q99","Other chromosome abnormalities, not elsewhere classified" +"Q99.0","Chimera 46, XX/46, XY" +"Q99.1","46, XX true hemaphrodite" +"Q99.2","Fragile X chromosome" +"Q99.8","Other specified chromosome abnormalities" +"Q99.9","Chromosomal abnormality, unspecified" +"R00","ABNORMALITIES OF HEART BEAT" +"R00.0","Tachycardia, unspecified" +"R00.1","Bradycardia, unspecified" +"R00.2","Palpitations" +"R00.8","Other and unspecified abnormalities of heart beat" +"R01","CARDIAC MURMURS AND OTHER CARDIAC SOUNDS" +"R01.0","Benign and innocent cardiac murmurs" +"R01.1","Cardiac murmur, unspecified" +"R01.2","Other cardiac sounds" +"R02","GANGRENE, NOT ELSEWHERE CLASSIFIED" +"R03","Abnormal blood-pressure reading, without diagnosis" +"R03.0","Elevated blood-pressure reading without diagnosis of hypertension" +"R03.1","Nonspecific low blood-pressure reading" +"R04","HAEMORRHAGE FROM RESPIRATORY PASSAGES" +"R04.0","Epistaxis" +"R04.1","Haemorrhage from throat" +"R04.2","Haemoptysis" +"R04.8","Haemorrhage from other sites in respiratory passages" +"R04.9","Haemorrhage from respiratory passages, unspecified" +"R05","COUGH" +"R06","ABNORMALITIES OF BREATHING" +"R06.0","Dyspnoea" +"R06.1","Stridor" +"R06.2","Wheezing" +"R06.3","Periodic breathing" +"R06.4","Hyperventilation" +"R06.5","Mouth breathing" +"R06.6","Hiccough" +"R06.7","Sneezing" +"R06.8","Other and unspecified abnormalities of breathing" +"R07","PAIN IN THROAT AND CHEST" +"R07.0","Pain in throat" +"R07.1","Chest pain on breathing" +"R07.2","Precordial pain" +"R07.3","Other chest pain" +"R07.4","Chest pain, unspecified" +"R09","OTHER SYMPTOMS AND SIGNS INVOLVING THE CIRCULATORY AND RESPIRATORY SYSTEMS" +"R09.0","Asphyxia" +"R09.1","Pleurisy" +"R09.2","Respiratory arrest" +"R09.3","Abnormal sputum" +"R09.8","Other specified symptoms and signs involving circulatory and respiratory systems" +"R10","ABDOMINAL AND PELVIC PAIN" +"R10.0","Acute abdomen" +"R10.1","Pain localized to upper abdomen" +"R10.2","Pelvic and perineal pain" +"R10.3","Pain localized to other parts of lower abdomen" +"R10.4","Other and unspecified abdominal pain" +"R11","NAUSEA AND VOMITING" +"R12","HEARTBURN" +"R13","DYSPHAGIA" +"R14","FLATULENCE AND RELATED CONDITIONS" +"R15","FAECAL INCONTINENCE" +"R16","HEPATOMEGALY AND SPLENOMEGALY, NOT ELSEWHERE CLASSIFIED" +"R16.0","Hepatomegaly, not elsewhere classified" +"R16.1","Splenomegaly, not elsewhere classified" +"R16.2","Hepatomegaly with splenomegaly, not elsewhere classified" +"R17","Unspecified jaundice" +"R18","ASCITES" +"R19","OTHER SYMPTOMS AND SIGNS INVOLVING THE DIGESTIVE SYSTEM AND ABDOMEN" +"R19.0","Intra-abdominal and pelvic swelling, mass and lump" +"R19.1","Abnormal bowel sounds" +"R19.2","Visible peristalsis" +"R19.3","Abdominal rigidity" +"R19.4","Change in bowel habit" +"R19.5","Other faecal abnormalities" +"R19.6","Halitosis" +"R19.8","Other specified symptoms and signs involving digestive system and abdomen" +"R20","DISTURBANCES OF SKIN SENSATION" +"R20.0","Anaesthesia of skin" +"R20.1","Hypoaesthesia of skin" +"R20.2","Paraesthesia of skin" +"R20.3","Hyperaesthesia" +"R20.8","Other and unspecified disturbances of skin sensation" +"R21","RASH AND OTHER NONSPECIFIC SKIN ERUPTION" +"R22","LOCALIZED SWELLING, MASS AND LUMP OF SKIN AND SUBCUTANEOUS TISSUE" +"R22.0","Localized swelling, mass and lump, head" +"R22.1","Localized swelling, mass and lump, neck" +"R22.2","Localized swelling, mass and lump, trunk" +"R22.3","Localized swelling, mass and lump, upper limb" +"R22.4","Localized swelling, mass and lump, lower limb" +"R22.7","Localized swelling, mass and lump, multiple sites" +"R22.9","Localized swelling, mass and lump, unspecified" +"R23","OTHER SKIN CHANGES" +"R23.0","Cyanosis" +"R23.1","Pallor" +"R23.2","Flushing" +"R23.3","Spontaneous ecchymoses" +"R23.4","Changes in skin texture" +"R23.8","Other and unspecified skin changes" +"R25","ABNORMAL INVOLUNTARY MOVEMENTS" +"R25.0","Abnormal head movements" +"R25.1","Tremor, unspecified" +"R25.2","Cramp and spasm" +"R25.3","Fasciculation" +"R25.8","Other and unspecified abnormal involuntary movements" +"R26","ABNORMALITIES OF GAIT AND MOBILITY" +"R26.0","Ataxic gait" +"R26.1","Paralytic gait" +"R26.2","Difficulty in walking, not elsewhere classified" +"R26.3","Immobility" +"R26.8","Other and unspecified abnormalities of gait and mobility" +"R27","OTHER LACK OF COORDINATION" +"R27.0","Ataxia, unspecified" +"R27.8","Other and unspecified lack of coordination" +"R29","OTHER SYMPTOMS AND SIGNS INVOLVING THE NERVOUS AND MUSCULOSKELETAL SYSTEMS" +"R29.0","Tetany" +"R29.1","Meningismus" +"R29.2","Abnormal reflex" +"R29.3","Abnormal posture" +"R29.4","Clicking hip" +"R29.6","Tendency to fall, NEC" +"R29.8","Other unspecified symptoms and signs involving the nervous and musculoskel systems" +"R30","Pain associated with micturition" +"R30.0","Dysuria" +"R30.1","Vesical tenesmus" +"R30.9","Painful micturition, unspecified" +"R31","Unspecified haematuria" +"R32","Unspecified urinary incontinence" +"R33","RETENTION OF URINE" +"R34","Anuria and oliguria" +"R35","POLYURIA" +"R36","URETHRAL DISCHARGE" +"R39","OTHER SYMPTOMS AND SIGNS INVOLVING THE URINARY SYSTEM" +"R39.0","Extravasation of urine" +"R39.1","Other difficulties with micturition" +"R39.2","Extrarenal uraemia" +"R39.8","Other and unspecified symptoms and signs involving urinary system" +"R40","SOMNOLENCE, STUPOR AND COMA" +"R40.0","Somnolence" +"R40.1","Stupor" +"R40.2","Coma, unspecified" +"R41","OTHER SYMPTOMS AND SIGNS INVOLVING COGNITIVE FUNCTIONS AND AWARENESS" +"R41.0","Disorientation, unspecified" +"R41.1","Anterograde amnesia" +"R41.2","Retrograde amnesia" +"R41.3","Other amnesia" +"R41.8","Other and unspecified symptoms and signs involving cognitive functions and awareness" +"R42","DIZZINESS AND GIDDINESS" +"R43","DISTURBANCES OF SMELL AND TASTE" +"R43.0","Anosmia" +"R43.1","Parosmia" +"R43.2","Parageusia" +"R43.8","Other and unspecified disturbances of smell and taste" +"R44","OTHER SYMPTOMS AND SIGNS INVOLVING GENERAL SENSATIONS AND PERCEPTIONS" +"R44.0","Auditory hallucinations" +"R44.1","Visual hallucinations" +"R44.2","Other hallucinations" +"R44.3","Hallucinations, unspecified" +"R44.8","Other and unspecified symptoms and signs involving general sensations and perceptions" +"R45","SYMPTOMS AND SIGNS INVOLVING EMOTIONAL STATE" +"R45.0","Nervousness" +"R45.1","Restlessness and agitation" +"R45.2","Unhappiness" +"R45.3","Demoralization and apathy" +"R45.4","Irritability and anger" +"R45.5","Hostility" +"R45.6","Physical violence" +"R45.7","State of emotional shock and stress, unspecified" +"R45.8","Other symptoms and signs involving emotional state" +"R46","SYMPTOMS AND SIGNS INVOLVING APPEARANCE AND BEHAVIOUR" +"R46.0","Very low level of personal hygiene" +"R46.1","Bizarre personal appearance" +"R46.2","Strange and inexplicable behaviour" +"R46.3","Overactivity" +"R46.4","Slowness and poor responsiveness" +"R46.5","Suspiciousness and marked evasiveness" +"R46.6","Undue concern and preoccupation with stressful events" +"R46.7","Verbosity and circumstantial detail obscuring reason for contact" +"R46.8","Other symptoms and signs involving appearance and behaviour" +"R47","SPEECH DISTURBANCES, NOT ELSEWHERE CLASSIFIED" +"R47.0","Dysphasia and aphasia" +"R47.1","Dysarthria and anarthria" +"R47.8","Other and unspecified speech disturbances" +"R48","DYSLEXIA AND OTHER SYMBOLIC DYSFUNCTIONS, NOT ELSEWHERE CLASSIFIED" +"R48.0","Dyslexia and alexia" +"R48.1","Agnosia" +"R48.2","Apraxia" +"R48.8","Other and unspecified symbolic dysfunctions" +"R49","VOICE DISTURBANCES" +"R49.0","Dysphonia" +"R49.1","Aphonia" +"R49.2","Hypernasality and hyponasality" +"R49.8","Other and unspecified voice disturbances" +"R50","Fever of other and unknown origin" +"R50.0","Fever with chills" +"R50.1","Persistent fever" +"R50.2","Drug-induced fever" +"R50.8","Other specified fever" +"R50.9","Fever, unspecified" +"R51","HEADACHE" +"R52","PAIN, NOT ELSEWHERE CLASSIFIED" +"R52.0","Acute pain" +"R52.1","Chronic intractable pain" +"R52.2","Other chronic pain" +"R52.9","Pain, unspecified" +"R53","MALAISE AND FATIGUE" +"R54","SENILITY" +"R55","SYNCOPE AND COLLAPSE" +"R56","CONVULSIONS, NOT ELSEWHERE CLASSIFIED" +"R56.0","Febrile convulsions" +"R56.8","Other and unspecified convulsions" +"R57","SHOCK, NOT ELSEWHERE CLASSIFIED" +"R57.0","Cardiogenic shock" +"R57.1","Hypovolaemic shock" +"R57.2","Septic shock" +"R57.8","Other shock" +"R57.9","Shock, unspecified" +"R58","HAEMORRHAGE, NOT ELSEWHERE CLASSIFIED" +"R59","ENLARGED LYMPH NODES" +"R59.0","Localized enlarged lymph nodes" +"R59.1","Generalized enlarged lymph nodes" +"R59.9","Enlarged lymph nodes, unspecified" +"R60","OEDEMA, NOT ELSEWHERE CLASSIFIED" +"R60.0","Localized oedema" +"R60.1","Generalized oedema" +"R60.9","Oedema, unspecified" +"R61","HYPERHIDROSIS" +"R61.0","Localized hyperhidrosis" +"R61.1","Generalized hyperhidrosis" +"R61.9","Hyperhidrosis, unspecified" +"R62","LACK OF EXPECTED NORMAL PHYSIOLOGICAL DEVELOPMENT" +"R62.0","Delayed milestone" +"R62.8","Other lack of expected normal physiological development" +"R62.9","Lack of expected normal physiologic developmemnt unspecified" +"R63","Symptoms and signs concerning food and fluid intake" +"R63.0","Anorexia" +"R63.1","Polydipsia" +"R63.2","Polyphagia" +"R63.3","Feeding difficulties and mismanagement" +"R63.4","Abnormal weight loss" +"R63.5","Abnormal weight gain" +"R63.6","Insufficient intake of food and water due to self neglect" +"R63.8","Other symptoms and signs concerning food and fluid intake" +"R64","CACHEXIA" +"R65","Systemic Inflammatory Response Syndrome [SIRS]" +"R65.0","Systemic Inflammatory Response Syndrome of infectious origin without organ failure" +"R65.1","Systemic Inflammatory Response Syndrome of infectious origin with organ failure" +"R65.2","Systemic Inflammatory Response Syndrome of non-infectious origin without organ failure" +"R65.3","Systemic Inflammatory Response Syndrome of non-infectious origin with organ failure" +"R65.9","Systemic Inflammatory Response Syndrome, unspecified" +"R68","OTHER GENERAL SYMPTOMS AND SIGNS" +"R68.0","Hypothermia not associated with low environmental temperature" +"R68.1","Nonspecific symptoms peculiar to infancy" +"R68.2","Dry mouth, unspecified" +"R68.3","Clubbing of fingers" +"R68.8","Other specified general symptoms and signs" +"R69","Unknown and unspecified causes of morbidity" +"R70","Elevated erythrocyte sedimentation rate and abnormality of plasma viscosity" +"R70.0","Elevated erythrocyte sedimentation rate" +"R70.1","Abnormal plasma viscosity" +"R71","ABNORMALITY OF RED BLOOD CELLS" +"R72","Abnormality of white blood cells, not elsewhere classified" +"R73","ELEVATED BLOOD GLUCOSE LEVEL" +"R73.0","Abnormal glucose tolerance test" +"R73.9","Hyperglycaemia, unspecified" +"R74","ABNORMAL SERUM ENZYME LEVELS" +"R74.0","Elevated levels of transaminase & lactic acid dehydrogenase" +"R74.8","Abnormal levels of other serum enzymes" +"R74.9","Abnormal level of unspecified serum enzyme" +"R75","LABORATORY EVIDENCE OF HUMAN IMMUNODEFICIENCY VIRUS [HIV]" +"R76","Other abnormal immunological findings in serum" +"R76.0","Raised antibody titre" +"R76.1","Abnormal reaction to tuberculin test" +"R76.2","False-positive serological test for syphilis" +"R76.8","Other specified abnormal immunological findings in serum" +"R76.9","Abnormal immunological finding in serum, unspecified" +"R77","OTHER ABNORMALITIES OF PLASMA PROTEINS" +"R77.0","Abnormality of albumin" +"R77.1","Abnormality of globulin" +"R77.2","Abnormality of alphafetoprotein" +"R77.8","Other specified abnormalities of plasma proteins" +"R77.9","Abnormality of plasma protein, unspecified" +"R78","FINDINGS OF DRUGS AND OTHER SUBSTANCES, NOT NORMALLY FOUND IN BLOOD" +"R78.0","Finding of alcohol in blood" +"R78.1","Finding of opiate drug in blood" +"R78.2","Finding of cocaine in blood" +"R78.3","Finding of hallucinogen in blood" +"R78.4","Finding of other drugs of addictive potential in blood" +"R78.5","Finding of psychotropic drug in blood" +"R78.6","Finding of steroid agent in blood" +"R78.7","Finding of abnormal level of heavy metals in blood" +"R78.8","Finding of other specified substance not normally found in blood" +"R78.9","Finding of unspecified substance not normally found in blood" +"R79","OTHER ABNORMAL FINDINGS OF BLOOD CHEMISTRY" +"R79.0","Abnormal level of blood mineral" +"R79.8","Other specified abnormal findings of blood chemistry" +"R79.9","Abnormal finding of blood chemistry, unspecified" +"R80","ISOLATED PROTEINURIA" +"R81","GLYCOSURIA" +"R82","OTHER ABNORMAL FINDINGS IN URINE" +"R82.0","Chyluria" +"R82.1","Myoglobinuria" +"R82.2","Biliuria" +"R82.3","Haemoglobinuria" +"R82.4","Acetonuria" +"R82.5","Elevated urine levels of drugs, medicaments and biolog substance" +"R82.6","Abnormal urine levels of substance chiefly nonmedicinal as to sources" +"R82.7","Abnormal findings on microbiological examination of urine" +"R82.8","Abnormal find on cytological and histological examination of urine" +"R82.9","Other and unspecified abnormal findings in urine" +"R83","ABNORMAL FINDINGS IN CEREBROSPINAL FLUID" +"R83.0","Abnormal findings in cerebrospinal fluid, abnormal level of enzymes" +"R83.1","Abnormal findings in cerebrospinal fluid, abnormal level of hormones" +"R83.2","Abnormal findings in cerebrospinal fluid, abnormal level other drugs, medicaments and biological substance" +"R83.3","Abnormal findings in cerebrospinal fluid, abnormal level substance chiefly nonmedicinal as to source" +"R83.4","Abnormal findings in cerebrospinal fluid, abnormal immunological findings" +"R83.5","Abnormal findings in cerebrospinal fluid, abnormal microbiological findings" +"R83.6","Abnormal findings in cerebrospinal fluid, abnormal cytological findings" +"R83.7","Abnormal findings in cerebrospinal fluid, abnormal histological findings" +"R83.8","Abnormal findings in cerebrospinal fluid, other abnormal findings" +"R83.9","Abnormal findings in cerebrospinal fluid, unspecified abnormal finding" +"R84","Abnormal findings in specimens from respiratory organs and thorax" +"R84.0","Abnormal findings in specimens from respiratory organs and thorax, abnormal level of enzymes" +"R84.1","Abnormal findings in specimens from respiratory organs and thorax, abnormal level of hormones" +"R84.2","Abnormal findings in specimens from respiratory organs and thorax, abnormal level other drugs, medicaments and biological substance" +"R84.3","Abnormal findings in specimens from respiratory organs and thorax, abnormal level substance chiefly nonmedicinal as to source" +"R84.4","Abnormal findings in specimens from respiratory organs and thorax, abnormal immunological findings" +"R84.5","Abnormal findings in specimens from respiratory organs and thorax, abnormal microbiological findings" +"R84.6","Abnormal findings in specimens from respiratory organs and thorax, abnormal cytological findings" +"R84.7","Abnormal findings in specimens from respiratory organs and thorax, abnormal histological findings" +"R84.8","Abnormal findings in specimens from respiratory organs and thorax, other abnormal findings" +"R84.9","Abnormal findings in specimens from respiratory organs and thorax, unspecified abnormal finding" +"R85","Abnormal findings in specimens from digestive organs and abdominal cavity" +"R85.0","Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level of enzymes" +"R85.1","Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level of hormones" +"R85.2","Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level other drugs, medicaments and biological substance" +"R85.3","Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal level substance chiefly nonmedicinal as to source" +"R85.4","Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal immunological findings" +"R85.5","Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal microbiological findings" +"R85.6","Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal cytological findings" +"R85.7","Abnormal finding in specimens from digestive organs and abnomoinal cavity, abnormal histological findings" +"R85.8","Abnormal finding in specimens from digestive organs and abnomoinal cavity, other abnormal findings" +"R85.9","Abnormal finding in specimens from digestive organs and abnomoinal cavity, unspecified abnormal finding" +"R86","ABNORMAL FINDINGS IN SPECIMENS FROM MALE GENITAL ORGANS" +"R86.0","Abnormal findings in specimens from male genital organs, abnormal level of enzymes" +"R86.1","Abnormal findings in specimens from male genital organs, abnormal level of hormones" +"R86.2","Abnormal findings in specimens from male genital organs, abnormal level other drugs, medicaments and biological substance" +"R86.3","Abnormal findings in specimens from male genital organs, abnormal level substance chiefly nonmedicinal as to source" +"R86.4","Abnormal findings in specimens from male genital organs, abnormal immunological findings" +"R86.5","Abnormal findings in specimens from male genital organs, abnormal microbiological findings" +"R86.6","Abnormal findings in specimens from male genital organs, abnormal cytological findings" +"R86.7","Abnormal findings in specimens from male genital organs, abnormal histological findings" +"R86.8","Abnormal findings in specimens from male genital organs, other abnormal findings" +"R86.9","Abnormal findings in specimens from male genital organs, unspecified abnormal finding" +"R87","Abnormal findings in specimens from female genital organs" +"R87.0","Abnormal findings in specimens from famale genital organs, abnormal level of enzymes" +"R87.1","Abnormal findings in specimens from famale genital organs, abnormal level of hormones" +"R87.2","Abnormal findings in specimens from famale genital organs, abnormal level other drugs, medicaments and biological substance" +"R87.3","Abnormal findings in specimens from famale genital organs, abnormal level substance chiefly nonmedicinal as to source" +"R87.4","Abnormal findings in specimens from famale genital organs, abnormal immunological findings" +"R87.5","Abnormal findings in specimens from famale genital organs, abnormal microbiological findings" +"R87.6","Abnormal findings in specimens from famale genital organs, abnormal cytological findings" +"R87.7","Abnormal findings in specimens from famale genital organs, abnormal histological findings" +"R87.8","Abnormal findings in specimens from famale genital organs, other abnormal findings" +"R87.9","Abnormal findings in specimens from famale genital organs, unspecified abnormal finding" +"R89","ABNORMAL FINDINGS IN SPECIMENS FROM OTHER ORGANS, SYSTEMS AND TISSUES" +"R89.0","Abnormal findings in specimens from other organs,systems and tissue, abnormal level of enzymes" +"R89.1","Abnormal findings in specimens from other organs,systems and tissue, abnormal level of hormones" +"R89.2","Abnormal findings in specimens from other organs,systems and tissue, abnormal level other drugs, medicaments and biological substance" +"R89.3","Abnormal findings in specimens from other organs,systems and tissue, abnormal level substance chiefly nonmedicinal as to source" +"R89.4","Abnormal findings in specimens from other organs,systems and tissue, abnormal immunological findings" +"R89.5","Abnormal findings in specimens from other organs,systems and tissue, abnormal microbiological findings" +"R89.6","Abnormal findings in specimens from other organs,systems and tissue, abnormal cytological findings" +"R89.7","Abnormal findings in specimens from other organs,systems and tissue, abnormal histological findings" +"R89.8","Abnormal findings in specimens from other organs,systems and tissue, other abnormal findings" +"R89.9","Abnormal findings in specimens from other organs,systems and tissue, unspecified abnormal finding" +"R90","Abnormal findings on diagnostic imaging of central nervous system" +"R90.0","Intracranial space-occupying lesion" +"R90.8","Other abnormal findings on diagnostic imaging of central nervous system" +"R91","ABNORMAL FINDINGS ON DIAGNOSTIC IMAGING OF LUNG" +"R92","ABNORMAL FINDINGS ON DIAGNOSTIC IMAGING OF BREAST" +"R93","ABNORMAL FINDINGS ON DIAGNOSTIC IMAGING OF OTHER BODY STRUCTURES" +"R93.0","Abnormal findings on diagnostic imaging of skull and head NEC" +"R93.1","Abnormal findings on diagnostic imaging of heart and Coronary circulation" +"R93.2","Abnormal findings diagnostic imaging of liver and biliary tract" +"R93.3","Abnormal findings diagnostic imaging of other parts of digestive tract" +"R93.4","Abnormal findings on diagnostic imaging of urinary organs" +"R93.5","Abnormal findings on diagnostic imaging of other abdominal regions, including retroperitoneum" +"R93.6","Abnormal findings on diagnostic imaging of limbs" +"R93.7","Abnormal findings on diagnostic imaging of other parts of musculoskeletal system" +"R93.8","Abnormal findings on diagnostic imaging of other specified body structures" +"R94","ABNORMAL RESULTS OF FUNCTION STUDIES" +"R94.0","Abnormal results of function studies of central nervous system" +"R94.1","Abnormal results function studies peripheral nervous system special senses" +"R94.2","Abnormal results of pulmonary function studies" +"R94.3","Abnormal results of cardiovascular function studies" +"R94.4","Abnormal results of kidney function studies" +"R94.5","Abnormal results of liver function studies" +"R94.6","Abnormal results of thyroid function studies" +"R94.7","Abnormal results of other endocrine function studies" +"R94.8","Abnormal results of function studies of other organs and systems" +"R95","SUDDEN INFANT DEATH SYNDROME" +"R96","OTHER SUDDEN DEATH, CAUSE UNKNOWN" +"R96.0","Instantaneous death" +"R96.1","Death occurring less than 24 hr from onset symptoms not otherwise explained" +"R98","UNATTENDED DEATH" +"R99","Other ill-defined and unspecified cause of mortality" +"S00","SUPERFICIAL INJURY OF HEAD" +"S00.0","Superficial injury of scalp" +"S00.1","Contusion of eyelid and periocular area" +"S00.2","Other superficial injuries of eyelid and periocular area" +"S00.3","Superficial injury of nose" +"S00.4","Superficial injury of ear" +"S00.5","Superficial injury of lip and oral cavity" +"S00.7","Multiple superficial injuries of head" +"S00.8","Superficial injury of other parts of head" +"S00.9","Superficial injury of head, part unspecified" +"S01","OPEN WOUND OF HEAD" +"S01.0","Open wound of scalp" +"S01.1","Open wound of eyelid and periocular area" +"S01.2","Open wound of nose" +"S01.3","Open wound of ear" +"S01.4","Open wound of cheek and temporomandibular area" +"S01.5","Open wound of lip and oral cavity" +"S01.7","Multiple open wounds of head" +"S01.8","Open wound of other parts of head" +"S01.9","Open wound of head, part unspecified" +"S02","FRACTURE OF SKULL AND FACIAL BONES" +"S02.0","Fracture of vault of skull" +"S02.00","Fracture of vault of skull, closed" +"S02.01","Fracture of vault of skull, open" +"S02.1","Fracture of base of skull" +"S02.10","Fracture of base of skull, closed" +"S02.11","Fracture of base of skull, open" +"S02.2","Fracture of nasal bones" +"S02.20","Fracture of nasal bones, closed" +"S02.21","Fracture of nasal bones, open" +"S02.3","Fracture of orbital floor" +"S02.30","Fracture of orbital floor, closed" +"S02.31","Fracture of orbital floor, open" +"S02.4","Fracture of malar and maxillary bones" +"S02.40","Fracture of malar and maxillary bones, closed" +"S02.41","Fracture of malar and maxillary bones, open" +"S02.5","Fracture of tooth" +"S02.50","Fracture of tooth, closed" +"S02.51","Fracture of tooth, open" +"S02.6","Fracture of mandible" +"S02.60","Fracture of mandible, closed" +"S02.61","Fracture of mandible, open" +"S02.7","Multiple fractures involving skull and facial bones" +"S02.70","Multiple fractures involving skull and facial bones, closed" +"S02.71","Multiple fractures involving skull and facial bones, open" +"S02.8","Fractures of other skull and facial bones" +"S02.80","Fractures of other skull and facial bones, closed" +"S02.81","Fractures of other skull and facial bones, open" +"S02.9","Fracture of skull and facial bones, part unspecified" +"S02.90","Fracture of skull and facial bones, part unspecified, closed" +"S02.91","Fracture of skull and facial bones, part unspecified, open" +"S03","DISLOCATION, SPRAIN AND STRAIN OF JOINTS AND LIGAMENTS OF HEAD" +"S03.0","Dislocation of jaw" +"S03.1","Dislocation of septal cartilage of nose" +"S03.2","Dislocation of tooth" +"S03.3","Dislocation of other and unspecified parts of head" +"S03.4","Sprain and strain of jaw" +"S03.5","Sprain and strain joints ligs other and unspec parts head" +"S04","INJURY OF CRANIAL NERVES" +"S04.0","Injury of optic nerve and pathways" +"S04.1","Injury of oculomotor nerve" +"S04.2","Injury of trochlear nerve" +"S04.3","Injury of trigeminal nerve" +"S04.4","Injury of abducent nerve" +"S04.5","Injury of facial nerve" +"S04.6","Injury of acoustic nerve" +"S04.7","Injury of accessory nerve" +"S04.8","Injury of other cranial nerves" +"S04.9","Injury of unspecified cranial nerve" +"S05","INJURY OF EYE AND ORBIT" +"S05.0","Injury conjunctiva corneal abras without ment foreign body" +"S05.1","Contusion of eyeball and orbital tissues" +"S05.2","Ocular lacn and rupture with prolapse or loss intraoc tiss" +"S05.3","Ocular lacn without prolapse or loss of intraocular tissue" +"S05.4","Penetrating wound of orbit with or without foreign body" +"S05.5","Penetrating wound of eyeball with foreign body" +"S05.6","Penetrating wound of eyeball without foreign body" +"S05.7","Avulsion of eye" +"S05.8","Other injuries of eye and orbit" +"S05.9","Injury of eye and orbit, unspecified" +"S06","INTRACRANIAL INJURY" +"S06.0","Concussion" +"S06.00","Concussion, without open intracranial wound" +"S06.01","Concussion, with open intracranial wound" +"S06.1","Traumatic cerebral oedema" +"S06.10","Traumatic cerebral oedema, without open intracranial wound" +"S06.11","Traumatic cerebral oedema, with open intracranial wound" +"S06.2","Diffuse brain injury" +"S06.20","Diffuse brain injury, without open intracranial wound" +"S06.21","Diffuse brain injury, with open intracranial wound" +"S06.3","Focal brain injury" +"S06.30","Focal brain injury, without open intracranial wound" +"S06.31","Focal brain injury, with open intracranial wound" +"S06.4","Epidural haemorrhage" +"S06.40","Epidural haemorrhage, without open intracranial wound" +"S06.41","Epidural haemorrhage, with open intracranial wound" +"S06.5","Traumatic subdural haemorrhage" +"S06.50","Traumatic subdural haemorrhage, without open intracranial wound" +"S06.51","Traumatic subdural haemorrhage, with open intracranial wound" +"S06.6","Traumatic subarachnoid haemorrhage" +"S06.60","Traumatic subarachnoid haemorrhage, without open intracranial wound" +"S06.61","Traumatic subarachnoid haemorrhage, with open intracranial wound" +"S06.7","Intracranial injury with prolonged coma" +"S06.70","Intracranial injury with prolonged coma, without open intracranial wound" +"S06.71","Intracranial injury with prolonged coma, with open intracranial wound" +"S06.8","Other intracranial injuries" +"S06.80","Other intracranial injuries, without open intracranial wound" +"S06.81","Other intracranial injuries, with open intracranial wound" +"S06.9","Intracranial injury, unspecified" +"S06.90","Intracranial injury, unspecified, without open intracranial wound" +"S06.91","Intracranial injury, unspecified, with open intracranial wound" +"S07","CRUSHING INJURY OF HEAD" +"S07.0","Crushing injury of face" +"S07.1","Crushing injury of skull" +"S07.8","Crushing injury of other parts of head" +"S07.9","Crushing injury of head, part unspecified" +"S08","TRAUMATIC AMPUTATION OF PART OF HEAD" +"S08.0","Avulsion of scalp" +"S08.1","Traumatic amputation of ear" +"S08.8","Traumatic amputation of other parts of head" +"S08.9","Traumatic amputation of unspecified part of head" +"S09","Other and unspecified injuries of head" +"S09.0","Injury of blood vessels of head, not elsewhere classified" +"S09.1","Injury of muscle and tendon of head" +"S09.2","Traumatic rupture of ear drum" +"S09.7","Multiple injuries of head" +"S09.8","Other specified injuries of head" +"S09.9","Unspecified injury of head" +"S10","SUPERFICIAL INJURY OF NECK" +"S10.0","Contusion of throat" +"S10.1","Other and unspecified superficial injuries of throat" +"S10.7","Multiple superficial injuries of neck" +"S10.8","Superficial injury of other parts of neck" +"S10.9","Superficial injury of neck, part unspecified" +"S11","OPEN WOUND OF NECK" +"S11.0","Open wound involving larynx and trachea" +"S11.1","Open wound involving thyroid gland" +"S11.2","Open wound involving pharynx and cervical oesophagus" +"S11.7","Multiple open wounds of neck" +"S11.8","Open wound of other parts of neck" +"S11.9","Open wound of neck, part unspecified" +"S12","FRACTURE OF NECK" +"S12.0","Fracture of first cervical vertebra" +"S12.00","Fracture of first cervical vertebra, closed" +"S12.01","Fracture of first cervical vertebra, open" +"S12.1","Fracture of second cervical vertebra" +"S12.10","Fracture of second cervical vertebra, closed" +"S12.11","Fracture of second cervical vertebra, open" +"S12.2","Fracture of other specified cervical vertebra" +"S12.20","Fracture of other specified cervical vertebra, closed" +"S12.21","Fracture of other specified cervical vertebra, open" +"S12.7","Multiple fractures of cervical spine" +"S12.70","Multiple fractures of cervical spine, closed" +"S12.71","Multiple fractures of cervical spine, open" +"S12.8","Fracture of other parts of neck" +"S12.80","Fracture of other parts of neck, closed" +"S12.81","Fracture of other parts of neck, open" +"S12.9","Fracture of neck, part unspecified" +"S12.90","Fracture of neck, part unspecified, closed" +"S12.91","Fracture of neck, part unspecified, open" +"S13","Dislocation, sprain and strain of joints and ligaments at neck level" +"S13.0","Traumatic rupture of cervical intervertebral disc" +"S13.1","Dislocation of cervical vertebra" +"S13.2","Dislocation of other and unspecified parts of neck" +"S13.3","Multiple dislocations of neck" +"S13.4","Sprain and strain of cervical spine" +"S13.5","Sprain and strain of thyroid region" +"S13.6","Sprain and strain of joints and ligaments of other and unspecified parts of neck" +"S14","INJURY OF NERVES AND SPINAL CORD AT NECK LEVEL" +"S14.0","Concussion and oedema of cervical spinal cord" +"S14.1","Other and unspecified injuries of cervical spinal cord" +"S14.2","Injury of nerve root of cervical spine" +"S14.3","Injury of brachial plexus" +"S14.4","Injury of peripheral nerves of neck" +"S14.5","Injury of cervical sympathetic nerves" +"S14.6","Injury of other and unspecified nerves of neck" +"S15","INJURY OF BLOOD VESSELS AT NECK LEVEL" +"S15.0","Injury of carotid artery" +"S15.1","Injury of vertebral artery" +"S15.2","Injury of external jugular vein" +"S15.3","Injury of internal jugular vein" +"S15.7","Injury of multiple blood vessels at neck level" +"S15.8","Injury of other blood vessels at neck level" +"S15.9","Injury of unspecified blood vessel at neck level" +"S16","INJURY OF MUSCLE AND TENDON AT NECK LEVEL" +"S17","CRUSHING INJURY OF NECK" +"S17.0","Crushing injury of larynx and trachea" +"S17.8","Crushing injury of other parts of neck" +"S17.9","Crushing injury of neck, part unspecified" +"S18","TRAUMATIC AMPUTATION AT NECK LEVEL" +"S19","Other and unspecified injuries of neck" +"S19.7","Multiple injuries of neck" +"S19.8","Other specified injuries of neck" +"S19.9","Unspecified injury of neck" +"S20","SUPERFICIAL INJURY OF THORAX" +"S20.0","Contusion of breast" +"S20.1","Other and unspecified superficial injuries of breast" +"S20.2","Contusion of thorax" +"S20.3","Other superficial injuries of front wall of thorax" +"S20.4","Other superficial injuries of back wall of thorax" +"S20.7","Multiple superficial injuries of thorax" +"S20.8","Superficial injury of other and unspecified parts of thorax" +"S21","OPEN WOUND OF THORAX" +"S21.0","Open wound of breast" +"S21.1","Open wound of front wall of thorax" +"S21.2","Open wound of back wall of thorax" +"S21.7","Multiple open wounds of thoracic wall" +"S21.8","Open wound of other parts of thorax" +"S21.9","Open wound of thorax, part unspecified" +"S22","Fracture of rib(s), sternum and thoracic spine" +"S22.0","Fracture of thoracic vertebra" +"S22.00","Fracture of thoracic vertebra, closed" +"S22.01","Fracture of thoracic vertebra, open" +"S22.1","Multiple fractures of thoracic spine" +"S22.10","Multiple fractures of thoracic spine, closed" +"S22.11","Multiple fractures of thoracic spine, open" +"S22.2","Fracture of sternum" +"S22.20","Fracture of sternum, closed" +"S22.21","Fracture of sternum, open" +"S22.3","Fracture of rib" +"S22.30","Fracture of rib, closed" +"S22.31","Fracture of rib, open" +"S22.4","Multiple fractures of ribs" +"S22.40","Multiple fractures of ribs, closed" +"S22.41","Multiple fractures of ribs, open" +"S22.5","Flail chest" +"S22.50","Flail chest, closed" +"S22.51","Flail chest, open" +"S22.8","Fracture of other parts of bony thorax" +"S22.80","Fracture of other parts of bony thorax, closed" +"S22.81","Fracture of other parts of bony thorax, open" +"S22.9","Fracture of bony thorax, part unspecified" +"S22.90","Fracture of bony thorax, part unspecified, closed" +"S22.91","Fracture of bony thorax, part unspecified, open" +"S23","DISLOCATION, SPRAIN AND STRAIN OF JOINTS AND LIGAMENTS OF THORAX" +"S23.0","Traumatic rupture of thoracic intervertebral disc" +"S23.1","Dislocation of thoracic vertebra" +"S23.2","Dislocation of other and unspecified parts of thorax" +"S23.3","Sprain and strain of thoracic spine" +"S23.4","Sprain and strain of ribs and sternum" +"S23.5","Sprain and strain of other and unspecified parts of thorax" +"S24","INJURY OF NERVES AND SPINAL CORD AT THORAX LEVEL" +"S24.0","Concussion and oedema of thoracic spinal cord" +"S24.1","Other and unspecified injuries of thoracic spinal cord" +"S24.2","Injury of nerve root of thoracic spine" +"S24.3","Injury of peripheral nerves of thorax" +"S24.4","Injury of thoracic sympathetic nerves" +"S24.5","Injury of other nerves of thorax" +"S24.6","Injury of unspecified nerve of thorax" +"S25","INJURY OF BLOOD VESSELS OF THORAX" +"S25.0","Injury of thoracic aorta" +"S25.1","Injury of innominate or subclavian artery" +"S25.2","Injury of superior vena cava" +"S25.3","Injury of innominate or subclavian vein" +"S25.4","Injury of pulmonary blood vessels" +"S25.5","Injury of intercostal blood vessels" +"S25.7","Injury of multiple blood vessels of thorax" +"S25.8","Injury of other blood vessels of thorax" +"S25.9","Injury of unspecified blood vessel of thorax" +"S26","INJURY OF HEART" +"S26.0","Injury of heart with haemopericardium" +"S26.00","Injury of heart with haemopericardium, without open wound into thoracic cavity" +"S26.01","Injury of heart with haemopericardium, with open wound into thoracic cavity" +"S26.8","Other injuries of heart" +"S26.80","Other injuries of heart, without open wound into thoracic cavity" +"S26.81","Other injuries of heart, with open wound into thoracic cavity" +"S26.9","Injury of heart, unspecified" +"S26.90","Injury of heart, unspecified, withoutopen wound into thoracic cavity" +"S26.91","Injury of heart, unspecified, with open wound into thoracic cavity" +"S27","Injury of other and unspecified intrathoracic organs" +"S27.0","Traumatic pneumothorax" +"S27.00","Traumatic pneumothorax, without open wound into thoracic cavity" +"S27.01","Traumatic pneumothorax, with open wound into thoracic cavity" +"S27.1","Traumatic haemothorax" +"S27.10","Traumatic haemothorax, without open wound into thoracic cavity" +"S27.11","Traumatic haemothorax, with open wound into thoracic cavity" +"S27.2","Traumatic haemopneumothorax" +"S27.20","Traumatic haemopneumothorax, without open wound into thoracic cavity" +"S27.21","Traumatic haemopneumothorax, with open wound into thoracic cavity" +"S27.3","Other injuries of lung" +"S27.30","Other injuries of lung, without open wound into thoracic cavity" +"S27.31","Other injuries of lung, with open wound into thoracic cavity" +"S27.4","Injury of bronchus" +"S27.40","Injury of bronchus, without open wound into thoracic cavity" +"S27.41","Injury of bronchus, with open wound into thoracic cavity" +"S27.5","Injury of thoracic trachea" +"S27.50","Injury of thoracic trachea, without open wound into thoracic cavity" +"S27.51","Injury of thoracic trachea, with open wound into thoracic cavity" +"S27.6","Injury of pleura" +"S27.60","Injury of pleura, without open wound into thoracic cavity" +"S27.61","Injury of pleura, with open wound into thoracic cavity" +"S27.7","Multiple injuries of intrathoracic organs" +"S27.70","Multiple injuries of intrathoracic organs, without open wound into thoracic cavity" +"S27.71","Multiple injuries of intrathoracic organs, with open wound into thoracic cavity" +"S27.8","Injury of other specified intrathoracic organs" +"S27.80","Injury of other specified intrathoracic organs, without open wound into thoracic cavity" +"S27.81","Injury of other specified intrathoracic organs, with open wound into thoracic cavity" +"S27.9","Injury of unspecified intrathoracic organ" +"S27.90","Injury of unspecified intrathoracic organ, without open wound into thoracic cavity" +"S27.91","Injury of unspecified intrathoracic organ, with open wound into thoracic cavity" +"S28","CRUSHING INJURY OF THORAX AND TRAUMATIC AMPUTATION OF PART OF THORAX" +"S28.0","Crushed chest" +"S28.1","Traumatic amputation of part of thorax" +"S29","Other and unspecified injuries of thorax" +"S29.0","Injury of muscle and tendon at thorax level" +"S29.7","Multiple injuries of thorax" +"S29.8","Other specified injuries of thorax" +"S29.9","Unspecified injury of thorax" +"S30","Superficial injury of abdomen, lower back and pelvis" +"S30.0","Contusion of lower back and pelvis" +"S30.1","Contusion of abdominal wall" +"S30.2","Contusion of external genital organs" +"S30.7","Multiple superficial injuries of abdomen lower back and pelvis" +"S30.8","Other superficial injuries of abdomen, lower back and pelvis" +"S30.9","Superficial injury of abdomen lower back and pelvis, part unspecified" +"S31","OPEN WOUND OF ABDOMEN, LOWER BACK AND PELVIS" +"S31.0","Open wound of lower back and pelvis" +"S31.1","Open wound of abdominal wall" +"S31.2","Open wound of penis" +"S31.3","Open wound of scrotum and testes" +"S31.4","Open wound of vagina and vulva" +"S31.5","Open wound of other and unspecified external genital organs" +"S31.7","Multiple open wounds of abdomen, lower back and pelvis" +"S31.8","Open wound of other and unspecified parts of abdomen" +"S32","FRACTURE OF LUMBAR SPINE AND PELVIS" +"S32.0","Fracture of lumbar vertebra" +"S32.00","Fracture of lumbar vertebra, closed" +"S32.01","Fracture of lumbar vertebra, open" +"S32.1","Fracture of sacrum" +"S32.10","Fracture of sacrum, closed" +"S32.11","Fracture of sacrum, open" +"S32.2","Fracture of coccyx" +"S32.20","Fracture of coccyx, closed" +"S32.21","Fracture of coccyx, open" +"S32.3","Fracture of ilium" +"S32.30","Fracture of ilium, closed" +"S32.31","Fracture of ilium, open" +"S32.4","Fracture of acetabulum" +"S32.40","Fracture of acetabulum, closed" +"S32.41","Fracture of acetabulum, open" +"S32.5","Fracture of pubis" +"S32.50","Fracture of pubis, closed" +"S32.51","Fracture of pubis, open" +"S32.7","Multiple fractures of lumbar spine and pelvis" +"S32.70","Multiple fractures of lumbar spine and pelvis, closed" +"S32.71","Multiple fractures of lumbar spine and pelvis, open" +"S32.8","Fracture of oth unspecified parts of lumbar spine and pelvis" +"S32.80","Fracture of other and unspecified parts of lumbar spine and pelvis, closed" +"S32.81","Fracture of other and unspecified parts of lumbar spine and pelvis, open" +"S33","Dislocation, sprain and strain of joints and ligaments of lumbar spine and pelvis" +"S33.0","Traumatic rupture of lumbar intervertebral disc" +"S33.1","Dislocation of lumbar vertebra" +"S33.2","Dislocation of sacroiliac and sacrococcygeal joint" +"S33.3","Dislocation oth and unspec parts of lumbar spine and pelvis" +"S33.4","Traumatic rupture of symphysis pubis" +"S33.5","Sprain and strain of lumbar spine" +"S33.6","Sprain and strain of sacroiliac joint" +"S33.7","Sprain and strain of other and unspec partsof lumbar spine pelvis" +"S34","INJURY OF NERVES AND LUMBAR SPINAL CORD AT ABDOMEN, LOWER BACK AND PELVIS LEVEL" +"S34.0","Concussion and oedema of lumbar spinal cord" +"S34.1","Other injury of lumbar spinal cord" +"S34.2","Injury of nerve root of lumbar and sacral spine" +"S34.3","Injury of cauda equina" +"S34.4","Injury of lumbosacral plexus" +"S34.5","Injury of lumbar, sacral and pelvic sympathetic nerves" +"S34.6","Injury of peripheral nerve(s) of abdomen, lower back and pelvis" +"S34.8","Injury other and unspecified nerves abdomen lower back and pelvis level" +"S35","INJURY OF BLOOD VESSELS AT ABDOMEN, LOWER BACK AND PELVIS LEVEL" +"S35.0","Injury of abdominal aorta" +"S35.1","Injury of inferior vena cava" +"S35.2","Injury of coeliac or mesenteric artery" +"S35.3","Injury of portal or splenic vein" +"S35.4","Injury of renal blood vessels" +"S35.5","Injury of iliac blood vessels" +"S35.7","Injury of multiple blood vessels at abdomen, lower back and pelvis level" +"S35.8","Injury of other blood vessels at abdomen, lower back and pelvis level" +"S35.9","Injury of unspecified blood vessel abdoment, lower back and pelvis level" +"S36","INJURY OF INTRA-ABDOMINAL ORGANS" +"S36.0","Injury of spleen" +"S36.00","Injury of spleen, without open wound into cavity" +"S36.01","Injury of spleen, with open wound into cavity" +"S36.1","Injury of liver or gallbladder" +"S36.10","Injury of liver or gallbladder, without open wound into cavity" +"S36.11","Injury of liver or gallbladder, with open wound into cavity" +"S36.2","Injury of pancreas" +"S36.20","Injury of pancreas, without open wound into cavity" +"S36.21","Injury of pancreas, with open wound into cavity" +"S36.3","Injury of stomach" +"S36.30","Injury of stomach, without open wound into cavity" +"S36.31","Injury of stomach, with open wound into cavity" +"S36.4","Injury of small intestine" +"S36.40","Injury of small intestine, without open wound into cavity" +"S36.41","Injury of small intestine, with open wound into cavity" +"S36.5","Injury of colon" +"S36.50","Injury of colon, without open wound into cavity" +"S36.51","Injury of colon, with open wound into cavity" +"S36.6","Injury of rectum" +"S36.60","Injury of rectum, without open wound into cavity" +"S36.61","Injury of rectum, with open wound into cavity" +"S36.7","Injury of multiple intra-abdominal organs" +"S36.70","Injury of multiple intra-abdominal organs, without open wound into cavity" +"S36.71","Injury of multiple intra-abdominal organs, with open wound into cavity" +"S36.8","Injury of other intra-abdominal organs" +"S36.80","Injury of other intra-abdominal organs, without open wound into cavity" +"S36.81","Injury of other intra-abdominal organs, with open wound into cavity" +"S36.9","Injury of unspecified intra-abdominal organ" +"S36.90","Injury of unspecified intra-abdominal organ, without open wound into cavity" +"S36.91","Injury of unspecified intra-abdominal organ, with open wound into cavity" +"S37","Injury of urinary and pelvic organs" +"S37.0","Injury of kidney" +"S37.00","Injury of kidney, without open wound into cavity" +"S37.01","Injury of kidney, with open wound into cavity" +"S37.1","Injury of ureter" +"S37.10","Injury of ureter, without open wound into cavity" +"S37.11","Injury of ureter, with open wound into cavity" +"S37.2","Injury of bladder" +"S37.20","Injury of bladder, without open wound into cavity" +"S37.21","Injury of bladder, with open wound into cavity" +"S37.3","Injury of urethra" +"S37.30","Injury of urethra, without open wound into cavity" +"S37.31","Injury of urethra, with open wound into cavity" +"S37.4","Injury of ovary" +"S37.40","Injury of ovary, without open wound into cavity" +"S37.41","Injury of ovary, with open wound into cavity" +"S37.5","Injury of fallopian tube" +"S37.50","Injury of fallopian tube, without open wound into cavity" +"S37.51","Injury of fallopian tube, with open wound into cavity" +"S37.6","Injury of uterus" +"S37.60","Injury of uterus, without open wound into cavity" +"S37.61","Injury of uterus, with open wound into cavity" +"S37.7","Injury of multiple urinary and pelvic organs" +"S37.70","Injury of multiple urinary and pelvic organs, without open wound into cavity" +"S37.71","Injury of multiple urinary and pelvic organs, with open wound into cavity" +"S37.8","Injury of other urinary and pelvic organs" +"S37.80","Injury of other urinary and pelvic organs, without open wound into cavity" +"S37.81","Injury of other urinary and pelvic organs, with open wound into cavity" +"S37.9","Injury of unspecified urinary and pelvic organ" +"S37.90","Injury of unspecified urinary and pelvic organ, without open wound into cavity" +"S37.91","Injury of unspecified urinary and pelvic organ, with open wound into cavity" +"S38","CRUSHING INJURY AND TRAUMATIC AMPUTATION OF PART OF ABDOMEN, LOWER BACK AND PELVIS" +"S38.0","Crushing injury of external genital organs" +"S38.1","Crushing injury of other and unspecified part of abdomen, lower back and pelvis" +"S38.2","Traumatic amputation of external genital organs" +"S38.3","Traumatic amputation of other and unspecified parts of abdomen, low back and pelvis" +"S39","Other and unspecified injuries of abdomen, lower back and pelvis" +"S39.0","Injury of muscle and tendon of abdomen lower back and pelvis" +"S39.6","Injury of intra-abdominal organ(s) with pelvic organ(s)" +"S39.7","Other multiple injuries of abdomen, lower back and pelvis" +"S39.8","Other specified injuries of abdomen, lower back and pelvis" +"S39.9","Unspecified injury of abdomen, lower back and pelvis" +"S40","SUPERFICIAL INJURY OF SHOULDER AND UPPER ARM" +"S40.0","Contusion of shoulder and upper arm" +"S40.7","Multiple superficial injuries of shoulder and upper arm" +"S40.8","Other superficial injuries of shoulder and upper arm" +"S40.9","Superficial injury of shoulder and upper arm, Unspecified" +"S41","OPEN WOUND OF SHOULDER AND UPPER ARM" +"S41.0","Open wound of shoulder" +"S41.1","Open wound of upper arm" +"S41.7","Multiple open wounds of shoulder and upper arm" +"S41.8","Open wound of other and unspecified parts of shoulder girdle" +"S42","FRACTURE OF SHOULDER AND UPPER ARM" +"S42.0","Fracture of clavicle" +"S42.00","Fracture of clavicle, closed" +"S42.01","Fracture of clavicle, open" +"S42.1","Fracture of scapula" +"S42.10","Fracture of scapula, closed" +"S42.11","Fracture of scapula, open" +"S42.2","Fracture of upper end of humerus" +"S42.20","Fracture of upper end of humerus, closed" +"S42.21","Fracture of upper end of humerus, open" +"S42.3","Fracture of shaft of humerus" +"S42.30","Fracture of shaft of humerus, closed" +"S42.31","Fracture of shaft of humerus, open" +"S42.4","Fracture of lower end of humerus" +"S42.40","Fracture of lower end of humerus, closed" +"S42.41","Fracture of lower end of humerus, open" +"S42.7","Multiple fractures of clavicle, scapula and humerus" +"S42.70","Multiple fractures of clavicle, scapula and humerus, closed" +"S42.71","Multiple fractures of clavicle, scapula and humerus, open" +"S42.8","Fracture of other parts of shoulder and upper arm" +"S42.80","Fracture of other parts of shoulder and upper arm, closed" +"S42.81","Fracture of other parts of shoulder and upper arm, open" +"S42.9","Fracture of shoulder girdle, part unspecified" +"S42.90","Fracture of shoulder girdle, part unspecified, closed" +"S42.91","Fracture of shoulder girdle, part unspecified, open" +"S43","Dislocation, sprain and strain of joints and ligaments of shoulder girdle" +"S43.0","Dislocation of shoulder joint" +"S43.1","Dislocation of acromioclavicular joint" +"S43.2","Dislocation of sternoclavicular joint" +"S43.3","Dislocation of other and unspec parts of shoulder girdle" +"S43.4","Sprain and strain of shoulder joint" +"S43.5","Sprain and strain of acromioclavicular joint" +"S43.6","Sprain and strain of sternoclavicular joint" +"S43.7","Sprain and strain of oth and unspec part of shoulder girdle" +"S44","INJURY OF NERVES AT SHOULDER AND UPPER ARM LEVEL" +"S44.0","Injury of ulnar nerve at upper arm level" +"S44.1","Injury of median nerve at upper arm level" +"S44.2","Injury of radial nerve at upper arm level" +"S44.3","Injury of axillary nerve" +"S44.4","Injury of musculocutaneous nerve" +"S44.5","Injury of cutaneous sensory nerve at shoulder and upper arm level" +"S44.7","Injury of multiple nerves at shoulder and upper arm level" +"S44.8","Injury of other nerves at shoulder and upper arm level" +"S44.9","Injury of unspecified nerve at shoulder and upper arm level" +"S45","INJURY OF BLOOD VESSELS AT SHOULDER AND UPPER ARM LEVEL" +"S45.0","Injury of axillary artery" +"S45.1","Injury of brachial artery" +"S45.2","Injury of axillary or brachial vein" +"S45.3","Injury of superficial vein at shoulder and upper arm level" +"S45.7","Injury of multiple blood vessels shoulder and upper arm level" +"S45.8","Injury of oth blood vessels at shoulder and upper arm level" +"S45.9","Injury unspecified blood vessel at shoulder and upper arm level" +"S46","INJURY OF MUSCLE AND TENDON AT SHOULDER AND UPPER ARM LEVEL" +"S46.0","Injury of tendon of the rotator cuff of shoulder" +"S46.1","Injury of muscle and tendon of long head of biceps" +"S46.2","Injury of muscle and tendon of other parts of biceps" +"S46.3","Injury of muscle and tendon of triceps" +"S46.7","Injury multiple muscles and tendons shoulder and upper arm level" +"S46.8","Injury of other muscles and tendons at shoulder and upper arm level" +"S46.9","Injury unspecified muscle and tendon at shoulder and upper arm level" +"S47","CRUSHING INJURY OF SHOULDER AND UPPER ARM" +"S48","TRAUMATIC AMPUTATION OF SHOULDER AND UPPER ARM" +"S48.0","Traumatic amputation at shoulder joint" +"S48.1","Traumatic amputation at level between shoulder and elbow" +"S48.9","Traumatic amputation of shoulder and upper arm level Unspecified" +"S49","Other and unspecified injuries of shoulder and upper arm" +"S49.7","Multiple injuries of shoulder and upper arm" +"S49.8","Other specified injuries of shoulder and upper arm" +"S49.9","Unspecified injury of shoulder and upper arm" +"S50","SUPERFICIAL INJURY OF FOREARM" +"S50.0","Contusion of elbow" +"S50.1","Contusion of Other and Unspecified parts of forearm" +"S50.7","Multiple superficial injuries of forearm" +"S50.8","Other superficial injuries of forearm" +"S50.9","Superficial injury of forearm, unspecified" +"S51","OPEN WOUND OF FOREARM" +"S51.0","Open wound of elbow" +"S51.7","Multiple open wounds of forearm" +"S51.8","Open wound of other parts of forearm" +"S51.9","Open wound of forearm, part unspecified" +"S52","FRACTURE OF FOREARM" +"S52.0","Fracture of upper end of ulna" +"S52.00","Fracture of upper end of ulna, closed" +"S52.01","Fracture of upper end of ulna, open" +"S52.1","Fracture of upper end of radius" +"S52.10","Fracture of upper end of radius, closed" +"S52.11","Fracture of upper end of radius, open" +"S52.2","Fracture of shaft of ulna" +"S52.20","Fracture of shaft of ulna, closed" +"S52.21","Fracture of shaft of ulna, open" +"S52.3","Fracture of shaft of radius" +"S52.30","Fracture of shaft of radius, closed" +"S52.31","Fracture of shaft of radius, open" +"S52.4","Fracture of shafts of both ulna and radius" +"S52.40","Fracture of shafts of both ulna and radius, closed" +"S52.41","Fracture of shafts of both ulna and radius, open" +"S52.5","Fracture of lower end of radius" +"S52.50","Fracture of lower end of radius, closed" +"S52.51","Fracture of lower end of radius, open" +"S52.6","Fracture of lower end of both ulna and radius" +"S52.60","Fracture of lower end of both ulna and radius, closed" +"S52.61","Fracture of lower end of both ulna and radius, open" +"S52.7","Multiple fractures of forearm" +"S52.70","Multiple fractures of forearm , closed" +"S52.71","Multiple fractures of forearm , open" +"S52.8","Fracture of other parts of forearm" +"S52.80","Fracture of other parts of forearm , closed" +"S52.81","Fracture of other parts of forearm , open" +"S52.9","Fracture of forearm, part unspecified" +"S52.90","Fracture of forearm, part unspecified , closed" +"S52.91","Fracture of forearm, part unspecified , open" +"S53","Dislocation, sprain and strain of joints and ligaments of elbow" +"S53.0","Dislocation of radial head" +"S53.1","Dislocation of elbow, unspecified" +"S53.2","Traumatic rupture of radial collateral ligament" +"S53.3","Traumatic rupture of ulnar collateral ligament" +"S53.4","Sprain and strain of elbow" +"S54","INJURY OF NERVES AT FOREARM LEVEL" +"S54.0","Injury of ulnar nerve at forearm level" +"S54.1","Injury of median nerve at forearm level" +"S54.2","Injury of radial nerve at forearm level" +"S54.3","Injury of cutaneous sensory nerve at forearm level" +"S54.7","Injury of multiple nerves at forearm level" +"S54.8","Injury of other nerves at forearm level" +"S54.9","Injury of unspecified nerve at forearm level" +"S55","INJURY OF BLOOD VESSELS AT FOREARM LEVEL" +"S55.0","Injury of ulnar artery at forearm level" +"S55.1","Injury of radial artery at forearm level" +"S55.2","Injury of vein at forearm level" +"S55.7","Injury of multiple blood vessels at forearm level" +"S55.8","Injury of other blood vessels at forearm level" +"S55.9","Injury of unspecified blood vessel at forearm level" +"S56","INJURY OF MUSCLE AND TENDON AT FOREARM LEVEL" +"S56.0","Injury of flexor muscle and tendon of thumb at forearm level" +"S56.1","Injury long flexor muscle and tendon other finger(s) forearm level" +"S56.2","Injury of other flexor muscle and tendon at forearm level" +"S56.3","Injury extensor or abductor muscles and tendons of thumb at forearm level" +"S56.4","Injury extensor muscle and tendon oth finger(s) at forearm level" +"S56.5","Injury of other extensor muscle and tendon at forearm level" +"S56.7","Injury of multiple muscles and tendons at forearm level" +"S56.8","Injury other and unspecified muscles and tendons at forearm level" +"S57","CRUSHING INJURY OF FOREARM" +"S57.0","Crushing injury of elbow" +"S57.8","Crushing injury of other parts of forearm" +"S57.9","Crushing injury of forearm, part unspecified" +"S58","TRAUMATIC AMPUTATION OF FOREARM" +"S58.0","Traumatic amputation at elbow level" +"S58.1","Traumatic amputation at level between elbow and wrist" +"S58.9","Traumatic amputation of forearm, level unspecified" +"S59","Other and unspecified injuries of forearm" +"S59.7","Multiple injuries of forearm" +"S59.8","Other specified injuries of forearm" +"S59.9","Unspecified injury of forearm" +"S60","SUPERFICIAL INJURY OF WRIST AND HAND" +"S60.0","Contusion of finger(s) without damage to nail" +"S60.1","Contusion of finger(s) with damage to nail" +"S60.2","Contusion of other parts of wrist and hand" +"S60.7","Multiple superficial injuries of wrist and hand" +"S60.8","Other superficial injuries of wrist and hand" +"S60.9","Superficial injury of wrist and hand, unspecified" +"S61","OPEN WOUND OF WRIST AND HAND" +"S61.0","Open wound of finger(s) without damage to nail" +"S61.1","Open wound of finger(s) with damage to nail" +"S61.7","Multiple open wounds of wrist and hand" +"S61.8","Open wound of other parts of wrist and hand" +"S61.9","Open wound of wrist and hand part, part unspecified" +"S62","FRACTURE AT WRIST AND HAND LEVEL" +"S62.0","Fracture of navicular [scaphoid] bone of hand" +"S62.00","Fracture of navicular [scaphoid] bone of hand , closed" +"S62.01","Fracture of navicular [scaphoid] bone of hand , open" +"S62.1","Fracture of other carpal bone(s)" +"S62.10","Fracture of other carpal bone(s) , closed" +"S62.11","Fracture of other carpal bone(s) , open" +"S62.2","Fracture of first metacarpal bone" +"S62.20","Fracture of first metacarpal bone , closed" +"S62.21","Fracture of first metacarpal bone , open" +"S62.3","Fracture of other metacarpal bone" +"S62.30","Fracture of other metacarpal bone, closed" +"S62.31","Fracture of other metacarpal bone, open" +"S62.4","Multiple fractures of metacarpal bones" +"S62.40","Multiple fractures of metacarpal bones , closed" +"S62.41","Multiple fractures of metacarpal bones , open" +"S62.5","Fracture of thumb" +"S62.50","Fracture of thumb , closed" +"S62.51","Fracture of thumb , open" +"S62.6","Fracture of other finger" +"S62.60","Fracture of other finger , closed" +"S62.61","Fracture of other finger , open" +"S62.7","Multiple fractures of fingers" +"S62.70","Multiple fractures of fingers, closed" +"S62.71","Multiple fractures of fingers, open" +"S62.8","Fracture of other and unspecified parts of wrist and hand" +"S62.80","Fracture of other and unspecified parts of wrist and hand, closed" +"S62.81","Fracture of other and unspecified parts of wrist and hand, open" +"S63","Dislocation, sprain and strain of joints and ligaments at wrist and hand level" +"S63.0","Dislocation of wrist" +"S63.1","Dislocation of finger" +"S63.2","Multiple dislocations of fingers" +"S63.3","Traumatic rupture of ligament of wrist and carpus" +"S63.4","Traumatic rupture of ligament of finger at metacarpophalangeal and interphalangeal joint(s)" +"S63.5","Sprain and strain of wrist" +"S63.6","Sprain and strain of finger(s)" +"S63.7","Sprain and strain of other and unspecified parts of hand" +"S64","INJURY OF NERVES AT WRIST AND HAND LEVEL" +"S64.0","Injury of ulnar nerve at wrist and hand level" +"S64.1","Injury of median nerve at wrist and hand level" +"S64.2","Injury of radial nerve at wrist and hand level" +"S64.3","Injury of digital nerve of thumb" +"S64.4","Injury of digital nerve of other finger" +"S64.7","Injury of multiple nerves at wrist and hand level" +"S64.8","Injury of other nerves at wrist and hand level" +"S64.9","Injury of unspecified nerve at wrist and hand level" +"S65","INJURY OF BLOOD VESSELS AT WRIST AND HAND LEVEL" +"S65.0","Injury of ulnar artery at wrist and hand level" +"S65.1","Injury of radial artery at wrist and hand level" +"S65.2","Injury of superficial palmar arch" +"S65.3","Injury of deep palmar arch" +"S65.4","Injury of blood vessel(s) of thumb" +"S65.5","Injury of blood vessel(s) of other finger" +"S65.7","Injury of multiple blood vessels at wrist and hand level" +"S65.8","Injury of other blood vessels at wrist and hand level" +"S65.9","Injury of unspecified blood vessel at wrist and hand level" +"S66","INJURY OF MUSCLE AND TENDON AT WRIST AND HAND LEVEL" +"S66.0","Injury of long flexor muscle and tendon of thumb at wrist and hand level" +"S66.1","Injury of flexor muscle and tendon of other finger at wrist and hand level" +"S66.2","Injury of extensor muscle and tendon of thumb at wrist and hand level" +"S66.3","Injury of extensor muscle and tendon of other finger at wrist and hand level" +"S66.4","Injury of intrinsic muscle and tendon of thumb at wrist and hand level" +"S66.5","Injury of intrinsic muscle and tendon other finger at wrist and hand level" +"S66.6","Injury of multiple flexor muscles and tendons at wrist and hand level" +"S66.7","Injury of multiple extensor muscles and tendons at wrist and hand level" +"S66.8","Injury of other muscles and tendons at wrist and hand level" +"S66.9","Injury unspecified muscle and tendon at wrist and hand level" +"S67","CRUSHING INJURY OF WRIST AND HAND" +"S67.0","Crushing injury of thumb and other finger(s)" +"S67.8","Crush injury other and unspecified parts of wrist and hand" +"S68","TRAUMATIC AMPUTATION OF WRIST AND HAND" +"S68.0","Traumatic amputation of thumb (complete)(partial)" +"S68.1","Traumatic amputation of other single finger (complete)(partial)" +"S68.2","Traumatic amputation two or more fingers alone (cmpte/part)" +"S68.3","Combination traumatic amputation of (part of) finger(s) with other parts wrist and hand" +"S68.4","Traumatic amputation of hand at wrist level" +"S68.8","Traumatic amputation of other parts of wrist and hand" +"S68.9","Traumatic amputation of wrist and hand, level unspecified" +"S69","Other and unspecified injuries of wrist and hand" +"S69.7","Multiple injuries of wrist and hand" +"S69.8","Other specified injuries of wrist and hand" +"S69.9","Unspecified injury of wrist and hand" +"S70","SUPERFICIAL INJURY OF HIP AND THIGH" +"S70.0","Contusion of hip" +"S70.1","Contusion of thigh" +"S70.7","Multiple superficial injuries of hip and thigh" +"S70.8","Other superficial injuries of hip and thigh" +"S70.9","Superficial injury of hip and thigh, unspecified" +"S71","OPEN WOUND OF HIP AND THIGH" +"S71.0","Open wound of hip" +"S71.1","Open wound of thigh" +"S71.7","Multiple open wounds of hip and thigh" +"S71.8","Open wound of other and unspecified parts of pelvic girdle" +"S72","FRACTURE OF FEMUR" +"S72.0","Fracture of neck of femur" +"S72.00","Fracture of neck of femur, closed" +"S72.01","Fracture of neck of femur, open" +"S72.1","Pertrochanteric fracture" +"S72.10","Pertrochanteric fracture, closed" +"S72.11","Pertrochanteric fracture, open" +"S72.2","Subtrochanteric fracture" +"S72.20","Subtrochanteric fracture, closed" +"S72.21","Subtrochanteric fracture, open" +"S72.3","Fracture of shaft of femur" +"S72.30","Fracture of shaft of femur, closed" +"S72.31","Fracture of shaft of femur, open" +"S72.4","Fracture of lower end of femur" +"S72.40","Fracture of lower end of femur, closed" +"S72.41","Fracture of lower end of femur, open" +"S72.7","Multiple fractures of femur" +"S72.70","Multiple fractures of femur, closed" +"S72.71","Multiple fractures of femur, open" +"S72.8","Fractures of other parts of femur" +"S72.80","Fractures of other parts of femur, closed" +"S72.81","Fractures of other parts of femur, open" +"S72.9","Fracture of femur, part unspecified" +"S72.90","Fracture of femur, part unspecified, closed" +"S72.91","Fracture of femur, part unspecified , open" +"S73","DISLOCATION, SPRAIN AND STRAIN OF JOINT AND LIGAMENTS OF HIP" +"S73.0","Dislocation of hip" +"S73.1","Sprain and strain of hip" +"S74","INJURY OF NERVES AT HIP AND THIGH LEVEL" +"S74.0","Injury of sciatic nerve at hip and thigh level" +"S74.1","Injury of femoral nerve at hip and thigh level" +"S74.2","Injury of cutaneous sensory nerve at hip and thigh level" +"S74.7","Injury of multiple nerves at hip and thigh level" +"S74.8","Injury of other nerves at hip and thigh level" +"S74.9","Injury of unspecified nerve at hip and thigh level" +"S75","INJURY OF BLOOD VESSELS AT HIP AND THIGH LEVEL" +"S75.0","Injury of femoral artery" +"S75.1","Injury of femoral vein at hip and thigh level" +"S75.2","Injury of greater saphenous vein at hip and thigh level" +"S75.7","Injury of multiple blood vessels at hip and thigh level" +"S75.8","Injury of other blood vessels at hip and thigh level" +"S75.9","Injury of unspecified blood vessel at hip and thigh level" +"S76","INJURY OF MUSCLE AND TENDON AT HIP AND THIGH LEVEL" +"S76.0","Injury of muscle and tendon of hip" +"S76.1","Injury of quadriceps muscle and tendon" +"S76.2","Injury of adductor muscle and tendon of thigh" +"S76.3","Injury of muscle and tendon of the posterior muscle group at thigh level" +"S76.4","Injury of other and unspec muscles and tendons at thigh level" +"S76.7","Injury of multiple muscles and tendons at hip & thigh level" +"S77","CRUSHING INJURY OF HIP AND THIGH" +"S77.0","Crushing injury of hip" +"S77.1","Crushing injury of thigh" +"S77.2","Crushing injury of hip with thigh" +"S78","TRAUMATIC AMPUTATION OF HIP AND THIGH" +"S78.0","Traumatic amputation at hip joint" +"S78.1","Traumatic amputation at level between hip and knee" +"S78.9","Traumatic amputation of hip and thigh, level Unspecified" +"S79","Other and specified injuries of hip and thigh" +"S79.7","Multiple injuries of hip and thigh" +"S79.8","Other specified injuries of hip and thigh" +"S79.9","Unspecified injury of hip and thigh" +"S80","SUPERFICIAL INJURY OF LOWER LEG" +"S80.0","Contusion of knee" +"S80.1","Contusion of other and unspecified parts of lower leg" +"S80.7","Multiple superficial injuries of lower leg" +"S80.8","Other superficial injuries of lower leg" +"S80.9","Superficial injury of lower leg, Unspecified" +"S81","OPEN WOUND OF LOWER LEG" +"S81.0","Open wound of knee" +"S81.7","Multiple open wounds of lower leg" +"S81.8","Open wound of other parts of lower leg" +"S81.9","Open wound of lower leg, part unspecified" +"S82","FRACTURE OF LOWER LEG, INCLUDING ANKLE" +"S82.0","Fracture of patella" +"S82.00","Fracture of patella, closed" +"S82.01","Fracture of patella, open" +"S82.1","Fracture of upper end of tibia" +"S82.10","Fracture of upper end of tibia, closed" +"S82.11","Fracture of upper end of tibia , open" +"S82.2","Fracture of shaft of tibia" +"S82.20","Fracture of shaft of tibia, closed" +"S82.21","Fracture of shaft of tibia , open" +"S82.3","Fracture of lower end of tibia" +"S82.30","Fracture of lower end of tibia, closed" +"S82.31","Fracture of lower end of tibia , open" +"S82.4","Fracture of fibula alone" +"S82.40","Fracture of fibula alone, closed" +"S82.41","Fracture of fibula alone , open" +"S82.5","Fracture of medial malleolus" +"S82.50","Fracture of medial malleolus, closed" +"S82.51","Fracture of medial malleolus , open" +"S82.6","Fracture of lateral malleolus" +"S82.60","Fracture of lateral malleolus, closed" +"S82.61","Fracture of lateral malleolus, open" +"S82.7","Multiple fractures of lower leg" +"S82.70","Multiple fractures of lower leg, closed" +"S82.71","Multiple fractures of lower leg, open" +"S82.8","Fractures of other parts of lower leg" +"S82.80","Fractures of other parts of lower leg, closed" +"S82.81","Fractures of other parts of lower leg, open" +"S82.9","Fracture of lower leg, part unspecified" +"S82.90","Fracture of lower leg, part unspecified, closed" +"S82.91","Fracture of lower leg, part unspecified , open" +"S83","Dislocation, sprain and strain of joints and ligaments of knee" +"S83.0","Dislocation of patella" +"S83.1","Dislocation of knee" +"S83.2","Tear of meniscus, current" +"S83.3","Tear of articular cartilage of knee, current" +"S83.4","Sprain and strain involving (fibular)(tibial) collateral lig knee" +"S83.5","Sprain and strain involving (anterior)(posterior) cruciate lig knee" +"S83.6","Sprain and strain of other and unspecified parts of knee" +"S83.7","Injury to multiple structures of knee" +"S84","INJURY OF NERVES AT LOWER LEG LEVEL" +"S84.0","Injury of tibial nerve at lower leg level" +"S84.1","Injury of peroneal nerve at lower leg level" +"S84.2","Injury of cutaneous sensory nerve at lower leg level" +"S84.7","Injury of multiple nerves at lower leg level" +"S84.8","Injury of other nerves at lower leg level" +"S84.9","Injury of unspecified nerve at lower leg level" +"S85","INJURY OF BLOOD VESSELS AT LOWER LEG LEVEL" +"S85.0","Injury of popliteal artery" +"S85.1","Injury of (anterior)(posterior) tibial artery" +"S85.2","Injury of peroneal artery" +"S85.3","Injury of greater saphenous vein at lower leg level" +"S85.4","Injury of lesser saphenous vein at lower leg level" +"S85.5","Injury of popliteal vein" +"S85.7","Injury of multiple blood vessels at lower leg level" +"S85.8","Injury of other blood vessels at lower leg level" +"S85.9","Injury of unspecified blood vessel at lower leg level" +"S86","Injury of muscle and tendon at lower leg level" +"S86.0","Injury of Achilles tendon" +"S86.1","Injury other muscle(s) tendon(s) of posterior muscle group at low leg level" +"S86.2","Injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level" +"S86.3","Injury of muscle(s) and tendon(s) peroneal muscle group at lower leg level" +"S86.7","Injury of multiple muscles and tendons at lower leg level" +"S86.8","Injury of other muscles and tendons at lower leg level" +"S86.9","Injury of unspecified muscle and tendon at lower leg level" +"S87","CRUSHING INJURY OF LOWER LEG" +"S87.0","Crushing injury of knee" +"S87.8","Crushing injury of other and unspecified parts of lower leg" +"S88","TRAUMATIC AMPUTATION OF LOWER LEG" +"S88.0","Traumatic amputation at knee level" +"S88.1","Traumatic amputation at level between knee and ankle" +"S88.9","Traumatic amputation of lower leg, level unspecified" +"S89","Other and unspecified injuries of lower leg" +"S89.7","Multiple injuries of lower leg" +"S89.8","Other specified injuries of lower leg" +"S89.9","Unspecified injury of lower leg" +"S90","SUPERFICIAL INJURY OF ANKLE AND FOOT" +"S90.0","Contusion of ankle" +"S90.1","Contusion of toe(s) without damage to nail" +"S90.2","Contusion of toe(s) with damage to nail" +"S90.3","Contusion of other and unspecified parts of foot" +"S90.7","Multiple superficial Injuries of ankle and foot" +"S90.8","Other superficial Injuries of ankle and foot" +"S90.9","Superficial injury of ankle and foot, unspecified" +"S91","OPEN WOUND OF ANKLE AND FOOT" +"S91.0","Open wound of ankle" +"S91.1","Open wound of toe(s) without damage to nail" +"S91.2","Open wound of toe(s) with damage to nail" +"S91.3","Open wound of other parts of foot" +"S91.7","Multiple open wounds of ankle and foot" +"S92","FRACTURE OF FOOT, EXCEPT ANKLE" +"S92.0","Fracture of calcaneus" +"S92.00","Fracture of calcaneus, closed" +"S92.01","Fracture of calcaneus , open" +"S92.1","Fracture of talus" +"S92.10","Fracture of talus, closed" +"S92.11","Fracture of talus, open" +"S92.2","Fracture of other tarsal bone(s)" +"S92.20","Fracture of other tarsal bone(s) , closed" +"S92.21","Fracture of other tarsal bone(s) , open" +"S92.3","Fracture of metatarsal bone" +"S92.30","Fracture of metatarsal bone, closed" +"S92.31","Fracture of metatarsal bone , open" +"S92.4","Fracture of great toe" +"S92.40","Fracture of great toe, closed" +"S92.41","Fracture of great toe, open" +"S92.5","Fracture of other toe" +"S92.50","Fracture of other toe, closed" +"S92.51","Fracture of other toe, open" +"S92.7","Multiple fractures of foot" +"S92.70","Multiple fractures of foot, closed" +"S92.71","Multiple fractures of foot , open" +"S92.9","Fracture of foot, unspecified" +"S92.90","Fracture of foot, unspecified, closed" +"S92.91","Fracture of foot, unspecified , open" +"S93","Dislocation, sprain and strain of joints and ligaments at ankle and foot level" +"S93.0","Dislocation of ankle joint" +"S93.1","Dislocation of toe(s)" +"S93.2","Rupture of ligaments at ankle and foot level" +"S93.3","Dislocation of other and unspecified parts of foot" +"S93.4","Sprain and strain of ankle" +"S93.5","Sprain and strain of toe(s)" +"S93.6","Sprain and strain of other and Unspecified parts of foot" +"S94","INJURY OF NERVES AT ANKLE AND FOOT LEVEL" +"S94.0","Injury of lateral plantar nerve" +"S94.1","Injury of medial plantar nerve" +"S94.2","Injury of deep peroneal nerve at ankle and foot level" +"S94.3","Injury of cutaneous sensory nerve at ankle and foot level" +"S94.7","Injury of multiple nerves at ankle and foot level" +"S94.8","Injury of other nerves at ankle and foot level" +"S94.9","Injury of unspecified nerve at ankle and foot level" +"S95","INJURY OF BLOOD VESSELS AT ANKLE AND FOOT LEVEL" +"S95.0","Injury of dorsal artery of foot" +"S95.1","Injury of plantar artery of foot" +"S95.2","Injury of dorsal vein of foot" +"S95.7","Injury of multiple blood vessels at ankle and foot level" +"S95.8","Injury of other blood vessels at ankle and foot level" +"S95.9","Injury of unspecified blood vessel at ankle and foot level" +"S96","INJURY OF MUSCLE AND TENDON AT ANKLE AND FOOT LEVEL" +"S96.0","Injury muscle and tendon of long flexor muscle toe at ankle and foot level" +"S96.1","Injury muscle & tendon long extensor muscle toe at ankle and foot level" +"S96.2","Injury of intrinsic muscle and tendon at ankle and foot level" +"S96.7","Injury of multi muscles and tendons at ankle and foot level" +"S96.8","Injury of other muscles and tendons at ankle and foot level" +"S96.9","Injury of unspec muscle and tendon at ankle and foot level" +"S97","CRUSHING INJURY OF ANKLE AND FOOT" +"S97.0","Crushing injury of ankle" +"S97.1","Crushing injury of toe(s)" +"S97.8","Crushing injury of other parts of ankle and foot" +"S98","TRAUMATIC AMPUTATION OF ANKLE AND FOOT" +"S98.0","Traumatic amputation of foot at ankle level" +"S98.1","Traumatic amputation of one toe" +"S98.2","Traumatic amputation of two or more toes" +"S98.3","Traumatic amputation of other parts of foot" +"S98.4","Traumatic amputation of foot, level unspecified" +"S99","Other and unspecified injuries of ankle and foot" +"S99.7","Multiple injuries of ankle and foot" +"S99.8","Other specified injuries of ankle and foot" +"S99.9","Unspecified injury of ankle and foot" +"T00","SUPERFICIAL INJURIES INVOLVING MULTIPLE BODY REGIONS" +"T00.0","Superficial injuries involving head with neck" +"T00.1","Superficial injuries involving thorax with abdomen, lower back and pelvis" +"T00.2","Superficial injuries involving multiple region of upper limb(s)" +"T00.3","Superficial injuries involving multiple region of lower limb(s)" +"T00.6","Superficial injuries involving multiple region upper limb(s) with lower limb(s)" +"T00.8","Superfic injuries involving oth combinations of body regions" +"T00.9","Multiple superficial injuries, unspecified" +"T01","OPEN WOUNDS INVOLVING MULTIPLE BODY REGIONS" +"T01.0","Open wounds involving head with neck" +"T01.1","Open wounds involving thorax wth abdomen, lower back and pelvis" +"T01.2","Open wounds involving multiple regions of upper limb(s)" +"T01.3","Open wounds involving multiple regions of lower limb(s)" +"T01.6","Open wounds involving multiple regions of up limb(s) with low limb(s)" +"T01.8","Open wounds involving other combinations of body regions" +"T01.9","Multiple open wounds, unspecified" +"T02","FRACTURES INVOLVING MULTIPLE BODY REGIONS" +"T02.0","Fractures involving head with neck" +"T02.00","Fractures involving head with neck, closed" +"T02.01","Fractures involving head with neck, open" +"T02.1","Fractures involving thorax with lower back and pelvis" +"T02.10","Fractures involving thorax with lower back and pelvis, closed" +"T02.11","Fractures involving thorax with lower back and pelvis, open" +"T02.2","Fractures involving multiple regions of one upper limb" +"T02.20","Fractures involving multiple regions of one upper limb, closed" +"T02.21","Fractures involving multiple regions of one upper limb, open" +"T02.3","Fractures involving multiple regions of one lower limb" +"T02.30","Fractures involving multiple regions of one lower limb, closed" +"T02.31","Fractures involving multiple regions of one lower limb, open" +"T02.4","Fractures involving multiple regions of both upper limbs" +"T02.40","Fractures involving multiple regions of both upper limbs, closed" +"T02.41","Fractures involving multiple regions of both upper limbs, open" +"T02.5","Fractures involving multiple regions of both lower limbs" +"T02.50","Fractures involving multiple regions of both lower limbs, closed" +"T02.51","Fractures involving multiple regions of both lower limbs, open" +"T02.6","Fractures involving multiple regions of up limb(s) with low limb(s)" +"T02.60","Fractures involving multiple regions of up limb(s) with low limb(s), closed" +"T02.61","Fractures involving multiple regions of up limb(s) with low limb(s), open" +"T02.7","Fractures involving thorax with lower back and pelvis with limb(s)" +"T02.70","Fractures involving thorax with lower back and pelvis with limb(s), closed" +"T02.71","Fractures involving thorax with lower back and pelvis with limb(s), open" +"T02.8","Fractures involving other combinations of body regions" +"T02.80","Fractures involving other combinations of body regions, closed" +"T02.81","Fractures involving other combinations of body regions, open" +"T02.9","Multiple fractures, unspecified" +"T02.90","Multiple fractures, unspecified, closed" +"T02.91","Multiple fractures, unspecified, open" +"T03","DISLOCATIONS, SPRAINS AND STRAINS INVOLVING MULTIPLE BODY REGIONS" +"T03.0","Dislocations, sprains and strains involving head with neck" +"T03.1","Dislocation sprains and strains involving thorax wth lower back and pelvis" +"T03.2","Dislocation sprains and strains involving multiple regions upper limb(s)" +"T03.3","Dislocation sprains and strains involving multiple reginns lower limb(s)" +"T03.4","Dislocation sprains and strains involving multiple regions upper & lower limb(s)" +"T03.8","Dislocation sprains and strains involving other combinations body regions" +"T03.9","Multiple dislocations, sprains and strains, unspecified" +"T04","CRUSHING INJURIES INVOLVING MULTIPLE BODY REGIONS" +"T04.0","Crushing injuries involving head with neck" +"T04.1","Crush injuries involving thorax with abdomen lower back and pelvis" +"T04.2","Crushing injuries involving multiple region of upper limb(s)" +"T04.3","Crushing injuries involving multiple region of lower limb(s)" +"T04.4","Crushing injuries involving multiple regions of upper limb(s) with lower limb(s)" +"T04.7","Crushing injuries of thorax with abdomen, lower back and pelvis with limb(s)" +"T04.8","Crushing injuries involving other combinations of body regions" +"T04.9","Multiple crushing injuries, unspecified" +"T05","TRAUMATIC AMPUTATIONS INVOLVING MULTIPLE BODY REGIONS" +"T05.0","Traumatic amputation of both hands" +"T05.1","Traumatic amputation of one hand and other arm [any level, except hand]" +"T05.2","Traumatic amputation of both arms [any level]" +"T05.3","Traumatic amputation of both feet" +"T05.4","Traumatic amputation of one foot and other leg [any level except foot]" +"T05.5","Traumatic amputation of both legs [any level]" +"T05.6","Traumatic amputation of upper and lower limbs, any combination [any level]" +"T05.8","Traumatic amputations involving other combinations of body regions" +"T05.9","Multiple traumatic amputations, unspecified" +"T06","Other injuries involving multiple body regions, not elsewhere classified" +"T06.0","Injuries of brain and cranial nerve with injuries of nerves and spinal cord neck level" +"T06.1","Injuries of nerves and spinal cord involving other multiple body regions" +"T06.2","Injuries of nerves involving multiple body regions" +"T06.3","Injuries of blood vessels involving multiple body regions" +"T06.4","Injuries of muscles and tendons involving multiple body regions" +"T06.5","Injuries of intrathoracic organ with intra-abdominal and pelvic organs" +"T06.8","Other specified injuries involving multiple body regions" +"T07","Unspecified multiple injuries" +"T08","Fracture of spine, level unspecified" +"T08.0","Fracture of spine, level unspecified , closed" +"T08.1","Fracture of spine, level unspecified , open" +"T09","Other injuries of spine and trunk, level unspecified" +"T09.0","Superficial injury of trunk, level unspecified" +"T09.1","Open wound of trunk, level unspecified" +"T09.2","Dislocation sprain and strain unspec joint and ligament trunk" +"T09.3","Injury of spinal cord, level unspecified" +"T09.4","Injury unspecified nerve, spinal nerve root and plexus of trunk" +"T09.5","Injury of Unspecified muscle and tendon of trunk" +"T09.6","Traumatic amputation of trunk, level unspecified" +"T09.8","Other specified injuries of trunk, level unspecified" +"T09.9","Unspecified injury of trunk, level unspecified" +"T10","Fracture of upper limb, level unspecified" +"T10.0","Fracture of upper limb, level unspecified , closed" +"T10.1","Fracture of upper limb, level unspecified , open" +"T11","Other injuries of upper limb, level unspecified" +"T11.0","Superficial injury of upper limb, level unspecified" +"T11.1","Open wound of upper limb, level unspecified" +"T11.2","Disl'n sprain/strain unsp joint & ligament upr limb lvl unsp" +"T11.3","Injury of unspecified nerve of upper limb, level unspecified" +"T11.4","Injury of unspec blood vessel of upper limb level unspec act" +"T11.5","Injury of unspec muscle & tendon of upr limb level unspec act" +"T11.6","Traumatic amputation of upper limb, level unspecified" +"T11.8","Other specified injuries of upper limb, level unspecified" +"T11.9","Unspecified injury of upper limb, level unspecified" +"T12","Fracture of lower limb, level unspecified" +"T12.0","Fracture of lower limb, level unspecified, closed" +"T12.1","Fracture of lower limb, level unspecified, open" +"T13","Other injuries of lower limb, level unspecified" +"T13.0","Superficial injury of lower limb, level unspecified" +"T13.1","Open wound of lower limb, level unspecified" +"T13.2","Dislocation sprain and strain unspecified joint and ligament of lower limb, level unspecified" +"T13.3","Injury of unspecified nerve of lower limb, level unspecified" +"T13.4","Injury of unspecified blood vessel of lower limb level unspecified" +"T13.5","Injury of unspecified muscle & tendon of lower limb, level unspecified" +"T13.6","Traumatic amputation of lower limb, level unspecified" +"T13.8","Other specified injuries of lower limb, level unspecified" +"T13.9","Unspecified injury of lower limb, level unspecified" +"T14","Injury of unspecified body region" +"T14.0","Superficial injury of unspecified body region" +"T14.1","Open wound of unspecified body region" +"T14.2","Fracture of unspecified body region" +"T14.20","Fracture of unspecified body region, closed" +"T14.21","Fracture of unspecified body region, open" +"T14.3","Dislocation, sprain and strain of Unspecified body region" +"T14.30","Dislocation, sprain and strain of unspecified body region, closed" +"T14.31","Dislocation, sprain and strain of unspecified body region, open" +"T14.4","Injury of nerve(s) of unspecified body region" +"T14.40","Injury of nerve(s) of unspecified body region, closed" +"T14.41","Injury of nerve(s) of unspecified body region, open" +"T14.5","Injury of blood vessel(s) of unspecified body region" +"T14.50","Injury of blood vessel(s) of unspecified body region, closed" +"T14.51","Injury of blood vessel(s) of unspecified body region, open" +"T14.6","Injury of muscles and tendons of unspecified body region" +"T14.60","Injury of muscles and tendons of unspecified body region, closed" +"T14.61","Injury of muscles and tendons of unspecified body region, open" +"T14.7","Crush injury and traumatic amputation of unspec body region" +"T14.70","Crush injury and traumatic amputation of unspec body region, closed" +"T14.71","Crush injury and traumatic amputation of unspec body region, open" +"T14.8","Other injuries of unspecified body region" +"T14.80","Other injuries of unspecified body region, closed" +"T14.81","Other injuries of unspecified body region, open" +"T14.9","Injury, unspecified" +"T14.90","Injury, unspecified, closed" +"T14.91","Injury, unspecified, open" +"T15","FOREIGN BODY ON EXTERNAL EYE" +"T15.0","Foreign body in cornea" +"T15.1","Foreign body in conjunctival sac" +"T15.8","Foreign body in other and multiple parts of external eye" +"T15.9","Foreign body on external eye, part unspecified" +"T16","FOREIGN BODY IN EAR" +"T17","FOREIGN BODY IN RESPIRATORY TRACT" +"T17.0","Foreign body in nasal sinus" +"T17.1","Foreign body in nostril" +"T17.2","Foreign body in pharynx" +"T17.3","Foreign body in larynx" +"T17.4","Foreign body in trachea" +"T17.5","Foreign body in bronchus" +"T17.8","Foreign body in other and multiple parts of respiratory tract" +"T17.9","Foreign body in respiratory tract, part unspecified" +"T18","FOREIGN BODY IN ALIMENTARY TRACT" +"T18.0","Foreign body in mouth" +"T18.1","Foreign body in oesophagus" +"T18.2","Foreign body in stomach" +"T18.3","Foreign body in small intestine" +"T18.4","Foreign body in colon" +"T18.5","Foreign body in anus and rectum" +"T18.8","Foreign body in other and multiple parts of alimentary tract" +"T18.9","Foreign body in alimentary tract, part unspecified" +"T19","FOREIGN BODY IN GENITOURINARY TRACT" +"T19.0","Foreign body in urethra" +"T19.1","Foreign body in bladder" +"T19.2","Foreign body in vulva and vagina" +"T19.3","Foreign body in uterus [any part]" +"T19.8","Foreign body in oth and multiple part of genitourinary tract" +"T19.9","Foreign body in genitourinary tract, part unspecified" +"T20","BURN AND CORROSION OF HEAD AND NECK" +"T20.0","Burn of unspecified degree of head and neck" +"T20.1","Burn of first degree of head and neck" +"T20.2","Burn of second degree of head and neck" +"T20.3","Burn of third degree of head and neck" +"T20.4","Corrosion of unspecified degree of head and neck" +"T20.5","Corrosion of first degree of head and neck" +"T20.6","Corrosion of second degree of head and neck" +"T20.7","Corrosion of third degree of head and neck" +"T21","Burn and corrosion of trunk" +"T21.0","Burn of unspecified degree of trunk" +"T21.1","Burn of first degree of trunk" +"T21.2","Burn of second degree of trunk" +"T21.3","Burn of third degree of trunk" +"T21.4","Corrosion of unspecified degree of trunk" +"T21.5","Corrosion of first degree of trunk" +"T21.6","Corrosion of second degree of trunk" +"T21.7","Corrosion of third degree of trunk" +"T22","Burn and corrosion of shoulder and upper limb, except wrist and hand" +"T22.0","Burn of unspecified degree of shoulder and upper limb except wrist and hand" +"T22.1","Burn of first degree of shoulder and upper limb, except wrist and hand" +"T22.2","Burn of secondary degree of shoulder and upper limb, except wrist and hand" +"T22.3","Burn of third degree of shoulder and upper limb excpt wrist and hand" +"T22.4","Corrosion unspecified degree of shoulder and upper limb except wrist and hand" +"T22.5","Corrosion of first degree of shoulder and upper limb, except wrist and hand" +"T22.6","Corrosion secondary degree shoulder and upper limb except wrist and hand" +"T22.7","Corrosion of third degree shoulder and upper limb, except wrist and hand" +"T23","BURN AND CORROSION OF WRIST AND HAND" +"T23.0","Burn of unspecified degree of wrist and hand" +"T23.1","Burn of first degree of wrist and hand" +"T23.2","Burn of second degree of wrist and hand" +"T23.3","Burn of third degree of wrist and hand" +"T23.4","Corrosion of unspecified degree of wrist and hand" +"T23.5","Corrosion of first degree of wrist and hand" +"T23.6","Corrosion of second degree of wrist and hand" +"T23.7","Corrosion of third degree of wrist and hand" +"T24","Burn and corrosion of hip and lower limb, except ankle and foot" +"T24.0","Burn of unspecified degree of hip and lower limb except ankle and foot" +"T24.1","Burn of first degree hip and lower limb except ankle and foot" +"T24.2","Burn of second degree hip and lower limb except ankle and foot" +"T24.3","Burn of third degree hip and lower limb except ankle and foot" +"T24.4","Corrosion of unspecified degree hip and lower limb except ankle & foot" +"T24.5","Corrosion of first degree hip and lower limb, except ankle & foot" +"T24.6","Corrosion of second degree hip and lower limb, except ankle and foot" +"T24.7","Corrosion of third degree of hip and lower limb, except ankle and foot" +"T25","Burn and corrosion of ankle and foot" +"T25.0","Burn of unspecified degree of ankle and foot" +"T25.1","Burn of first degree of ankle and foot" +"T25.2","Burn of second degree of ankle and foot" +"T25.3","Burn of third degree of ankle and foot" +"T25.4","Corrosion of unspecified degree of ankle and foot" +"T25.5","Corrosion of first degree of ankle and foot" +"T25.6","Corrosion of second degree of ankle and foot" +"T25.7","Corrosion of third degree of ankle and foot" +"T26","BURN AND CORROSION CONFINED TO EYE AND ADNEXA" +"T26.0","Burn of eyelid and periocular area" +"T26.1","Burn of cornea and conjunctival sac" +"T26.2","Burn with resulting rupture and destruction of eyeball" +"T26.3","Burn of other parts of eye and adnexa" +"T26.4","Burn of eye and adnexa, part unspecified" +"T26.5","Corrosion of eyelid and periocular area" +"T26.6","Corrosion of cornea and conjunctival sac" +"T26.7","Corrosion with resulting rupture and destruction of eyeball" +"T26.8","Corrosion of other parts of eye and adnexa" +"T26.9","Corrosion of eye and adnexa, part unspecified" +"T27","BURN AND CORROSION OF RESPIRATORY TRACT" +"T27.0","Burn of larynx and trachea" +"T27.1","Burn involving larynx and trachea with lung" +"T27.2","Burn of other parts of respiratory tract" +"T27.3","Burn of respiratory tract, part unspecified" +"T27.4","Corrosion of larynx and trachea" +"T27.5","Corrosion involving larynx and trachea with lung" +"T27.6","Corrosion of other parts of respiratory tract" +"T27.7","Corrosion of respiratory tract, part unspecified" +"T28","BURN AND CORROSION OF OTHER INTERNAL ORGANS" +"T28.0","Burn of mouth and pharynx" +"T28.1","Burn of oesophagus" +"T28.2","Burn of other parts of alimentary tract" +"T28.3","Burn of internal genitourinary organs" +"T28.4","Burn of other and unspecified internal organs" +"T28.5","Corrosion of mouth and pharynx" +"T28.6","Corrosion of oesophagus" +"T28.7","Corrosion of other parts of alimentary tract" +"T28.8","Corrosion of internal genitourinary organs" +"T28.9","Corrosion of other and unspecified internal organs" +"T29","BURNS AND CORROSIONS OF MULTIPLE BODY REGIONS" +"T29.0","Burns of multiple regions, unspecified degree" +"T29.1","Burns multi regions no more than first-degree burns mentioned" +"T29.2","Burns multi regions no more than second-degree burns mentioned" +"T29.3","Burns multi regions at least one burn of third degree mentioned" +"T29.4","Corrosions of multiple regions, unspecified degree" +"T29.5","Corrosions of multiple regions, no more than first-deg corrosions mentioned" +"T29.6","Corrosions of multiple regions, no more than second-degree corrosions mentioned" +"T29.7","Corros multi reg at least one corros of third deg mentioned" +"T30","Burn and corrosion, body region unspecified" +"T30.0","Burn of unspecified body region, unspecified degree" +"T30.1","Burn of first degree, body region unspecified" +"T30.2","Burn of second degree, body region unspecified" +"T30.3","Burn of third degree, body region unspecified" +"T30.4","Corrosion of unspecified body region, unspecified degree" +"T30.5","Corrosion of first degree, body region unspecified" +"T30.6","Corrosion of second degree, body region unspecified" +"T30.7","Corrosion of third degree, body region unspecified" +"T31","Burns classified according to extent of body surface involved" +"T31.0","Burns involving less than 10% of body surface" +"T31.1","Burns involving 10-19% of body surface" +"T31.2","Burns involving 20-29% of body surface" +"T31.3","Burns involving 30-39% of body surface" +"T31.4","Burns involving 40-49% of body surface" +"T31.5","Burns involving 50-59% of body surface" +"T31.6","Burns involving 60-69% of body surface" +"T31.7","Burns involving 70-79% of body surface" +"T31.8","Burns involving 80-89% of body surface" +"T31.9","Burns involving 90% or more of body surface" +"T32","CORROSIONS CLASSIFIED ACCORDING TO EXTENT OF BODY SURFACE INVOLVED" +"T32.0","Corrosions involving less than 10% of body surface" +"T32.1","Corrosions involving 10-19% of body surface" +"T32.2","Corrosions involving 20-29% of body surface" +"T32.3","Corrosions involving 30-39% of body surface" +"T32.4","Corrosions involving 40-49% of body surface" +"T32.5","Corrosions involving 50-59% of body surface" +"T32.6","Corrosions involving 60-69% of body surface" +"T32.7","Corrosions involving 70-79% of body surface" +"T32.8","Corrosions involving 80-89% of body surface" +"T32.9","Corrosions involving 90% or more of body surface" +"T33","Superficial frostbite" +"T33.0","Superficial frostbite of head" +"T33.1","Superficial frostbite of neck" +"T33.2","Superficial frostbite of thorax" +"T33.3","Superficial frostbite of abdominal wall, lower back and pelvis" +"T33.4","Superficial frostbite of arm" +"T33.5","Superficial frostbite of wrist and hand" +"T33.6","Superficial frostbite of hip and thigh" +"T33.7","Superficial frostbite of knee and lower leg" +"T33.8","Superficial frostbite of ankle and foot" +"T33.9","Superficial frostbite of other and unspecified sites" +"T34","Frostbite with tissue necrosis" +"T34.0","Frostbite with tissue necrosis of head" +"T34.1","Frostbite with tissue necrosis of neck" +"T34.2","Frostbite with tissue necrosis of thorax" +"T34.3","Frostbite with tissue necrosis abdominal wall, lower back and pelvis" +"T34.4","Frostbite with tissue necrosis of arm" +"T34.5","Frostbite with tissue necrosis of wrist and hand" +"T34.6","Frostbite with tissue necrosis of hip and thigh" +"T34.7","Frostbite with tissue necrosis of knee and lower leg" +"T34.8","Frostbite with tissue necrosis of ankle and foot" +"T34.9","Frostbite with tissue necrosis of other and unspec sites" +"T35","Frostbite involving multiple body regions and unspecified frostbite" +"T35.0","Superficial frostbite involving multiple body regions" +"T35.1","Frostbite with tissue necrosis involving multiple body regions" +"T35.2","Unspecified frostbite of head and neck" +"T35.3","Unspecified frostbite thorax, abdomen, lowerr back and pelvis" +"T35.4","Unspecified frostbite of upper limb" +"T35.5","Unspecified frostbite of lower limb" +"T35.6","Unspecified frostbite involving multiple body regions" +"T35.7","Unspecified frostbite of unspecified site" +"T36","POISONING BY SYSTEMIC ANTIBIOTICS" +"T36.0","Poisoning, penicillins" +"T36.1","Poisoning, cefalosporins and other beta-lactam antibiotics" +"T36.2","Poisoning, chloramphenicol group" +"T36.3","Poisoning, macrolides" +"T36.4","Poisoning, tetracyclines" +"T36.5","Poisoning, aminoglycosides" +"T36.6","Poisoning, rifamycins" +"T36.7","Poisoning, antifungal antibiotics, systemically used" +"T36.8","Poisoning, other systemic antibiotics" +"T36.9","Poisoning, systemic antibiotic, unspecified" +"T37","Poisoning by other systemic anti-infectives and antiparasitics" +"T37.0","Poisoning, sulfonamides" +"T37.1","Poisoning, antimycobacterial drugs" +"T37.2","Poisoning, antimalarials and drugs acting on other blood protozoa" +"T37.3","Poisoning, other antiprotozoal drugs" +"T37.4","Poisoning, anthelminthics" +"T37.5","Poisoning, antiviral drugs" +"T37.8","Poisoning, other specified systemic anti-infectives and antiparasitics" +"T37.9","Poisoning, systemic anti-infective and antiparasitic, unspecified" +"T38","Poisoning by hormones and their synthetic substitutes and antagonists, not elsewhere classified" +"T38.0","Poisoning, glucocorticoids and synthetic analogues" +"T38.1","Poisoning, thyroid hormones and substitutes" +"T38.2","Poisoning, antithyroid drugs" +"T38.3","Poisoning, insulin and oral hypoglycaemic [antidiabetic] drugs" +"T38.4","Poisoning, oral contraceptives" +"T38.5","Poisoning, other estrogens and progestogens" +"T38.6","Poisoning, antigonadotropins, antiestrogens, antiandrogens nec" +"T38.7","Poisoning, androgens and anabolic congeners" +"T38.8","Poisoning, other and unspecified hormones and their synthetic substitutes" +"T38.9","Poisoning, other and unspecified hormone antagonists" +"T39","Poisoning by nonopioid analgesics, antipyretics and antirheumatics" +"T39.0","Poisoning, salicylates" +"T39.1","Poisoning, 4-aminophenol derivatives" +"T39.2","Poisoning, pyrazolone derivatives" +"T39.3","Poisoning, other nonsteroidal anti-inflammatory drugs [NSAID]" +"T39.4","Poisoning, antirheumatics, not elsewhere classified" +"T39.8","Poisoning, other nonopiod analgesics and antipyretics nec" +"T39.9","Poisoning, nonopioid analgesic, antipyretic and antirheumatic unspec act" +"T40","POISONING BY NARCOTICS AND PSYCHODYSLEPTICS [HALLUCINOGENS]" +"T40.0","Poisoning, opium" +"T40.1","Poisoning, heroin" +"T40.2","Poisoning, other opioids" +"T40.3","Poisoning, methadone" +"T40.4","Poisoning, other synthetic narcotics" +"T40.5","Poisoning, cocaine" +"T40.6","Poisoning, other and unspecified narcotics" +"T40.7","Poisoning, cannabis (derivatives)" +"T40.8","Poisoning, lysergide [lsd]" +"T40.9","Poisoning, other and unspecified psychodysleptics [hallucinogens]" +"T41","POISONING BY ANAESTHETICS AND THERAPEUTIC GASES" +"T41.0","Poisoning, inhaled anaesthetics" +"T41.1","Poisoning, intravenous anaesthetics" +"T41.2","Poisoning, other and unspecified general anaesthetics" +"T41.3","Poisoning, local anaesthetics" +"T41.4","Poisoning, anaesthetic, unspecified" +"T41.5","Poisoning, therapeutic gases" +"T42","Poisoning by antiepileptic, sedative-hypnotic and antiparkinsonism drugs" +"T42.0","Poisoning, hydantoin derivatives" +"T42.1","Poisoning, iminostilbenes" +"T42.2","Poisoning, succinimides and oxazolidinediones" +"T42.3","Poisoning, barbiturates" +"T42.4","Poisoning, benzodiazepines" +"T42.5","Poisoning, mixed antiepileptics, not elsewhere classified" +"T42.6","Poisoning, other antiepileptic and sedative-hypnotic drugs" +"T42.7","Poisoning, antiepileptic and sedative-hypnotic drugs, unspecified" +"T42.8","Poisoning, antiparkinson drug and other central muscle-tone depressant" +"T43","POISONING BY PSYCHOTROPIC DRUGS, NOT ELSEWHERE CLASSIFIED" +"T43.0","Poisoning, tricyclic and tetracyclic antidepressants" +"T43.1","Poisoning, monoamine-oxidase-inhibitor antidepressants" +"T43.2","Poisoning, other and unspecified antidepressants" +"T43.3","Poisoning, phenothiazine antipsychotics and neuroleptics" +"T43.4","Poisoning, butyrophenone and thioxanthene neuroleptics" +"T43.5","Poisoning, other and unspecified antipsychotics and neuroleptics" +"T43.6","Poisoning, psychostimulants with abuse potential" +"T43.8","Poisoning, other psychotropic drugs, not elsewhere classified" +"T43.9","Poisoning, psychotropic drug, unspecified" +"T44","Poisoning by drugs primarily affecting the autonomic nervous system" +"T44.0","Poisoning, anticholinesterase agents" +"T44.1","Poisoning, other parasympathomimetics [cholinergics]" +"T44.2","Poisoning, ganglionic blocking drugs, not elsewhere classified" +"T44.3","Poisoning, oth parasympatholy [antichol and antimusc] spasmolytics nec" +"T44.4","Poisoning, predominantly alpha-adrenoreceptor agonists nec" +"T44.5","Poisoning, predominantly beta-adrenreceptor agonists nec" +"T44.6","Poisoning, alpha-adrenoreceptor agonists nec" +"T44.7","Poisoning, beta-adrenreceptor agonists nec" +"T44.8","Poisoning, centrally acting and adrenergic-neuron-blocking agents nec" +"T44.9","Poisoning, other unspecified drugs primarily affect the autonomic nervous system" +"T45","Poisoning by primarily systemic and haematological agents, not elsewhere classified" +"T45.0","Poisoning, antiallergic and antiemetic drugs" +"T45.1","Poisoning, antineoplastic and immunosuppressive drugs" +"T45.2","Poisoning, vitamins, not elsewhere classified" +"T45.3","Poisoning, enzymes, not elsewhere classified" +"T45.4","Poisoning, iron and its compounds" +"T45.5","Poisoning, anticoagulants" +"T45.6","Poisoning, fibrinolysis-affecting drugs" +"T45.7","Poisoning, anticoagulant antagonists, vitamin k and other coagulants" +"T45.8","Poisoning, other primarily systemic and haematological agents" +"T45.9","Poisoning, primarily systemic and haematological agent, unspecified" +"T46","Poisoning by agents primarily affecting the cardiovascular system" +"T46.0","Poisoning, cardiac-stimulant glycosides and drugs of similar action" +"T46.1","Poisoning, calcium-channel blockers" +"T46.2","Poisoning, other antidysrhythmic drugs, not elsewhere classified" +"T46.3","Poisoning, coronary vasodilators, not elsewhere classified" +"T46.4","Poisoning, angiotensin-converting-enzyme inhibitors" +"T46.5","Poisoning, other antihypertensive drugs, not elsewhere classified" +"T46.6","Poisoning, antihyperlipidaemic and antiarteriosclerotic drugs" +"T46.7","Poisoning, peripheral vasodilators" +"T46.8","Poisoning, antivaricose drugs, including sclerosing agents" +"T46.9","Poisoning, oth and unspec agent primarily affect the cardiovascular sys" +"T47","Poisoning by agents primarily affecting the gastrointestinal system" +"T47.0","Poisoning, histamine h2-receptor antagonists" +"T47.1","Poisoning, other antacids and anti-gastric-secretion drugs" +"T47.2","Poisoning, stimulant laxatives" +"T47.3","Poisoning, saline and osmotic laxatives" +"T47.4","Poisoning, other laxatives" +"T47.5","Poisoning, digestants" +"T47.6","Poisoning, antidiarrhoeal drugs" +"T47.7","Poisoning, emetics" +"T47.8","Poisoning, other agents primarily affecting the gastrointestinal system" +"T47.9","Poisoning, agent primarily affecting the gastrointestinal syst unspec act" +"T48","POISONING BY AGENTS PRIMARILY ACTING ON SMOOTH AND SKELETAL MUSCLES AND THE RESPIRATORY SYSTEM" +"T48.0","Poisoning, oxytocic drugs" +"T48.1","Poisoning, skeletal muscle relaxants [neuromuscular blocking agents]" +"T48.2","Poisoning, other and unspecified agents primarily acting on muscles" +"T48.3","Poisoning, antitussives" +"T48.4","Poisoning, expectorants" +"T48.5","Poisoning, anti-common-cold drugs" +"T48.6","Poisoning, antiasthmatics, not elsewhere classified" +"T48.7","Poisoning, other and unspec agents primarily acting on the respiratory system" +"T49","Poisoning by topical agents primarily affecting skin and mucous membrane and by ophthalmological, otorhinolaryngological and dental drugs" +"T49.0","Poisoning, loc antifungal anti-infective & anti-inflammatory drug nec" +"T49.1","Poisoning, antipruritics" +"T49.2","Poisoning, local astringents and local detergents" +"T49.3","Poisoning, emollients, demulcents and protectants" +"T49.4","Poisoning, keratolytics keratoplastics oth hair treat drugs and preps" +"T49.5","Poisoning, ophthalmological drugs and preparations" +"T49.6","Poisoning, otorhinolaryngological drugs and preparations" +"T49.7","Poisoning, dental drugs, topically applied" +"T49.8","Poisoning, other topical agents" +"T49.9","Poisoning, topical agent, unspecified" +"T50","Poisoning by diuretics and other and unspecified drugs, medicaments and biological substances" +"T50.0","Poisoning, mineralocorticoids and their antagonists" +"T50.1","Poisoning, loop [high-ceiling] diuretics" +"T50.2","Poisoning, carbonic-anhydrase inhibitors benzothiadiazide oth diuretic" +"T50.3","Poisoning, electrolytic, caloric and water-balance agents" +"T50.4","Poisoning, drugs affecting uric acid metabolism" +"T50.5","Poisoning, appetite depressants" +"T50.6","Poisoning, antidotes and chelating agents, not elsewhere classified" +"T50.7","Poisoning, analeptics and opioid receptor antagonists" +"T50.8","Poisoning, diagnostic agents" +"T50.9","Poisoning, other and unspec drugs medicaments & biological subs" +"T51","TOXIC EFFECT OF ALCOHOL" +"T51.0","Toxic effect, ethanol" +"T51.1","Toxic effect, methanol" +"T51.2","Toxic effect, 2-propanol" +"T51.3","Toxic effect, fusel oil" +"T51.8","Toxic effect, other alcohols" +"T51.9","Toxic effect, alcohol, unspecified" +"T52","TOXIC EFFECT OF ORGANIC SOLVENTS" +"T52.0","Toxic effect, petroleum products" +"T52.1","Toxic effect, benzene" +"T52.2","Toxic effect, homologues of benzene" +"T52.3","Toxic effect, glycols" +"T52.4","Toxic effect, ketones" +"T52.8","Toxic effect, other organic solvents" +"T52.9","Toxic effect, organic solvent, unspecified" +"T53","Toxic effect of halogen derivatives of aliphatic and aromatic hydrocarbons" +"T53.0","Toxic effect, carbon tetrachloride" +"T53.1","Toxic effect, chloroform" +"T53.2","Toxic effect, trichloroethylene" +"T53.3","Toxic effect, tetrachloroethylene" +"T53.4","Toxic effect, dichloromethane" +"T53.5","Toxic effect, chlorofluorocarbons" +"T53.6","Toxic effect, other halogen derivatives of aliphatic hydrocarbons" +"T53.7","Toxic effect, other halogen derivatives of aromatic hydrocarbons" +"T53.9","Toxic effect, halogen derivative of aliphatic and aromatic hydrocarbons" +"T54","Toxic effect of corrosive substances" +"T54.0","Toxic effect, phenol and phenol homologues" +"T54.1","Toxic effect, other corrosive organic compounds" +"T54.2","Toxic effect, corrosive acids and acid-like substances" +"T54.3","Toxic effect, corrosive alkalis and alkali-like substances" +"T54.9","Toxic effect, corrosive substance, unspecified" +"T55","TOXIC EFFECT OF SOAPS AND DETERGENTS" +"T56","TOXIC EFFECT OF METALS" +"T56.0","Toxic effect, lead and its compounds" +"T56.1","Toxic effect, mercury and its compounds" +"T56.2","Toxic effect, chromium and its compounds" +"T56.3","Toxic effect, cadmium and its compounds" +"T56.4","Toxic effect, copper and its compounds" +"T56.5","Toxic effect, zinc and its compounds" +"T56.6","Toxic effect, tin and its compounds" +"T56.7","Toxic effect, beryllium and its compounds" +"T56.8","Toxic effect, other metals" +"T56.9","Toxic effect, metal, unspecified" +"T57","TOXIC EFFECT OF OTHER INORGANIC SUBSTANCES" +"T57.0","Toxic effect, arsenic and its compounds" +"T57.1","Toxic effect, phosphorus and its compounds" +"T57.2","Toxic effect, manganese and its compounds" +"T57.3","Toxic effect, hydrogen cyanide" +"T57.8","Toxic effect, other specified inorganic substances" +"T57.9","Toxic effect, inorganic substance, unspecified" +"T58","TOXIC EFFECT OF CARBON MONOXIDE" +"T59","TOXIC EFFECT OF OTHER GASES, FUMES AND VAPOURS" +"T59.0","Toxic effect, nitrogen oxides" +"T59.1","Toxic effect, sulfur dioxide" +"T59.2","Toxic effect, formaldehyde" +"T59.3","Toxic effect, lacrimogenic gas" +"T59.4","Toxic effect, chlorine gas" +"T59.5","Toxic effect, fluorine gas and hydrogen fluoride" +"T59.6","Toxic effect, hydrogen sulfide" +"T59.7","Toxic effect, carbon dioxide" +"T59.8","Toxic effect, other specified gases, fumes and vapours" +"T59.9","Toxic effect, gases, fumes and vapours, unspecified" +"T60","TOXIC EFFECT OF PESTICIDES" +"T60.0","Toxic effect, organophosphate and carbamate insecticides" +"T60.1","Toxic effect, halogenated insecticides" +"T60.2","Toxic effect, other insecticides" +"T60.3","Toxic effect, herbicides and fungicides" +"T60.4","Toxic effect, rodenticides" +"T60.8","Toxic effect, other pesticides" +"T60.9","Toxic effect, pesticide, unspecified" +"T61","Toxic effect of noxious substances eaten as seafood" +"T61.0","Toxic effect, ciguatera fish poisoning" +"T61.1","Toxic effect, scombroid fish poisoning" +"T61.2","Toxic effect, other fish and shellfish poisoning" +"T61.8","Toxic effect of other seafoods" +"T61.9","Toxic effect of unspecified seafood" +"T62","Toxic effect of other noxious substances eaten as food" +"T62.0","Toxic effect, ingested mushrooms" +"T62.1","Toxic effect, ingested berries" +"T62.2","Toxic effect, other ingested (parts of) plant(s)" +"T62.8","Toxic effect, other specified noxious substances eaten as food" +"T62.9","Toxic effect, noxious substance eaten as food, unspecified" +"T63","Toxic effect of contact with venomous animals" +"T63.0","Toxic effect, snake venom" +"T63.1","Toxic effect, venom of other reptiles" +"T63.2","Toxic effect, venom of scorpion" +"T63.3","Toxic effect, venom of spider" +"T63.4","Toxic effect, venom of other arthropods" +"T63.5","Toxic effect of contact with fish" +"T63.6","Toxic effect of contact with other marine animals" +"T63.8","Toxic effect of contact with other venomous animals" +"T63.9","Toxic effect of contact with unspecified venomous animal" +"T64","Toxic effect of aflatoxin and other mycotoxin food contams" +"T65","Toxic effect of other and unspecified substances" +"T65.0","Toxic effect, cyanides" +"T65.1","Toxic effect, strychnine and its salts" +"T65.2","Toxic effect, tobacco and nicotine" +"T65.3","Toxic effect, nitroderivs and aminoderivs of benzene and its homologues" +"T65.4","Toxic effect, carbon disulfide" +"T65.5","Toxic effect, nitroglycerin and other nitric acids and esters" +"T65.6","Toxic effect, paints and dyes, not elsewhere classified" +"T65.8","Toxic effect of other specified substances" +"T65.9","Toxic effect of unspecified substance" +"T66","Unspecified effects of radiation" +"T67","Effects of heat and light" +"T67.0","Heatstroke and sunstroke" +"T67.1","Heat syncope" +"T67.2","Heat cramp" +"T67.3","Heat exhaustion, anhydrotic" +"T67.4","Heat exhaustion due to salt depletion" +"T67.5","Heat exhaustion, unspecified" +"T67.6","Heat fatigue, transient" +"T67.7","Heat oedema" +"T67.8","Other effects of heat and light" +"T67.9","Effect of heat and light, unspecified" +"T68","HYPOTHERMIA" +"T69","OTHER EFFECTS OF REDUCED TEMPERATURE" +"T69.0","Immersion hand and foot" +"T69.1","Chilblains" +"T69.8","Other specified effects of reduced temperature" +"T69.9","Effect of reduced temperature, unspecified" +"T70","Effects of air pressure and water pressure" +"T70.0","Otitic barotrauma" +"T70.1","Sinus barotrauma" +"T70.2","Other and unspecified effects of high altitude" +"T70.3","Caisson disease [decompression sickness]" +"T70.4","Effects of high-pressure fluids" +"T70.8","Other effects of air pressure and water pressure" +"T70.9","Effect of air pressure and water pressure, Unspecified" +"T71","ASPHYXIATION" +"T73","EFFECTS OF OTHER DEPRIVATION" +"T73.0","Effects of hunger" +"T73.1","Effects of thirst" +"T73.2","Exhaustion due to exposure" +"T73.3","Exhaustion due to excessive exertion" +"T73.8","Other effects of deprivation" +"T73.9","Effect of deprivation, unspecified" +"T74","MALTREATMENT SYNDROMES" +"T74.0","Neglect or abandonment" +"T74.1","Physical abuse" +"T74.2","Sexual abuse" +"T74.3","Psychological abuse" +"T74.8","Other maltreatment syndromes" +"T74.9","Maltreatment syndrome, unspecified" +"T75","EFFECTS OF OTHER EXTERNAL CAUSES" +"T75.0","Effects of lightning" +"T75.1","Drowning and nonfatal submersion" +"T75.2","Effects of vibration" +"T75.3","Motion sickness" +"T75.4","Effects of electric current" +"T75.8","Other specified effects of external causes" +"T78","ADVERSE EFFECTS, NOT ELSEWHERE CLASSIFIED" +"T78.0","Anaphylactic shock due to adverse food reaction" +"T78.1","Other adverse food reactions, not elsewhere classified" +"T78.2","Anaphylactic shock, unspecified" +"T78.3","Angioneurotic oedema" +"T78.4","Allergy, unspecified" +"T78.8","Other adverse effects, not elsewhere classified" +"T78.9","Adverse effect, unspecified" +"T79","Certain early complications of trauma, not elsewhere classified" +"T79.0","Air embolism (traumatic)" +"T79.1","Fat embolism (traumatic)" +"T79.2","Traumatic secondary and recurrent haemorrhage" +"T79.3","Post-traumatic wound infection, not elsewhere classified" +"T79.4","Traumatic shock" +"T79.5","Traumatic anuria" +"T79.6","Traumatic ischaemia of muscle" +"T79.7","Traumatic subcutaneous emphysema" +"T79.8","Other early complications of trauma" +"T79.9","Unspecified early complication of trauma" +"T80","COMPLICATIONS FOLLOWING INFUSION, TRANSFUSION AND THERAPEUTIC INJECTION" +"T80.0","Air embolism following infusion transfusion and therapeutic inject" +"T80.1","Vasc comps following infusion transfusion and therapeutic inject" +"T80.2","Infections following infusion transfusion and therapeutic inject" +"T80.3","ABO incompatibility reaction" +"T80.4","Rh incompatibility reaction" +"T80.5","Anaphylactic shock due to serum" +"T80.6","Other serum reactions" +"T80.8","Other complications following infusion transfusion & therap inject" +"T80.9","Unspecified complication following infusion transfusion and therapeutic inject" +"T81","Complications of procedures, not elsewhere classified" +"T81.0","Haemorrhage and haematoma complicating a procedure nec" +"T81.1","Shock during or resulting from a procedure nec" +"T81.2","Accidental puncture and laceration during a procedure nec" +"T81.3","Disruption of operation wound, not elsewhere classified" +"T81.4","Infection following a procedure, not elsewhere classified" +"T81.5","Foreign body accidentally left in body cavity or operation wound following a procedure" +"T81.6","Acute reaction to foreign substance accident left during a procedures" +"T81.7","Vascular complications following a procedure" +"T81.8","Other complications of procedures, not elsewhere classified" +"T81.9","Unspecified complication of procedure" +"T82","COMPLICATIONS OF CARDIAC AND VASCULAR PROSTHETIC DEVICES, IMPLANTS AND GRAFTS" +"T82.0","Mechanical complication of heart valve prosthesis" +"T82.1","Mechanical complication of cardiac electronic device" +"T82.2","Mech complication of coronary artery bypass and valve grafts" +"T82.3","Mechanical complication of other vascular grafts" +"T82.4","Mechanical complication of vascular dialysis catheter" +"T82.5","Mechanical complication of other cardiac and vascular devices and implants" +"T82.6","Infection and inflammatory reaction due to cardiac valve prosthesis" +"T82.7","Infection and inflammatory reaction due other cardiac and vascular devices, implant and grafts" +"T82.8","Other complications of cardic and vascular prosthetic devices, implants and grafts" +"T82.9","Unspecified complications of cardiac and vascular prosthetic devices, implants and grafts" +"T83","Complications of genitourinary prosthetic devices, implants and grafts" +"T83.0","Mechanical complication of urinary (indwelling) catheter" +"T83.1","Mechanical complication of other urinary devices and implants" +"T83.2","Mechanical complication of graft of urinary organ" +"T83.3","Mechanical complication of intrauterine contraceptive device" +"T83.4","Mechanical complication of other prosthetic devices, implants and grafts in genital tract" +"T83.5","Infection and inflammatory reaction due to prosthetic devices, implant and graft urinary system" +"T83.6","Infection inflammatory reaction due to prosthetic device, implant and graft in genital tract" +"T83.8","Others complications of genitourinary prosthetic device, implants and grafts" +"T83.9","Unspecified complication of genitourinary prosthetic devices, implant and graft" +"T84","Complications of internal orthopaedic prosthetic devices, implants and grafts" +"T84.0","Mechanical complication of internal joint prosthesis" +"T84.1","Mechanical complication of internal fixation device of bones of limb" +"T84.2","Mechanical complication of internal fixation device of other bones" +"T84.3","Mechanical complication other bone devices implants and grafts" +"T84.4","Mechanical complication of other internal orthopaedic devices, implants and grafts" +"T84.5","Infection and inflammatory reaction due to internal joint pros" +"T84.6","Infection and inflammatory reaction due internal fixation device [any site]" +"T84.7","Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts" +"T84.8","Other complications of internal orthopaedic prosthtic devices, implants & grafts" +"T84.9","Unspecified complication of internal othopaedic prosthetic device, implant & graft" +"T85","Complications of other internal prosthetic devices, implants and grafts" +"T85.0","Mechanical complication of ventricular intracranial (communicating) shunt" +"T85.1","Mechanical complication implanted electronic stimulator of nervous system" +"T85.2","Mechanical complication of intraocular lens" +"T85.3","Mechanical complication of other ocular prosthetic devices, implants and grafts" +"T85.4","Mechanical complication of breast prosthesis and implant" +"T85.5","Mechanical complication of gastrointestinal prosthetic devices, implants and grafts" +"T85.6","Mechanical complication of other specified internal prosthetic devices, implants and grafts" +"T85.7","Infection inflammatory reaction due to other internal prosthetic devices, implants and grafts" +"T85.8","Other complications of internal prosthetic devices, implants and grafts nec" +"T85.9","Unspecified complication of internal prosthetic device, implant and graft" +"T86","Failure and rejection of transplanted organs and tissues" +"T86.0","Bone-marrow transplant rejection" +"T86.1","Kidney transplant failure and rejection" +"T86.2","Heart transplant failure and rejection" +"T86.3","Heart-lung transplant failure and rejection" +"T86.4","Liver transplant failure and rejection" +"T86.8","Failure and reject of other transplanted organs and tissues" +"T86.9","Failure and reject of unspecified transplanted organ and tissue" +"T87","Complications peculiar to reattachment and amputation" +"T87.0","Complications of reattached (part of) upper extremity" +"T87.1","Complications of reattached (part of) lower extremity" +"T87.2","Complications of other reattached body part" +"T87.3","Neuroma of amputation stump" +"T87.4","Infection of amputation stump" +"T87.5","Necrosis of amputation stump" +"T87.6","Other and unspecified complications of amputation stump" +"T88","Other complications of surgical and medical care, not elsewhere classified" +"T88.0","Infection following immunization" +"T88.1","Other complications following immunization nec" +"T88.2","Shock due to anaesthesia" +"T88.3","Malignant hyperthermia due to anaesthesia" +"T88.4","Failed or difficult intubation" +"T88.5","Other complications of anaesthesia" +"T88.6","Anaphylactic shock due adverse effect of correct drug or medicament properly administered" +"T88.7","Unspecified adverse effect of drug or medicament" +"T88.8","Other specified complications of surgical and medical care nec" +"T88.9","Complication of surgical and medical care, unspecified" +"T90","SEQUELAE OF INJURIES OF HEAD" +"T90.0","Sequelae of superficial injury of head" +"T90.1","Sequelae of open wound of head" +"T90.2","Sequelae of fracture of skull and facial bones" +"T90.3","Sequelae of injury of cranial nerves" +"T90.4","Sequelae of injury of eye and orbit" +"T90.5","Sequelae of intracranial injury" +"T90.8","Sequelae of other specified injuries of head" +"T90.9","Sequelae of unspecified injury of head" +"T91","SEQUELAE OF INJURIES OF NECK AND TRUNK" +"T91.0","Sequelae of superficial injury and open wound of neck and trunk" +"T91.1","Sequelae of fracture of spine" +"T91.2","Sequelae of other fracture of thorax and pelvis" +"T91.3","Sequelae of injury of spinal cord" +"T91.4","Sequelae of injury of intrathoracic organs" +"T91.5","Sequelae of injury of intra-abdominal and pelvic organs" +"T91.8","Sequelae of other specified injuries of neck and trunk" +"T91.9","Sequelae of unspecified injury of neck and trunk" +"T92","Sequelae of injuries of upper limb" +"T92.0","Sequelae of open wound of upper limb" +"T92.1","Sequelae of fracture of arm" +"T92.2","Sequelae of fracture at wrist and hand level" +"T92.3","Sequelae of dislocation, sprain and strain of upper limb" +"T92.4","Sequelae of injury of nerve of upper limb" +"T92.5","Sequelae of injury of muscle and tendon of upper limb" +"T92.6","Sequelae of crushing injury and traumatic amputation of upper limb" +"T92.8","Sequelae of other specified injuries of upper limb" +"T92.9","Sequelae of unspecified injury of upper limb" +"T93","SEQUELAE OF INJURIES OF LOWER LIMB" +"T93.0","Sequelae of open wound of lower limb" +"T93.1","Sequelae of fracture of femur" +"T93.2","Sequelae of other fractures of lower limb" +"T93.3","Sequelae of dislocation, sprain and strain of lower limb" +"T93.4","Sequelae of injury of nerve of lower limb" +"T93.5","Sequelae of injury of muscle and tendon of lower limb" +"T93.6","Sequelae of crush injury and traumatic amputation of lower limb" +"T93.8","Sequelae of other specified injuries of lower limb" +"T93.9","Sequelae of unspecified injury of lower limb" +"T94","Sequelae of injuries involving multiple and unspecified body regions" +"T94.0","Sequelae of injuries involving multiple body regions" +"T94.1","Sequelae of injuries, not specified by body region" +"T95","SEQUELAE OF BURNS, CORROSIONS AND FROSTBITE" +"T95.0","Sequelae of burn, corrosion and frostbite of head and neck" +"T95.1","Sequelae of burn, corrosion and frostbite of trunk" +"T95.2","Sequelae of burn, corrosion and frostbite of upper limb" +"T95.3","Sequelae of burn, corrosion and frostbite of lower limb" +"T95.4","Seq burn and corros class only accord extent body surf involved" +"T95.8","Sequelae of other specified burn, corrosion and frostbite" +"T95.9","Sequelae of unspecified burn, corrosion and frostbite" +"T96","Sequelae of poisoning by drugs medicaments and biological substances" +"T97","Sequelae of toxic effects substances chiefly nonmedicinal as to source" +"T98","Sequelae of other and unspecified effects of external causes" +"T98.0","Sequelae of effects foreign body entering through natural orifice" +"T98.1","Sequelae of other and unspecified effects of external causes" +"T98.2","Sequelae of certain early complications of trauma" +"T98.3","Sequelae of complications of surgical and medical care nec" +"U04","Severe acute respiratory syndrome [SARS]" +"U04.9","Severe acute respiratory syndrome [SARS], unspecified" +"U07.1","COVID-19 acute respiratory disease" +"U80","Agent resistant to penicillin and related antibiotics" +"U80.0","Penicillin resistant agent" +"U80.1","Methicillin resistant agent" +"U80.8","Agent resistant to other penicillin-related antibiotic" +"U81","Agent resistant to vancomycin and related antibiotics" +"U81.0","Vancomycin resistant agent" +"U81.8","Agent resistant to other penicillin-related antibiotic" +"U88","Agent resistant to multiple antibiotics" +"U89","Agent resistant to other and unspecified antibiotics" +"U89.8","Agent resistant to other single specified antibiotic" +"U89.9","Agent resistant to unspecified antibiotic" +"V01","Pedestrian injured in collision with pedal cycle" +"V01.0","Pedestrian injured in collision with pedal cycle: Nontraffic accident" +"V01.1","Pedestrian injured in collision with pedal cycle: Traffic accident" +"V01.9","Pedestrian injured in collision with pedal cycle: Unspecified whether traffic or nontraffic accident" +"V02","Pedestrian injured in collision with two- or three-wheeled motor vehicle" +"V02.0","Pedestrian injured in collision with two- or three-wheeled motor vehicle: Nontraffic accident" +"V02.1","Pedestrian injured in collision with two- or three-wheeled motor vehicle: Traffic accident" +"V02.9","Pedestrian injured in collision with two- or three-wheeled motor vehicle: Unspecified whether traffic or nontraffic accident" +"V03","Pedestrian injured in collision with car, pick-up truck or van" +"V03.0","Pedestrian injured in collision with car, pick-up truck or van: Nontraffic accident" +"V03.1","Pedestrian injured in collision with car, pick-up truck or van: Traffic accident" +"V03.9","Pedestrian injured in collision with car, pick-up truck or van: Unspecified whether traffic or nontraffic accident" +"V04","Pedestrian injured in collision with heavy transport vehicle or bus" +"V04.0","Pedestrian injured in collision with heavy transport vehicle or bus: Nontraffic accident" +"V04.1","Pedestrian injured in collision with heavy transport vehicle or bus: Traffic accident" +"V04.9","Pedestrian injured in collision with heavy transport vehicle or bus: Unspecified whether traffic or nontraffic accident" +"V05","Pedestrian injured in collision with railway train or railway vehicle" +"V05.0","Pedestrian injured in collision with railway train or railway vehicle: Nontraffic accident" +"V05.1","Pedestrian injured in collision with railway train or railway vehicle: Traffic accident" +"V05.9","Pedestrian injured in collision with railway train or railway vehicle: Unspecified whether traffic or nontraffic accident" +"V06","Pedestrian injured in collision with other nonmotor vehicle" +"V06.0","Pedestrian injured in collision with other nonmotor vehicle: Nontraffic accident" +"V06.1","Pedestrian injured in collision with other nonmotor vehicle: Traffic accident" +"V06.9","Pedestrian injured in collision with other nonmotor vehicle: Unspecified whether traffic or nontraffic accident" +"V09","Pedestrian injured in other and unspecified transport accidents" +"V09.0","Pedestrian injured in nontraffic accident involving other and unspecified motor vehicles" +"V09.1","Pedestrian injured in unspecified nontraffic accident" +"V09.2","Pedestrian injured in traffic accident involving other and unspecified motor vehicles" +"V09.3","Pedestrian injured in unspecified traffic accident" +"V09.9","Pedestrian injured in unspecified transport accident" +"V10","Pedal cyclist injured in collision with pedestrian or animal" +"V10.0","Pedal cyclist injured in collision with pedestrian or animal: Driver injured in nontraffic accident" +"V10.1","Pedal cyclist injured in collision with pedestrian or animal: Passenger injured in nontraffic accident" +"V10.2","Pedal cyclist injured in collision with pedestrian or animal: Unspecified pedal cyclist injured in nontraffic accident" +"V10.3","Pedal cyclist injured in collision with pedestrian or animal: Person injured while boarding or alighting" +"V10.4","Pedal cyclist injured in collision with pedestrian or animal: Driver injured in traffic accident" +"V10.5","Pedal cyclist injured in collision with pedestrian or animal: Passenger injured in traffic accident" +"V10.9","Pedal cyclist injured in collision with pedestrian or animal: Unspecified pedal cyclist injured in traffic accident" +"V11","Pedal cyclist injured in collision with other pedal cycle" +"V11.0","Pedal cyclist injured in collision with other pedal cycle: Driver injured in nontraffic accident" +"V11.1","Pedal cyclist injured in collision with other pedal cycle: Passenger injured in nontraffic accident" +"V11.2","Pedal cyclist injured in collision with other pedal cycle: Unspecified pedal cyclist injured in nontraffic accident" +"V11.3","Pedal cyclist injured in collision with other pedal cycle: Person injured while boarding or alighting" +"V11.4","Pedal cyclist injured in collision with other pedal cycle: Driver injured in traffic accident" +"V11.5","Pedal cyclist injured in collision with other pedal cycle: Passenger injured in traffic accident" +"V11.9","Pedal cyclist injured in collision with other pedal cycle: Unspecified pedal cyclist injured in traffic accident" +"V12","Pedal cyclist injured in collision with two- or three-wheeled motor vehicle" +"V12.0","Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident" +"V12.1","Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident" +"V12.2","Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Unspecified pedal cyclist injured in nontraffic accident" +"V12.3","Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting" +"V12.4","Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident" +"V12.5","Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident" +"V12.9","Pedal cyclist injured in collision with two- or three-wheeled motor vehicle: Unspecified pedal cyclist injured in traffic accident" +"V13","Pedal cyclist injured in collision with car, pick-up truck or van" +"V13.0","Pedal cyclist injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident" +"V13.1","Pedal cyclist injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident" +"V13.2","Pedal cyclist injured in collision with car, pick-up truck or van: Unspecified pedal cyclist injured in nontraffic accident" +"V13.3","Pedal cyclist injured in collision with car, pick-up truck or van: Person injured while boarding or alighting" +"V13.4","Pedal cyclist injured in collision with car, pick-up truck or van: Driver injured in traffic accident" +"V13.5","Pedal cyclist injured in collision with car, pick-up truck or van: Passenger injured in traffic accident" +"V13.9","Pedal cyclist injured in collision with car, pick-up truck or van: Unspecified pedal cyclist injured in traffic accident" +"V14","Pedal cyclist injured in collision with heavy transport vehicle or bus" +"V14.0","Pedal cyclist injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident" +"V14.1","Pedal cyclist injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident" +"V14.2","Pedal cyclist injured in collision with heavy transport vehicle or bus: Unspecified pedal cyclist injured in nontraffic accident" +"V14.3","Pedal cyclist injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting" +"V14.4","Pedal cyclist injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident" +"V14.5","Pedal cyclist injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident" +"V14.9","Pedal cyclist injured in collision with heavy transport vehicle or bus: Unspecified pedal cyclist injured in traffic accident" +"V15","Pedal cyclist injured in collision with railway train or railway vehicle" +"V15.0","Pedal cyclist injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident" +"V15.1","Pedal cyclist injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident" +"V15.2","Pedal cyclist injured in collision with railway train or railway vehicle: Unspecified pedal cyclist injured in nontraffic accident" +"V15.3","Pedal cyclist injured in collision with railway train or railway vehicle: Person injured while boarding or alighting" +"V15.4","Pedal cyclist injured in collision with railway train or railway vehicle: Driver injured in traffic accident" +"V15.5","Pedal cyclist injured in collision with railway train or railway vehicle: Passenger injured in traffic accident" +"V15.9","Pedal cyclist injured in collision with railway train or railway vehicle: Unspecified pedal cyclist injured in traffic accident" +"V16","Pedal cyclist injured in collision with other nonmotor vehicle" +"V16.0","Pedal cyclist injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident" +"V16.1","Pedal cyclist injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident" +"V16.2","Pedal cyclist injured in collision with other nonmotor vehicle: Unspecified pedal cyclist injured in nontraffic accident" +"V16.3","Pedal cyclist injured in collision with other nonmotor vehicle: Person injured while boarding or alighting" +"V16.4","Pedal cyclist injured in collision with other nonmotor vehicle: Driver injured in traffic accident" +"V16.5","Pedal cyclist injured in collision with other nonmotor vehicle: Passenger injured in traffic accident" +"V16.9","Pedal cyclist injured in collision with other nonmotor vehicle: Unspecified pedal cyclist injured in traffic accident" +"V17","Pedal cyclist injured in collision with fixed or stationary object" +"V17.0","Pedal cyclist injured in collision with fixed or stationary object: Driver injured in nontraffic accident" +"V17.1","Pedal cyclist injured in collision with fixed or stationary object: Passenger injured in nontraffic accident" +"V17.2","Pedal cyclist injured in collision with fixed or stationary object: Unspecified pedal cyclist injured in nontraffic accident" +"V17.3","Pedal cyclist injured in collision with fixed or stationary object: Person injured while boarding or alighting" +"V17.4","Pedal cyclist injured in collision with fixed or stationary object: Driver injured in traffic accident" +"V17.5","Pedal cyclist injured in collision with fixed or stationary object: Passenger injured in traffic accident" +"V17.9","Pedal cyclist injured in collision with fixed or stationary object: Unspecified pedal cyclist injured in traffic accident" +"V18","PEDAL CYCLIST INJURED IN NONCOLLISION TRANSPORT ACCIDENT" +"V18.0","Pedal cyclist injured in noncollision transport accident: Driver injured in nontraffic accident" +"V18.1","Pedal cyclist injured in noncollision transport accident: Passenger injured in nontraffic accident" +"V18.2","Pedal cyclist injured in noncollision transport accident: Unspecified pedal cyclist injured in nontraffic accident" +"V18.3","Pedal cyclist injured in noncollision transport accident: Person injured while boarding or alighting" +"V18.4","Pedal cyclist injured in noncollision transport accident: Driver injured in traffic accident" +"V18.5","Pedal cyclist injured in noncollision transport accident: Passenger injured in traffic accident" +"V18.9","Pedal cyclist injured in noncollision transport accident: Unspecified pedal cyclist injured in traffic accident" +"V19","Pedal cyclist injured in other and unspecified transport accidents" +"V19.0","Driver injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V19.1","Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V19.2","Unspecified pedal cyclist injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V19.3","Pedal cyclist [any] injured in unspecified nontraffic accident" +"V19.4","Driver injured in collision with other and unspecified motor vehicles in traffic accident" +"V19.5","Passenger injured in collision with other and unspecified motor vehicles in traffic accident" +"V19.6","Unspecified pedal cyclist injured in collision with other and unspecified motor vehicles in traffic accident" +"V19.8","Pedal cyclist [any] injured in other specified transport accidents" +"V19.9","Pedal cyclist [any] injured in unspecified traffic accident" +"V20","Motorcycle rider injured in collision with pedestrian or animal" +"V20.0","Motorcycle rider injured in collision with pedestrian or animal: Driver injured in nontraffic accident" +"V20.1","Motorcycle rider injured in collision with pedestrian or animal: Passenger injured in nontraffic accident" +"V20.2","Motorcycle rider injured in collision with pedestrian or animal: Unspecified motorcycle rider injured in nontraffic accident" +"V20.3","Motorcycle rider injured in collision with pedestrian or animal: Person injured while boarding or alighting" +"V20.4","Motorcycle rider injured in collision with pedestrian or animal: Driver injured in traffic accident" +"V20.5","Motorcycle rider injured in collision with pedestrian or animal: Passenger injured in traffic accident" +"V20.9","Motorcycle rider injured in collision with pedestrian or animal: Unspecified motorcycle rider injured in traffic accident" +"V21","Motorcycle rider injured in collision with pedal cycle" +"V21.0","Motorcycle rider injured in collision with pedal cycle: Driver injured in nontraffic accident" +"V21.1","Motorcycle rider injured in collision with pedal cycle: Passenger injured in nontraffic accident" +"V21.2","Motorcycle rider injured in collision with pedal cycle: Unspecified motorcycle rider injured in nontraffic accident" +"V21.3","Motorcycle rider injured in collision with pedal cycle: Person injured while boarding or alighting" +"V21.4","Motorcycle rider injured in collision with pedal cycle: Driver injured in traffic accident" +"V21.5","Motorcycle rider injured in collision with pedal cycle: Passenger injured in traffic accident" +"V21.9","Motorcycle rider injured in collision with pedal cycle: Unspecified motorcycle rider injured in traffic accident" +"V22","Motorcycle rider injured in collision with two- or three-wheeled motor vehicle" +"V22.0","Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident" +"V22.1","Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident" +"V22.2","Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Unspecified motorcycle rider injured in nontraffic accident" +"V22.3","Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting" +"V22.4","Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident" +"V22.5","Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident" +"V22.9","Motorcycle rider injured in collision with two- or three-wheeled motor vehicle: Unspecified motorcycle rider injured in traffic accident" +"V23","Motorcycle rider injured in collision with car, pick-up truck or van" +"V23.0","Motorcycle rider injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident" +"V23.1","Motorcycle rider injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident" +"V23.2","Motorcycle rider injured in collision with car, pick-up truck or van: Unspecified motorcycle rider injured in nontraffic accident" +"V23.3","Motorcycle rider injured in collision with car, pick-up truck or van: Person injured while boarding or alighting" +"V23.4","Motorcycle rider injured in collision with car, pick-up truck or van: Driver injured in traffic accident" +"V23.5","Motorcycle rider injured in collision with car, pick-up truck or van: Passenger injured in traffic accident" +"V23.9","Motorcycle rider injured in collision with car, pick-up truck or van: Unspecified motorcycle rider injured in traffic accident" +"V24","Motorcycle rider injured in collision with heavy transport vehicle or bus" +"V24.0","Motorcycle rider injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident" +"V24.1","Motorcycle rider injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident" +"V24.2","Motorcycle rider injured in collision with heavy transport vehicle or bus: Unspecified motorcycle rider injured in nontraffic accident" +"V24.3","Motorcycle rider injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting" +"V24.4","Motorcycle rider injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident" +"V24.5","Motorcycle rider injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident" +"V24.9","Motorcycle rider injured in collision with heavy transport vehicle or bus: Unspecified motorcycle rider injured in traffic accident" +"V25","Motorcycle rider injured in collision with railway train or railway vehicle" +"V25.0","Motorcycle rider injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident" +"V25.1","Motorcycle rider injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident" +"V25.2","Motorcycle rider injured in collision with railway train or railway vehicle: Unspecified motorcycle rider injured in nontraffic accident" +"V25.3","Motorcycle rider injured in collision with railway train or railway vehicle: Person injured while boarding or alighting" +"V25.4","Motorcycle rider injured in collision with railway train or railway vehicle: Driver injured in traffic accident" +"V25.5","Motorcycle rider injured in collision with railway train or railway vehicle: Passenger injured in traffic accident" +"V25.9","Motorcycle rider injured in collision with railway train or railway vehicle: Unspecified motorcycle rider injured in traffic accident" +"V26","Motorcycle rider injured in collision with other nonmotor vehicle" +"V26.0","Motorcycle rider injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident" +"V26.1","Motorcycle rider injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident" +"V26.2","Motorcycle rider injured in collision with other nonmotor vehicle: Unspecified motorcycle rider injured in nontraffic accident" +"V26.3","Motorcycle rider injured in collision with other nonmotor vehicle: Person injured while boarding or alighting" +"V26.4","Motorcycle rider injured in collision with other nonmotor vehicle: Driver injured in traffic accident" +"V26.5","Motorcycle rider injured in collision with other nonmotor vehicle: Passenger injured in traffic accident" +"V26.9","Motorcycle rider injured in collision with other nonmotor vehicle: Unspecified motorcycle rider injured in traffic accident" +"V27","Motorcycle rider injured in collision with fixed or stationary object" +"V27.0","Motorcycle rider injured in collision with fixed or stationary object: Driver injured in nontraffic accident" +"V27.1","Motorcycle rider injured in collision with fixed or stationary object: Passenger injured in nontraffic accident" +"V27.2","Motorcycle rider injured in collision with fixed or stationary object: Unspecified motorcycle rider injured in nontraffic accident" +"V27.3","Motorcycle rider injured in collision with fixed or stationary object: Person injured while boarding or alighting" +"V27.4","Motorcycle rider injured in collision with fixed or stationary object: Driver injured in traffic accident" +"V27.5","Motorcycle rider injured in collision with fixed or stationary object: Passenger injured in traffic accident" +"V27.9","Motorcycle rider injured in collision with fixed or stationary object: Unspecified motorcycle rider injured in traffic accident" +"V28","MOTORCYCLE RIDER INJURED IN NONCOLLISION TRANSPORT ACCIDENT" +"V28.0","Motorcycle rider injured in noncollision transport accident: Driver injured in nontraffic accident" +"V28.1","Motorcycle rider injured in noncollision transport accident: Passenger injured in nontraffic accident" +"V28.2","Motorcycle rider injured in noncollision transport accident: Unspecified motorcycle rider injured in nontraffic accident" +"V28.3","Motorcycle rider injured in noncollision transport accident: Person injured while boarding or alighting" +"V28.4","Motorcycle rider injured in noncollision transport accident: Driver injured in traffic accident" +"V28.5","Motorcycle rider injured in noncollision transport accident: Passenger injured in traffic accident" +"V28.9","Motorcycle rider injured in noncollision transport accident: Unspecified motorcycle rider injured in traffic accident" +"V29","Motorcycle rider injured in other and unspecified transport accidents" +"V29.0","Driver injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V29.1","Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V29.2","Unspecified motorcycle rider injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V29.3","Motorcycle rider [any] injured in unspecified nontraffic accident" +"V29.4","Driver injured in collision with other and unspecified motor vehicles in traffic accident" +"V29.5","Passenger injured in collision with other and unspecified motor vehicles in traffic accident" +"V29.6","Unspecified motorcycle rider injured in collision with other and unspecified motor vehicles in traffic accident" +"V29.8","Motorcycle rider [any] injured in other specified transport accidents" +"V29.9","Motorcycle rider [any] injured in unspecified traffic accident" +"V30","Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal" +"V30.0","Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Driver injured in nontraffic accident" +"V30.1","Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Passenger injured in nontraffic accident" +"V30.2","Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident" +"V30.3","Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Unspecified occupant of three-wheeled motor vehicle injured in nontraffic accident" +"V30.4","Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Person injured while boarding or alighting" +"V30.5","Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Driver injured in traffic accident" +"V30.6","Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Passenger injured in traffic accident" +"V30.7","Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident" +"V30.9","Occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal: Unspecified occupant of three-wheeled motor vehicle injured in traffic accident" +"V31","Occupant of three-wheeled motor vehicle injured in collision with pedal cycle" +"V31.0","Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Driver injured in nontraffic accident" +"V31.1","Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Passenger injured in nontraffic accident" +"V31.2","Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident" +"V31.3","Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Unspecified occupant of three-wheeled motor vehicle injured in nontraffic accident" +"V31.4","Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Person injured while boarding or alighting" +"V31.5","Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Driver injured in traffic accident" +"V31.6","Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Passenger injured in traffic accident" +"V31.7","Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident" +"V31.9","Occupant of three-wheeled motor vehicle injured in collision with pedal cycle: Unspecified occupant of three-wheeled motor vehicle injured in traffic accident" +"V32","Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle" +"V32.0","Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident" +"V32.1","Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident" +"V32.2","Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in nontraffic accident" +"V32.3","Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of three-wheeled motor vehicle injured in nontraffic accident" +"V32.4","Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting" +"V32.5","Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident" +"V32.6","Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident" +"V32.7","Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in traffic accident" +"V32.9","Occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of three-wheeled motor vehicle injured in traffic accident" +"V33","Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van" +"V33.0","Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident" +"V33.1","Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident" +"V33.2","Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in nontraffic accident" +"V33.3","Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Unspecified occupant of three-wheeled motor vehicle injured in nontraffic accident" +"V33.4","Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Person injured while boarding or alighting" +"V33.5","Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Driver injured in traffic accident" +"V33.6","Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Passenger injured in traffic accident" +"V33.7","Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in traffic accident" +"V33.9","Occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van: Unspecified occupant of three-wheeled motor vehicle injured in traffic accident" +"V34","Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus" +"V34.0","Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident" +"V34.1","Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident" +"V34.2","Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in nontraffic accident" +"V34.3","Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of three-wheeled motor vehicle injured in nontraffic accident" +"V34.4","Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting" +"V34.5","Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident" +"V34.6","Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident" +"V34.7","Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in traffic accident" +"V34.9","Occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of three-wheeled motor vehicle injured in traffic accident" +"V35","Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle" +"V35.0","Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident" +"V35.1","Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident" +"V35.2","Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in nontraffic accident" +"V35.3","Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of three-wheeled motor vehicle injured in nontraffic accident" +"V35.4","Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Person injured while boarding or alighting" +"V35.5","Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Driver injured in traffic accident" +"V35.6","Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Passenger injured in traffic accident" +"V35.7","Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in traffic accident" +"V35.9","Occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of three-wheeled motor vehicle injured in traffic accident" +"V36","Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle" +"V36.0","Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident" +"V36.1","Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident" +"V36.2","Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident" +"V36.3","Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of three-wheeled motor vehicle injured in nontraffic accident" +"V36.4","Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Person injured while boarding or alighting" +"V36.5","Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Driver injured in traffic accident" +"V36.6","Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Passenger injured in traffic accident" +"V36.7","Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident" +"V36.9","Occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of three-wheeled motor vehicle injured in traffic accident" +"V37","Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object" +"V37.0","Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Driver injured in nontraffic accident" +"V37.1","Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Passenger injured in nontraffic accident" +"V37.2","Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accident" +"V37.3","Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Unspecified occupant of three-wheeled motor vehicle injured in nontraffic accident" +"V37.4","Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Person injured while boarding or alighting" +"V37.5","Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Driver injured in traffic accident" +"V37.6","Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Passenger injured in traffic accident" +"V37.7","Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Person on outside of vehicle injured in traffic accident" +"V37.9","Occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object: Unspecified occupant of three-wheeled motor vehicle injured in traffic accident" +"V38","OCCUPANT OF THREE-WHEELED MOTOR VEHICLE INJURED IN NONCOLLISION TRANSPORT ACCIDENT" +"V38.0","Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Driver injured in nontraffic accident" +"V38.1","Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Passenger injured in nontraffic accident" +"V38.2","Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident" +"V38.3","Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Unspecified occupant of three-wheeled motor vehicle injured in nontraffic accident" +"V38.4","Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Person injured while boarding or alighting" +"V38.5","Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Driver injured in traffic accident" +"V38.6","Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Passenger injured in traffic accident" +"V38.7","Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident" +"V38.9","Occupant of three-wheeled motor vehicle injured in noncollision transport accident: Unspecified occupant of three-wheeled motor vehicle injured in traffic accident" +"V39","Occupant of three-wheeled motor vehicle injured in other and unspecified transport accidents" +"V39.0","Driver injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V39.1","Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V39.2","Unspecified occupant of three-wheeled motor vehicle injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V39.3","Occupant [any] of three-wheeled motor vehicle injured in unspecified nontraffic accident" +"V39.4","Driver injured in collision with other and unspecified motor vehicles in traffic accident" +"V39.5","Passenger injured in collision with other and unspecified motor vehicles in traffic accident" +"V39.6","Unspecified occupant of three-wheeled motor vehicle injured in collision with other and unspecified motor vehicles in traffic accident" +"V39.8","Occupant [any] of three-wheeled motor vehicle injured in other specified transport accidents" +"V39.9","Occupant [any] of three-wheeled motor vehicle injured in unspecified traffic accident" +"V40","Car occupant injured in collision with pedestrian or animal" +"V40.0","Car occupant injured in collision with pedestrian or animal: Driver injured in nontraffic accident" +"V40.1","Car occupant injured in collision with pedestrian or animal: Passenger injured in nontraffic accident" +"V40.2","Car occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident" +"V40.3","Car occupant injured in collision with pedestrian or animal: Unspecified car occupant injured in nontraffic accident" +"V40.4","Car occupant injured in collision with pedestrian or animal: Person injured while boarding or alighting" +"V40.5","Car occupant injured in collision with pedestrian or animal: Driver injured in traffic accident" +"V40.6","Car occupant injured in collision with pedestrian or animal: Passenger injured in traffic accident" +"V40.7","Car occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident" +"V40.9","Car occupant injured in collision with pedestrian or animal: Unspecified car occupant injured in traffic accident" +"V41","Car occupant injured in collision with pedal cycle" +"V41.0","Car occupant injured in collision with pedal cycle: Driver injured in nontraffic accident" +"V41.1","Car occupant injured in collision with pedal cycle: Passenger injured in nontraffic accident" +"V41.2","Car occupant injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident" +"V41.3","Car occupant injured in collision with pedal cycle: Unspecified car occupant injured in nontraffic accident" +"V41.4","Car occupant injured in collision with pedal cycle: Person injured while boarding or alighting" +"V41.5","Car occupant injured in collision with pedal cycle: Driver injured in traffic accident" +"V41.6","Car occupant injured in collision with pedal cycle: Passenger injured in traffic accident" +"V41.7","Car occupant injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident" +"V41.9","Car occupant injured in collision with pedal cycle: Unspecified car occupant injured in traffic accident" +"V42","Car occupant injured in collision with two- or three-wheeled motor vehicle" +"V42.0","Car occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident" +"V42.1","Car occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident" +"V42.2","Car occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in nontraffic accident" +"V42.3","Car occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified car occupant injured in nontraffic accident" +"V42.4","Car occupant injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting" +"V42.5","Car occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident" +"V42.6","Car occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident" +"V42.7","Car occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in traffic accident" +"V42.9","Car occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified car occupant injured in traffic accident" +"V43","Car occupant injured in collision with car, pick-up truck or van" +"V43.0","Car occupant injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident" +"V43.1","Car occupant injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident" +"V43.2","Car occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in nontraffic accident" +"V43.3","Car occupant injured in collision with car, pick-up truck or van: Unspecified car occupant injured in nontraffic accident" +"V43.4","Car occupant injured in collision with car, pick-up truck or van: Person injured while boarding or alighting" +"V43.5","Car occupant injured in collision with car, pick-up truck or van: Driver injured in traffic accident" +"V43.6","Car occupant injured in collision with car, pick-up truck or van: Passenger injured in traffic accident" +"V43.7","Car occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in traffic accident" +"V43.9","Car occupant injured in collision with car, pick-up truck or van: Unspecified car occupant injured in traffic accident" +"V44","Car occupant injured in collision with heavy transport vehicle or bus" +"V44.0","Car occupant injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident" +"V44.1","Car occupant injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident" +"V44.2","Car occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in nontraffic accident" +"V44.3","Car occupant injured in collision with heavy transport vehicle or bus: Unspecified car occupant injured in nontraffic accident" +"V44.4","Car occupant injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting" +"V44.5","Car occupant injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident" +"V44.6","Car occupant injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident" +"V44.7","Car occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in traffic accident" +"V44.9","Car occupant injured in collision with heavy transport vehicle or bus: Unspecified car occupant injured in traffic accident" +"V45","Car occupant injured in collision with railway train or railway vehicle" +"V45.0","Car occupant injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident" +"V45.1","Car occupant injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident" +"V45.2","Car occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in nontraffic accident" +"V45.3","Car occupant injured in collision with railway train or railway vehicle: Unspecified car occupant injured in nontraffic accident" +"V45.4","Car occupant injured in collision with railway train or railway vehicle: Person injured while boarding or alighting" +"V45.5","Car occupant injured in collision with railway train or railway vehicle: Driver injured in traffic accident" +"V45.6","Car occupant injured in collision with railway train or railway vehicle: Passenger injured in traffic accident" +"V45.7","Car occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in traffic accident" +"V45.9","Car occupant injured in collision with railway train or railway vehicle: Unspecified car occupant injured in traffic accident" +"V46","Car occupant injured in collision with other nonmotor vehicle" +"V46.0","Car occupant injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident" +"V46.1","Car occupant injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident" +"V46.2","Car occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident" +"V46.3","Car occupant injured in collision with other nonmotor vehicle: Unspecified car occupant injured in nontraffic accident" +"V46.4","Car occupant injured in collision with other nonmotor vehicle: Person injured while boarding or alighting" +"V46.5","Car occupant injured in collision with other nonmotor vehicle: Driver injured in traffic accident" +"V46.6","Car occupant injured in collision with other nonmotor vehicle: Passenger injured in traffic accident" +"V46.7","Car occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident" +"V46.9","Car occupant injured in collision with other nonmotor vehicle: Unspecified car occupant injured in traffic accident" +"V47","Car occupant injured in collision with fixed or stationary object" +"V47.0","Car occupant injured in collision with fixed or stationary object: Driver injured in nontraffic accident" +"V47.1","Car occupant injured in collision with fixed or stationary object: Passenger injured in nontraffic accident" +"V47.2","Car occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accident" +"V47.3","Car occupant injured in collision with fixed or stationary object: Unspecified car occupant injured in nontraffic accident" +"V47.4","Car occupant injured in collision with fixed or stationary object: Person injured while boarding or alighting" +"V47.5","Car occupant injured in collision with fixed or stationary object: Driver injured in traffic accident" +"V47.6","Car occupant injured in collision with fixed or stationary object: Passenger injured in traffic accident" +"V47.7","Car occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in traffic accident" +"V47.9","Car occupant injured in collision with fixed or stationary object: Unspecified car occupant injured in traffic accident" +"V48","CAR OCCUPANT INJURED IN NONCOLLISION TRANSPORT ACCIDENT" +"V48.0","Car occupant injured in noncollision transport accident: Driver injured in nontraffic accident" +"V48.1","Car occupant injured in noncollision transport accident: Passenger injured in nontraffic accident" +"V48.2","Car occupant injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident" +"V48.3","Car occupant injured in noncollision transport accident: Unspecified car occupant injured in nontraffic accident" +"V48.4","Car occupant injured in noncollision transport accident: Person injured while boarding or alighting" +"V48.5","Car occupant injured in noncollision transport accident: Driver injured in traffic accident" +"V48.6","Car occupant injured in noncollision transport accident: Passenger injured in traffic accident" +"V48.7","Car occupant injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident" +"V48.9","Car occupant injured in noncollision transport accident: Unspecified car occupant injured in traffic accident" +"V49","Car occupant injured in other and unspecified transport accidents" +"V49.0","Driver injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V49.1","Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V49.2","Unspecified car occupant injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V49.3","Car occupant [any] injured in unspecified nontraffic accident" +"V49.4","Driver injured in collision with other and unspecified motor vehicles in traffic accident" +"V49.5","Passenger injured in collision with other and unspecified motor vehicles in traffic accident" +"V49.6","Unspecified car occupant injured in collision with other and unspecified motor vehicles in traffic accident" +"V49.8","Car occupant [any] injured in other specified transport accidents" +"V49.9","Car occupant [any] injured in unspecified traffic accident" +"V50","Occupant of pick-up truck or van injured in collision with pedestrian or animal" +"V50.0","Occupant of pick-up truck or van injured in collision with pedestrian or animal: Driver injured in nontraffic accident" +"V50.1","Occupant of pick-up truck or van injured in collision with pedestrian or animal: Passenger injured in nontraffic accident" +"V50.2","Occupant of pick-up truck or van injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident" +"V50.3","Occupant of pick-up truck or van injured in collision with pedestrian or animal: Unspecified occupant of pick-up truck or van injured in nontraffic accident" +"V50.4","Occupant of pick-up truck or van injured in collision with pedestrian or animal: Person injured while boarding or alighting" +"V50.5","Occupant of pick-up truck or van injured in collision with pedestrian or animal: Driver injured in traffic accident" +"V50.6","Occupant of pick-up truck or van injured in collision with pedestrian or animal: Passenger injured in traffic accident" +"V50.7","Occupant of pick-up truck or van injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident" +"V50.9","Occupant of pick-up truck or van injured in collision with pedestrian or animal: Unspecified occupant of pick-up truck or van injured in traffic accident" +"V51","Occupant of pick-up truck or van injured in collision with pedal cycle" +"V51.0","Occupant of pick-up truck or van injured in collision with pedal cycle: Driver injured in nontraffic accident" +"V51.1","Occupant of pick-up truck or van injured in collision with pedal cycle: Passenger injured in nontraffic accident" +"V51.2","Occupant of pick-up truck or van injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident" +"V51.3","Occupant of pick-up truck or van injured in collision with pedal cycle: Unspecified occupant of pick-up truck or van injured in nontraffic accident" +"V51.4","Occupant of pick-up truck or van injured in collision with pedal cycle: Person injured while boarding or alighting" +"V51.5","Occupant of pick-up truck or van injured in collision with pedal cycle: Driver injured in traffic accident" +"V51.6","Occupant of pick-up truck or van injured in collision with pedal cycle: Passenger injured in traffic accident" +"V51.7","Occupant of pick-up truck or van injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident" +"V51.9","Occupant of pick-up truck or van injured in collision with pedal cycle: Unspecified occupant of pick-up truck or van injured in traffic accident" +"V52","Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle" +"V52.0","Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident" +"V52.1","Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident" +"V52.2","Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in nontraffic accident" +"V52.3","Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of pick-up truck or van injured in nontraffic accident" +"V52.4","Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting" +"V52.5","Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident" +"V52.6","Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident" +"V52.7","Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in traffic accident" +"V52.9","Occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of pick-up truck or van injured in traffic accident" +"V53","Occupant of pick-up truck or van injured in collision with car, pick-up truck or van" +"V53.0","Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident" +"V53.1","Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident" +"V53.2","Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in nontraffic accident" +"V53.3","Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Unspecified occupant of pick-up truck or van injured in nontraffic accident" +"V53.4","Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Person injured while boarding or alighting" +"V53.5","Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Driver injured in traffic accident" +"V53.6","Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Passenger injured in traffic accident" +"V53.7","Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in traffic accident" +"V53.9","Occupant of pick-up truck or van injured in collision with car, pick-up truck or van: Unspecified occupant of pick-up truck or van injured in traffic accident" +"V54","Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus" +"V54.0","Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident" +"V54.1","Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident" +"V54.2","Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in nontraffic accident" +"V54.3","Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Unspecified occupant of pick-up truck or van injured in nontraffic accident" +"V54.4","Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting" +"V54.5","Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident" +"V54.6","Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident" +"V54.7","Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in traffic accident" +"V54.9","Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus: Unspecified occupant of pick-up truck or van injured in traffic accident" +"V55","Occupant of pick-up truck or van injured in collision with railway train or railway vehicle" +"V55.0","Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident" +"V55.1","Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident" +"V55.2","Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in nontraffic accident" +"V55.3","Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Unspecified occupant of pick-up truck or van injured in nontraffic accident" +"V55.4","Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Person injured while boarding or alighting" +"V55.5","Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Driver injured in traffic accident" +"V55.6","Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Passenger injured in traffic accident" +"V55.7","Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in traffic accident" +"V55.9","Occupant of pick-up truck or van injured in collision with railway train or railway vehicle: Unspecified occupant of pick-up truck or van injured in traffic accident" +"V56","Occupant of pick-up truck or van injured in collision with other nonmotor vehicle" +"V56.0","Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident" +"V56.1","Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident" +"V56.2","Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident" +"V56.3","Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Unspecified occupant of pick-up truck or van injured in nontraffic accident" +"V56.4","Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Person injured while boarding or alighting" +"V56.5","Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Driver injured in traffic accident" +"V56.6","Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Passenger injured in traffic accident" +"V56.7","Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident" +"V56.9","Occupant of pick-up truck or van injured in collision with other nonmotor vehicle: Unspecified occupant of pick-up truck or van injured in traffic accident" +"V57","Occupant of pick-up truck or van injured in collision with fixed or stationary object" +"V57.0","Occupant of pick-up truck or van injured in collision with fixed or stationary object: Driver injured in nontraffic accident" +"V57.1","Occupant of pick-up truck or van injured in collision with fixed or stationary object: Passenger injured in nontraffic accident" +"V57.2","Occupant of pick-up truck or van injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accident" +"V57.3","Occupant of pick-up truck or van injured in collision with fixed or stationary object: Unspecified occupant of pick-up truck or van injured in nontraffic accident" +"V57.4","Occupant of pick-up truck or van injured in collision with fixed or stationary object: Person injured while boarding or alighting" +"V57.5","Occupant of pick-up truck or van injured in collision with fixed or stationary object: Driver injured in traffic accident" +"V57.6","Occupant of pick-up truck or van injured in collision with fixed or stationary object: Passenger injured in traffic accident" +"V57.7","Occupant of pick-up truck or van injured in collision with fixed or stationary object: Person on outside of vehicle injured in traffic accident" +"V57.9","Occupant of pick-up truck or van injured in collision with fixed or stationary object: Unspecified occupant of pick-up truck or van injured in traffic accident" +"V58","OCCUPANT OF PICK-UP TRUCK OR VAN INJURED IN NONCOLLISION TRANSPORT ACCIDENT" +"V58.0","Occupant of pick-up truck or van injured in noncollision transport accident: Driver injured in nontraffic accident" +"V58.1","Occupant of pick-up truck or van injured in noncollision transport accident: Passenger injured in nontraffic accident" +"V58.2","Occupant of pick-up truck or van injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident" +"V58.3","Occupant of pick-up truck or van injured in noncollision transport accident: Unspecified occupant of pick-up truck or van injured in nontraffic accident" +"V58.4","Occupant of pick-up truck or van injured in noncollision transport accident: Person injured while boarding or alighting" +"V58.5","Occupant of pick-up truck or van injured in noncollision transport accident: Driver injured in traffic accident" +"V58.6","Occupant of pick-up truck or van injured in noncollision transport accident: Passenger injured in traffic accident" +"V58.7","Occupant of pick-up truck or van injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident" +"V58.9","Occupant of pick-up truck or van injured in noncollision transport accident: Unspecified occupant of pick-up truck or van injured in traffic accident" +"V59","Occupant of pick-up truck or van injured in other and unspecified transport accidents" +"V59.0","Driver injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V59.1","Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V59.2","Unspecified occupant of pick-up truck or van injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V59.3","Occupant [any] of pick-up truck or van injured in unspecified nontraffic accident" +"V59.4","Driver injured in collision with other and unspecified motor vehicles in traffic accident" +"V59.5","Passenger injured in collision with other and unspecified motor vehicles in traffic accident" +"V59.6","Unspecified occupant of pick-up truck or van injured in collision with other and unspecified motor vehicles in traffic accident" +"V59.8","Occupant [any] of pick-up truck or van injured in other specified transport accidents" +"V59.9","Occupant [any] of pick-up truck or van injured in unspecified traffic accident" +"V60","Occupant of heavy transport vehicle injured in collision with pedestrian or animal" +"V60.0","Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Driver injured in nontraffic accident" +"V60.1","Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Passenger injured in nontraffic accident" +"V60.2","Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident" +"V60.3","Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Unspecified occupant of heavy transport vehicle injured in nontraffic accident" +"V60.4","Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Person injured while boarding or alighting" +"V60.5","Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Driver injured in traffic accident" +"V60.6","Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Passenger injured in traffic accident" +"V60.7","Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident" +"V60.9","Occupant of heavy transport vehicle injured in collision with pedestrian or animal: Unspecified occupant of heavy transport vehicle injured in traffic accident" +"V61","Occupant of heavy transport vehicle injured in collision with pedal cycle" +"V61.0","Occupant of heavy transport vehicle injured in collision with pedal cycle: Driver injured in nontraffic accident" +"V61.1","Occupant of heavy transport vehicle injured in collision with pedal cycle: Passenger injured in nontraffic accident" +"V61.2","Occupant of heavy transport vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident" +"V61.3","Occupant of heavy transport vehicle injured in collision with pedal cycle: Unspecified occupant of heavy transport vehicle injured in nontraffic accident" +"V61.4","Occupant of heavy transport vehicle injured in collision with pedal cycle: Person injured while boarding or alighting" +"V61.5","Occupant of heavy transport vehicle injured in collision with pedal cycle: Driver injured in traffic accident" +"V61.6","Occupant of heavy transport vehicle injured in collision with pedal cycle: Passenger injured in traffic accident" +"V61.7","Occupant of heavy transport vehicle injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident" +"V61.9","Occupant of heavy transport vehicle injured in collision with pedal cycle: Unspecified occupant of heavy transport vehicle injured in traffic accident" +"V62","Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle" +"V62.0","Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident" +"V62.1","Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident" +"V62.2","Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in nontraffic accident" +"V62.3","Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of heavy transport vehicle injured in nontraffic accident" +"V62.4","Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting" +"V62.5","Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident" +"V62.6","Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident" +"V62.7","Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in traffic accident" +"V62.9","Occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle: Unspecified occupant of heavy transport vehicle injured in traffic accident" +"V63","Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van" +"V63.0","Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident" +"V63.1","Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident" +"V63.2","Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in nontraffic accident" +"V63.3","Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Unspecified occupant of heavy transport vehicle injured in nontraffic accident" +"V63.4","Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Person injured while boarding or alighting" +"V63.5","Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Driver injured in traffic accident" +"V63.6","Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Passenger injured in traffic accident" +"V63.7","Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in traffic accident" +"V63.9","Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van: Unspecified occupant of heavy transport vehicle injured in traffic accident" +"V64","Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus" +"V64.0","Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident" +"V64.1","Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident" +"V64.2","Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in nontraffic accident" +"V64.3","Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of heavy transport vehicle injured in nontraffic accident" +"V64.4","Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting" +"V64.5","Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident" +"V64.6","Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident" +"V64.7","Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in traffic accident" +"V64.9","Occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus: Unspecified occupant of heavy transport vehicle injured in traffic accident" +"V65","Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle" +"V65.0","Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident" +"V65.1","Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident" +"V65.2","Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in nontraffic accident" +"V65.3","Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of heavy transport vehicle injured in nontraffic accident" +"V65.4","Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Person injured while boarding or alighting" +"V65.5","Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Driver injured in traffic accident" +"V65.6","Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Passenger injured in traffic accident" +"V65.7","Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in traffic accident" +"V65.9","Occupant of heavy transport vehicle injured in collision with railway train or railway vehicle: Unspecified occupant of heavy transport vehicle injured in traffic accident" +"V66","Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle" +"V66.0","Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident" +"V66.1","Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident" +"V66.2","Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident" +"V66.3","Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of heavy transport vehicle injured in nontraffic accident" +"V66.4","Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Person injured while boarding or alighting" +"V66.5","Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Driver injured in traffic accident" +"V66.6","Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Passenger injured in traffic accident" +"V66.7","Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident" +"V66.9","Occupant of heavy transport vehicle injured in collision with other nonmotor vehicle: Unspecified occupant of heavy transport vehicle injured in traffic accident" +"V67","Occupant of heavy transport vehicle injured in collision with fixed or stationary object" +"V67.0","Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Driver injured in nontraffic accident" +"V67.1","Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Passenger injured in nontraffic accident" +"V67.2","Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accident" +"V67.3","Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Unspecified occupant of heavy transport vehicle injured in nontraffic accident" +"V67.4","Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Person injured while boarding or alighting" +"V67.5","Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Driver injured in traffic accident" +"V67.6","Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Passenger injured in traffic accident" +"V67.7","Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Person on outside of vehicle injured in traffic accident" +"V67.9","Occupant of heavy transport vehicle injured in collision with fixed or stationary object: Unspecified occupant of heavy transport vehicle injured in traffic accident" +"V68","OCCUPANT OF HEAVY TRANSPORT VEHICLE INJURED IN NONCOLLISION TRANSPORT ACCIDENT" +"V68.0","Occupant of heavy transport vehicle injured in noncollision transport accident: Driver injured in nontraffic accident" +"V68.1","Occupant of heavy transport vehicle injured in noncollision transport accident: Passenger injured in nontraffic accident" +"V68.2","Occupant of heavy transport vehicle injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident" +"V68.3","Occupant of heavy transport vehicle injured in noncollision transport accident: Unspecified occupant of heavy transport vehicle injured in nontraffic accident" +"V68.4","Occupant of heavy transport vehicle injured in noncollision transport accident: Person injured while boarding or alighting" +"V68.5","Occupant of heavy transport vehicle injured in noncollision transport accident: Driver injured in traffic accident" +"V68.6","Occupant of heavy transport vehicle injured in noncollision transport accident: Passenger injured in traffic accident" +"V68.7","Occupant of heavy transport vehicle injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident" +"V68.9","Occupant of heavy transport vehicle injured in noncollision transport accident: Unspecified occupant of heavy transport vehicle injured in traffic accident" +"V69","Occupant of heavy transport vehicle injured in other and unspecified transport accidents" +"V69.0","Driver injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V69.1","Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V69.2","Unspecified occupant of heavy transport vehicle injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V69.3","Occupant [any] of heavy transport vehicle injured in unspecified nontraffic accident" +"V69.4","Driver injured in collision with other and unspecified motor vehicles in traffic accident" +"V69.5","Passenger injured in collision with other and unspecified motor vehicles in traffic accident" +"V69.6","Unspecified occupant of heavy transport vehicle injured in collision with other and unspecified motor vehicles in traffic accident" +"V69.8","Occupant [any] of heavy transport vehicle injured in other specified transport accidents" +"V69.9","Occupant [any] of heavy transport vehicle injured in unspecified traffic accident" +"V70","Bus occupant injured in collision with pedestrian or animal" +"V70.0","Bus occupant injured in collision with pedestrian or animal: Driver injured in nontraffic accident" +"V70.1","Bus occupant injured in collision with pedestrian or animal: Passenger injured in nontraffic accident" +"V70.2","Bus occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in nontraffic accident" +"V70.3","Bus occupant injured in collision with pedestrian or animal: Unspecified bus occupant injured in nontraffic accident" +"V70.4","Bus occupant injured in collision with pedestrian or animal: Person injured while boarding or alighting" +"V70.5","Bus occupant injured in collision with pedestrian or animal: Driver injured in traffic accident" +"V70.6","Bus occupant injured in collision with pedestrian or animal: Passenger injured in traffic accident" +"V70.7","Bus occupant injured in collision with pedestrian or animal: Person on outside of vehicle injured in traffic accident" +"V70.9","Bus occupant injured in collision with pedestrian or animal: Unspecified bus occupant injured in traffic accident" +"V71","Bus occupant injured in collision with pedal cycle" +"V71.0","Bus occupant injured in collision with pedal cycle: Driver injured in nontraffic accident" +"V71.1","Bus occupant injured in collision with pedal cycle: Passenger injured in nontraffic accident" +"V71.2","Bus occupant injured in collision with pedal cycle: Person on outside of vehicle injured in nontraffic accident" +"V71.3","Bus occupant injured in collision with pedal cycle: Unspecified bus occupant injured in nontraffic accident" +"V71.4","Bus occupant injured in collision with pedal cycle: Person injured while boarding or alighting" +"V71.5","Bus occupant injured in collision with pedal cycle: Driver injured in traffic accident" +"V71.6","Bus occupant injured in collision with pedal cycle: Passenger injured in traffic accident" +"V71.7","Bus occupant injured in collision with pedal cycle: Person on outside of vehicle injured in traffic accident" +"V71.9","Bus occupant injured in collision with pedal cycle: Unspecified bus occupant injured in traffic accident" +"V72","Bus occupant injured in collision with two- or three-wheeled motor vehicle" +"V72.0","Bus occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in nontraffic accident" +"V72.1","Bus occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in nontraffic accident" +"V72.2","Bus occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in nontraffic accident" +"V72.3","Bus occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified bus occupant injured in nontraffic accident" +"V72.4","Bus occupant injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting" +"V72.5","Bus occupant injured in collision with two- or three-wheeled motor vehicle: Driver injured in traffic accident" +"V72.6","Bus occupant injured in collision with two- or three-wheeled motor vehicle: Passenger injured in traffic accident" +"V72.7","Bus occupant injured in collision with two- or three-wheeled motor vehicle: Person on outside of vehicle injured in traffic accident" +"V72.9","Bus occupant injured in collision with two- or three-wheeled motor vehicle: Unspecified bus occupant injured in traffic accident" +"V73","Bus occupant injured in collision with car, pick-up truck or van" +"V73.0","Bus occupant injured in collision with car, pick-up truck or van: Driver injured in nontraffic accident" +"V73.1","Bus occupant injured in collision with car, pick-up truck or van: Passenger injured in nontraffic accident" +"V73.2","Bus occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in nontraffic accident" +"V73.3","Bus occupant injured in collision with car, pick-up truck or van: Unspecified bus occupant injured in nontraffic accident" +"V73.4","Bus occupant injured in collision with car, pick-up truck or van: Person injured while boarding or alighting" +"V73.5","Bus occupant injured in collision with car, pick-up truck or van: Driver injured in traffic accident" +"V73.6","Bus occupant injured in collision with car, pick-up truck or van: Passenger injured in traffic accident" +"V73.7","Bus occupant injured in collision with car, pick-up truck or van: Person on outside of vehicle injured in traffic accident" +"V73.9","Bus occupant injured in collision with car, pick-up truck or van: Unspecified bus occupant injured in traffic accident" +"V74","Bus occupant injured in collision with heavy transport vehicle or bus" +"V74.0","Bus occupant injured in collision with heavy transport vehicle or bus: Driver injured in nontraffic accident" +"V74.1","Bus occupant injured in collision with heavy transport vehicle or bus: Passenger injured in nontraffic accident" +"V74.2","Bus occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in nontraffic accident" +"V74.3","Bus occupant injured in collision with heavy transport vehicle or bus: Unspecified bus occupant injured in nontraffic accident" +"V74.4","Bus occupant injured in collision with heavy transport vehicle or bus: Person injured while boarding or alighting" +"V74.5","Bus occupant injured in collision with heavy transport vehicle or bus: Driver injured in traffic accident" +"V74.6","Bus occupant injured in collision with heavy transport vehicle or bus: Passenger injured in traffic accident" +"V74.7","Bus occupant injured in collision with heavy transport vehicle or bus: Person on outside of vehicle injured in traffic accident" +"V74.9","Bus occupant injured in collision with heavy transport vehicle or bus: Unspecified bus occupant injured in traffic accident" +"V75","Bus occupant injured in collision with railway train or railway vehicle" +"V75.0","Bus occupant injured in collision with railway train or railway vehicle: Driver injured in nontraffic accident" +"V75.1","Bus occupant injured in collision with railway train or railway vehicle: Passenger injured in nontraffic accident" +"V75.2","Bus occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in nontraffic accident" +"V75.3","Bus occupant injured in collision with railway train or railway vehicle: Unspecified bus occupant injured in nontraffic accident" +"V75.4","Bus occupant injured in collision with railway train or railway vehicle: Person injured while boarding or alighting" +"V75.5","Bus occupant injured in collision with railway train or railway vehicle: Driver injured in traffic accident" +"V75.6","Bus occupant injured in collision with railway train or railway vehicle: Passenger injured in traffic accident" +"V75.7","Bus occupant injured in collision with railway train or railway vehicle: Person on outside of vehicle injured in traffic accident" +"V75.9","Bus occupant injured in collision with railway train or railway vehicle: Unspecified bus occupant injured in traffic accident" +"V76","Bus occupant injured in collision with other nonmotor vehicle" +"V76.0","Bus occupant injured in collision with other nonmotor vehicle: Driver injured in nontraffic accident" +"V76.1","Bus occupant injured in collision with other nonmotor vehicle: Passenger injured in nontraffic accident" +"V76.2","Bus occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in nontraffic accident" +"V76.3","Bus occupant injured in collision with other nonmotor vehicle: Unspecified bus occupant injured in nontraffic accident" +"V76.4","Bus occupant injured in collision with other nonmotor vehicle: Person injured while boarding or alighting" +"V76.5","Bus occupant injured in collision with other nonmotor vehicle: Driver injured in traffic accident" +"V76.6","Bus occupant injured in collision with other nonmotor vehicle: Passenger injured in traffic accident" +"V76.7","Bus occupant injured in collision with other nonmotor vehicle: Person on outside of vehicle injured in traffic accident" +"V76.9","Bus occupant injured in collision with other nonmotor vehicle: Unspecified bus occupant injured in traffic accident" +"V77","Bus occupant injured in collision with fixed or stationary object" +"V77.0","Bus occupant injured in collision with fixed or stationary object: Driver injured in nontraffic accident" +"V77.1","Bus occupant injured in collision with fixed or stationary object: Passenger injured in nontraffic accident" +"V77.2","Bus occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in nontraffic accident" +"V77.3","Bus occupant injured in collision with fixed or stationary object: Unspecified bus occupant injured in nontraffic accident" +"V77.4","Bus occupant injured in collision with fixed or stationary object: Person injured while boarding or alighting" +"V77.5","Bus occupant injured in collision with fixed or stationary object: Driver injured in traffic accident" +"V77.6","Bus occupant injured in collision with fixed or stationary object: Passenger injured in traffic accident" +"V77.7","Bus occupant injured in collision with fixed or stationary object: Person on outside of vehicle injured in traffic accident" +"V77.9","Bus occupant injured in collision with fixed or stationary object: Unspecified bus occupant injured in traffic accident" +"V78","BUS OCCUPANT INJURED IN NONCOLLISION TRANSPORT ACCIDENT" +"V78.0","Bus occupant injured in noncollision transport accident: Driver injured in nontraffic accident" +"V78.1","Bus occupant injured in noncollision transport accident: Passenger injured in nontraffic accident" +"V78.2","Bus occupant injured in noncollision transport accident: Person on outside of vehicle injured in nontraffic accident" +"V78.3","Bus occupant injured in noncollision transport accident: Unspecified bus occupant injured in nontraffic accident" +"V78.4","Bus occupant injured in noncollision transport accident: Person injured while boarding or alighting" +"V78.5","Bus occupant injured in noncollision transport accident: Driver injured in traffic accident" +"V78.6","Bus occupant injured in noncollision transport accident: Passenger injured in traffic accident" +"V78.7","Bus occupant injured in noncollision transport accident: Person on outside of vehicle injured in traffic accident" +"V78.9","Bus occupant injured in noncollision transport accident: Unspecified bus occupant injured in traffic accident" +"V79","Bus occupant injured in other and unspecified transport accidents" +"V79.0","Driver injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V79.1","Passenger injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V79.2","Unspecified bus occupant injured in collision with other and unspecified motor vehicles in nontraffic accident" +"V79.3","Bus occupant [any] injured in unspecified nontraffic accident" +"V79.4","Driver injured in collision with other and unspecified motor vehicles in traffic accident" +"V79.5","Passenger injured in collision with other and unspecified motor vehicles in traffic accident" +"V79.6","Unspecified bus occupant injured in collision with other and unspecified motor vehicles in traffic accident" +"V79.8","Bus occupant [any] injured in other specified transport accidents" +"V79.9","Bus occupant [any] injured in unspecified traffic accident" +"V80","ANIMAL-RIDER OR OCCUPANT OF ANIMAL-DRAWN VEHICLE INJURED IN TRANSPORT ACCIDENT" +"V80.0","Rider or occupant injured by fall from or being thrown from animal or animal-drawn vehicle in noncollision accident" +"V80.1","Rider or occupant injured in collision with pedestrian or animal" +"V80.2","Rider or occupant injured in collision with pedal cycle" +"V80.3","Rider or occupant injured in collision with two- or three-wheeled motor vehicle" +"V80.4","Rider or occupant injured in collision with car, pick-up truck, van, heavy transport vehicle or bus" +"V80.5","Rider or occupant injured in collision with other specified motor vehicle" +"V80.6","Rider or occupant injured in collision with railway train or railway vehicle" +"V80.7","Rider or occupant injured in collision with other nonmotor vehicle" +"V80.8","Rider or occupant injured in collision with fixed or stationary object" +"V80.9","Rider or occupant injured in other and unspecified transport accidents" +"V81","OCCUPANT OF RAILWAY TRAIN OR RAILWAY VEHICLE INJURED IN TRANSPORT ACCIDENT" +"V81.0","Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident" +"V81.1","Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident" +"V81.2","Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock" +"V81.3","Occupant of railway train or railway vehicle injured in collision with other object" +"V81.4","Person injured while boarding or alighting from railway train or railway vehicle" +"V81.5","Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle" +"V81.6","Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle" +"V81.7","Occupant of railway train or railway vehicle injured in derailment without antecedent collision" +"V81.8","Occupant of railway train or railway vehicle injured in other specified railway accidents" +"V81.9","Occupant of railway train or railway vehicle injured in unspecified railway accident" +"V82","OCCUPANT OF STREETCAR INJURED IN TRANSPORT ACCIDENT" +"V82.0","Occupant of streetcar injured in collision with motor vehicle in nontraffic accident" +"V82.1","Occupant of streetcar injured in collision with motor vehicle in traffic accident" +"V82.2","Occupant of streetcar injured in collision with or hit by rolling stock" +"V82.3","Occupant of streetcar injured in collision with other object" +"V82.4","Person injured while boarding or alighting from streetcar" +"V82.5","Occupant of streetcar injured by fall in streetcar" +"V82.6","Occupant of streetcar injured by fall from streetcar" +"V82.7","Occupant of streetcar injured in derailment without antecedent collision" +"V82.8","Occupant of streetcar injured in other specified transport accidents" +"V82.9","Occupant of streetcar injured in unspecified traffic accident" +"V83","OCCUPANT OF SPECIAL VEHICLE MAINLY USED ON INDUSTRIAL PREMISES INJURED IN TRANSPORT ACCIDENT" +"V83.0","Driver of special industrial vehicle injured in traffic accident" +"V83.1","Passenger of special industrial vehicle injured in traffic accident" +"V83.2","Person on outside of special industrial vehicle injured in traffic accident" +"V83.3","Unspecified occupant of special industrial vehicle injured in traffic accident" +"V83.4","Person injured while boarding or alighting from special industrial vehicle" +"V83.5","Driver of special industrial vehicle injured in nontraffic accident" +"V83.6","Passenger of special industrial vehicle injured in nontraffic accident" +"V83.7","Person on outside of special industrial vehicle injured in nontraffic accident" +"V83.9","Unspecified occupant of special industrial vehicle injured in nontraffic accident" +"V84","OCCUPANT OF SPECIAL VEHICLE MAINLY USED IN AGRICULTURE INJURED IN TRANSPORT ACCIDENT" +"V84.0","Driver of special agricultural vehicle injured in traffic accident" +"V84.1","Passenger of special agricultural vehicle injured in traffic accident" +"V84.2","Person on outside of special agricultural vehicle injured in traffic accident" +"V84.3","Unspecified occupant of special agricultural vehicle injured in traffic accident" +"V84.4","Person injured while boarding or alighting from special agricultural vehicle" +"V84.5","Driver of special agricultural vehicle injured in nontraffic accident" +"V84.6","Passenger of special agricultural vehicle injured in nontraffic accident" +"V84.7","Person on outside of special agricultural vehicle injured in nontraffic accident" +"V84.9","Unspecified occupant of special agricultural vehicle injured in nontraffic accident" +"V85","Occupant of special construction vehicle injured in transport accident" +"V85.0","Driver of special construction vehicle injured in traffic accident" +"V85.1","Passenger of special construction vehicle injured in traffic accident" +"V85.2","Person on outside of special construction vehicle injured in traffic accident" +"V85.3","Unspecified occupant of special construction vehicle injured in traffic accident" +"V85.4","Person injured while boarding or alighting from special construction vehicle" +"V85.5","Driver of special construction vehicle injured in nontraffic accident" +"V85.6","Passenger of special construction vehicle injured in nontraffic accident" +"V85.7","Person on outside of special construction vehicle injured in nontraffic accident" +"V85.9","Unspecified occupant of special construction vehicle injured in nontraffic accident" +"V86","Occupant of special all-terrain or other motor vehicle designed primarily for off-road use, injured in transport accident" +"V86.0","Driver of all-terrain or other off-road motor vehicle injured in traffic accident" +"V86.1","Passenger of all-terrain or other off-road motor vehicle injured in traffic accident" +"V86.2","Person on outside of all-terrain or other off-road motor vehicle injured in traffic accident" +"V86.3","Unspecified occupant of all-terrain or other off-road motor vehicle injured in traffic accident" +"V86.4","Person injured while boarding or alighting from all-terrain or other off-road motor vehicle" +"V86.5","Driver of all-terrain or other off-road motor vehicle injured in nontraffic accident" +"V86.6","Passenger of all-terrain or other off-road motor vehicle injured in nontraffic accident" +"V86.7","Person on outside of all-terrain or other off-road motor vehicle injured in nontraffic accident" +"V86.9","Unspecified occupant of all-terrain or other off-road motor vehicle injured in nontraffic accident" +"V87","Traffic accident of specified type but victim's mode of transport unknown" +"V87.0","Person injured in collision between car and two- or three-wheeled motor vehicle (traffic)" +"V87.1","Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic)" +"V87.2","Person injured in collision between car and pick-up truck or van (traffic)" +"V87.3","Person injured in collision between car and bus (traffic)" +"V87.4","Person injured in collision between car and heavy transport vehicle (traffic)" +"V87.5","Person injured in collision between heavy transport vehicle and bus (traffic)" +"V87.6","Person injured in collision between railway train or railway vehicle and car (traffic)" +"V87.7","Person injured in collision between other specified motor vehicles (traffic)" +"V87.8","Person injured in other specified noncollision transport accidents involving motor vehicle (traffic)" +"V87.9","Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic)" +"V88","NONTRAFFIC ACCIDENT OF SPECIFIED TYPE BUT VICTIM'S MODE OF TRANSPORT UNKNOWN" +"V88.0","Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic" +"V88.1","Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic" +"V88.2","Person injured in collision between car and pick-up truck or van, nontraffic" +"V88.3","Person injured in collision between car and bus, nontraffic" +"V88.4","Person injured in collision between car and heavy transport vehicle, nontraffic" +"V88.5","Person injured in collision between heavy transport vehicle and bus, nontraffic" +"V88.6","Person injured in collision between railway train or railway vehicle and car, nontraffic" +"V88.7","Person injured in collision between other specified motor vehicles, nontraffic" +"V88.8","Person Injured in other specified noncollision transport accidents involving motor vehicle, nontraffic" +"V88.9","Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic" +"V89","Motor- or nonmotor-vehicle accident, type of vehicle unspecified" +"V89.0","Person injured in unspecified motor-vehicle accident, nontraffic" +"V89.1","Person injured in unspecified nonmotor-vehicle accident, nontraffic" +"V89.2","Person injured in unspecified motor-vehicle accident, traffic" +"V89.3","Person injured in unspecified nonmotor-vehicle accident, traffic" +"V89.9","Person injured in unspecified vehicle accident" +"V90","ACCIDENT TO WATERCRAFT CAUSING DROWNING AND SUBMERSION" +"V90.0","Accident to watercraft causing drowning and submersion: Merchant ship" +"V90.1","Accident to watercraft causing drowning and submersion: Passenger ship" +"V90.2","Accident to watercraft causing drowning and submersion: Fishing boat" +"V90.3","Accident to watercraft causing drowning and submersion: Other powered watercraft" +"V90.4","Accident to watercraft causing drowning and submersion: Sailboat" +"V90.5","Accident to watercraft causing drowning and submersion: Canoe or kayak" +"V90.6","Accident to watercraft causing drowning and submersion: Inflatable craft (nonpowered)" +"V90.7","Accident to watercraft causing drowning and submersion: Water-skis" +"V90.8","Accident to watercraft causing drowning and submersion: Other unpowered watercraft" +"V90.9","Accident to watercraft causing drowning and submersion: Unspecified watercraft" +"V91","ACCIDENT TO WATERCRAFT CAUSING OTHER INJURY" +"V91.0","Accident to watercraft causing other injury: Merchant ship" +"V91.1","Accident to watercraft causing other injury: Passenger ship" +"V91.2","Accident to watercraft causing other injury: Fishing boat" +"V91.3","Accident to watercraft causing other injury: Other powered watercraft" +"V91.4","Accident to watercraft causing other injury: Sailboat" +"V91.5","Accident to watercraft causing other injury: Canoe or kayak" +"V91.6","Accident to watercraft causing other injury: Inflatable craft (nonpowered)" +"V91.7","Accident to watercraft causing other injury: Water-skis" +"V91.8","Accident to watercraft causing other injury: Other unpowered watercraft" +"V91.9","Accident to watercraft causing other injury: Unspecified watercraft" +"V92","Water-transport-related drowning and submersion without accident to watercraft" +"V92.0","Water-transport-related drowning and submersion without accident to watercraft: Merchant ship" +"V92.1","Water-transport-related drowning and submersion without accident to watercraft: Passenger ship" +"V92.2","Water-transport-related drowning and submersion without accident to watercraft: Fishing boat" +"V92.3","Water-transport-related drowning and submersion without accident to watercraft: Other powered watercraft" +"V92.4","Water-transport-related drowning and submersion without accident to watercraft: Sailboat" +"V92.5","Water-transport-related drowning and submersion without accident to watercraft: Canoe or kayak" +"V92.6","Water-transport-related drowning and submersion without accident to watercraft: Inflatable craft (nonpowered)" +"V92.7","Water-transport-related drowning and submersion without accident to watercraft: Water-skis" +"V92.8","Water-transport-related drowning and submersion without accident to watercraft: Other unpowered watercraft" +"V92.9","Water-transport-related drowning and submersion without accident to watercraft: Unspecified watercraft" +"V93","Accident on board watercraft without accident to watercraft, not causing drowning and submersion" +"V93.0","Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Merchant ship" +"V93.1","Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Passenger ship" +"V93.2","Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Fishing boat" +"V93.3","Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Other powered watercraft" +"V93.4","Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Sailboat" +"V93.5","Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Canoe or kayak" +"V93.6","Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Inflatable craft (nonpowered)" +"V93.7","Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Water-skis" +"V93.8","Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Other unpowered watercraft" +"V93.9","Accident on board watercraft without accident to watercraft, not causing drowning and submersion: Unspecified watercraft" +"V94","Other and unspecified water transport accidents" +"V94.0","Other and unspecified water transport accidents: Merchant ship" +"V94.1","Other and unspecified water transport accidents: Passenger ship" +"V94.2","Other and unspecified water transport accidents: Fishing boat" +"V94.3","Other and unspecified water transport accidents: Other powered watercraft" +"V94.4","Other and unspecified water transport accidents: Sailboat" +"V94.5","Other and unspecified water transport accidents: Canoe or kayak" +"V94.6","Other and unspecified water transport accidents: Inflatable craft (nonpowered)" +"V94.7","Other and unspecified water transport accidents: Water-skis" +"V94.8","Other and unspecified water transport accidents: Other unpowered watercraft" +"V94.9","Other and unspecified water transport accidents: Unspecified watercraft" +"V95","ACCIDENT TO POWERED AIRCRAFT CAUSING INJURY TO OCCUPANT" +"V95.0","Helicopter accident injuring occupant" +"V95.1","Ultralight, microlight or powered-glider accident injuring occupant" +"V95.2","Accident to other private fixed-wing aircraft, injuring occupant" +"V95.3","Accident to commercial fixed-wing aircraft, injuring occupant" +"V95.4","Spacecraft accident injuring occupant" +"V95.8","Other aircraft accidents injuring occupant" +"V95.9","Unspecified aircraft accident injuring occupant" +"V96","ACCIDENT TO NONPOWERED AIRCRAFT CAUSING INJURY TO OCCUPANT" +"V96.0","Balloon accident injuring occupant" +"V96.1","Hang-glider accident injuring occupant" +"V96.2","Glider (nonpowered) accident injuring occupant" +"V96.8","Other nonpowered-aircraft accidents injuring occupant" +"V96.9","Unspecified nonpowered-aircraft accident injuring occupant" +"V97","OTHER SPECIFIED AIR TRANSPORT ACCIDENTS" +"V97.0","Occupant of aircraft injured in other specified air transport accidents" +"V97.1","Person injured while boarding or alighting from aircraft" +"V97.2","Parachutist injured in air transport accident" +"V97.3","Person on ground injured in air transport accident" +"V97.8","Other air transport accidents, not elsewhere classified" +"V98","Other specified transport accidents" +"V99","Unspecified transport accident" +"W00","Fall on same level involving ice and snow" +"W00.0","Fall on same level involving ice and snow, Home" +"W00.1","Fall on same level involving ice and snow, Residential Institution" +"W00.2","Fall on same level involving ice and snow, School, Other Institution and Public Admimistration Area" +"W00.3","Fall on same level involving ice and snow, Sports and Athletic Areas" +"W00.4","Fall on same level involving ice and snow, Street and Highway" +"W00.5","Fall on same level involving ice and snow, Trade and Service Area" +"W00.6","Fall on same level involving ice and snow, Industrial and Construction Area" +"W00.7","Fall on same level involving ice and snow, Farm" +"W00.8","Fall on same level involving ice and snow, Other Specified Area" +"W00.9","Fall on same level involving ice and snow, Unspecified Place" +"W01","FALL ON SAME LEVEL FROM SLIPPING, TRIPPING AND STUMBLING" +"W01.0","Fall on same level from slipping, tripping and stumbling, Home" +"W01.1","Fall on same level from slipping, tripping and stumbling, Residential Institution" +"W01.2","Fall on same level from slipping, tripping and stumbling, School, Other Institution and Public Admimistration Area" +"W01.3","Fall on same level from slipping, tripping and stumbling, Sports and Athletic Areas" +"W01.4","Fall on same level from slipping, tripping and stumbling, Street and Highway" +"W01.5","Fall on same level from slipping, tripping and stumbling, Trade and Service Area" +"W01.6","Fall on same level from slipping, tripping and stumbling, Industrial and Construction Area" +"W01.7","Fall on same level from slipping, tripping and stumbling, Farm" +"W01.8","Fall on same level from slipping, tripping and stumbling, Other Specified Area" +"W01.9","Fall on same level from slipping, tripping and stumbling, Unspecified Place" +"W02","Fall involving ice-skates, skis, roller-skates or skateboards" +"W02.0","Fall involving ice-skates, skis, roller-skates or skateboards, Home" +"W02.1","Fall involving ice-skates, skis, roller-skates or skateboards, Residential Institution" +"W02.2","Fall involving ice-skates, skis, roller-skates or skateboards, School, Other Institution and Public Admimistration Area" +"W02.3","Fall involving ice-skates, skis, roller-skates or skateboards, Sports and Athletic Areas" +"W02.4","Fall involving ice-skates, skis, roller-skates or skateboards, Street and Highway" +"W02.5","Fall involving ice-skates, skis, roller-skates or skateboards, Trade and Service Area" +"W02.6","Fall involving ice-skates, skis, roller-skates or skateboards, Industrial and Construction Area" +"W02.7","Fall involving ice-skates, skis, roller-skates or skateboards, Farm" +"W02.8","Fall involving ice-skates, skis, roller-skates or skateboards, Other Specified Area" +"W02.9","Fall involving ice-skates, skis, roller-skates or skateboards, Unspecified Place" +"W03","Other fall on same level due to collision with, or pushing by, another person" +"W03.0","Other fall on same level due to collision with, or pushing by, another person, Home" +"W03.1","Other fall on same level due to collision with, or pushing by, another person, Residential Institution" +"W03.2","Other fall on same level due to collision with, or pushing by, another person, School, Other Institution and Public Admimistration Area" +"W03.3","Other fall on same level due to collision with, or pushing by, another person, Sports and Athletic Areas" +"W03.4","Other fall on same level due to collision with, or pushing by, another person, Street and Highway" +"W03.5","Other fall on same level due to collision with, or pushing by, another person, Trade and Service Area" +"W03.6","Other fall on same level due to collision with, or pushing by, another person, Industrial and Construction Area" +"W03.7","Other fall on same level due to collision with, or pushing by, another person, Farm" +"W03.8","Other fall on same level due to collision with, or pushing by, another person, Other Specified Area" +"W03.9","Other fall on same level due to collision with, or pushing by, another person, Unspecified Place" +"W04","FALL WHILE BEING CARRIED OR SUPPORTED BY OTHER PERSONS" +"W04.0","Fall while being carried or supported by other persons, Home" +"W04.1","Fall while being carried or supported by other persons, Residential Institution" +"W04.2","Fall while being carried or supported by other persons, School, Other Institution and Public Admimistration Area" +"W04.3","Fall while being carried or supported by other persons, Sports and Athletic Areas" +"W04.4","Fall while being carried or supported by other persons, Street and Highway" +"W04.5","Fall while being carried or supported by other persons, Trade and Service Area" +"W04.6","Fall while being carried or supported by other persons, Industrial and Construction Area" +"W04.7","Fall while being carried or supported by other persons, Farm" +"W04.8","Fall while being carried or supported by other persons, Other Specified Area" +"W04.9","Fall while being carried or supported by other persons, Unspecified Place" +"W05","FALL INVOLVING WHEELCHAIR" +"W05.0","Fall involving wheelchair, Home" +"W05.1","Fall involving wheelchair, Residential Institution" +"W05.2","Fall involving wheelchair, School, Other Institution and Public Admimistration Area" +"W05.3","Fall involving wheelchair, Sports and Athletic Areas" +"W05.4","Fall involving wheelchair, Street and Highway" +"W05.5","Fall involving wheelchair, Trade and Service Area" +"W05.6","Fall involving wheelchair, Industrial and Construction Area" +"W05.7","Fall involving wheelchair, Farm" +"W05.8","Fall involving wheelchair, Other Specified Area" +"W05.9","Fall involving wheelchair, Unspecified Place" +"W06","FALL INVOLVING BED" +"W06.0","Fall involving bed, Home" +"W06.1","Fall involving bed, Residential Institution" +"W06.2","Fall involving bed, School, Other Institution and Public Admimistration Area" +"W06.3","Fall involving bed, Sports and Athletic Areas" +"W06.4","Fall involving bed, Street and Highway" +"W06.5","Fall involving bed, Trade and Service Area" +"W06.6","Fall involving bed, Industrial and Construction Area" +"W06.7","Fall involving bed, Farm" +"W06.8","Fall involving bed, Other Specified Area" +"W06.9","Fall involving bed, Unspecified Place" +"W07","FALL INVOLVING CHAIR" +"W07.0","Fall involving chair, Home" +"W07.1","Fall involving chair, Residential Institution" +"W07.2","Fall involving chair, School, Other Institution and Public Admimistration Area" +"W07.3","Fall involving chair, Sports and Athletic Areas" +"W07.4","Fall involving chair, Street and Highway" +"W07.5","Fall involving chair, Trade and Service Area" +"W07.6","Fall involving chair, Industrial and Construction Area" +"W07.7","Fall involving chair, Farm" +"W07.8","Fall involving chair, Other Specified Area" +"W07.9","Fall involving chair, Unspecified Place" +"W08","FALL INVOLVING OTHER FURNITURE" +"W08.0","Fall involving other furniture, Home" +"W08.1","Fall involving other furniture, Residential Institution" +"W08.2","Fall involving other furniture, School, Other Institution and Public Admimistration Area" +"W08.3","Fall involving other furniture, Sports and Athletic Areas" +"W08.4","Fall involving other furniture, Street and Highway" +"W08.5","Fall involving other furniture, Trade and Service Area" +"W08.6","Fall involving other furniture, Industrial and Construction Area" +"W08.7","Fall involving other furniture, Farm" +"W08.8","Fall involving other furniture, Other Specified Area" +"W08.9","Fall involving other furniture, Unspecified Place" +"W09","Fall involving playground equipment" +"W09.0","Fall involving playground equipment, Home" +"W09.1","Fall involving playground equipment, Residential Institution" +"W09.2","Fall involving playground equipment, School, Other Institution and Public Admimistration Area" +"W09.3","Fall involving playground equipment, Sports and Athletic Areas" +"W09.4","Fall involving playground equipment, Street and Highway" +"W09.5","Fall involving playground equipment, Trade and Service Area" +"W09.6","Fall involving playground equipment, Industrial and Construction Area" +"W09.7","Fall involving playground equipment, Farm" +"W09.8","Fall involving playground equipment, Other Specified Area" +"W09.9","Fall involving playground equipment, Unspecified Place" +"W10","FALL ON AND FROM STAIRS AND STEPS" +"W10.0","Fall on and from stairs and steps, Home" +"W10.1","Fall on and from stairs and steps, Residential Institution" +"W10.2","Fall on and from stairs and steps, School, Other Institution and Public Admimistration Area" +"W10.3","Fall on and from stairs and steps, Sports and Athletic Areas" +"W10.4","Fall on and from stairs and steps, Street and Highway" +"W10.5","Fall on and from stairs and steps, Trade and Service Area" +"W10.6","Fall on and from stairs and steps, Industrial and Construction Area" +"W10.7","Fall on and from stairs and steps, Farm" +"W10.8","Fall on and from stairs and steps, Other Specified Area" +"W10.9","Fall on and from stairs and steps, Unspecified Place" +"W11","FALL ON AND FROM LADDER" +"W11.0","Fall on and from ladder, Home" +"W11.1","Fall on and from ladder, Residential Institution" +"W11.2","Fall on and from ladder, School, Other Institution and Public Admimistration Area" +"W11.3","Fall on and from ladder, Sports and Athletic Areas" +"W11.4","Fall on and from ladder, Street and Highway" +"W11.5","Fall on and from ladder, Trade and Service Area" +"W11.6","Fall on and from ladder, Industrial and Construction Area" +"W11.7","Fall on and from ladder, Farm" +"W11.8","Fall on and from ladder, Other Specified Area" +"W11.9","Fall on and from ladder, Unspecified Place" +"W12","Fall on and from scaffolding" +"W12.0","Fall on and from scaffolding, Home" +"W12.1","Fall on and from scaffolding, Residential Institution" +"W12.2","Fall on and from scaffolding, School, Other Institution and Public Admimistration Area" +"W12.3","Fall on and from scaffolding, Sports and Athletic Areas" +"W12.4","Fall on and from scaffolding, Street and Highway" +"W12.5","Fall on and from scaffolding, Trade and Service Area" +"W12.6","Fall on and from scaffolding, Industrial and Construction Area" +"W12.7","Fall on and from scaffolding, Farm" +"W12.8","Fall on and from scaffolding, Other Specified Area" +"W12.9","Fall on and from scaffolding, Unspecified Place" +"W13","FALL FROM, OUT OF OR THROUGH BUILDING OR STRUCTURE" +"W13.0","Fall from, out of or through building or structure, Home" +"W13.1","Fall from, out of or through building or structure, Residential Institution" +"W13.2","Fall from, out of or through building or structure, School, Other Institution and Public Admimistration Area" +"W13.3","Fall from, out of or through building or structure, Sports and Athletic Areas" +"W13.4","Fall from, out of or through building or structure, Street and Highway" +"W13.5","Fall from, out of or through building or structure, Trade and Service Area" +"W13.6","Fall from, out of or through building or structure, Industrial and Construction Area" +"W13.7","Fall from, out of or through building or structure, Farm" +"W13.8","Fall from, out of or through building or structure, Other Specified Area" +"W13.9","Fall from, out of or through building or structure, Unspecified Place" +"W14","FALL FROM TREE" +"W14.0","Fall from tree, Home" +"W14.1","Fall from tree, Residential Institution" +"W14.2","Fall from tree, School, Other Institution and Public Admimistration Area" +"W14.3","Fall from tree, Sports and Athletic Areas" +"W14.4","Fall from tree, Street and Highway" +"W14.5","Fall from tree, Trade and Service Area" +"W14.6","Fall from tree, Industrial and Construction Area" +"W14.7","Fall from tree, Farm" +"W14.8","Fall from tree, Other Specified Area" +"W14.9","Fall from tree, Unspecified Place" +"W15","FALL FROM CLIFF" +"W15.0","Fall from cliff, Home" +"W15.1","Fall from cliff, Residential Institution" +"W15.2","Fall from cliff, School, Other Institution and Public Admimistration Area" +"W15.3","Fall from cliff, Sports and Athletic Areas" +"W15.4","Fall from cliff, Street and Highway" +"W15.5","Fall from cliff, Trade and Service Area" +"W15.6","Fall from cliff, Industrial and Construction Area" +"W15.7","Fall from cliff, Farm" +"W15.8","Fall from cliff, Other Specified Area" +"W15.9","Fall from cliff, Unspecified Place" +"W16","Diving or jumping into water causing injury other than drowning or submersion" +"W16.0","Diving or jumping into water causing injury other than drowning or submersion, Home" +"W16.1","Diving or jumping into water causing injury other than drowning or submersion, Residential Institution" +"W16.2","Diving or jumping into water causing injury other than drowning or submersion, School, Other Institution and Public Admimistration Area" +"W16.3","Diving or jumping into water causing injury other than drowning or submersion, Sports and Athletic Areas" +"W16.4","Diving or jumping into water causing injury other than drowning or submersion, Street and Highway" +"W16.5","Diving or jumping into water causing injury other than drowning or submersion, Trade and Service Area" +"W16.6","Diving or jumping into water causing injury other than drowning or submersion, Industrial and Construction Area" +"W16.7","Diving or jumping into water causing injury other than drowning or submersion, Farm" +"W16.8","Diving or jumping into water causing injury other than drowning or submersion, Other Specified Area" +"W16.9","Diving or jumping into water causing injury other than drowning or submersion, Unspecified Place" +"W17","Other fall from one level to another" +"W17.0","Other fall from one level to another, Home" +"W17.1","Other fall from one level to another, Residential Institution" +"W17.2","Other fall from one level to another, School, Other Institution and Public Admimistration Area" +"W17.3","Other fall from one level to another, Sports and Athletic Areas" +"W17.4","Other fall from one level to another, Street and Highway" +"W17.5","Other fall from one level to another, Trade and Service Area" +"W17.6","Other fall from one level to another, Industrial and Construction Area" +"W17.7","Other fall from one level to another, Farm" +"W17.8","Other fall from one level to another, Other Specified Area" +"W17.9","Other fall from one level to another, Unspecified Place" +"W18","OTHER FALL ON SAME LEVEL" +"W18.0","Other fall on same level, Home" +"W18.1","Other fall on same level, Residential Institution" +"W18.2","Other fall on same level, School, Other Institution and Public Admimistration Area" +"W18.3","Other fall on same level, Sports and Athletic Areas" +"W18.4","Other fall on same level, Street and Highway" +"W18.5","Other fall on same level, Trade and Service Area" +"W18.6","Other fall on same level, Industrial and Construction Area" +"W18.7","Other fall on same level, Farm" +"W18.8","Other fall on same level, Other Specified Area" +"W18.9","Other fall on same level, Unspecified Place" +"W19","Unspecified fall" +"W19.0","Unspecified fall, Home" +"W19.1","Unspecified fall, Residential Institution" +"W19.2","Unspecified fall, School, Other Institution and Public Admimistration Area" +"W19.3","Unspecified fall, Sports and Athletic Areas" +"W19.4","Unspecified fall, Street and Highway" +"W19.5","Unspecified fall, Trade and Service Area" +"W19.6","Unspecified fall, Industrial and Construction Area" +"W19.7","Unspecified fall, Farm" +"W19.8","Unspecified fall, Other Specified Area" +"W19.9","Unspecified fall, Unspecified Place" +"W20","STRUCK BY THROWN, PROJECTED OR FALLING OBJECT" +"W20.0","Struck by thrown, projected or falling object, Home" +"W20.1","Struck by thrown, projected or falling object, Residential Institution" +"W20.2","Struck by thrown, projected or falling object, School, Other Institution and Public Admimistration Area" +"W20.3","Struck by thrown, projected or falling object, Sports and Athletic Areas" +"W20.4","Struck by thrown, projected or falling object, Street and Highway" +"W20.5","Struck by thrown, projected or falling object, Trade and Service Area" +"W20.6","Struck by thrown, projected or falling object, Industrial and Construction Area" +"W20.7","Struck by thrown, projected or falling object, Farm" +"W20.8","Struck by thrown, projected or falling object, Other Specified Area" +"W20.9","Struck by thrown, projected or falling object, Unspecified Place" +"W21","STRIKING AGAINST OR STRUCK BY SPORTS EQUIPMENT" +"W21.0","Striking against or struck by sports equipment, Home" +"W21.1","Striking against or struck by sports equipment, Residential Institution" +"W21.2","Striking against or struck by sports equipment, School, Other Institution and Public Admimistration Area" +"W21.3","Striking against or struck by sports equipment, Sports and Athletic Areas" +"W21.4","Striking against or struck by sports equipment, Street and Highway" +"W21.5","Striking against or struck by sports equipment, Trade and Service Area" +"W21.6","Striking against or struck by sports equipment, Industrial and Construction Area" +"W21.7","Striking against or struck by sports equipment, Farm" +"W21.8","Striking against or struck by sports equipment, Other Specified Area" +"W21.9","Striking against or struck by sports equipment, Unspecified Place" +"W22","STRIKING AGAINST OR STRUCK BY OTHER OBJECTS" +"W22.0","Striking against or struck by other objects, Home" +"W22.1","Striking against or struck by other objects, Residential Institution" +"W22.2","Striking against or struck by other objects, School, Other Institution and Public Admimistration Area" +"W22.3","Striking against or struck by other objects, Sports and Athletic Areas" +"W22.4","Striking against or struck by other objects, Street and Highway" +"W22.5","Striking against or struck by other objects, Trade and Service Area" +"W22.6","Striking against or struck by other objects, Industrial and Construction Area" +"W22.7","Striking against or struck by other objects, Farm" +"W22.8","Striking against or struck by other objects, Other Specified Area" +"W22.9","Striking against or struck by other objects, Unspecified Place" +"W23","Caught, crushed, jammed or pinched in or between objects" +"W23.0","Caught, crushed, jammed or pinched in or between objects, Home" +"W23.1","Caught, crushed, jammed or pinched in or between objects, Residential Institution" +"W23.2","Caught, crushed, jammed or pinched in or between objects, School, Other Institution and Public Admimistration Area" +"W23.3","Caught, crushed, jammed or pinched in or between objects, Sports and Athletic Areas" +"W23.4","Caught, crushed, jammed or pinched in or between objects, Street and Highway" +"W23.5","Caught, crushed, jammed or pinched in or between objects, Trade and Service Area" +"W23.6","Caught, crushed, jammed or pinched in or between objects, Industrial and Construction Area" +"W23.7","Caught, crushed, jammed or pinched in or between objects, Farm" +"W23.8","Caught, crushed, jammed or pinched in or between objects, Other Specified Area" +"W23.9","Caught, crushed, jammed or pinched in or between objects, Unspecified Place" +"W24","Contact with lifting and transmission devices, not elsewhere classified" +"W24.0","Contact with lifting and transmission devices, not elsewhere classified, Home" +"W24.1","Contact with lifting and transmission devices, not elsewhere classified, Residential Institution" +"W24.2","Contact with lifting and transmission devices, not elsewhere classified, School, Other Institution and Public Admimistration Area" +"W24.3","Contact with lifting and transmission devices, not elsewhere classified, Sports and Athletic Areas" +"W24.4","Contact with lifting and transmission devices, not elsewhere classified, Street and Highway" +"W24.5","Contact with lifting and transmission devices, not elsewhere classified, Trade and Service Area" +"W24.6","Contact with lifting and transmission devices, not elsewhere classified, Industrial and Construction Area" +"W24.7","Contact with lifting and transmission devices, not elsewhere classified, Farm" +"W24.8","Contact with lifting and transmission devices, not elsewhere classified, Other Specified Area" +"W24.9","Contact with lifting and transmission devices, not elsewhere classified, Unspecified Place" +"W25","Contact with sharp glass" +"W25.0","Contact with sharp glass, Home" +"W25.1","Contact with sharp glass, Residential Institution" +"W25.2","Contact with sharp glass, School, Other Institution and Public Admimistration Area" +"W25.3","Contact with sharp glass, Sports and Athletic Areas" +"W25.4","Contact with sharp glass, Street and Highway" +"W25.5","Contact with sharp glass, Trade and Service Area" +"W25.6","Contact with sharp glass, Industrial and Construction Area" +"W25.7","Contact with sharp glass, Farm" +"W25.8","Contact with sharp glass, Other Specified Area" +"W25.9","Contact with sharp glass, Unspecified Place" +"W26","Contact with knife, sword or dagger" +"W26.0","Contact with knife, sword or dagger, Home" +"W26.1","Contact with knife, sword or dagger, Residential Institution" +"W26.2","Contact with knife, sword or dagger, School, Other Institution and Public Admimistration Area" +"W26.3","Contact with knife, sword or dagger, Sports and Athletic Areas" +"W26.4","Contact with knife, sword or dagger, Street and Highway" +"W26.5","Contact with knife, sword or dagger, Trade and Service Area" +"W26.6","Contact with knife, sword or dagger, Industrial and Construction Area" +"W26.7","Contact with knife, sword or dagger, Farm" +"W26.8","Contact with knife, sword or dagger, Other Specified Area" +"W26.9","Contact with knife, sword or dagger, Unspecified Place" +"W27","Contact with nonpowered hand tool" +"W27.0","Contact with nonpowered hand tool, Home" +"W27.1","Contact with nonpowered hand tool, Residential Institution" +"W27.2","Contact with nonpowered hand tool, School, Other Institution and Public Admimistration Area" +"W27.3","Contact with nonpowered hand tool, Sports and Athletic Areas" +"W27.4","Contact with nonpowered hand tool, Street and Highway" +"W27.5","Contact with nonpowered hand tool, Trade and Service Area" +"W27.6","Contact with nonpowered hand tool, Industrial and Construction Area" +"W27.7","Contact with nonpowered hand tool, Farm" +"W27.8","Contact with nonpowered hand tool, Other Specified Area" +"W27.9","Contact with nonpowered hand tool, Unspecified Place" +"W28","Contact with powered lawnmower" +"W28.0","Contact with powered lawnmower, Home" +"W28.1","Contact with powered lawnmower, Residential Institution" +"W28.2","Contact with powered lawnmower, School, Other Institution and Public Admimistration Area" +"W28.3","Contact with powered lawnmower, Sports and Athletic Areas" +"W28.4","Contact with powered lawnmower, Street and Highway" +"W28.5","Contact with powered lawnmower, Trade and Service Area" +"W28.6","Contact with powered lawnmower, Industrial and Construction Area" +"W28.7","Contact with powered lawnmower, Farm" +"W28.8","Contact with powered lawnmower, Other Specified Area" +"W28.9","Contact with powered lawnmower, Unspecified Place" +"W29","Contact with other powered hand tools and household machinery" +"W29.0","Contact with other powered hand tools and household machinery, Home" +"W29.1","Contact with other powered hand tools and household machinery, Residential Institution" +"W29.2","Contact with other powered hand tools and household machinery, School, Other Institution and Public Admimistration Area" +"W29.3","Contact with other powered hand tools and household machinery, Sports and Athletic Areas" +"W29.4","Contact with other powered hand tools and household machinery, Street and Highway" +"W29.5","Contact with other powered hand tools and household machinery, Trade and Service Area" +"W29.6","Contact with other powered hand tools and household machinery, Industrial and Construction Area" +"W29.7","Contact with other powered hand tools and household machinery, Farm" +"W29.8","Contact with other powered hand tools and household machinery, Other Specified Area" +"W29.9","Contact with other powered hand tools and household machinery, Unspecified Place" +"W30","Contact with agricultural machinery" +"W30.0","Contact with agricultural machinery, Home" +"W30.1","Contact with agricultural machinery, Residential Institution" +"W30.2","Contact with agricultural machinery, School, Other Institution and Public Admimistration Area" +"W30.3","Contact with agricultural machinery, Sports and Athletic Areas" +"W30.4","Contact with agricultural machinery, Street and Highway" +"W30.5","Contact with agricultural machinery, Trade and Service Area" +"W30.6","Contact with agricultural machinery, Industrial and Construction Area" +"W30.7","Contact with agricultural machinery, Farm" +"W30.8","Contact with agricultural machinery, Other Specified Area" +"W30.9","Contact with agricultural machinery, Unspecified Place" +"W31","Contact with other and unspecified machinery" +"W31.0","Contact with other and unspecified machinery, Home" +"W31.1","Contact with other and unspecified machinery, Residential Institution" +"W31.2","Contact with other and unspecified machinery, School, Other Institution and Public Admimistration Area" +"W31.3","Contact with other and unspecified machinery, Sports and Athletic Areas" +"W31.4","Contact with other and unspecified machinery, Street and Highway" +"W31.5","Contact with other and unspecified machinery, Trade and Service Area" +"W31.6","Contact with other and unspecified machinery, Industrial and Construction Area" +"W31.7","Contact with other and unspecified machinery, Farm" +"W31.8","Contact with other and unspecified machinery, Other Specified Area" +"W31.9","Contact with other and unspecified machinery, Unspecified Place" +"W32","HANDGUN DISCHARGE" +"W32.0","Handgun discharge, Home" +"W32.1","Handgun discharge, Residential Institution" +"W32.2","Handgun discharge, School, Other Institution and Public Admimistration Area" +"W32.3","Handgun discharge, Sports and Athletic Areas" +"W32.4","Handgun discharge, Street and Highway" +"W32.5","Handgun discharge, Trade and Service Area" +"W32.6","Handgun discharge, Industrial and Construction Area" +"W32.7","Handgun discharge, Farm" +"W32.8","Handgun discharge, Other Specified Area" +"W32.9","Handgun discharge, Unspecified Place" +"W33","Rifle, shotgun and larger firearm discharge" +"W33.0","Rifle, shotgun and larger firearm discharge, Home" +"W33.1","Rifle, shotgun and larger firearm discharge, Residential Institution" +"W33.2","Rifle, shotgun and larger firearm discharge, School, Other Institution and Public Admimistration Area" +"W33.3","Rifle, shotgun and larger firearm discharge, Sports and Athletic Areas" +"W33.4","Rifle, shotgun and larger firearm discharge, Street and Highway" +"W33.5","Rifle, shotgun and larger firearm discharge, Trade and Service Area" +"W33.6","Rifle, shotgun and larger firearm discharge, Industrial and Construction Area" +"W33.7","Rifle, shotgun and larger firearm discharge, Farm" +"W33.8","Rifle, shotgun and larger firearm discharge, Other Specified Area" +"W33.9","Rifle, shotgun and larger firearm discharge, Unspecified Place" +"W34","Discharge from other and unspecified firearms" +"W34.0","Discharge from other and unspecified firearms, Home" +"W34.1","Discharge from other and unspecified firearms, Residential Institution" +"W34.2","Discharge from other and unspecified firearms, School, Other Institution and Public Admimistration Area" +"W34.3","Discharge from other and unspecified firearms, Sports and Athletic Areas" +"W34.4","Discharge from other and unspecified firearms, Street and Highway" +"W34.5","Discharge from other and unspecified firearms, Trade and Service Area" +"W34.6","Discharge from other and unspecified firearms, Industrial and Construction Area" +"W34.7","Discharge from other and unspecified firearms, Farm" +"W34.8","Discharge from other and unspecified firearms, Other Specified Area" +"W34.9","Discharge from other and unspecified firearms, Unspecified Place" +"W35","EXPLOSION AND RUPTURE OF BOILER" +"W35.0","Explosion and rupture of boiler, Home" +"W35.1","Explosion and rupture of boiler, Residential Institution" +"W35.2","Explosion and rupture of boiler, School, Other Institution and Public Admimistration Area" +"W35.3","Explosion and rupture of boiler, Sports and Athletic Areas" +"W35.4","Explosion and rupture of boiler, Street and Highway" +"W35.5","Explosion and rupture of boiler, Trade and Service Area" +"W35.6","Explosion and rupture of boiler, Industrial and Construction Area" +"W35.7","Explosion and rupture of boiler, Farm" +"W35.8","Explosion and rupture of boiler, Other Specified Area" +"W35.9","Explosion and rupture of boiler, Unspecified Place" +"W36","EXPLOSION AND RUPTURE OF GAS CYLINDER" +"W36.0","Explosion and rupture of gas cylinder, Home" +"W36.1","Explosion and rupture of gas cylinder, Residential Institution" +"W36.2","Explosion and rupture of gas cylinder, School, Other Institution and Public Admimistration Area" +"W36.3","Explosion and rupture of gas cylinder, Sports and Athletic Areas" +"W36.4","Explosion and rupture of gas cylinder, Street and Highway" +"W36.5","Explosion and rupture of gas cylinder, Trade and Service Area" +"W36.6","Explosion and rupture of gas cylinder, Industrial and Construction Area" +"W36.7","Explosion and rupture of gas cylinder, Farm" +"W36.8","Explosion and rupture of gas cylinder, Other Specified Area" +"W36.9","Explosion and rupture of gas cylinder, Unspecified Place" +"W37","Explosion and rupture of pressurized tyre, pipe or hose" +"W37.0","Explosion and rupture of pressurized tyre, pipe or hose, Home" +"W37.1","Explosion and rupture of pressurized tyre, pipe or hose, Residential Institution" +"W37.2","Explosion and rupture of pressurized tyre, pipe or hose, School, Other Institution and Public Admimistration Area" +"W37.3","Explosion and rupture of pressurized tyre, pipe or hose, Sports and Athletic Areas" +"W37.4","Explosion and rupture of pressurized tyre, pipe or hose, Street and Highway" +"W37.5","Explosion and rupture of pressurized tyre, pipe or hose, Trade and Service Area" +"W37.6","Explosion and rupture of pressurized tyre, pipe or hose, Industrial and Construction Area" +"W37.7","Explosion and rupture of pressurized tyre, pipe or hose, Farm" +"W37.8","Explosion and rupture of pressurized tyre, pipe or hose, Other Specified Area" +"W37.9","Explosion and rupture of pressurized tyre, pipe or hose, Unspecified Place" +"W38","Explosion and rupture of other specified pressurized devices" +"W38.0","Explosion and rupture of other specified pressurized devices, Home" +"W38.1","Explosion and rupture of other specified pressurized devices, Residential Institution" +"W38.2","Explosion and rupture of other specified pressurized devices, School, Other Institution and Public Admimistration Area" +"W38.3","Explosion and rupture of other specified pressurized devices, Sports and Athletic Areas" +"W38.4","Explosion and rupture of other specified pressurized devices, Street and Highway" +"W38.5","Explosion and rupture of other specified pressurized devices, Trade and Service Area" +"W38.6","Explosion and rupture of other specified pressurized devices, Industrial and Construction Area" +"W38.7","Explosion and rupture of other specified pressurized devices, Farm" +"W38.8","Explosion and rupture of other specified pressurized devices, Other Specified Area" +"W38.9","Explosion and rupture of other specified pressurized devices, Unspecified Place" +"W39","DISCHARGE OF FIREWORK" +"W39.0","Discharge of firework, Home" +"W39.1","Discharge of firework, Residential Institution" +"W39.2","Discharge of firework, School, Other Institution and Public Admimistration Area" +"W39.3","Discharge of firework, Sports and Athletic Areas" +"W39.4","Discharge of firework, Street and Highway" +"W39.5","Discharge of firework, Trade and Service Area" +"W39.6","Discharge of firework, Industrial and Construction Area" +"W39.7","Discharge of firework, Farm" +"W39.8","Discharge of firework, Other Specified Area" +"W39.9","Discharge of firework, Unspecified Place" +"W40","EXPLOSION OF OTHER MATERIALS" +"W40.0","Explosion of other materials, Home" +"W40.1","Explosion of other materials, Residential Institution" +"W40.2","Explosion of other materials, School, Other Institution and Public Admimistration Area" +"W40.3","Explosion of other materials, Sports and Athletic Areas" +"W40.4","Explosion of other materials, Street and Highway" +"W40.5","Explosion of other materials, Trade and Service Area" +"W40.6","Explosion of other materials, Industrial and Construction Area" +"W40.7","Explosion of other materials, Farm" +"W40.8","Explosion of other materials, Other Specified Area" +"W40.9","Explosion of other materials, Unspecified Place" +"W41","EXPOSURE TO HIGH-PRESSURE JET" +"W41.0","Exposure to high-pressure jet, Home" +"W41.1","Exposure to high-pressure jet, Residential Institution" +"W41.2","Exposure to high-pressure jet, School, Other Institution and Public Admimistration Area" +"W41.3","Exposure to high-pressure jet, Sports and Athletic Areas" +"W41.4","Exposure to high-pressure jet, Street and Highway" +"W41.5","Exposure to high-pressure jet, Trade and Service Area" +"W41.6","Exposure to high-pressure jet, Industrial and Construction Area" +"W41.7","Exposure to high-pressure jet, Farm" +"W41.8","Exposure to high-pressure jet, Other Specified Area" +"W41.9","Exposure to high-pressure jet, Unspecified Place" +"W42","EXPOSURE TO NOISE" +"W42.0","Exposure to noise, Home" +"W42.1","Exposure to noise, Residential Institution" +"W42.2","Exposure to noise, School, Other Institution and Public Admimistration Area" +"W42.3","Exposure to noise, Sports and Athletic Areas" +"W42.4","Exposure to noise, Street and Highway" +"W42.5","Exposure to noise, Trade and Service Area" +"W42.6","Exposure to noise, Industrial and Construction Area" +"W42.7","Exposure to noise, Farm" +"W42.8","Exposure to noise, Other Specified Area" +"W42.9","Exposure to noise, Unspecified Place" +"W43","EXPOSURE TO VIBRATION" +"W43.0","Exposure to vibration, Home" +"W43.1","Exposure to vibration, Residential Institution" +"W43.2","Exposure to vibration, School, Other Institution and Public Admimistration Area" +"W43.3","Exposure to vibration, Sports and Athletic Areas" +"W43.4","Exposure to vibration, Street and Highway" +"W43.5","Exposure to vibration, Trade and Service Area" +"W43.6","Exposure to vibration, Industrial and Construction Area" +"W43.7","Exposure to vibration, Farm" +"W43.8","Exposure to vibration, Other Specified Area" +"W43.9","Exposure to vibration, Unspecified Place" +"W44","Foreign body entering into or through eye or natural orifice" +"W44.0","Foreign body entering into or through eye or natural orifice, Home" +"W44.1","Foreign body entering into or through eye or natural orifice, Residential Institution" +"W44.2","Foreign body entering into or through eye or natural orifice, School, Other Institution and Public Admimistration Area" +"W44.3","Foreign body entering into or through eye or natural orifice, Sports and Athletic Areas" +"W44.4","Foreign body entering into or through eye or natural orifice, Street and Highway" +"W44.5","Foreign body entering into or through eye or natural orifice, Trade and Service Area" +"W44.6","Foreign body entering into or through eye or natural orifice, Industrial and Construction Area" +"W44.7","Foreign body entering into or through eye or natural orifice, Farm" +"W44.8","Foreign body entering into or through eye or natural orifice, Other Specified Area" +"W44.9","Foreign body entering into or through eye or natural orifice, Unspecified Place" +"W45","FOREIGN BODY OR OBJECT ENTERING THROUGH SKIN" +"W45.0","Foreign body or object entering through skin, Home" +"W45.1","Foreign body or object entering through skin, Residential Institution" +"W45.2","Foreign body or object entering through skin, School, Other Institution and Public Admimistration Area" +"W45.3","Foreign body or object entering through skin, Sports and Athletic Areas" +"W45.4","Foreign body or object entering through skin, Street and Highway" +"W45.5","Foreign body or object entering through skin, Trade and Service Area" +"W45.6","Foreign body or object entering through skin, Industrial and Construction Area" +"W45.7","Foreign body or object entering through skin, Farm" +"W45.8","Foreign body or object entering through skin, Other Specified Area" +"W45.9","Foreign body or object entering through skin, Unspecified Place" +"W46","Contact with hypodermic needle" +"W46.0","Contact with hypodermic needle, Home" +"W46.1","Contact with hypodermic needle, Residential Institution" +"W46.2","Contact with hypodermic needle, School, Other Institution and Public Admimistration Area" +"W46.3","Contact with hypodermic needle, Sports and Athletic Areas" +"W46.4","Contact with hypodermic needle, Street and Highway" +"W46.5","Contact with hypodermic needle, Trade and Service Area" +"W46.6","Contact with hypodermic needle, Industrial and Construction Area" +"W46.7","Contact with hypodermic needle, Farm" +"W46.8","Contact with hypodermic needle, Other Specified Area" +"W46.9","Contact with hypodermic needle, Unspecified Place" +"W49","Exposure to other and unspecified inanimate mechanical forces" +"W49.0","Exposure to other and unspecified inanimate mechanical forces, Home" +"W49.1","Exposure to other and unspecified inanimate mechanical forces, Residential Institution" +"W49.2","Exposure to other and unspecified inanimate mechanical forces, School, Other Institution and Public Admimistration Area" +"W49.3","Exposure to other and unspecified inanimate mechanical forces, Sports and Athletic Areas" +"W49.4","Exposure to other and unspecified inanimate mechanical forces, Street and Highway" +"W49.5","Exposure to other and unspecified inanimate mechanical forces, Trade and Service Area" +"W49.6","Exposure to other and unspecified inanimate mechanical forces, Industrial and Construction Area" +"W49.7","Exposure to other and unspecified inanimate mechanical forces, Farm" +"W49.8","Exposure to other and unspecified inanimate mechanical forces, Other Specified Area" +"W49.9","Exposure to other and unspecified inanimate mechanical forces, Unspecified Place" +"W50","Hit, struck, kicked, twisted, bitten or scratched by another person" +"W50.0","Hit, struck, kicked, twisted, bitten or scratched by another person, Home" +"W50.1","Hit, struck, kicked, twisted, bitten or scratched by another person, Residential Institution" +"W50.2","Hit, struck, kicked, twisted, bitten or scratched by another person, School, Other Institution and Public Admimistration Area" +"W50.3","Hit, struck, kicked, twisted, bitten or scratched by another person, Sports and Athletic Areas" +"W50.4","Hit, struck, kicked, twisted, bitten or scratched by another person, Street and Highway" +"W50.5","Hit, struck, kicked, twisted, bitten or scratched by another person, Trade and Service Area" +"W50.6","Hit, struck, kicked, twisted, bitten or scratched by another person, Industrial and Construction Area" +"W50.7","Hit, struck, kicked, twisted, bitten or scratched by another person, Farm" +"W50.8","Hit, struck, kicked, twisted, bitten or scratched by another person, Other Specified Area" +"W50.9","Hit, struck, kicked, twisted, bitten or scratched by another person, Unspecified Place" +"W51","Striking against or bumped into by another person" +"W51.0","Striking against or bumped into by another person, Home" +"W51.1","Striking against or bumped into by another person, Residential Institution" +"W51.2","Striking against or bumped into by another person, School, Other Institution and Public Admimistration Area" +"W51.3","Striking against or bumped into by another person, Sports and Athletic Areas" +"W51.4","Striking against or bumped into by another person, Street and Highway" +"W51.5","Striking against or bumped into by another person, Trade and Service Area" +"W51.6","Striking against or bumped into by another person, Industrial and Construction Area" +"W51.7","Striking against or bumped into by another person, Farm" +"W51.8","Striking against or bumped into by another person, Other Specified Area" +"W51.9","Striking against or bumped into by another person, Unspecified Place" +"W52","Crushed, pushed or stepped on by crowd or human stampede" +"W52.0","Crushed, pushed or stepped on by crowd or human stampede, Home" +"W52.1","Crushed, pushed or stepped on by crowd or human stampede, Residential Institution" +"W52.2","Crushed, pushed or stepped on by crowd or human stampede, School, Other Institution and Public Admimistration Area" +"W52.3","Crushed, pushed or stepped on by crowd or human stampede, Sports and Athletic Areas" +"W52.4","Crushed, pushed or stepped on by crowd or human stampede, Street and Highway" +"W52.5","Crushed, pushed or stepped on by crowd or human stampede, Trade and Service Area" +"W52.6","Crushed, pushed or stepped on by crowd or human stampede, Industrial and Construction Area" +"W52.7","Crushed, pushed or stepped on by crowd or human stampede, Farm" +"W52.8","Crushed, pushed or stepped on by crowd or human stampede, Other Specified Area" +"W52.9","Crushed, pushed or stepped on by crowd or human stampede, Unspecified Place" +"W53","BITTEN BY RAT" +"W53.0","Bitten by rat, Home" +"W53.1","Bitten by rat, Residential Institution" +"W53.2","Bitten by rat, School, Other Institution and Public Admimistration Area" +"W53.3","Bitten by rat, Sports and Athletic Areas" +"W53.4","Bitten by rat, Street and Highway" +"W53.5","Bitten by rat, Trade and Service Area" +"W53.6","Bitten by rat, Industrial and Construction Area" +"W53.7","Bitten by rat, Farm" +"W53.8","Bitten by rat, Other Specified Area" +"W53.9","Bitten by rat, Unspecified Place" +"W54","Bitten or struck by dog" +"W54.0","Bitten or struck by dog, Home" +"W54.1","Bitten or struck by dog, Residential Institution" +"W54.2","Bitten or struck by dog, School, Other Institution and Public Admimistration Area" +"W54.3","Bitten or struck by dog, Sports and Athletic Areas" +"W54.4","Bitten or struck by dog, Street and Highway" +"W54.5","Bitten or struck by dog, Trade and Service Area" +"W54.6","Bitten or struck by dog, Industrial and Construction Area" +"W54.7","Bitten or struck by dog, Farm" +"W54.8","Bitten or struck by dog, Other Specified Area" +"W54.9","Bitten or struck by dog, Unspecified Place" +"W55","BITTEN OR STRUCK BY OTHER MAMMALS" +"W55.0","Bitten or struck by other mammals, Home" +"W55.1","Bitten or struck by other mammals, Residential Institution" +"W55.2","Bitten or struck by other mammals, School, Other Institution and Public Admimistration Area" +"W55.3","Bitten or struck by other mammals, Sports and Athletic Areas" +"W55.4","Bitten or struck by other mammals, Street and Highway" +"W55.5","Bitten or struck by other mammals, Trade and Service Area" +"W55.6","Bitten or struck by other mammals, Industrial and Construction Area" +"W55.7","Bitten or struck by other mammals, Farm" +"W55.8","Bitten or struck by other mammals, Other Specified Area" +"W55.9","Bitten or struck by other mammals, Unspecified Place" +"W56","Contact with marine animal" +"W56.0","Contact with marine animal, Home" +"W56.1","Contact with marine animal, Residential Institution" +"W56.2","Contact with marine animal, School, Other Institution and Public Admimistration Area" +"W56.3","Contact with marine animal, Sports and Athletic Areas" +"W56.4","Contact with marine animal, Street and Highway" +"W56.5","Contact with marine animal, Trade and Service Area" +"W56.6","Contact with marine animal, Industrial and Construction Area" +"W56.7","Contact with marine animal, Farm" +"W56.8","Contact with marine animal, Other Specified Area" +"W56.9","Contact with marine animal, Unspecified Place" +"W57","BITTEN OR STUNG BY NONVENOMOUS INSECT AND OTHER NONVENOMOUS ARTHROPODS" +"W57.0","Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Home" +"W57.1","Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Residential Institution" +"W57.2","Bitten or stung by nonvenomous insect and other nonvenomous arthropods, School, Other Institution and Public Admimistration Area" +"W57.3","Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Sports and Athletic Areas" +"W57.4","Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Street and Highway" +"W57.5","Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Trade and Service Area" +"W57.6","Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Industrial and Construction Area" +"W57.7","Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Farm" +"W57.8","Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Other Specified Area" +"W57.9","Bitten or stung by nonvenomous insect and other nonvenomous arthropods, Unspecified Place" +"W58","Bitten or struck by crocodile or alligator" +"W58.0","Bitten or struck by crocodile or alligator, Home" +"W58.1","Bitten or struck by crocodile or alligator, Residential Institution" +"W58.2","Bitten or struck by crocodile or alligator, School, Other Institution and Public Admimistration Area" +"W58.3","Bitten or struck by crocodile or alligator, Sports and Athletic Areas" +"W58.4","Bitten or struck by crocodile or alligator, Street and Highway" +"W58.5","Bitten or struck by crocodile or alligator, Trade and Service Area" +"W58.6","Bitten or struck by crocodile or alligator, Industrial and Construction Area" +"W58.7","Bitten or struck by crocodile or alligator, Farm" +"W58.8","Bitten or struck by crocodile or alligator, Other Specified Area" +"W58.9","Bitten or struck by crocodile or alligator, Unspecified Place" +"W59","Bitten or crushed by other reptiles" +"W59.0","Bitten or crushed by other reptiles, Home" +"W59.1","Bitten or crushed by other reptiles, Residential Institution" +"W59.2","Bitten or crushed by other reptiles, School, Other Institution and Public Admimistration Area" +"W59.3","Bitten or crushed by other reptiles, Sports and Athletic Areas" +"W59.4","Bitten or crushed by other reptiles, Street and Highway" +"W59.5","Bitten or crushed by other reptiles, Trade and Service Area" +"W59.6","Bitten or crushed by other reptiles, Industrial and Construction Area" +"W59.7","Bitten or crushed by other reptiles, Farm" +"W59.8","Bitten or crushed by other reptiles, Other Specified Area" +"W59.9","Bitten or crushed by other reptiles, Unspecified Place" +"W60","Contact with plant thorns and spines and sharp leaves" +"W60.0","Contact with plant thorns and spines and sharp leaves, Home" +"W60.1","Contact with plant thorns and spines and sharp leaves, Residential Institution" +"W60.2","Contact with plant thorns and spines and sharp leaves, School, Other Institution and Public Admimistration Area" +"W60.3","Contact with plant thorns and spines and sharp leaves, Sports and Athletic Areas" +"W60.4","Contact with plant thorns and spines and sharp leaves, Street and Highway" +"W60.5","Contact with plant thorns and spines and sharp leaves, Trade and Service Area" +"W60.6","Contact with plant thorns and spines and sharp leaves, Industrial and Construction Area" +"W60.7","Contact with plant thorns and spines and sharp leaves, Farm" +"W60.8","Contact with plant thorns and spines and sharp leaves, Other Specified Area" +"W60.9","Contact with plant thorns and spines and sharp leaves, Unspecified Place" +"W64","Exposure to other and unspecified animate mechanical forces" +"W64.0","Exposure to other and unspecified animate mechanical forces, Home" +"W64.1","Exposure to other and unspecified animate mechanical forces, Residential Institution" +"W64.2","Exposure to other and unspecified animate mechanical forces, School, Other Institution and Public Admimistration Area" +"W64.3","Exposure to other and unspecified animate mechanical forces, Sports and Athletic Areas" +"W64.4","Exposure to other and unspecified animate mechanical forces, Street and Highway" +"W64.5","Exposure to other and unspecified animate mechanical forces, Trade and Service Area" +"W64.6","Exposure to other and unspecified animate mechanical forces, Industrial and Construction Area" +"W64.7","Exposure to other and unspecified animate mechanical forces, Farm" +"W64.8","Exposure to other and unspecified animate mechanical forces, Other Specified Area" +"W64.9","Exposure to other and unspecified animate mechanical forces, Unspecified Place" +"W65","DROWNING AND SUBMERSION WHILE IN BATH-TUB" +"W65.0","Drowning and submersion while in bath-tub, Home" +"W65.1","Drowning and submersion while in bath-tub, Residential Institution" +"W65.2","Drowning and submersion while in bath-tub, School, Other Institution and Public Admimistration Area" +"W65.3","Drowning and submersion while in bath-tub, Sports and Athletic Areas" +"W65.4","Drowning and submersion while in bath-tub, Street and Highway" +"W65.5","Drowning and submersion while in bath-tub, Trade and Service Area" +"W65.6","Drowning and submersion while in bath-tub, Industrial and Construction Area" +"W65.7","Drowning and submersion while in bath-tub, Farm" +"W65.8","Drowning and submersion while in bath-tub, Other Specified Area" +"W65.9","Drowning and submersion while in bath-tub, Unspecified Place" +"W66","DROWNING AND SUBMERSION FOLLOWING FALL INTO BATH-TUB" +"W66.0","Drowning and submersion following fall into bath-tub, Home" +"W66.1","Drowning and submersion following fall into bath-tub, Residential Institution" +"W66.2","Drowning and submersion following fall into bath-tub, School, Other Institution and Public Admimistration Area" +"W66.3","Drowning and submersion following fall into bath-tub, Sports and Athletic Areas" +"W66.4","Drowning and submersion following fall into bath-tub, Street and Highway" +"W66.5","Drowning and submersion following fall into bath-tub, Trade and Service Area" +"W66.6","Drowning and submersion following fall into bath-tub, Industrial and Construction Area" +"W66.7","Drowning and submersion following fall into bath-tub, Farm" +"W66.8","Drowning and submersion following fall into bath-tub, Other Specified Area" +"W66.9","Drowning and submersion following fall into bath-tub, Unspecified Place" +"W67","Drowning and submersion while in swimming-pool" +"W67.0","Drowning and submersion while in swimming-pool, Home" +"W67.1","Drowning and submersion while in swimming-pool, Residential Institution" +"W67.2","Drowning and submersion while in swimming-pool, School, Other Institution and Public Admimistration Area" +"W67.3","Drowning and submersion while in swimming-pool, Sports and Athletic Areas" +"W67.4","Drowning and submersion while in swimming-pool, Street and Highway" +"W67.5","Drowning and submersion while in swimming-pool, Trade and Service Area" +"W67.6","Drowning and submersion while in swimming-pool, Industrial and Construction Area" +"W67.7","Drowning and submersion while in swimming-pool, Farm" +"W67.8","Drowning and submersion while in swimming-pool, Other Specified Area" +"W67.9","Drowning and submersion while in swimming-pool, Unspecified Place" +"W68","DROWNING AND SUBMERSION FOLLOWING FALL INTO SWIMMING-POOL" +"W68.0","Drowning and submersion following fall into swimming-pool, Home" +"W68.1","Drowning and submersion following fall into swimming-pool, Residential Institution" +"W68.2","Drowning and submersion following fall into swimming-pool, School, Other Institution and Public Admimistration Area" +"W68.3","Drowning and submersion following fall into swimming-pool, Sports and Athletic Areas" +"W68.4","Drowning and submersion following fall into swimming-pool, Street and Highway" +"W68.5","Drowning and submersion following fall into swimming-pool, Trade and Service Area" +"W68.6","Drowning and submersion following fall into swimming-pool, Industrial and Construction Area" +"W68.7","Drowning and submersion following fall into swimming-pool, Farm" +"W68.8","Drowning and submersion following fall into swimming-pool, Other Specified Area" +"W68.9","Drowning and submersion following fall into swimming-pool, Unspecified Place" +"W69","DROWNING AND SUBMERSION WHILE IN NATURAL WATER" +"W69.0","Drowning and submersion while in natural water, Home" +"W69.1","Drowning and submersion while in natural water, Residential Institution" +"W69.2","Drowning and submersion while in natural water, School, Other Institution and Public Admimistration Area" +"W69.3","Drowning and submersion while in natural water, Sports and Athletic Areas" +"W69.4","Drowning and submersion while in natural water, Street and Highway" +"W69.5","Drowning and submersion while in natural water, Trade and Service Area" +"W69.6","Drowning and submersion while in natural water, Industrial and Construction Area" +"W69.7","Drowning and submersion while in natural water, Farm" +"W69.8","Drowning and submersion while in natural water, Other Specified Area" +"W69.9","Drowning and submersion while in natural water, Unspecified Place" +"W70","DROWNING AND SUBMERSION FOLLOWING FALL INTO NATURAL WATER" +"W70.0","Drowning and submersion following fall into natural water, Home" +"W70.1","Drowning and submersion following fall into natural water, Residential Institution" +"W70.2","Drowning and submersion following fall into natural water, School, Other Institution and Public Admimistration Area" +"W70.3","Drowning and submersion following fall into natural water, Sports and Athletic Areas" +"W70.4","Drowning and submersion following fall into natural water, Street and Highway" +"W70.5","Drowning and submersion following fall into natural water, Trade and Service Area" +"W70.6","Drowning and submersion following fall into natural water, Industrial and Construction Area" +"W70.7","Drowning and submersion following fall into natural water, Farm" +"W70.8","Drowning and submersion following fall into natural water, Other Specified Area" +"W70.9","Drowning and submersion following fall into natural water, Unspecified Place" +"W73","OTHER SPECIFIED DROWNING AND SUBMERSION" +"W73.0","Other specified drowning and submersion, Home" +"W73.1","Other specified drowning and submersion, Residential Institution" +"W73.2","Other specified drowning and submersion, School, Other Institution and Public Admimistration Area" +"W73.3","Other specified drowning and submersion, Sports and Athletic Areas" +"W73.4","Other specified drowning and submersion, Street and Highway" +"W73.5","Other specified drowning and submersion, Trade and Service Area" +"W73.6","Other specified drowning and submersion, Industrial and Construction Area" +"W73.7","Other specified drowning and submersion, Farm" +"W73.8","Other specified drowning and submersion, Other Specified Area" +"W73.9","Other specified drowning and submersion, Unspecified Place" +"W74","Unspecified drowning and submersion" +"W74.0","Unspecified drowning and submersion, Home" +"W74.1","Unspecified drowning and submersion, Residential Institution" +"W74.2","Unspecified drowning and submersion, School, Other Institution and Public Admimistration Area" +"W74.3","Unspecified drowning and submersion, Sports and Athletic Areas" +"W74.4","Unspecified drowning and submersion, Street and Highway" +"W74.5","Unspecified drowning and submersion, Trade and Service Area" +"W74.6","Unspecified drowning and submersion, Industrial and Construction Area" +"W74.7","Unspecified drowning and submersion, Farm" +"W74.8","Unspecified drowning and submersion, Other Specified Area" +"W74.9","Unspecified drowning and submersion, Unspecified Place" +"W75","Accidental suffocation and strangulation in bed" +"W75.0","Accidental suffocation and strangulation in bed, Home" +"W75.1","Accidental suffocation and strangulation in bed, Residential Institution" +"W75.2","Accidental suffocation and strangulation in bed, School, Other Institution and Public Admimistration Area" +"W75.3","Accidental suffocation and strangulation in bed, Sports and Athletic Areas" +"W75.4","Accidental suffocation and strangulation in bed, Street and Highway" +"W75.5","Accidental suffocation and strangulation in bed, Trade and Service Area" +"W75.6","Accidental suffocation and strangulation in bed, Industrial and Construction Area" +"W75.7","Accidental suffocation and strangulation in bed, Farm" +"W75.8","Accidental suffocation and strangulation in bed, Other Specified Area" +"W75.9","Accidental suffocation and strangulation in bed, Unspecified Place" +"W76","Other accidental hanging and strangulation" +"W76.0","Other accidental hanging and strangulation, Home" +"W76.1","Other accidental hanging and strangulation, Residential Institution" +"W76.2","Other accidental hanging and strangulation, School, Other Institution and Public Admimistration Area" +"W76.3","Other accidental hanging and strangulation, Sports and Athletic Areas" +"W76.4","Other accidental hanging and strangulation, Street and Highway" +"W76.5","Other accidental hanging and strangulation, Trade and Service Area" +"W76.6","Other accidental hanging and strangulation, Industrial and Construction Area" +"W76.7","Other accidental hanging and strangulation, Farm" +"W76.8","Other accidental hanging and strangulation, Other Specified Area" +"W76.9","Other accidental hanging and strangulation, Unspecified Place" +"W77","Threat to breathing due to cave-in, falling earth and other substances" +"W77.0","Threat to breathing due to cave-in, falling earth and other substances, Home" +"W77.1","Threat to breathing due to cave-in, falling earth and other substances, Residential Institution" +"W77.2","Threat to breathing due to cave-in, falling earth and other substances, School, Other Institution and Public Admimistration Area" +"W77.3","Threat to breathing due to cave-in, falling earth and other substances, Sports and Athletic Areas" +"W77.4","Threat to breathing due to cave-in, falling earth and other substances, Street and Highway" +"W77.5","Threat to breathing due to cave-in, falling earth and other substances, Trade and Service Area" +"W77.6","Threat to breathing due to cave-in, falling earth and other substances, Industrial and Construction Area" +"W77.7","Threat to breathing due to cave-in, falling earth and other substances, Farm" +"W77.8","Threat to breathing due to cave-in, falling earth and other substances, Other Specified Area" +"W77.9","Threat to breathing due to cave-in, falling earth and other substances, Unspecified Place" +"W78","Inhalation of gastric contents" +"W78.0","Inhalation of gastric contents, Home" +"W78.1","Inhalation of gastric contents, Residential Institution" +"W78.2","Inhalation of gastric contents, School, Other Institution and Public Admimistration Area" +"W78.3","Inhalation of gastric contents, Sports and Athletic Areas" +"W78.4","Inhalation of gastric contents, Street and Highway" +"W78.5","Inhalation of gastric contents, Trade and Service Area" +"W78.6","Inhalation of gastric contents, Industrial and Construction Area" +"W78.7","Inhalation of gastric contents, Farm" +"W78.8","Inhalation of gastric contents, Other Specified Area" +"W78.9","Inhalation of gastric contents, Unspecified Place" +"W79","INHALATION AND INGESTION OF FOOD CAUSING OBSTRUCTION OF RESPIRATORY TRACT" +"W79.0","Inhalation and ingestion of food causing obstruction of respiratory tract, Home" +"W79.1","Inhalation and ingestion of food causing obstruction of respiratory tract, Residential Institution" +"W79.2","Inhalation and ingestion of food causing obstruction of respiratory tract, School, Other Institution and Public Admimistration Area" +"W79.3","Inhalation and ingestion of food causing obstruction of respiratory tract, Sports and Athletic Areas" +"W79.4","Inhalation and ingestion of food causing obstruction of respiratory tract, Street and Highway" +"W79.5","Inhalation and ingestion of food causing obstruction of respiratory tract, Trade and Service Area" +"W79.6","Inhalation and ingestion of food causing obstruction of respiratory tract, Industrial and Construction Area" +"W79.7","Inhalation and ingestion of food causing obstruction of respiratory tract, Farm" +"W79.8","Inhalation and ingestion of food causing obstruction of respiratory tract, Other Specified Area" +"W79.9","Inhalation and ingestion of food causing obstruction of respiratory tract, Unspecified Place" +"W80","Inhalation and ingestion of other objects causing obstruction of respiratory tract" +"W80.0","Inhalation and ingestion of other objects causing obstruction of respiratory tract, Home" +"W80.1","Inhalation and ingestion of other objects causing obstruction of respiratory tract, Residential Institution" +"W80.2","Inhalation and ingestion of other objects causing obstruction of respiratory tract, School, Other Institution and Public Admimistration Area" +"W80.3","Inhalation and ingestion of other objects causing obstruction of respiratory tract, Sports and Athletic Areas" +"W80.4","Inhalation and ingestion of other objects causing obstruction of respiratory tract, Street and Highway" +"W80.5","Inhalation and ingestion of other objects causing obstruction of respiratory tract, Trade and Service Area" +"W80.6","Inhalation and ingestion of other objects causing obstruction of respiratory tract, Industrial and Construction Area" +"W80.7","Inhalation and ingestion of other objects causing obstruction of respiratory tract, Farm" +"W80.8","Inhalation and ingestion of other objects causing obstruction of respiratory tract, Other Specified Area" +"W80.9","Inhalation and ingestion of other objects causing obstruction of respiratory tract, Unspecified Place" +"W81","CONFINED TO OR TRAPPED IN A LOW-OXYGEN ENVIRONMENT" +"W81.0","Confined to or trapped in a low-oxygen environment, Home" +"W81.1","Confined to or trapped in a low-oxygen environment, Residential Institution" +"W81.2","Confined to or trapped in a low-oxygen environment, School, Other Institution and Public Admimistration Area" +"W81.3","Confined to or trapped in a low-oxygen environment, Sports and Athletic Areas" +"W81.4","Confined to or trapped in a low-oxygen environment, Street and Highway" +"W81.5","Confined to or trapped in a low-oxygen environment, Trade and Service Area" +"W81.6","Confined to or trapped in a low-oxygen environment, Industrial and Construction Area" +"W81.7","Confined to or trapped in a low-oxygen environment, Farm" +"W81.8","Confined to or trapped in a low-oxygen environment, Other Specified Area" +"W81.9","Confined to or trapped in a low-oxygen environment, Unspecified Place" +"W83","OTHER SPECIFIED THREATS TO BREATHING" +"W83.0","Other specified threats to breathing, Home" +"W83.1","Other specified threats to breathing, Residential Institution" +"W83.2","Other specified threats to breathing, School, Other Institution and Public Admimistration Area" +"W83.3","Other specified threats to breathing, Sports and Athletic Areas" +"W83.4","Other specified threats to breathing, Street and Highway" +"W83.5","Other specified threats to breathing, Trade and Service Area" +"W83.6","Other specified threats to breathing, Industrial and Construction Area" +"W83.7","Other specified threats to breathing, Farm" +"W83.8","Other specified threats to breathing, Other Specified Area" +"W83.9","Other specified threats to breathing, Unspecified Place" +"W84","Unspecified threat to breathing" +"W84.0","Unspecified threat to breathing, Home" +"W84.1","Unspecified threat to breathing, Residential Institution" +"W84.2","Unspecified threat to breathing, School, Other Institution and Public Admimistration Area" +"W84.3","Unspecified threat to breathing, Sports and Athletic Areas" +"W84.4","Unspecified threat to breathing, Street and Highway" +"W84.5","Unspecified threat to breathing, Trade and Service Area" +"W84.6","Unspecified threat to breathing, Industrial and Construction Area" +"W84.7","Unspecified threat to breathing, Farm" +"W84.8","Unspecified threat to breathing, Other Specified Area" +"W84.9","Unspecified threat to breathing, Unspecified Place" +"W85","EXPOSURE TO ELECTRIC TRANSMISSION LINES" +"W85.0","Exposure to electric transmission lines, Home" +"W85.1","Exposure to electric transmission lines, Residential Institution" +"W85.2","Exposure to electric transmission lines, School, Other Institution and Public Admimistration Area" +"W85.3","Exposure to electric transmission lines, Sports and Athletic Areas" +"W85.4","Exposure to electric transmission lines, Street and Highway" +"W85.5","Exposure to electric transmission lines, Trade and Service Area" +"W85.6","Exposure to electric transmission lines, Industrial and Construction Area" +"W85.7","Exposure to electric transmission lines, Farm" +"W85.8","Exposure to electric transmission lines, Other Specified Area" +"W85.9","Exposure to electric transmission lines, Unspecified Place" +"W86","Exposure to other specified electric current" +"W86.0","Exposure to other specified electric current, Home" +"W86.1","Exposure to other specified electric current, Residential Institution" +"W86.2","Exposure to other specified electric current, School, Other Institution and Public Admimistration Area" +"W86.3","Exposure to other specified electric current, Sports and Athletic Areas" +"W86.4","Exposure to other specified electric current, Street and Highway" +"W86.5","Exposure to other specified electric current, Trade and Service Area" +"W86.6","Exposure to other specified electric current, Industrial and Construction Area" +"W86.7","Exposure to other specified electric current, Farm" +"W86.8","Exposure to other specified electric current, Other Specified Area" +"W86.9","Exposure to other specified electric current, Unspecified Place" +"W87","Exposure to unspecified electric current" +"W87.0","Exposure to unspecified electric current, Home" +"W87.1","Exposure to unspecified electric current, Residential Institution" +"W87.2","Exposure to unspecified electric current, School, Other Institution and Public Admimistration Area" +"W87.3","Exposure to unspecified electric current, Sports and Athletic Areas" +"W87.4","Exposure to unspecified electric current, Street and Highway" +"W87.5","Exposure to unspecified electric current, Trade and Service Area" +"W87.6","Exposure to unspecified electric current, Industrial and Construction Area" +"W87.7","Exposure to unspecified electric current, Farm" +"W87.8","Exposure to unspecified electric current, Other Specified Area" +"W87.9","Exposure to unspecified electric current, Unspecified Place" +"W88","EXPOSURE TO IONIZING RADIATION" +"W88.0","Exposure to ionizing radiation, Home" +"W88.1","Exposure to ionizing radiation, Residential Institution" +"W88.2","Exposure to ionizing radiation, School, Other Institution and Public Admimistration Area" +"W88.3","Exposure to ionizing radiation, Sports and Athletic Areas" +"W88.4","Exposure to ionizing radiation, Street and Highway" +"W88.5","Exposure to ionizing radiation, Trade and Service Area" +"W88.6","Exposure to ionizing radiation, Industrial and Construction Area" +"W88.7","Exposure to ionizing radiation, Farm" +"W88.8","Exposure to ionizing radiation, Other Specified Area" +"W88.9","Exposure to ionizing radiation, Unspecified Place" +"W89","EXPOSURE TO MAN-MADE VISIBLE AND ULTRAVIOLET LIGHT" +"W89.0","Exposure to man-made visible and ultraviolet light, Home" +"W89.1","Exposure to man-made visible and ultraviolet light, Residential Institution" +"W89.2","Exposure to man-made visible and ultraviolet light, School, Other Institution and Public Admimistration Area" +"W89.3","Exposure to man-made visible and ultraviolet light, Sports and Athletic Areas" +"W89.4","Exposure to man-made visible and ultraviolet light, Street and Highway" +"W89.5","Exposure to man-made visible and ultraviolet light, Trade and Service Area" +"W89.6","Exposure to man-made visible and ultraviolet light, Industrial and Construction Area" +"W89.7","Exposure to man-made visible and ultraviolet light, Farm" +"W89.8","Exposure to man-made visible and ultraviolet light, Other Specified Area" +"W89.9","Exposure to man-made visible and ultraviolet light, Unspecified Place" +"W90","EXPOSURE TO OTHER NONIONIZING RADIATION" +"W90.0","Exposure to other nonionizing radiation, Home" +"W90.1","Exposure to other nonionizing radiation, Residential Institution" +"W90.2","Exposure to other nonionizing radiation, School, Other Institution and Public Admimistration Area" +"W90.3","Exposure to other nonionizing radiation, Sports and Athletic Areas" +"W90.4","Exposure to other nonionizing radiation, Street and Highway" +"W90.5","Exposure to other nonionizing radiation, Trade and Service Area" +"W90.6","Exposure to other nonionizing radiation, Industrial and Construction Area" +"W90.7","Exposure to other nonionizing radiation, Farm" +"W90.8","Exposure to other nonionizing radiation, Other Specified Area" +"W90.9","Exposure to other nonionizing radiation, Unspecified Place" +"W91","Exposure to unspecified type of radiation" +"W91.0","Exposure to unspecified type of radiation, Home" +"W91.1","Exposure to unspecified type of radiation, Residential Institution" +"W91.2","Exposure to unspecified type of radiation, School, Other Institution and Public Admimistration Area" +"W91.3","Exposure to unspecified type of radiation, Sports and Athletic Areas" +"W91.4","Exposure to unspecified type of radiation, Street and Highway" +"W91.5","Exposure to unspecified type of radiation, Trade and Service Area" +"W91.6","Exposure to unspecified type of radiation, Industrial and Construction Area" +"W91.7","Exposure to unspecified type of radiation, Farm" +"W91.8","Exposure to unspecified type of radiation, Other Specified Area" +"W91.9","Exposure to unspecified type of radiation, Unspecified Place" +"W92","EXPOSURE TO EXCESSIVE HEAT OF MAN-MADE ORIGIN" +"W92.0","Exposure to excessive heat of man-made origin, Home" +"W92.1","Exposure to excessive heat of man-made origin, Residential Institution" +"W92.2","Exposure to excessive heat of man-made origin, School, Other Institution and Public Admimistration Area" +"W92.3","Exposure to excessive heat of man-made origin, Sports and Athletic Areas" +"W92.4","Exposure to excessive heat of man-made origin, Street and Highway" +"W92.5","Exposure to excessive heat of man-made origin, Trade and Service Area" +"W92.6","Exposure to excessive heat of man-made origin, Industrial and Construction Area" +"W92.7","Exposure to excessive heat of man-made origin, Farm" +"W92.8","Exposure to excessive heat of man-made origin, Other Specified Area" +"W92.9","Exposure to excessive heat of man-made origin, Unspecified Place" +"W93","Exposure to excessive cold of man-made origin" +"W93.0","Exposure to excessive cold of man-made origin, Home" +"W93.1","Exposure to excessive cold of man-made origin, Residential Institution" +"W93.2","Exposure to excessive cold of man-made origin, School, Other Institution and Public Admimistration Area" +"W93.3","Exposure to excessive cold of man-made origin, Sports and Athletic Areas" +"W93.4","Exposure to excessive cold of man-made origin, Street and Highway" +"W93.5","Exposure to excessive cold of man-made origin, Trade and Service Area" +"W93.6","Exposure to excessive cold of man-made origin, Industrial and Construction Area" +"W93.7","Exposure to excessive cold of man-made origin, Farm" +"W93.8","Exposure to excessive cold of man-made origin, Other Specified Area" +"W93.9","Exposure to excessive cold of man-made origin, Unspecified Place" +"W94","EXPOSURE TO HIGH AND LOW AIR PRESSURE AND CHANGES IN AIR PRESSURE" +"W94.0","Exposure to high and low air pressure and changes in air pressure, Home" +"W94.1","Exposure to high and low air pressure and changes in air pressure, Residential Institution" +"W94.2","Exposure to high and low air pressure and changes in air pressure, School, Other Institution and Public Admimistration Area" +"W94.3","Exposure to high and low air pressure and changes in air pressure, Sports and Athletic Areas" +"W94.4","Exposure to high and low air pressure and changes in air pressure, Street and Highway" +"W94.5","Exposure to high and low air pressure and changes in air pressure, Trade and Service Area" +"W94.6","Exposure to high and low air pressure and changes in air pressure, Industrial and Construction Area" +"W94.7","Exposure to high and low air pressure and changes in air pressure, Farm" +"W94.8","Exposure to high and low air pressure and changes in air pressure, Other Specified Area" +"W94.9","Exposure to high and low air pressure and changes in air pressure, Unspecified Place" +"W99","Exposure to other and unspecified man-made environmental factors" +"W99.0","Exposure to other and unspecified man-made environmental factors, Home" +"W99.1","Exposure to other and unspecified man-made environmental factors, Residential Institution" +"W99.2","Exposure to other and unspecified man-made environmental factors, School, Other Institution and Public Admimistration Area" +"W99.3","Exposure to other and unspecified man-made environmental factors, Sports and Athletic Areas" +"W99.4","Exposure to other and unspecified man-made environmental factors, Street and Highway" +"W99.5","Exposure to other and unspecified man-made environmental factors, Trade and Service Area" +"W99.6","Exposure to other and unspecified man-made environmental factors, Industrial and Construction Area" +"W99.7","Exposure to other and unspecified man-made environmental factors, Farm" +"W99.8","Exposure to other and unspecified man-made environmental factors, Other Specified Area" +"W99.9","Exposure to other and unspecified man-made environmental factors, Unspecified Place" +"X00","EXPOSURE TO UNCONTROLLED FIRE IN BUILDING OR STRUCTURE" +"X00.0","Exposure to uncontrolled fire in building or structure, Home" +"X00.1","Exposure to uncontrolled fire in building or structure, Residential Institution" +"X00.2","Exposure to uncontrolled fire in building or structure, School, Other Institution and Public Admimistration Area" +"X00.3","Exposure to uncontrolled fire in building or structure, Sports and Athletic Areas" +"X00.4","Exposure to uncontrolled fire in building or structure, Street and Highway" +"X00.5","Exposure to uncontrolled fire in building or structure, Trade and Service Area" +"X00.6","Exposure to uncontrolled fire in building or structure, Industrial and Construction Area" +"X00.7","Exposure to uncontrolled fire in building or structure, Farm" +"X00.8","Exposure to uncontrolled fire in building or structure, Other Specified Area" +"X00.9","Exposure to uncontrolled fire in building or structure, Unspecified Place" +"X01","Exposure to uncontrolled fire, not in building or structure" +"X01.0","Exposure to uncontrolled fire, not in building or structure, Home" +"X01.1","Exposure to uncontrolled fire, not in building or structure, Residential Institution" +"X01.2","Exposure to uncontrolled fire, not in building or structure, School, Other Institution and Public Admimistration Area" +"X01.3","Exposure to uncontrolled fire, not in building or structure, Sports and Athletic Areas" +"X01.4","Exposure to uncontrolled fire, not in building or structure, Street and Highway" +"X01.5","Exposure to uncontrolled fire, not in building or structure, Trade and Service Area" +"X01.6","Exposure to uncontrolled fire, not in building or structure, Industrial and Construction Area" +"X01.7","Exposure to uncontrolled fire, not in building or structure, Farm" +"X01.8","Exposure to uncontrolled fire, not in building or structure, Other Specified Area" +"X01.9","Exposure to uncontrolled fire, not in building or structure, Unspecified Place" +"X02","EXPOSURE TO CONTROLLED FIRE IN BUILDING OR STRUCTURE" +"X02.0","Exposure to controlled fire in building or structure, Home" +"X02.1","Exposure to controlled fire in building or structure, Residential Institution" +"X02.2","Exposure to controlled fire in building or structure, School, Other Institution and Public Admimistration Area" +"X02.3","Exposure to controlled fire in building or structure, Sports and Athletic Areas" +"X02.4","Exposure to controlled fire in building or structure, Street and Highway" +"X02.5","Exposure to controlled fire in building or structure, Trade and Service Area" +"X02.6","Exposure to controlled fire in building or structure, Industrial and Construction Area" +"X02.7","Exposure to controlled fire in building or structure, Farm" +"X02.8","Exposure to controlled fire in building or structure, Other Specified Area" +"X02.9","Exposure to controlled fire in building or structure, Unspecified Place" +"X03","Exposure to controlled fire, not in building or structure" +"X03.0","Exposure to controlled fire, not in building or structure, Home" +"X03.1","Exposure to controlled fire, not in building or structure, Residential Institution" +"X03.2","Exposure to controlled fire, not in building or structure, School, Other Institution and Public Admimistration Area" +"X03.3","Exposure to controlled fire, not in building or structure, Sports and Athletic Areas" +"X03.4","Exposure to controlled fire, not in building or structure, Street and Highway" +"X03.5","Exposure to controlled fire, not in building or structure, Trade and Service Area" +"X03.6","Exposure to controlled fire, not in building or structure, Industrial and Construction Area" +"X03.7","Exposure to controlled fire, not in building or structure, Farm" +"X03.8","Exposure to controlled fire, not in building or structure, Other Specified Area" +"X03.9","Exposure to controlled fire, not in building or structure, Unspecified Place" +"X04","Exposure to ignition of highly flammable material" +"X04.0","Exposure to ignition of highly flammable material, Home" +"X04.1","Exposure to ignition of highly flammable material, Residential Institution" +"X04.2","Exposure to ignition of highly flammable material, School, Other Institution and Public Admimistration Area" +"X04.3","Exposure to ignition of highly flammable material, Sports and Athletic Areas" +"X04.4","Exposure to ignition of highly flammable material, Street and Highway" +"X04.5","Exposure to ignition of highly flammable material, Trade and Service Area" +"X04.6","Exposure to ignition of highly flammable material, Industrial and Construction Area" +"X04.7","Exposure to ignition of highly flammable material, Farm" +"X04.8","Exposure to ignition of highly flammable material, Other Specified Area" +"X04.9","Exposure to ignition of highly flammable material, Unspecified Place" +"X05","EXPOSURE TO IGNITION OR MELTING OF NIGHTWEAR" +"X05.0","Exposure to ignition or melting of nightwear, Home" +"X05.1","Exposure to ignition or melting of nightwear, Residential Institution" +"X05.2","Exposure to ignition or melting of nightwear, School, Other Institution and Public Admimistration Area" +"X05.3","Exposure to ignition or melting of nightwear, Sports and Athletic Areas" +"X05.4","Exposure to ignition or melting of nightwear, Street and Highway" +"X05.5","Exposure to ignition or melting of nightwear, Trade and Service Area" +"X05.6","Exposure to ignition or melting of nightwear, Industrial and Construction Area" +"X05.7","Exposure to ignition or melting of nightwear, Farm" +"X05.8","Exposure to ignition or melting of nightwear, Other Specified Area" +"X05.9","Exposure to ignition or melting of nightwear, Unspecified Place" +"X06","EXPOSURE TO IGNITION OR MELTING OF OTHER CLOTHING AND APPAREL" +"X06.0","Exposure to ignition or melting of other clothing and apparel, Home" +"X06.1","Exposure to ignition or melting of other clothing and apparel, Residential Institution" +"X06.2","Exposure to ignition or melting of other clothing and apparel, School, Other Institution and Public Admimistration Area" +"X06.3","Exposure to ignition or melting of other clothing and apparel, Sports and Athletic Areas" +"X06.4","Exposure to ignition or melting of other clothing and apparel, Street and Highway" +"X06.5","Exposure to ignition or melting of other clothing and apparel, Trade and Service Area" +"X06.6","Exposure to ignition or melting of other clothing and apparel, Industrial and Construction Area" +"X06.7","Exposure to ignition or melting of other clothing and apparel, Farm" +"X06.8","Exposure to ignition or melting of other clothing and apparel, Other Specified Area" +"X06.9","Exposure to ignition or melting of other clothing and apparel, Unspecified Place" +"X08","Exposure to other specified smoke, fire and flames" +"X08.0","Exposure to other specified smoke, fire and flames, Home" +"X08.1","Exposure to other specified smoke, fire and flames, Residential Institution" +"X08.2","Exposure to other specified smoke, fire and flames, School, Other Institution and Public Admimistration Area" +"X08.3","Exposure to other specified smoke, fire and flames, Sports and Athletic Areas" +"X08.4","Exposure to other specified smoke, fire and flames, Street and Highway" +"X08.5","Exposure to other specified smoke, fire and flames, Trade and Service Area" +"X08.6","Exposure to other specified smoke, fire and flames, Industrial and Construction Area" +"X08.7","Exposure to other specified smoke, fire and flames, Farm" +"X08.8","Exposure to other specified smoke, fire and flames, Other Specified Area" +"X08.9","Exposure to other specified smoke, fire and flames, Unspecified Place" +"X09","Exposure to unspecified smoke, fire and flames" +"X09.0","Exposure to unspecified smoke, fire and flames, Home" +"X09.1","Exposure to unspecified smoke, fire and flames, Residential Institution" +"X09.2","Exposure to unspecified smoke, fire and flames, School, Other Institution and Public Admimistration Area" +"X09.3","Exposure to unspecified smoke, fire and flames, Sports and Athletic Areas" +"X09.4","Exposure to unspecified smoke, fire and flames, Street and Highway" +"X09.5","Exposure to unspecified smoke, fire and flames, Trade and Service Area" +"X09.6","Exposure to unspecified smoke, fire and flames, Industrial and Construction Area" +"X09.7","Exposure to unspecified smoke, fire and flames, Farm" +"X09.8","Exposure to unspecified smoke, fire and flames, Other Specified Area" +"X09.9","Exposure to unspecified smoke, fire and flames, Unspecified Place" +"X10","Contact with hot drinks, food, fats and cooking oils" +"X10.0","Contact with hot drinks, food, fats and cooking oils, Home" +"X10.1","Contact with hot drinks, food, fats and cooking oils, Residential Institution" +"X10.2","Contact with hot drinks, food, fats and cooking oils, School, Other Institution and Public Admimistration Area" +"X10.3","Contact with hot drinks, food, fats and cooking oils, Sports and Athletic Areas" +"X10.4","Contact with hot drinks, food, fats and cooking oils, Street and Highway" +"X10.5","Contact with hot drinks, food, fats and cooking oils, Trade and Service Area" +"X10.6","Contact with hot drinks, food, fats and cooking oils, Industrial and Construction Area" +"X10.7","Contact with hot drinks, food, fats and cooking oils, Farm" +"X10.8","Contact with hot drinks, food, fats and cooking oils, Other Specified Area" +"X10.9","Contact with hot drinks, food, fats and cooking oils, Unspecified Place" +"X11","Contact with hot tap-water" +"X11.0","Contact with hot tap-water, Home" +"X11.1","Contact with hot tap-water, Residential Institution" +"X11.2","Contact with hot tap-water, School, Other Institution and Public Admimistration Area" +"X11.3","Contact with hot tap-water, Sports and Athletic Areas" +"X11.4","Contact with hot tap-water, Street and Highway" +"X11.5","Contact with hot tap-water, Trade and Service Area" +"X11.6","Contact with hot tap-water, Industrial and Construction Area" +"X11.7","Contact with hot tap-water, Farm" +"X11.8","Contact with hot tap-water, Other Specified Area" +"X11.9","Contact with hot tap-water, Unspecified Place" +"X12","Contact with other hot fluids" +"X12.0","Contact with other hot fluids, Home" +"X12.1","Contact with other hot fluids, Residential Institution" +"X12.2","Contact with other hot fluids, School, Other Institution and Public Admimistration Area" +"X12.3","Contact with other hot fluids, Sports and Athletic Areas" +"X12.4","Contact with other hot fluids, Street and Highway" +"X12.5","Contact with other hot fluids, Trade and Service Area" +"X12.6","Contact with other hot fluids, Industrial and Construction Area" +"X12.7","Contact with other hot fluids, Farm" +"X12.8","Contact with other hot fluids, Other Specified Area" +"X12.9","Contact with other hot fluids, Unspecified Place" +"X13","Contact with steam and hot vapours" +"X13.0","Contact with steam and hot vapours, Home" +"X13.1","Contact with steam and hot vapours, Residential Institution" +"X13.2","Contact with steam and hot vapours, School, Other Institution and Public Admimistration Area" +"X13.3","Contact with steam and hot vapours, Sports and Athletic Areas" +"X13.4","Contact with steam and hot vapours, Street and Highway" +"X13.5","Contact with steam and hot vapours, Trade and Service Area" +"X13.6","Contact with steam and hot vapours, Industrial and Construction Area" +"X13.7","Contact with steam and hot vapours, Farm" +"X13.8","Contact with steam and hot vapours, Other Specified Area" +"X13.9","Contact with steam and hot vapours, Unspecified Place" +"X14","Contact with hot air and gases" +"X14.0","Contact with hot air and gases, Home" +"X14.1","Contact with hot air and gases, Residential Institution" +"X14.2","Contact with hot air and gases, School, Other Institution and Public Admimistration Area" +"X14.3","Contact with hot air and gases, Sports and Athletic Areas" +"X14.4","Contact with hot air and gases, Street and Highway" +"X14.5","Contact with hot air and gases, Trade and Service Area" +"X14.6","Contact with hot air and gases, Industrial and Construction Area" +"X14.7","Contact with hot air and gases, Farm" +"X14.8","Contact with hot air and gases, Other Specified Area" +"X14.9","Contact with hot air and gases, Unspecified Place" +"X15","Contact with hot household appliances" +"X15.0","Contact with hot household appliances, Home" +"X15.1","Contact with hot household appliances, Residential Institution" +"X15.2","Contact with hot household appliances, School, Other Institution and Public Admimistration Area" +"X15.3","Contact with hot household appliances, Sports and Athletic Areas" +"X15.4","Contact with hot household appliances, Street and Highway" +"X15.5","Contact with hot household appliances, Trade and Service Area" +"X15.6","Contact with hot household appliances, Industrial and Construction Area" +"X15.7","Contact with hot household appliances, Farm" +"X15.8","Contact with hot household appliances, Other Specified Area" +"X15.9","Contact with hot household appliances, Unspecified Place" +"X16","Contact with hot heating appliances, radiators and pipes" +"X16.0","Contact with hot heating appliances, radiators and pipes, Home" +"X16.1","Contact with hot heating appliances, radiators and pipes, Residential Institution" +"X16.2","Contact with hot heating appliances, radiators and pipes, School, Other Institution and Public Admimistration Area" +"X16.3","Contact with hot heating appliances, radiators and pipes, Sports and Athletic Areas" +"X16.4","Contact with hot heating appliances, radiators and pipes, Street and Highway" +"X16.5","Contact with hot heating appliances, radiators and pipes, Trade and Service Area" +"X16.6","Contact with hot heating appliances, radiators and pipes, Industrial and Construction Area" +"X16.7","Contact with hot heating appliances, radiators and pipes, Farm" +"X16.8","Contact with hot heating appliances, radiators and pipes, Other Specified Area" +"X16.9","Contact with hot heating appliances, radiators and pipes, Unspecified Place" +"X17","Contact with hot engines, machinery and tools" +"X17.0","Contact with hot engines, machinery and tools, Home" +"X17.1","Contact with hot engines, machinery and tools, Residential Institution" +"X17.2","Contact with hot engines, machinery and tools, School, Other Institution and Public Admimistration Area" +"X17.3","Contact with hot engines, machinery and tools, Sports and Athletic Areas" +"X17.4","Contact with hot engines, machinery and tools, Street and Highway" +"X17.5","Contact with hot engines, machinery and tools, Trade and Service Area" +"X17.6","Contact with hot engines, machinery and tools, Industrial and Construction Area" +"X17.7","Contact with hot engines, machinery and tools, Farm" +"X17.8","Contact with hot engines, machinery and tools, Other Specified Area" +"X17.9","Contact with hot engines, machinery and tools, Unspecified Place" +"X18","Contact with other hot metals" +"X18.0","Contact with other hot metals, Home" +"X18.1","Contact with other hot metals, Residential Institution" +"X18.2","Contact with other hot metals, School, Other Institution and Public Admimistration Area" +"X18.3","Contact with other hot metals, Sports and Athletic Areas" +"X18.4","Contact with other hot metals, Street and Highway" +"X18.5","Contact with other hot metals, Trade and Service Area" +"X18.6","Contact with other hot metals, Industrial and Construction Area" +"X18.7","Contact with other hot metals, Farm" +"X18.8","Contact with other hot metals, Other Specified Area" +"X18.9","Contact with other hot metals, Unspecified Place" +"X19","Contact with other and unspecified heat and hot substances" +"X19.0","Contact with other and unspecified heat and hot substances, Home" +"X19.1","Contact with other and unspecified heat and hot substances, Residential Institution" +"X19.2","Contact with other and unspecified heat and hot substances, School, Other Institution and Public Admimistration Area" +"X19.3","Contact with other and unspecified heat and hot substances, Sports and Athletic Areas" +"X19.4","Contact with other and unspecified heat and hot substances, Street and Highway" +"X19.5","Contact with other and unspecified heat and hot substances, Trade and Service Area" +"X19.6","Contact with other and unspecified heat and hot substances, Industrial and Construction Area" +"X19.7","Contact with other and unspecified heat and hot substances, Farm" +"X19.8","Contact with other and unspecified heat and hot substances, Other Specified Area" +"X19.9","Contact with other and unspecified heat and hot substances, Unspecified Place" +"X20","Contact with venomous snakes and lizards" +"X20.0","Contact with venomous snakes and lizards, Home" +"X20.1","Contact with venomous snakes and lizards, Residential Institution" +"X20.2","Contact with venomous snakes and lizards, School, Other Institution and Public Admimistration Area" +"X20.3","Contact with venomous snakes and lizards, Sports and Athletic Areas" +"X20.4","Contact with venomous snakes and lizards, Street and Highway" +"X20.5","Contact with venomous snakes and lizards, Trade and Service Area" +"X20.6","Contact with venomous snakes and lizards, Industrial and Construction Area" +"X20.7","Contact with venomous snakes and lizards, Farm" +"X20.8","Contact with venomous snakes and lizards, Other Specified Area" +"X20.9","Contact with venomous snakes and lizards, Unspecified Place" +"X21","Contact with venomous spiders" +"X21.0","Contact with venomous spiders, Home" +"X21.1","Contact with venomous spiders, Residential Institution" +"X21.2","Contact with venomous spiders, School, Other Institution and Public Admimistration Area" +"X21.3","Contact with venomous spiders, Sports and Athletic Areas" +"X21.4","Contact with venomous spiders, Street and Highway" +"X21.5","Contact with venomous spiders, Trade and Service Area" +"X21.6","Contact with venomous spiders, Industrial and Construction Area" +"X21.7","Contact with venomous spiders, Farm" +"X21.8","Contact with venomous spiders, Other Specified Area" +"X21.9","Contact with venomous spiders, Unspecified Place" +"X22","Contact with scorpions" +"X22.0","Contact with scorpions, Home" +"X22.1","Contact with scorpions, Residential Institution" +"X22.2","Contact with scorpions, School, Other Institution and Public Admimistration Area" +"X22.3","Contact with scorpions, Sports and Athletic Areas" +"X22.4","Contact with scorpions, Street and Highway" +"X22.5","Contact with scorpions, Trade and Service Area" +"X22.6","Contact with scorpions, Industrial and Construction Area" +"X22.7","Contact with scorpions, Farm" +"X22.8","Contact with scorpions, Other Specified Area" +"X22.9","Contact with scorpions, Unspecified Place" +"X23","Contact with hornets, wasps and bees" +"X23.0","Contact with hornets, wasps and bees, Home" +"X23.1","Contact with hornets, wasps and bees, Residential Institution" +"X23.2","Contact with hornets, wasps and bees, School, Other Institution and Public Admimistration Area" +"X23.3","Contact with hornets, wasps and bees, Sports and Athletic Areas" +"X23.4","Contact with hornets, wasps and bees, Street and Highway" +"X23.5","Contact with hornets, wasps and bees, Trade and Service Area" +"X23.6","Contact with hornets, wasps and bees, Industrial and Construction Area" +"X23.7","Contact with hornets, wasps and bees, Farm" +"X23.8","Contact with hornets, wasps and bees, Other Specified Area" +"X23.9","Contact with hornets, wasps and bees, Unspecified Place" +"X24","Contact with centipedes and venomous millipedes (tropical)" +"X24.0","Contact with centipedes and venomous millipedes (tropical), Home" +"X24.1","Contact with centipedes and venomous millipedes (tropical), Residential Institution" +"X24.2","Contact with centipedes and venomous millipedes (tropical), School, Other Institution and Public Admimistration Area" +"X24.3","Contact with centipedes and venomous millipedes (tropical), Sports and Athletic Areas" +"X24.4","Contact with centipedes and venomous millipedes (tropical), Street and Highway" +"X24.5","Contact with centipedes and venomous millipedes (tropical), Trade and Service Area" +"X24.6","Contact with centipedes and venomous millipedes (tropical), Industrial and Construction Area" +"X24.7","Contact with centipedes and venomous millipedes (tropical), Farm" +"X24.8","Contact with centipedes and venomous millipedes (tropical), Other Specified Area" +"X24.9","Contact with centipedes and venomous millipedes (tropical), Unspecified Place" +"X25","Contact with other venomous arthropods" +"X25.0","Contact with other venomous arthropods, Home" +"X25.1","Contact with other venomous arthropods, Residential Institution" +"X25.2","Contact with other venomous arthropods, School, Other Institution and Public Admimistration Area" +"X25.3","Contact with other venomous arthropods, Sports and Athletic Areas" +"X25.4","Contact with other venomous arthropods, Street and Highway" +"X25.5","Contact with other venomous arthropods, Trade and Service Area" +"X25.6","Contact with other venomous arthropods, Industrial and Construction Area" +"X25.7","Contact with other venomous arthropods, Farm" +"X25.8","Contact with other venomous arthropods, Other Specified Area" +"X25.9","Contact with other venomous arthropods, Unspecified Place" +"X26","Contact with venomous marine animals and plants" +"X26.0","Contact with venomous marine animals and plants, Home" +"X26.1","Contact with venomous marine animals and plants, Residential Institution" +"X26.2","Contact with venomous marine animals and plants, School, Other Institution and Public Admimistration Area" +"X26.3","Contact with venomous marine animals and plants, Sports and Athletic Areas" +"X26.4","Contact with venomous marine animals and plants, Street and Highway" +"X26.5","Contact with venomous marine animals and plants, Trade and Service Area" +"X26.6","Contact with venomous marine animals and plants, Industrial and Construction Area" +"X26.7","Contact with venomous marine animals and plants, Farm" +"X26.8","Contact with venomous marine animals and plants, Other Specified Area" +"X26.9","Contact with venomous marine animals and plants, Unspecified Place" +"X27","Contact with other specified venomous animals" +"X27.0","Contact with other specified venomous animals, Home" +"X27.1","Contact with other specified venomous animals, Residential Institution" +"X27.2","Contact with other specified venomous animals, School, Other Institution and Public Admimistration Area" +"X27.3","Contact with other specified venomous animals, Sports and Athletic Areas" +"X27.4","Contact with other specified venomous animals, Street and Highway" +"X27.5","Contact with other specified venomous animals, Trade and Service Area" +"X27.6","Contact with other specified venomous animals, Industrial and Construction Area" +"X27.7","Contact with other specified venomous animals, Farm" +"X27.8","Contact with other specified venomous animals, Other Specified Area" +"X27.9","Contact with other specified venomous animals, Unspecified Place" +"X28","Contact with other specified venomous plants" +"X28.0","Contact with other specified venomous plants, Home" +"X28.1","Contact with other specified venomous plants, Residential Institution" +"X28.2","Contact with other specified venomous plants, School, Other Institution and Public Admimistration Area" +"X28.3","Contact with other specified venomous plants, Sports and Athletic Areas" +"X28.4","Contact with other specified venomous plants, Street and Highway" +"X28.5","Contact with other specified venomous plants, Trade and Service Area" +"X28.6","Contact with other specified venomous plants, Industrial and Construction Area" +"X28.7","Contact with other specified venomous plants, Farm" +"X28.8","Contact with other specified venomous plants, Other Specified Area" +"X28.9","Contact with other specified venomous plants, Unspecified Place" +"X29","Contact with unspecified venomous animal or plant" +"X29.0","Contact with unspecified venomous animal or plant, Home" +"X29.1","Contact with unspecified venomous animal or plant, Residential Institution" +"X29.2","Contact with unspecified venomous animal or plant, School, Other Institution and Public Admimistration Area" +"X29.3","Contact with unspecified venomous animal or plant, Sports and Athletic Areas" +"X29.4","Contact with unspecified venomous animal or plant, Street and Highway" +"X29.5","Contact with unspecified venomous animal or plant, Trade and Service Area" +"X29.6","Contact with unspecified venomous animal or plant, Industrial and Construction Area" +"X29.7","Contact with unspecified venomous animal or plant, Farm" +"X29.8","Contact with unspecified venomous animal or plant, Other Specified Area" +"X29.9","Contact with unspecified venomous animal or plant, Unspecified Place" +"X30","Exposure to excessive natural heat" +"X30.0","Exposure to excessive natural heat, Home" +"X30.1","Exposure to excessive natural heat, Residential Institution" +"X30.2","Exposure to excessive natural heat, School, Other Institution and Public Admimistration Area" +"X30.3","Exposure to excessive natural heat, Sports and Athletic Areas" +"X30.4","Exposure to excessive natural heat, Street and Highway" +"X30.5","Exposure to excessive natural heat, Trade and Service Area" +"X30.6","Exposure to excessive natural heat, Industrial and Construction Area" +"X30.7","Exposure to excessive natural heat, Farm" +"X30.8","Exposure to excessive natural heat, Other Specified Area" +"X30.9","Exposure to excessive natural heat, Unspecified Place" +"X31","EXPOSURE TO EXCESSIVE NATURAL COLD" +"X31.0","Exposure to excessive natural cold, Home" +"X31.1","Exposure to excessive natural cold, Residential Institution" +"X31.2","Exposure to excessive natural cold, School, Other Institution and Public Admimistration Area" +"X31.3","Exposure to excessive natural cold, Sports and Athletic Areas" +"X31.4","Exposure to excessive natural cold, Street and Highway" +"X31.5","Exposure to excessive natural cold, Trade and Service Area" +"X31.6","Exposure to excessive natural cold, Industrial and Construction Area" +"X31.7","Exposure to excessive natural cold, Farm" +"X31.8","Exposure to excessive natural cold, Other Specified Area" +"X31.9","Exposure to excessive natural cold, Unspecified Place" +"X32","EXPOSURE TO SUNLIGHT" +"X32.0","Exposure to sunlight, Home" +"X32.1","Exposure to sunlight, Residential Institution" +"X32.2","Exposure to sunlight, School, Other Institution and Public Admimistration Area" +"X32.3","Exposure to sunlight, Sports and Athletic Areas" +"X32.4","Exposure to sunlight, Street and Highway" +"X32.5","Exposure to sunlight, Trade and Service Area" +"X32.6","Exposure to sunlight, Industrial and Construction Area" +"X32.7","Exposure to sunlight, Farm" +"X32.8","Exposure to sunlight, Other Specified Area" +"X32.9","Exposure to sunlight, Unspecified Place" +"X33","VICTIM OF LIGHTNING" +"X33.0","Victim of lightning, Home" +"X33.1","Victim of lightning, Residential Institution" +"X33.2","Victim of lightning, School, Other Institution and Public Admimistration Area" +"X33.3","Victim of lightning, Sports and Athletic Areas" +"X33.4","Victim of lightning, Street and Highway" +"X33.5","Victim of lightning, Trade and Service Area" +"X33.6","Victim of lightning, Industrial and Construction Area" +"X33.7","Victim of lightning, Farm" +"X33.8","Victim of lightning, Other Specified Area" +"X33.9","Victim of lightning, Unspecified Place" +"X34","VICTIM OF EARTHQUAKE" +"X34.0","Victim of earthquake, Home" +"X34.1","Victim of earthquake, Residential Institution" +"X34.2","Victim of earthquake, School, Other Institution and Public Admimistration Area" +"X34.3","Victim of earthquake, Sports and Athletic Areas" +"X34.4","Victim of earthquake, Street and Highway" +"X34.5","Victim of earthquake, Trade and Service Area" +"X34.6","Victim of earthquake, Industrial and Construction Area" +"X34.7","Victim of earthquake, Farm" +"X34.8","Victim of earthquake, Other Specified Area" +"X34.9","Victim of earthquake, Unspecified Place" +"X35","VICTIM OF VOLCANIC ERUPTION" +"X35.0","Victim of volcanic eruption, Home" +"X35.1","Victim of volcanic eruption, Residential Institution" +"X35.2","Victim of volcanic eruption, School, Other Institution and Public Admimistration Area" +"X35.3","Victim of volcanic eruption, Sports and Athletic Areas" +"X35.4","Victim of volcanic eruption, Street and Highway" +"X35.5","Victim of volcanic eruption, Trade and Service Area" +"X35.6","Victim of volcanic eruption, Industrial and Construction Area" +"X35.7","Victim of volcanic eruption, Farm" +"X35.8","Victim of volcanic eruption, Other Specified Area" +"X35.9","Victim of volcanic eruption, Unspecified Place" +"X36","VICTIM OF AVALANCHE, LANDSLIDE AND OTHER EARTH MOVEMENTS" +"X36.0","Victim of avalanche, landslide and other earth movements, Home" +"X36.1","Victim of avalanche, landslide and other earth movements, Residential Institution" +"X36.2","Victim of avalanche, landslide and other earth movements, School, Other Institution and Public Admimistration Area" +"X36.3","Victim of avalanche, landslide and other earth movements, Sports and Athletic Areas" +"X36.4","Victim of avalanche, landslide and other earth movements, Street and Highway" +"X36.5","Victim of avalanche, landslide and other earth movements, Trade and Service Area" +"X36.6","Victim of avalanche, landslide and other earth movements, Industrial and Construction Area" +"X36.7","Victim of avalanche, landslide and other earth movements, Farm" +"X36.8","Victim of avalanche, landslide and other earth movements, Other Specified Area" +"X36.9","Victim of avalanche, landslide and other earth movements, Unspecified Place" +"X37","VICTIM OF CATACLYSMIC STORM" +"X37.0","Victim of cataclysmic storm, Home" +"X37.1","Victim of cataclysmic storm, Residential Institution" +"X37.2","Victim of cataclysmic storm, School, Other Institution and Public Admimistration Area" +"X37.3","Victim of cataclysmic storm, Sports and Athletic Areas" +"X37.4","Victim of cataclysmic storm, Street and Highway" +"X37.5","Victim of cataclysmic storm, Trade and Service Area" +"X37.6","Victim of cataclysmic storm, Industrial and Construction Area" +"X37.7","Victim of cataclysmic storm, Farm" +"X37.8","Victim of cataclysmic storm, Other Specified Area" +"X37.9","Victim of cataclysmic storm, Unspecified Place" +"X38","VICTIM OF FLOOD" +"X38.0","Victim of flood, Home" +"X38.1","Victim of flood, Residential Institution" +"X38.2","Victim of flood, School, Other Institution and Public Admimistration Area" +"X38.3","Victim of flood, Sports and Athletic Areas" +"X38.4","Victim of flood, Street and Highway" +"X38.5","Victim of flood, Trade and Service Area" +"X38.6","Victim of flood, Industrial and Construction Area" +"X38.7","Victim of flood, Farm" +"X38.8","Victim of flood, Other Specified Area" +"X38.9","Victim of flood, Unspecified Place" +"X39","Exposure to other and unspecified forces of nature" +"X39.0","Exposure to other and unspecified forces of nature, Home" +"X39.1","Exposure to other and unspecified forces of nature, Residential Institution" +"X39.2","Exposure to other and unspecified forces of nature, School, Other Institution and Public Admimistration Area" +"X39.3","Exposure to other and unspecified forces of nature, Sports and Athletic Areas" +"X39.4","Exposure to other and unspecified forces of nature, Street and Highway" +"X39.5","Exposure to other and unspecified forces of nature, Trade and Service Area" +"X39.6","Exposure to other and unspecified forces of nature, Industrial and Construction Area" +"X39.7","Exposure to other and unspecified forces of nature, Farm" +"X39.8","Exposure to other and unspecified forces of nature, Other Specified Area" +"X39.9","Exposure to other and unspecified forces of nature, Unspecified Place" +"X40","Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics" +"X40.0","Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Home" +"X40.1","Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Residential Institution" +"X40.2","Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, School, Other Institution and Public Admimistration Area" +"X40.3","Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Sports and Athletic Areas" +"X40.4","Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Street and Highway" +"X40.5","Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Trade and Service Area" +"X40.6","Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Industrial and Construction Area" +"X40.7","Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Farm" +"X40.8","Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Other Specified Area" +"X40.9","Accidental poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Unspecified Place" +"X41","Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified" +"X41.0","Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Home" +"X41.1","Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Residential Institution" +"X41.2","Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, School, Other Institution and Public Admimistration Area" +"X41.3","Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Sports and Athletic Areas" +"X41.4","Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Street and Highway" +"X41.5","Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Trade and Service Area" +"X41.6","Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Industrial and Construction Area" +"X41.7","Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Farm" +"X41.8","Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Other Specified Area" +"X41.9","Accidental poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Unspecified Place" +"X42","Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified" +"X42.0","Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Home" +"X42.1","Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Residential Institution" +"X42.2","Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, School, Other Institution and Public Admimistration Area" +"X42.3","Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Sports and Athletic Areas" +"X42.4","Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Street and Highway" +"X42.5","Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Trade and Service Area" +"X42.6","Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Industrial and Construction Area" +"X42.7","Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Farm" +"X42.8","Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Other Specified Area" +"X42.9","Accidental poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Unspecified Place" +"X43","Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system" +"X43.0","Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Home" +"X43.1","Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Residential Institution" +"X43.2","Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, School, Other Institution and Public Admimistration Area" +"X43.3","Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Sports and Athletic Areas" +"X43.4","Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Street and Highway" +"X43.5","Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Trade and Service Area" +"X43.6","Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Industrial and Construction Area" +"X43.7","Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Farm" +"X43.8","Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Other Specified Area" +"X43.9","Accidental poisoning by and exposure to other drugs acting on the autonomic nervous system, Unspecified Place" +"X44","Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances" +"X44.0","Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Home" +"X44.1","Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Residential Institution" +"X44.2","Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, School, Other Institution and Public Admimistration Area" +"X44.3","Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Sports and Athletic Areas" +"X44.4","Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Street and Highway" +"X44.5","Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Trade and Service Area" +"X44.6","Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Industrial and Construction Area" +"X44.7","Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Farm" +"X44.8","Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Other Specified Area" +"X44.9","Accidental poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Unspecified Place" +"X45","Accidental poisoning by and exposure to alcohol" +"X45.0","Accidental poisoning by and exposure to alcohol, Home" +"X45.1","Accidental poisoning by and exposure to alcohol, Residential Institution" +"X45.2","Accidental poisoning by and exposure to alcohol, School, Other Institution and Public Admimistration Area" +"X45.3","Accidental poisoning by and exposure to alcohol, Sports and Athletic Areas" +"X45.4","Accidental poisoning by and exposure to alcohol, Street and Highway" +"X45.5","Accidental poisoning by and exposure to alcohol, Trade and Service Area" +"X45.6","Accidental poisoning by and exposure to alcohol, Industrial and Construction Area" +"X45.7","Accidental poisoning by and exposure to alcohol, Farm" +"X45.8","Accidental poisoning by and exposure to alcohol, Other Specified Area" +"X45.9","Accidental poisoning by and exposure to alcohol, Unspecified Place" +"X46","Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours" +"X46.0","Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Home" +"X46.1","Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Residential Institution" +"X46.2","Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, School, Other Institution and Public Admimistration Area" +"X46.3","Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Sports and Athletic Areas" +"X46.4","Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Street and Highway" +"X46.5","Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Trade and Service Area" +"X46.6","Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Industrial and Construction Area" +"X46.7","Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Farm" +"X46.8","Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Other Specified Area" +"X46.9","Accidental poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Unspecified Place" +"X47","Accidental poisoning by and exposure to other gases and vapours" +"X47.0","Accidental poisoning by and exposure to other gases and vapours, Home" +"X47.1","Accidental poisoning by and exposure to other gases and vapours, Residential Institution" +"X47.2","Accidental poisoning by and exposure to other gases and vapours, School, Other Institution and Public Admimistration Area" +"X47.3","Accidental poisoning by and exposure to other gases and vapours, Sports and Athletic Areas" +"X47.4","Accidental poisoning by and exposure to other gases and vapours, Street and Highway" +"X47.5","Accidental poisoning by and exposure to other gases and vapours, Trade and Service Area" +"X47.6","Accidental poisoning by and exposure to other gases and vapours, Industrial and Construction Area" +"X47.7","Accidental poisoning by and exposure to other gases and vapours, Farm" +"X47.8","Accidental poisoning by and exposure to other gases and vapours, Other Specified Area" +"X47.9","Accidental poisoning by and exposure to other gases and vapours, Unspecified Place" +"X48","Accidental poisoning by and exposure to pesticides" +"X48.0","Accidental poisoning by and exposure to pesticides, Home" +"X48.1","Accidental poisoning by and exposure to pesticides, Residential Institution" +"X48.2","Accidental poisoning by and exposure to pesticides, School, Other Institution and Public Admimistration Area" +"X48.3","Accidental poisoning by and exposure to pesticides, Sports and Athletic Areas" +"X48.4","Accidental poisoning by and exposure to pesticides, Street and Highway" +"X48.5","Accidental poisoning by and exposure to pesticides, Trade and Service Area" +"X48.6","Accidental poisoning by and exposure to pesticides, Industrial and Construction Area" +"X48.7","Accidental poisoning by and exposure to pesticides, Farm" +"X48.8","Accidental poisoning by and exposure to pesticides, Other Specified Area" +"X48.9","Accidental poisoning by and exposure to pesticides, Unspecified Place" +"X49","Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances" +"X49.0","Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Home" +"X49.1","Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Residential Institution" +"X49.2","Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, School, Other Institution and Public Admimistration Area" +"X49.3","Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Sports and Athletic Areas" +"X49.4","Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Street and Highway" +"X49.5","Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Trade and Service Area" +"X49.6","Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Industrial and Construction Area" +"X49.7","Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Farm" +"X49.8","Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Other Specified Area" +"X49.9","Accidental poisoning by and exposure to other and unspecified chemicals and noxious substances, Unspecified Place" +"X50","OVEREXERTION AND STRENUOUS OR REPETITIVE MOVEMENTS" +"X50.0","Overexertion and strenuous or repetitive movements, Home" +"X50.1","Overexertion and strenuous or repetitive movements, Residential Institution" +"X50.2","Overexertion and strenuous or repetitive movements, School, Other Institution and Public Admimistration Area" +"X50.3","Overexertion and strenuous or repetitive movements, Sports and Athletic Areas" +"X50.4","Overexertion and strenuous or repetitive movements, Street and Highway" +"X50.5","Overexertion and strenuous or repetitive movements, Trade and Service Area" +"X50.6","Overexertion and strenuous or repetitive movements, Industrial and Construction Area" +"X50.7","Overexertion and strenuous or repetitive movements, Farm" +"X50.8","Overexertion and strenuous or repetitive movements, Other Specified Area" +"X50.9","Overexertion and strenuous or repetitive movements, Unspecified Place" +"X51","TRAVEL AND MOTION" +"X51.0","Travel and motion, Home" +"X51.1","Travel and motion, Residential Institution" +"X51.2","Travel and motion, School, Other Institution and Public Admimistration Area" +"X51.3","Travel and motion, Sports and Athletic Areas" +"X51.4","Travel and motion, Street and Highway" +"X51.5","Travel and motion, Trade and Service Area" +"X51.6","Travel and motion, Industrial and Construction Area" +"X51.7","Travel and motion, Farm" +"X51.8","Travel and motion, Other Specified Area" +"X51.9","Travel and motion, Unspecified Place" +"X52","PROLONGED STAY IN WEIGHTLESS ENVIRONMENT" +"X52.0","Prolonged stay in weightless environment, Home" +"X52.1","Prolonged stay in weightless environment, Residential Institution" +"X52.2","Prolonged stay in weightless environment, School, Other Institution and Public Admimistration Area" +"X52.3","Prolonged stay in weightless environment, Sports and Athletic Areas" +"X52.4","Prolonged stay in weightless environment, Street and Highway" +"X52.5","Prolonged stay in weightless environment, Trade and Service Area" +"X52.6","Prolonged stay in weightless environment, Industrial and Construction Area" +"X52.7","Prolonged stay in weightless environment, Farm" +"X52.8","Prolonged stay in weightless environment, Other Specified Area" +"X52.9","Prolonged stay in weightless environment, Unspecified Place" +"X53","LACK OF FOOD" +"X53.0","Lack of food, Home" +"X53.1","Lack of food, Residential Institution" +"X53.2","Lack of food, School, Other Institution and Public Admimistration Area" +"X53.3","Lack of food, Sports and Athletic Areas" +"X53.4","Lack of food, Street and Highway" +"X53.5","Lack of food, Trade and Service Area" +"X53.6","Lack of food, Industrial and Construction Area" +"X53.7","Lack of food, Farm" +"X53.8","Lack of food, Other Specified Area" +"X53.9","Lack of food, Unspecified Place" +"X54","LACK OF WATER" +"X54.0","Lack of water, Home" +"X54.1","Lack of water, Residential Institution" +"X54.2","Lack of water, School, Other Institution and Public Admimistration Area" +"X54.3","Lack of water, Sports and Athletic Areas" +"X54.4","Lack of water, Street and Highway" +"X54.5","Lack of water, Trade and Service Area" +"X54.6","Lack of water, Industrial and Construction Area" +"X54.7","Lack of water, Farm" +"X54.8","Lack of water, Other Specified Area" +"X54.9","Lack of water, Unspecified Place" +"X57","Unspecified privation" +"X57.0","Unspecified privation, Home" +"X57.1","Unspecified privation, Residential Institution" +"X57.2","Unspecified privation, School, Other Institution and Public Admimistration Area" +"X57.3","Unspecified privation, Sports and Athletic Areas" +"X57.4","Unspecified privation, Street and Highway" +"X57.5","Unspecified privation, Trade and Service Area" +"X57.6","Unspecified privation, Industrial and Construction Area" +"X57.7","Unspecified privation, Farm" +"X57.8","Unspecified privation, Other Specified Area" +"X57.9","Unspecified privation, Unspecified Place" +"X58","EXPOSURE TO OTHER SPECIFIED FACTORS" +"X58.0","Exposure to other specified factors, Home" +"X58.1","Exposure to other specified factors, Residential Institution" +"X58.2","Exposure to other specified factors, School, Other Institution and Public Admimistration Area" +"X58.3","Exposure to other specified factors, Sports and Athletic Areas" +"X58.4","Exposure to other specified factors, Street and Highway" +"X58.5","Exposure to other specified factors, Trade and Service Area" +"X58.6","Exposure to other specified factors, Industrial and Construction Area" +"X58.7","Exposure to other specified factors, Farm" +"X58.8","Exposure to other specified factors, Other Specified Area" +"X58.9","Exposure to other specified factors, Unspecified Place" +"X59","Exposure to unspecified factor" +"X59.0","Exposure to unspecified factor, Home" +"X59.1","Exposure to unspecified factor, Residential Institution" +"X59.2","Exposure to unspecified factor, School, Other Institution and Public Admimistration Area" +"X59.3","Exposure to unspecified factor, Sports and Athletic Areas" +"X59.4","Exposure to unspecified factor, Street and Highway" +"X59.5","Exposure to unspecified factor, Trade and Service Area" +"X59.6","Exposure to unspecified factor, Industrial and Construction Area" +"X59.7","Exposure to unspecified factor, Farm" +"X59.8","Exposure to unspecified factor, Other Specified Area" +"X59.9","Exposure to unspecified factor, Unspecified Place" +"X60","Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics" +"X60.0","Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Home" +"X60.1","Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Residential Institution" +"X60.2","Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, School, Other Institution and Public Admimistration Area" +"X60.3","Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Sports and Athletic Areas" +"X60.4","Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Street and Highway" +"X60.5","Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Trade and Service Area" +"X60.6","Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Industrial and Construction Area" +"X60.7","Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Farm" +"X60.8","Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Other Specified Area" +"X60.9","Intentional self-poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, Unspecified Place" +"X61","Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified" +"X61.0","Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Home" +"X61.1","Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Residential Institution" +"X61.3","Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Sports and Athletic Areas" +"X61.4","Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Street and Highway" +"X61.5","Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Trade and Service Area" +"X61.6","Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Industrial and Construction Area" +"X61.7","Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Farm" +"X61.8","Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Other Specified Area" +"X61.9","Intentional self-poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, Unspecified Place" +"X62","Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified" +"X62.0","Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Home" +"X62.1","Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Residential Institution" +"X62.2","Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, School, Other Institution and Public Admimistration Area" +"X62.3","Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Sports and Athletic Areas" +"X62.4","Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Street and Highway" +"X62.5","Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Trade and Service Area" +"X62.6","Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Industrial and Construction Area" +"X62.7","Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Farm" +"X62.8","Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Other Specified Area" +"X62.9","Intentional self-poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, Unspecified Place" +"X63","Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system" +"X63.0","Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Home" +"X63.1","Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Residential Institution" +"X63.2","Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, School, Other Institution and Public Admimistration Area" +"X63.3","Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Sports and Athletic Areas" +"X63.4","Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Street and Highway" +"X63.5","Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Trade and Service Area" +"X63.6","Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Industrial and Construction Area" +"X63.7","Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Farm" +"X63.8","Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Other Specified Area" +"X63.9","Intentional self-poisoning by and exposure to other drugs acting on the autonomic nervous system, Unspecified Place" +"X64","Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances" +"X64.0","Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Home" +"X64.1","Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Residential Institution" +"X64.2","Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, School, Other Institution and Public Admimistration Area" +"X64.3","Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Sports and Athletic Areas" +"X64.4","Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Street and Highway" +"X64.5","Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Trade and Service Area" +"X64.6","Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Industrial and Construction Area" +"X64.7","Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Farm" +"X64.8","Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Other Specified Area" +"X64.9","Intentional self-poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, Unspecified Place" +"X65","Intentional self-poisoning by and exposure to alcohol" +"X65.0","Intentional self-poisoning by and exposure to alcohol, Home" +"X65.1","Intentional self-poisoning by and exposure to alcohol, Residential Institution" +"X65.2","Intentional self-poisoning by and exposure to alcohol, School, Other Institution and Public Admimistration Area" +"X65.3","Intentional self-poisoning by and exposure to alcohol, Sports and Athletic Areas" +"X65.4","Intentional self-poisoning by and exposure to alcohol, Street and Highway" +"X65.5","Intentional self-poisoning by and exposure to alcohol, Trade and Service Area" +"X65.6","Intentional self-poisoning by and exposure to alcohol, Industrial and Construction Area" +"X65.7","Intentional self-poisoning by and exposure to alcohol, Farm" +"X65.8","Intentional self-poisoning by and exposure to alcohol, Other Specified Area" +"X65.9","Intentional self-poisoning by and exposure to alcohol, Unspecified Place" +"X66","Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours" +"X66.0","Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Home" +"X66.1","Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Residential Institution" +"X66.2","Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, School, Other Institution and Public Admimistration Area" +"X66.3","Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Sports and Athletic Areas" +"X66.4","Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Street and Highway" +"X66.5","Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Trade and Service Area" +"X66.6","Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Industrial and Construction Area" +"X66.7","Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Farm" +"X66.8","Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Other Specified Area" +"X66.9","Intentional self-poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, Unspecified Place" +"X67","Intentional self-poisoning by and exposure to other gases and vapours" +"X67.0","Intentional self-poisoning by and exposure to other gases and vapours, Home" +"X67.1","Intentional self-poisoning by and exposure to other gases and vapours, Residential Institution" +"X67.2","Intentional self-poisoning by and exposure to other gases and vapours, School, Other Institution and Public Admimistration Area" +"X67.3","Intentional self-poisoning by and exposure to other gases and vapours, Sports and Athletic Areas" +"X67.4","Intentional self-poisoning by and exposure to other gases and vapours, Street and Highway" +"X67.5","Intentional self-poisoning by and exposure to other gases and vapours, Trade and Service Area" +"X67.6","Intentional self-poisoning by and exposure to other gases and vapours, Industrial and Construction Area" +"X67.7","Intentional self-poisoning by and exposure to other gases and vapours, Farm" +"X67.8","Intentional self-poisoning by and exposure to other gases and vapours, Other Specified Area" +"X67.9","Intentional self-poisoning by and exposure to other gases and vapours, Unspecified Place" +"X68","Intentional self-poisoning by and exposure to pesticides" +"X68.0","Intentional self-poisoning by and exposure to pesticides, Home" +"X68.1","Intentional self-poisoning by and exposure to pesticides, Residential Institution" +"X68.2","Intentional self-poisoning by and exposure to pesticides, School, Other Institution and Public Admimistration Area" +"X68.3","Intentional self-poisoning by and exposure to pesticides, Sports and Athletic Areas" +"X68.4","Intentional self-poisoning by and exposure to pesticides, Street and Highway" +"X68.5","Intentional self-poisoning by and exposure to pesticides, Trade and Service Area" +"X68.6","Intentional self-poisoning by and exposure to pesticides, Industrial and Construction Area" +"X68.7","Intentional self-poisoning by and exposure to pesticides, Farm" +"X68.8","Intentional self-poisoning by and exposure to pesticides, Other Specified Area" +"X68.9","Intentional self-poisoning by and exposure to pesticides, Unspecified Place" +"X69","Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances" +"X69.0","Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Home" +"X69.1","Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Residential Institution" +"X69.2","Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, School, Other Institution and Public Admimistration Area" +"X69.3","Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Sports and Athletic Areas" +"X69.4","Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Street and Highway" +"X69.5","Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Trade and Service Area" +"X69.6","Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Industrial and Construction Area" +"X69.7","Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Farm" +"X69.8","Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Other Specified Area" +"X69.9","Intentional self-poisoning by and exposure to other and unspecified chemicals and noxious substances, Unspecified Place" +"X70","Intentional self-harm by hanging, strangulation and suffocation" +"X70.0","Intentional self-harm by hanging, strangulation and suffocation, Home" +"X70.1","Intentional self-harm by hanging, strangulation and suffocation, Residential Institution" +"X70.2","Intentional self-harm by hanging, strangulation and suffocation, School, Other Institution and Public Admimistration Area" +"X70.3","Intentional self-harm by hanging, strangulation and suffocation, Sports and Athletic Areas" +"X70.4","Intentional self-harm by hanging, strangulation and suffocation, Street and Highway" +"X70.5","Intentional self-harm by hanging, strangulation and suffocation, Trade and Service Area" +"X70.6","Intentional self-harm by hanging, strangulation and suffocation, Industrial and Construction Area" +"X70.7","Intentional self-harm by hanging, strangulation and suffocation, Farm" +"X70.8","Intentional self-harm by hanging, strangulation and suffocation, Other Specified Area" +"X70.9","Intentional self-harm by hanging, strangulation and suffocation, Unspecified Place" +"X71","Intentional self-harm by drowning and submersion" +"X71.0","Intentional self-harm by drowning and submersion, Home" +"X71.1","Intentional self-harm by drowning and submersion, Residential Institution" +"X71.2","Intentional self-harm by drowning and submersion, School, Other Institution and Public Admimistration Area" +"X71.3","Intentional self-harm by drowning and submersion, Sports and Athletic Areas" +"X71.4","Intentional self-harm by drowning and submersion, Street and Highway" +"X71.5","Intentional self-harm by drowning and submersion, Trade and Service Area" +"X71.6","Intentional self-harm by drowning and submersion, Industrial and Construction Area" +"X71.7","Intentional self-harm by drowning and submersion, Farm" +"X71.8","Intentional self-harm by drowning and submersion, Other Specified Area" +"X71.9","Intentional self-harm by drowning and submersion, Unspecified Place" +"X72","Intentional self-harm by handgun discharge" +"X72.0","Intentional self-harm by handgun discharge, Home" +"X72.1","Intentional self-harm by handgun discharge, Residential Institution" +"X72.2","Intentional self-harm by handgun discharge, School, Other Institution and Public Admimistration Area" +"X72.3","Intentional self-harm by handgun discharge, Sports and Athletic Areas" +"X72.4","Intentional self-harm by handgun discharge, Street and Highway" +"X72.5","Intentional self-harm by handgun discharge, Trade and Service Area" +"X72.6","Intentional self-harm by handgun discharge, Industrial and Construction Area" +"X72.7","Intentional self-harm by handgun discharge, Farm" +"X72.8","Intentional self-harm by handgun discharge, Other Specified Area" +"X72.9","Intentional self-harm by handgun discharge, Unspecified Place" +"X73","Intentional self-harm by rifle, shotgun and larger firearm discharge" +"X73.0","Intentional self-harm by rifle, shotgun and larger firearm discharge, Home" +"X73.1","Intentional self-harm by rifle, shotgun and larger firearm discharge, Residential Institution" +"X73.2","Intentional self-harm by rifle, shotgun and larger firearm discharge, School, Other Institution and Public Admimistration Area" +"X73.3","Intentional self-harm by rifle, shotgun and larger firearm discharge, Sports and Athletic Areas" +"X73.4","Intentional self-harm by rifle, shotgun and larger firearm discharge, Street and Highway" +"X73.5","Intentional self-harm by rifle, shotgun and larger firearm discharge, Trade and Service Area" +"X73.6","Intentional self-harm by rifle, shotgun and larger firearm discharge, Industrial and Construction Area" +"X73.7","Intentional self-harm by rifle, shotgun and larger firearm discharge, Farm" +"X73.8","Intentional self-harm by rifle, shotgun and larger firearm discharge, Other Specified Area" +"X73.9","Intentional self-harm by rifle, shotgun and larger firearm discharge, Unspecified Place" +"X74","Intentional self-harm by other and unspecified firearm discharge" +"X74.0","Intentional self-harm by other and unspecified firearm discharge, Home" +"X74.1","Intentional self-harm by other and unspecified firearm discharge, Residential Institution" +"X74.2","Intentional self-harm by other and unspecified firearm discharge, School, Other Institution and Public Admimistration Area" +"X74.3","Intentional self-harm by other and unspecified firearm discharge, Sports and Athletic Areas" +"X74.4","Intentional self-harm by other and unspecified firearm discharge, Street and Highway" +"X74.5","Intentional self-harm by other and unspecified firearm discharge, Trade and Service Area" +"X74.6","Intentional self-harm by other and unspecified firearm discharge, Industrial and Construction Area" +"X74.7","Intentional self-harm by other and unspecified firearm discharge, Farm" +"X74.8","Intentional self-harm by other and unspecified firearm discharge, Other Specified Area" +"X74.9","Intentional self-harm by other and unspecified firearm discharge, Unspecified Place" +"X75","Intentional self-harm by explosive material" +"X75.0","Intentional self-harm by explosive material, Home" +"X75.1","Intentional self-harm by explosive material, Residential Institution" +"X75.2","Intentional self-harm by explosive material, School, Other Institution and Public Admimistration Area" +"X75.3","Intentional self-harm by explosive material, Sports and Athletic Areas" +"X75.4","Intentional self-harm by explosive material, Street and Highway" +"X75.5","Intentional self-harm by explosive material, Trade and Service Area" +"X75.6","Intentional self-harm by explosive material, Industrial and Construction Area" +"X75.7","Intentional self-harm by explosive material, Farm" +"X75.8","Intentional self-harm by explosive material, Other Specified Area" +"X75.9","Intentional self-harm by explosive material, Unspecified Place" +"X76","Intentional self-harm by smoke, fire and flames" +"X76.0","Intentional self-harm by smoke, fire and flames, Home" +"X76.1","Intentional self-harm by smoke, fire and flames, Residential Institution" +"X76.2","Intentional self-harm by smoke, fire and flames, School, Other Institution and Public Admimistration Area" +"X76.3","Intentional self-harm by smoke, fire and flames, Sports and Athletic Areas" +"X76.4","Intentional self-harm by smoke, fire and flames, Street and Highway" +"X76.5","Intentional self-harm by smoke, fire and flames, Trade and Service Area" +"X76.6","Intentional self-harm by smoke, fire and flames, Industrial and Construction Area" +"X76.7","Intentional self-harm by smoke, fire and flames, Farm" +"X76.8","Intentional self-harm by smoke, fire and flames, Other Specified Area" +"X76.9","Intentional self-harm by smoke, fire and flames, Unspecified Place" +"X77","Intentional self-harm by steam, hot vapours and hot objects" +"X77.0","Intentional self-harm by steam, hot vapours and hot objects, Home" +"X77.1","Intentional self-harm by steam, hot vapours and hot objects, Residential Institution" +"X77.2","Intentional self-harm by steam, hot vapours and hot objects, School, Other Institution and Public Admimistration Area" +"X77.3","Intentional self-harm by steam, hot vapours and hot objects, Sports and Athletic Areas" +"X77.4","Intentional self-harm by steam, hot vapours and hot objects, Street and Highway" +"X77.5","Intentional self-harm by steam, hot vapours and hot objects, Trade and Service Area" +"X77.6","Intentional self-harm by steam, hot vapours and hot objects, Industrial and Construction Area" +"X77.7","Intentional self-harm by steam, hot vapours and hot objects, Farm" +"X77.8","Intentional self-harm by steam, hot vapours and hot objects, Other Specified Area" +"X77.9","Intentional self-harm by steam, hot vapours and hot objects, Unspecified Place" +"X78","Intentional self-harm by sharp object" +"X78.0","Intentional self-harm by sharp object, Home" +"X78.1","Intentional self-harm by sharp object, Residential Institution" +"X78.2","Intentional self-harm by sharp object, School, Other Institution and Public Admimistration Area" +"X78.3","Intentional self-harm by sharp object, Sports and Athletic Areas" +"X78.4","Intentional self-harm by sharp object, Street and Highway" +"X78.5","Intentional self-harm by sharp object, Trade and Service Area" +"X78.6","Intentional self-harm by sharp object, Industrial and Construction Area" +"X78.7","Intentional self-harm by sharp object, Farm" +"X78.8","Intentional self-harm by sharp object, Other Specified Area" +"X78.9","Intentional self-harm by sharp object, Unspecified Place" +"X79","Intentional self-harm by blunt object" +"X79.0","Intentional self-harm by blunt object, Home" +"X79.1","Intentional self-harm by blunt object, Residential Institution" +"X79.2","Intentional self-harm by blunt object, School, Other Institution and Public Admimistration Area" +"X79.3","Intentional self-harm by blunt object, Sports and Athletic Areas" +"X79.4","Intentional self-harm by blunt object, Street and Highway" +"X79.5","Intentional self-harm by blunt object, Trade and Service Area" +"X79.6","Intentional self-harm by blunt object, Industrial and Construction Area" +"X79.7","Intentional self-harm by blunt object, Farm" +"X79.8","Intentional self-harm by blunt object, Other Specified Area" +"X79.9","Intentional self-harm by blunt object, Unspecified Place" +"X80","Intentional self-harm by jumping from a high place" +"X80.0","Intentional self-harm by jumping from a high place, Home" +"X80.1","Intentional self-harm by jumping from a high place, Residential Institution" +"X80.2","Intentional self-harm by jumping from a high place, School, Other Institution and Public Admimistration Area" +"X80.3","Intentional self-harm by jumping from a high place, Sports and Athletic Areas" +"X80.4","Intentional self-harm by jumping from a high place, Street and Highway" +"X80.5","Intentional self-harm by jumping from a high place, Trade and Service Area" +"X80.6","Intentional self-harm by jumping from a high place, Industrial and Construction Area" +"X80.7","Intentional self-harm by jumping from a high place, Farm" +"X80.8","Intentional self-harm by jumping from a high place, Other Specified Area" +"X80.9","Intentional self-harm by jumping from a high place, Unspecified Place" +"X81","Intentional self-harm by jumping or lying before moving object" +"X81.0","Intentional self-harm by jumping or lying before moving object, Home" +"X81.1","Intentional self-harm by jumping or lying before moving object, Residential Institution" +"X81.2","Intentional self-harm by jumping or lying before moving object, School, Other Institution and Public Admimistration Area" +"X81.3","Intentional self-harm by jumping or lying before moving object, Sports and Athletic Areas" +"X81.4","Intentional self-harm by jumping or lying before moving object, Street and Highway" +"X81.5","Intentional self-harm by jumping or lying before moving object, Trade and Service Area" +"X81.6","Intentional self-harm by jumping or lying before moving object, Industrial and Construction Area" +"X81.7","Intentional self-harm by jumping or lying before moving object, Farm" +"X81.8","Intentional self-harm by jumping or lying before moving object, Other Specified Area" +"X81.9","Intentional self-harm by jumping or lying before moving object, Unspecified Place" +"X82","Intentional self-harm by crashing of motor vehicle" +"X82.0","Intentional self-harm by crashing of motor vehicle, Home" +"X82.1","Intentional self-harm by crashing of motor vehicle, Residential Institution" +"X82.2","Intentional self-harm by crashing of motor vehicle, School, Other Institution and Public Admimistration Area" +"X82.3","Intentional self-harm by crashing of motor vehicle, Sports and Athletic Areas" +"X82.4","Intentional self-harm by crashing of motor vehicle, Street and Highway" +"X82.5","Intentional self-harm by crashing of motor vehicle, Trade and Service Area" +"X82.6","Intentional self-harm by crashing of motor vehicle, Industrial and Construction Area" +"X82.7","Intentional self-harm by crashing of motor vehicle, Farm" +"X82.8","Intentional self-harm by crashing of motor vehicle, Other Specified Area" +"X82.9","Intentional self-harm by crashing of motor vehicle, Unspecified Place" +"X83","Intentional self-harm by other specified means" +"X83.0","Intentional self-harm by other specified means, Home" +"X83.1","Intentional self-harm by other specified means, Residential Institution" +"X83.2","Intentional self-harm by other specified means, School, Other Institution and Public Admimistration Area" +"X83.3","Intentional self-harm by other specified means, Sports and Athletic Areas" +"X83.4","Intentional self-harm by other specified means, Street and Highway" +"X83.5","Intentional self-harm by other specified means, Trade and Service Area" +"X83.6","Intentional self-harm by other specified means, Industrial and Construction Area" +"X83.7","Intentional self-harm by other specified means, Farm" +"X83.8","Intentional self-harm by other specified means, Other Specified Area" +"X83.9","Intentional self-harm by other specified means, Unspecified Place" +"X84","Intentional self-harm by unspecified means" +"X84.0","Intentional self-harm by unspecified means, Home" +"X84.1","Intentional self-harm by unspecified means, Residential Institution" +"X84.2","Intentional self-harm by unspecified means, School, Other Institution and Public Admimistration Area" +"X84.3","Intentional self-harm by unspecified means, Sports and Athletic Areas" +"X84.4","Intentional self-harm by unspecified means, Street and Highway" +"X84.5","Intentional self-harm by unspecified means, Trade and Service Area" +"X84.6","Intentional self-harm by unspecified means, Industrial and Construction Area" +"X84.7","Intentional self-harm by unspecified means, Farm" +"X84.8","Intentional self-harm by unspecified means, Other Specified Area" +"X84.9","Intentional self-harm by unspecified means, Unspecified Place" +"X85","Assault by drugs, medicaments and biological substances" +"X85.0","Assault by drugs, medicaments and biological substances, Home" +"X85.1","Assault by drugs, medicaments and biological substances, Residential Institution" +"X85.2","Assault by drugs, medicaments and biological substances, School, Other Institution and Public Admimistration Area" +"X85.3","Assault by drugs, medicaments and biological substances, Sports and Athletic Areas" +"X85.4","Assault by drugs, medicaments and biological substances, Street and Highway" +"X85.5","Assault by drugs, medicaments and biological substances, Trade and Service Area" +"X85.6","Assault by drugs, medicaments and biological substances, Industrial and Construction Area" +"X85.7","Assault by drugs, medicaments and biological substances, Farm" +"X85.8","Assault by drugs, medicaments and biological substances, Other Specified Area" +"X85.9","Assault by drugs, medicaments and biological substances, Unspecified Place" +"X86","ASSAULT BY CORROSIVE SUBSTANCE" +"X86.0","Assault by corrosive substance, Home" +"X86.1","Assault by corrosive substance, Residential Institution" +"X86.2","Assault by corrosive substance, School, Other Institution and Public Admimistration Area" +"X86.3","Assault by corrosive substance, Sports and Athletic Areas" +"X86.4","Assault by corrosive substance, Street and Highway" +"X86.5","Assault by corrosive substance, Trade and Service Area" +"X86.6","Assault by corrosive substance, Industrial and Construction Area" +"X86.7","Assault by corrosive substance, Farm" +"X86.8","Assault by corrosive substance, Other Specified Area" +"X86.9","Assault by corrosive substance, Unspecified Place" +"X87","ASSAULT BY PESTICIDES" +"X87.0","Assault by pesticides, Home" +"X87.1","Assault by pesticides, Residential Institution" +"X87.2","Assault by pesticides, School, Other Institution and Public Admimistration Area" +"X87.3","Assault by pesticides, Sports and Athletic Areas" +"X87.4","Assault by pesticides, Street and Highway" +"X87.5","Assault by pesticides, Trade and Service Area" +"X87.6","Assault by pesticides, Industrial and Construction Area" +"X87.7","Assault by pesticides, Farm" +"X87.8","Assault by pesticides, Other Specified Area" +"X87.9","Assault by pesticides, Unspecified Place" +"X88","ASSAULT BY GASES AND VAPOURS" +"X88.0","Assault by gases and vapours, Home" +"X88.1","Assault by gases and vapours, Residential Institution" +"X88.2","Assault by gases and vapours, School, Other Institution and Public Admimistration Area" +"X88.3","Assault by gases and vapours, Sports and Athletic Areas" +"X88.4","Assault by gases and vapours, Street and Highway" +"X88.5","Assault by gases and vapours, Trade and Service Area" +"X88.6","Assault by gases and vapours, Industrial and Construction Area" +"X88.7","Assault by gases and vapours, Farm" +"X88.8","Assault by gases and vapours, Other Specified Area" +"X88.9","Assault by gases and vapours, Unspecified Place" +"X89","Assault by other specified chemicals and noxious substances" +"X89.0","Assault by other specified chemicals and noxious substances, Home" +"X89.1","Assault by other specified chemicals and noxious substances, Residential Institution" +"X89.2","Assault by other specified chemicals and noxious substances, School, Other Institution and Public Admimistration Area" +"X89.3","Assault by other specified chemicals and noxious substances, Sports and Athletic Areas" +"X89.4","Assault by other specified chemicals and noxious substances, Street and Highway" +"X89.5","Assault by other specified chemicals and noxious substances, Trade and Service Area" +"X89.6","Assault by other specified chemicals and noxious substances, Industrial and Construction Area" +"X89.7","Assault by other specified chemicals and noxious substances, Farm" +"X89.8","Assault by other specified chemicals and noxious substances, Other Specified Area" +"X89.9","Assault by other specified chemicals and noxious substances, Unspecified Place" +"X90","Assault by unspecified chemical or noxious substance" +"X90.0","Assault by unspecified chemical or noxious substance, Home" +"X90.1","Assault by unspecified chemical or noxious substance, Residential Institution" +"X90.2","Assault by unspecified chemical or noxious substance, School, Other Institution and Public Admimistration Area" +"X90.3","Assault by unspecified chemical or noxious substance, Sports and Athletic Areas" +"X90.4","Assault by unspecified chemical or noxious substance, Street and Highway" +"X90.5","Assault by unspecified chemical or noxious substance, Trade and Service Area" +"X90.6","Assault by unspecified chemical or noxious substance, Industrial and Construction Area" +"X90.7","Assault by unspecified chemical or noxious substance, Farm" +"X90.8","Assault by unspecified chemical or noxious substance, Other Specified Area" +"X90.9","Assault by unspecified chemical or noxious substance, Unspecified Place" +"X91","ASSAULT BY HANGING, STRANGULATION AND SUFFOCATION" +"X91.0","Assault by hanging, strangulation and suffocation, Home" +"X91.1","Assault by hanging, strangulation and suffocation, Residential Institution" +"X91.2","Assault by hanging, strangulation and suffocation, School, Other Institution and Public Admimistration Area" +"X91.3","Assault by hanging, strangulation and suffocation, Sports and Athletic Areas" +"X91.4","Assault by hanging, strangulation and suffocation, Street and Highway" +"X91.5","Assault by hanging, strangulation and suffocation, Trade and Service Area" +"X91.6","Assault by hanging, strangulation and suffocation, Industrial and Construction Area" +"X91.7","Assault by hanging, strangulation and suffocation, Farm" +"X91.8","Assault by hanging, strangulation and suffocation, Other Specified Area" +"X91.9","Assault by hanging, strangulation and suffocation, Unspecified Place" +"X92","Assault by drowning and submersion" +"X92.0","Assault by drowning and submersion, Home" +"X92.1","Assault by drowning and submersion, Residential Institution" +"X92.2","Assault by drowning and submersion, School, Other Institution and Public Admimistration Area" +"X92.3","Assault by drowning and submersion, Sports and Athletic Areas" +"X92.4","Assault by drowning and submersion, Street and Highway" +"X92.5","Assault by drowning and submersion, Trade and Service Area" +"X92.6","Assault by drowning and submersion, Industrial and Construction Area" +"X92.7","Assault by drowning and submersion, Farm" +"X92.8","Assault by drowning and submersion, Other Specified Area" +"X92.9","Assault by drowning and submersion, Unspecified Place" +"X93","ASSAULT BY HANDGUN DISCHARGE" +"X93.0","Assault by handgun discharge, Home" +"X93.1","Assault by handgun discharge, Residential Institution" +"X93.2","Assault by handgun discharge, School, Other Institution and Public Admimistration Area" +"X93.3","Assault by handgun discharge, Sports and Athletic Areas" +"X93.4","Assault by handgun discharge, Street and Highway" +"X93.5","Assault by handgun discharge, Trade and Service Area" +"X93.6","Assault by handgun discharge, Industrial and Construction Area" +"X93.7","Assault by handgun discharge, Farm" +"X93.8","Assault by handgun discharge, Other Specified Area" +"X93.9","Assault by handgun discharge, Unspecified Place" +"X94","Assault by rifle, shotgun and larger firearm discharge" +"X94.0","Assault by rifle, shotgun and larger firearm discharge, Home" +"X94.1","Assault by rifle, shotgun and larger firearm discharge, Residential Institution" +"X94.2","Assault by rifle, shotgun and larger firearm discharge, School, Other Institution and Public Admimistration Area" +"X94.3","Assault by rifle, shotgun and larger firearm discharge, Sports and Athletic Areas" +"X94.4","Assault by rifle, shotgun and larger firearm discharge, Street and Highway" +"X94.5","Assault by rifle, shotgun and larger firearm discharge, Trade and Service Area" +"X94.6","Assault by rifle, shotgun and larger firearm discharge, Industrial and Construction Area" +"X94.7","Assault by rifle, shotgun and larger firearm discharge, Farm" +"X94.8","Assault by rifle, shotgun and larger firearm discharge, Other Specified Area" +"X94.9","Assault by rifle, shotgun and larger firearm discharge, Unspecified Place" +"X95","Assault by other and unspecified firearm discharge" +"X95.0","Assault by other and unspecified firearm discharge, Home" +"X95.1","Assault by other and unspecified firearm discharge, Residential Institution" +"X95.2","Assault by other and unspecified firearm discharge, School, Other Institution and Public Admimistration Area" +"X95.3","Assault by other and unspecified firearm discharge, Sports and Athletic Areas" +"X95.4","Assault by other and unspecified firearm discharge, Street and Highway" +"X95.5","Assault by other and unspecified firearm discharge, Trade and Service Area" +"X95.6","Assault by other and unspecified firearm discharge, Industrial and Construction Area" +"X95.7","Assault by other and unspecified firearm discharge, Farm" +"X95.8","Assault by other and unspecified firearm discharge, Other Specified Area" +"X95.9","Assault by other and unspecified firearm discharge, Unspecified Place" +"X96","ASSAULT BY EXPLOSIVE MATERIAL" +"X96.0","Assault by explosive material, Home" +"X96.1","Assault by explosive material, Residential Institution" +"X96.2","Assault by explosive material, School, Other Institution and Public Admimistration Area" +"X96.3","Assault by explosive material, Sports and Athletic Areas" +"X96.4","Assault by explosive material, Street and Highway" +"X96.5","Assault by explosive material, Trade and Service Area" +"X96.6","Assault by explosive material, Industrial and Construction Area" +"X96.7","Assault by explosive material, Farm" +"X96.8","Assault by explosive material, Other Specified Area" +"X96.9","Assault by explosive material, Unspecified Place" +"X97","ASSAULT BY SMOKE, FIRE AND FLAMES" +"X97.0","Assault by smoke, fire and flames, Home" +"X97.1","Assault by smoke, fire and flames, Residential Institution" +"X97.2","Assault by smoke, fire and flames, School, Other Institution and Public Admimistration Area" +"X97.3","Assault by smoke, fire and flames, Sports and Athletic Areas" +"X97.4","Assault by smoke, fire and flames, Street and Highway" +"X97.5","Assault by smoke, fire and flames, Trade and Service Area" +"X97.6","Assault by smoke, fire and flames, Industrial and Construction Area" +"X97.7","Assault by smoke, fire and flames, Farm" +"X97.8","Assault by smoke, fire and flames, Other Specified Area" +"X97.9","Assault by smoke, fire and flames, Unspecified Place" +"X98","ASSAULT BY STEAM, HOT VAPOURS AND HOT OBJECTS" +"X98.0","Assault by steam, hot vapours and hot objects, Home" +"X98.1","Assault by steam, hot vapours and hot objects, Residential Institution" +"X98.2","Assault by steam, hot vapours and hot objects, School, Other Institution and Public Admimistration Area" +"X98.3","Assault by steam, hot vapours and hot objects, Sports and Athletic Areas" +"X98.4","Assault by steam, hot vapours and hot objects, Street and Highway" +"X98.5","Assault by steam, hot vapours and hot objects, Trade and Service Area" +"X98.6","Assault by steam, hot vapours and hot objects, Industrial and Construction Area" +"X98.7","Assault by steam, hot vapours and hot objects, Farm" +"X98.8","Assault by steam, hot vapours and hot objects, Other Specified Area" +"X98.9","Assault by steam, hot vapours and hot objects, Unspecified Place" +"X99","ASSAULT BY SHARP OBJECT" +"X99.0","Assault by sharp object, Home" +"X99.1","Assault by sharp object, Residential Institution" +"X99.2","Assault by sharp object, School, Other Institution and Public Admimistration Area" +"X99.3","Assault by sharp object, Sports and Athletic Areas" +"X99.4","Assault by sharp object, Street and Highway" +"X99.5","Assault by sharp object, Trade and Service Area" +"X99.6","Assault by sharp object, Industrial and Construction Area" +"X99.7","Assault by sharp object, Farm" +"X99.8","Assault by sharp object, Other Specified Area" +"X99.9","Assault by sharp object, Unspecified Place" +"Y00","ASSAULT BY BLUNT OBJECT" +"Y00.0","Assault by blunt object, Home" +"Y00.1","Assault by blunt object, Residential Institution" +"Y00.2","Assault by blunt object, School, Other Institution and Public Admimistration Area" +"Y00.3","Assault by blunt object, Sports and Athletic Areas" +"Y00.4","Assault by blunt object, Street and Highway" +"Y00.5","Assault by blunt object, Trade and Service Area" +"Y00.6","Assault by blunt object, Industrial and Construction Area" +"Y00.7","Assault by blunt object, Farm" +"Y00.8","Assault by blunt object, Other Specified Area" +"Y00.9","Assault by blunt object, Unspecified Place" +"Y01","ASSAULT BY PUSHING FROM HIGH PLACE" +"Y01.0","Assault by pushing from high place, Home" +"Y01.1","Assault by pushing from high place, Residential Institution" +"Y01.2","Assault by pushing from high place, School, Other Institution and Public Admimistration Area" +"Y01.3","Assault by pushing from high place, Sports and Athletic Areas" +"Y01.4","Assault by pushing from high place, Street and Highway" +"Y01.5","Assault by pushing from high place, Trade and Service Area" +"Y01.6","Assault by pushing from high place, Industrial and Construction Area" +"Y01.7","Assault by pushing from high place, Farm" +"Y01.8","Assault by pushing from high place, Other Specified Area" +"Y01.9","Assault by pushing from high place, Unspecified Place" +"Y02","Assault by pushing or placing victim before moving object" +"Y02.0","Assault by pushing or placing victim before moving object, Home" +"Y02.1","Assault by pushing or placing victim before moving object, Residential Institution" +"Y02.2","Assault by pushing or placing victim before moving object, School, Other Institution and Public Admimistration Area" +"Y02.3","Assault by pushing or placing victim before moving object, Sports and Athletic Areas" +"Y02.4","Assault by pushing or placing victim before moving object, Street and Highway" +"Y02.5","Assault by pushing or placing victim before moving object, Trade and Service Area" +"Y02.6","Assault by pushing or placing victim before moving object, Industrial and Construction Area" +"Y02.7","Assault by pushing or placing victim before moving object, Farm" +"Y02.8","Assault by pushing or placing victim before moving object, Other Specified Area" +"Y02.9","Assault by pushing or placing victim before moving object, Unspecified Place" +"Y03","ASSAULT BY CRASHING OF MOTOR VEHICLE" +"Y03.0","Assault by crashing of motor vehicle, Home" +"Y03.1","Assault by crashing of motor vehicle, Residential Institution" +"Y03.2","Assault by crashing of motor vehicle, School, Other Institution and Public Admimistration Area" +"Y03.3","Assault by crashing of motor vehicle, Sports and Athletic Areas" +"Y03.4","Assault by crashing of motor vehicle, Street and Highway" +"Y03.5","Assault by crashing of motor vehicle, Trade and Service Area" +"Y03.6","Assault by crashing of motor vehicle, Industrial and Construction Area" +"Y03.7","Assault by crashing of motor vehicle, Farm" +"Y03.8","Assault by crashing of motor vehicle, Other Specified Area" +"Y03.9","Assault by crashing of motor vehicle, Unspecified Place" +"Y04","ASSAULT BY BODILY FORCE" +"Y04.0","Assault by bodily force, Home" +"Y04.1","Assault by bodily force, Residential Institution" +"Y04.2","Assault by bodily force, School, Other Institution and Public Admimistration Area" +"Y04.3","Assault by bodily force, Sports and Athletic Areas" +"Y04.4","Assault by bodily force, Street and Highway" +"Y04.5","Assault by bodily force, Trade and Service Area" +"Y04.6","Assault by bodily force, Industrial and Construction Area" +"Y04.7","Assault by bodily force, Farm" +"Y04.8","Assault by bodily force, Other Specified Area" +"Y04.9","Assault by bodily force, Unspecified Place" +"Y05","SEXUAL ASSAULT BY BODILY FORCE" +"Y05.0","Sexual assault by bodily force, Home" +"Y05.1","Sexual assault by bodily force, Residential Institution" +"Y05.2","Sexual assault by bodily force, School, Other Institution and Public Admimistration Area" +"Y05.3","Sexual assault by bodily force, Sports and Athletic Areas" +"Y05.4","Sexual assault by bodily force, Street and Highway" +"Y05.5","Sexual assault by bodily force, Trade and Service Area" +"Y05.6","Sexual assault by bodily force, Industrial and Construction Area" +"Y05.7","Sexual assault by bodily force, Farm" +"Y05.8","Sexual assault by bodily force, Other Specified Area" +"Y05.9","Sexual assault by bodily force, Unspecified Place" +"Y06","NEGLECT AND ABANDONMENT" +"Y06.0","By spouse or partner" +"Y06.1","By parent" +"Y06.2","By acquaintance or friend" +"Y06.8","By other specified persons" +"Y06.9","By unspecified person" +"Y07","Other maltreatment" +"Y07.0","By spouse or partner" +"Y07.1","By parent" +"Y07.2","By Acquaintance or friend" +"Y07.3","By official authorities" +"Y07.8","By other specified persons" +"Y07.9","By unspecified person" +"Y08","ASSAULT BY OTHER SPECIFIED MEANS" +"Y08.0","Assault by other specified means, Home" +"Y08.1","Assault by other specified means, Residential Institution" +"Y08.2","Assault by other specified means, School, Other Institution and Public Admimistration Area" +"Y08.3","Assault by other specified means, Sports and Athletic Areas" +"Y08.4","Assault by other specified means, Street and Highway" +"Y08.5","Assault by other specified means, Trade and Service Area" +"Y08.6","Assault by other specified means, Industrial and Construction Area" +"Y08.7","Assault by other specified means, Farm" +"Y08.8","Assault by other specified means, Other Specified Area" +"Y08.9","Assault by other specified means, Unspecified Place" +"Y09","Assault by unspecified means" +"Y09.0","Assault by unspecified means, Home" +"Y09.1","Assault by unspecified means, Residential Institution" +"Y09.2","Assault by unspecified means, School, Other Institution and Public Admimistration Area" +"Y09.3","Assault by unspecified means, Sports and Athletic Areas" +"Y09.4","Assault by unspecified means, Street and Highway" +"Y09.5","Assault by unspecified means, Trade and Service Area" +"Y09.6","Assault by unspecified means, Industrial and Construction Area" +"Y09.7","Assault by unspecified means, Farm" +"Y09.8","Assault by unspecified means, Other Specified Area" +"Y09.9","Assault by unspecified means, Unspecified Place" +"Y10","Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent" +"Y10.0","Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Home" +"Y10.1","Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Residential Institution" +"Y10.2","Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y10.3","Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Sports and Athletic Areas" +"Y10.4","Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Street and Highway" +"Y10.5","Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Trade and Service Area" +"Y10.6","Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Industrial and Construction Area" +"Y10.7","Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Farm" +"Y10.8","Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Other Specified Area" +"Y10.9","Poisoning by and exposure to nonopioid analgesics, antipyretics and antirheumatics, undetermined intent, Unspecified Place" +"Y11","Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent" +"Y11.0","Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent, Home" +"Y11.1","Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent, Residential Institution" +"Y11.3","Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent, Sports and Athletic Areas" +"Y11.4","Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent, Street and Highway" +"Y11.5","Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent, Trade and Service Area" +"Y11.6","Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent, Industrial and Construction Area" +"Y11.7","Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent, Farm" +"Y11.8","Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent, Other Specified Area" +"Y11.9","Poisoning by and exposure to antiepileptic, sedative-hypnotic, antiparkinsonism and psychotropic drugs, not elsewhere classified, undetermined intent, Unspecified Place" +"Y12","Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent" +"Y12.0","Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Home" +"Y12.1","Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Residential Institution" +"Y12.2","Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y12.3","Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Sports and Athletic Areas" +"Y12.4","Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Street and Highway" +"Y12.5","Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Trade and Service Area" +"Y12.6","Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Industrial and Construction Area" +"Y12.7","Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Farm" +"Y12.8","Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Other Specified Area" +"Y12.9","Poisoning by and exposure to narcotics and psychodysleptics [hallucinogens], not elsewhere classified, undetermined intent, Unspecified Place" +"Y13","Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent" +"Y13.0","Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Home" +"Y13.1","Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Residential Institution" +"Y13.2","Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y13.3","Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Sports and Athletic Areas" +"Y13.4","Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Street and Highway" +"Y13.5","Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Trade and Service Area" +"Y13.6","Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Industrial and Construction Area" +"Y13.7","Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Farm" +"Y13.8","Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Other Specified Area" +"Y13.9","Poisoning by and exposure to other drugs acting on the autonomic nervous system, undetermined intent, Unspecified Place" +"Y14","Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent" +"Y14.0","Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Home" +"Y14.1","Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Residential Institution" +"Y14.2","Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y14.3","Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Sports and Athletic Areas" +"Y14.4","Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Street and Highway" +"Y14.5","Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Trade and Service Area" +"Y14.6","Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Industrial and Construction Area" +"Y14.7","Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Farm" +"Y14.8","Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Other Specified Area" +"Y14.9","Poisoning by and exposure to other and unspecified drugs, medicaments and biological substances, undetermined intent, Unspecified Place" +"Y15","POISONING BY AND EXPOSURE TO ALCOHOL, UNDETERMINED INTENT" +"Y15.0","Poisoning by and exposure to alcohol, undetermined intent, Home" +"Y15.1","Poisoning by and exposure to alcohol, undetermined intent, Residential Institution" +"Y15.2","Poisoning by and exposure to alcohol, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y15.3","Poisoning by and exposure to alcohol, undetermined intent, Sports and Athletic Areas" +"Y15.4","Poisoning by and exposure to alcohol, undetermined intent, Street and Highway" +"Y15.5","Poisoning by and exposure to alcohol, undetermined intent, Trade and Service Area" +"Y15.6","Poisoning by and exposure to alcohol, undetermined intent, Industrial and Construction Area" +"Y15.7","Poisoning by and exposure to alcohol, undetermined intent, Farm" +"Y15.8","Poisoning by and exposure to alcohol, undetermined intent, Other Specified Area" +"Y15.9","Poisoning by and exposure to alcohol, undetermined intent, Unspecified Place" +"Y16","POISONING BY AND EXPOSURE TO ORGANIC SOLVENTS AND HALOGENATED HYDROCARBONS AND THEIR VAPOURS, UNDETERMINED INTENT" +"Y16.0","Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Home" +"Y16.1","Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Residential Institution" +"Y16.2","Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y16.3","Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Sports and Athletic Areas" +"Y16.4","Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Street and Highway" +"Y16.5","Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Trade and Service Area" +"Y16.6","Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Industrial and Construction Area" +"Y16.7","Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Farm" +"Y16.8","Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Other Specified Area" +"Y16.9","Poisoning by and exposure to organic solvents and halogenated hydrocarbons and their vapours, undetermined intent, Unspecified Place" +"Y17","POISONING BY AND EXPOSURE TO OTHER GASES AND VAPOURS, UNDETERMINED INTENT" +"Y17.0","Poisoning by and exposure to other gases and vapours, undetermined intent, Home" +"Y17.1","Poisoning by and exposure to other gases and vapours, undetermined intent, Residential Institution" +"Y17.2","Poisoning by and exposure to other gases and vapours, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y17.3","Poisoning by and exposure to other gases and vapours, undetermined intent, Sports and Athletic Areas" +"Y17.4","Poisoning by and exposure to other gases and vapours, undetermined intent, Street and Highway" +"Y17.5","Poisoning by and exposure to other gases and vapours, undetermined intent, Trade and Service Area" +"Y17.6","Poisoning by and exposure to other gases and vapours, undetermined intent, Industrial and Construction Area" +"Y17.7","Poisoning by and exposure to other gases and vapours, undetermined intent, Farm" +"Y17.8","Poisoning by and exposure to other gases and vapours, undetermined intent, Other Specified Area" +"Y17.9","Poisoning by and exposure to other gases and vapours, undetermined intent, Unspecified Place" +"Y18","POISONING BY AND EXPOSURE TO PESTICIDES, UNDETERMINED INTENT" +"Y18.0","Poisoning by and exposure to pesticides, undetermined intent, Home" +"Y18.1","Poisoning by and exposure to pesticides, undetermined intent, Residential Institution" +"Y18.2","Poisoning by and exposure to pesticides, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y18.3","Poisoning by and exposure to pesticides, undetermined intent, Sports and Athletic Areas" +"Y18.4","Poisoning by and exposure to pesticides, undetermined intent, Street and Highway" +"Y18.5","Poisoning by and exposure to pesticides, undetermined intent, Trade and Service Area" +"Y18.6","Poisoning by and exposure to pesticides, undetermined intent, Industrial and Construction Area" +"Y18.7","Poisoning by and exposure to pesticides, undetermined intent, Farm" +"Y18.8","Poisoning by and exposure to pesticides, undetermined intent, Other Specified Area" +"Y18.9","Poisoning by and exposure to pesticides, undetermined intent, Unspecified Place" +"Y19","Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent" +"Y19.0","Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Home" +"Y19.1","Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Residential Institution" +"Y19.2","Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y19.3","Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Sports and Athletic Areas" +"Y19.4","Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Street and Highway" +"Y19.5","Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Trade and Service Area" +"Y19.6","Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Industrial and Construction Area" +"Y19.7","Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Farm" +"Y19.8","Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Other Specified Area" +"Y19.9","Poisoning by and exposure to other and unspecified chemicals and noxious substances, undetermined intent, Unspecified Place" +"Y20","HANGING, STRANGULATION AND SUFFOCATION, UNDETERMINED INTENT" +"Y20.0","Hanging, strangulation and suffocation, undetermined intent, Home" +"Y20.1","Hanging, strangulation and suffocation, undetermined intent, Residential Institution" +"Y20.2","Hanging, strangulation and suffocation, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y20.3","Hanging, strangulation and suffocation, undetermined intent, Sports and Athletic Areas" +"Y20.4","Hanging, strangulation and suffocation, undetermined intent, Street and Highway" +"Y20.5","Hanging, strangulation and suffocation, undetermined intent, Trade and Service Area" +"Y20.6","Hanging, strangulation and suffocation, undetermined intent, Industrial and Construction Area" +"Y20.7","Hanging, strangulation and suffocation, undetermined intent, Farm" +"Y20.8","Hanging, strangulation and suffocation, undetermined intent, Other Specified Area" +"Y20.9","Hanging, strangulation and suffocation, undetermined intent, Unspecified Place" +"Y21","Drowning and submersion, undetermined intent" +"Y21.0","Drowning and submersion, undetermined intent, Home" +"Y21.1","Drowning and submersion, undetermined intent, Residential Institution" +"Y21.2","Drowning and submersion, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y21.3","Drowning and submersion, undetermined intent, Sports and Athletic Areas" +"Y21.4","Drowning and submersion, undetermined intent, Street and Highway" +"Y21.5","Drowning and submersion, undetermined intent, Trade and Service Area" +"Y21.6","Drowning and submersion, undetermined intent, Industrial and Construction Area" +"Y21.7","Drowning and submersion, undetermined intent, Farm" +"Y21.8","Drowning and submersion, undetermined intent, Other Specified Area" +"Y21.9","Drowning and submersion, undetermined intent, Unspecified Place" +"Y22","HANDGUN DISCHARGE, UNDETERMINED INTENT" +"Y22.0","Handgun discharge, undetermined intent, Home" +"Y22.1","Handgun discharge, undetermined intent, Residential Institution" +"Y22.2","Handgun discharge, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y22.3","Handgun discharge, undetermined intent, Sports and Athletic Areas" +"Y22.4","Handgun discharge, undetermined intent, Street and Highway" +"Y22.5","Handgun discharge, undetermined intent, Trade and Service Area" +"Y22.6","Handgun discharge, undetermined intent, Industrial and Construction Area" +"Y22.7","Handgun discharge, undetermined intent, Farm" +"Y22.8","Handgun discharge, undetermined intent, Other Specified Area" +"Y22.9","Handgun discharge, undetermined intent, Unspecified Place" +"Y23","Rifle, shotgun and larger firearm discharge, undetermined intent" +"Y23.0","Rifle, shotgun and larger firearm discharge, undetermined intent, Home" +"Y23.1","Rifle, shotgun and larger firearm discharge, undetermined intent, Residential Institution" +"Y23.2","Rifle, shotgun and larger firearm discharge, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y23.3","Rifle, shotgun and larger firearm discharge, undetermined intent, Sports and Athletic Areas" +"Y23.4","Rifle, shotgun and larger firearm discharge, undetermined intent, Street and Highway" +"Y23.5","Rifle, shotgun and larger firearm discharge, undetermined intent, Trade and Service Area" +"Y23.6","Rifle, shotgun and larger firearm discharge, undetermined intent, Industrial and Construction Area" +"Y23.7","Rifle, shotgun and larger firearm discharge, undetermined intent, Farm" +"Y23.8","Rifle, shotgun and larger firearm discharge, undetermined intent, Other Specified Area" +"Y23.9","Rifle, shotgun and larger firearm discharge, undetermined intent, Unspecified Place" +"Y24","Other and unspecified firearm discharge, undetermined intent" +"Y24.0","Other and unspecified firearm discharge, undetermined intent, Home" +"Y24.1","Other and unspecified firearm discharge, undetermined intent, Residential Institution" +"Y24.2","Other and unspecified firearm discharge, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y24.3","Other and unspecified firearm discharge, undetermined intent, Sports and Athletic Areas" +"Y24.4","Other and unspecified firearm discharge, undetermined intent, Street and Highway" +"Y24.5","Other and unspecified firearm discharge, undetermined intent, Trade and Service Area" +"Y24.6","Other and unspecified firearm discharge, undetermined intent, Industrial and Construction Area" +"Y24.7","Other and unspecified firearm discharge, undetermined intent, Farm" +"Y24.8","Other and unspecified firearm discharge, undetermined intent, Other Specified Area" +"Y24.9","Other and unspecified firearm discharge, undetermined intent, Unspecified Place" +"Y25","Contact with explosive material, undetermined intent" +"Y25.0","Contact with explosive material, undetermined intent, Home" +"Y25.1","Contact with explosive material, undetermined intent, Residential Institution" +"Y25.2","Contact with explosive material, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y25.3","Contact with explosive material, undetermined intent, Sports and Athletic Areas" +"Y25.4","Contact with explosive material, undetermined intent, Street and Highway" +"Y25.5","Contact with explosive material, undetermined intent, Trade and Service Area" +"Y25.6","Contact with explosive material, undetermined intent, Industrial and Construction Area" +"Y25.7","Contact with explosive material, undetermined intent, Farm" +"Y25.8","Contact with explosive material, undetermined intent, Other Specified Area" +"Y25.9","Contact with explosive material, undetermined intent, Unspecified Place" +"Y26","EXPOSURE TO SMOKE, FIRE AND FLAMES, UNDETERMINED INTENT" +"Y26.0","Exposure to smoke, fire and flames, undetermined intent, Home" +"Y26.1","Exposure to smoke, fire and flames, undetermined intent, Residential Institution" +"Y26.2","Exposure to smoke, fire and flames, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y26.3","Exposure to smoke, fire and flames, undetermined intent, Sports and Athletic Areas" +"Y26.4","Exposure to smoke, fire and flames, undetermined intent, Street and Highway" +"Y26.5","Exposure to smoke, fire and flames, undetermined intent, Trade and Service Area" +"Y26.6","Exposure to smoke, fire and flames, undetermined intent, Industrial and Construction Area" +"Y26.7","Exposure to smoke, fire and flames, undetermined intent, Farm" +"Y26.8","Exposure to smoke, fire and flames, undetermined intent, Other Specified Area" +"Y26.9","Exposure to smoke, fire and flames, undetermined intent, Unspecified Place" +"Y27","Contact with steam, hot vapours and hot objects, undetermined intent" +"Y27.0","Contact with steam, hot vapours and hot objects, undetermined intent, Home" +"Y27.1","Contact with steam, hot vapours and hot objects, undetermined intent, Residential Institution" +"Y27.2","Contact with steam, hot vapours and hot objects, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y27.3","Contact with steam, hot vapours and hot objects, undetermined intent, Sports and Athletic Areas" +"Y27.4","Contact with steam, hot vapours and hot objects, undetermined intent, Street and Highway" +"Y27.5","Contact with steam, hot vapours and hot objects, undetermined intent, Trade and Service Area" +"Y27.6","Contact with steam, hot vapours and hot objects, undetermined intent, Industrial and Construction Area" +"Y27.7","Contact with steam, hot vapours and hot objects, undetermined intent, Farm" +"Y27.8","Contact with steam, hot vapours and hot objects, undetermined intent, Other Specified Area" +"Y27.9","Contact with steam, hot vapours and hot objects, undetermined intent, Unspecified Place" +"Y28","Contact with sharp object, undetermined intent" +"Y28.0","Contact with sharp object, undetermined intent, Home" +"Y28.1","Contact with sharp object, undetermined intent, Residential Institution" +"Y28.2","Contact with sharp object, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y28.3","Contact with sharp object, undetermined intent, Sports and Athletic Areas" +"Y28.4","Contact with sharp object, undetermined intent, Street and Highway" +"Y28.5","Contact with sharp object, undetermined intent, Trade and Service Area" +"Y28.6","Contact with sharp object, undetermined intent, Industrial and Construction Area" +"Y28.7","Contact with sharp object, undetermined intent, Farm" +"Y28.8","Contact with sharp object, undetermined intent, Other Specified Area" +"Y28.9","Contact with sharp object, undetermined intent, Unspecified Place" +"Y29","Contact with blunt object, undetermined intent" +"Y29.0","Contact with blunt object, undetermined intent, Home" +"Y29.1","Contact with blunt object, undetermined intent, Residential Institution" +"Y29.2","Contact with blunt object, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y29.3","Contact with blunt object, undetermined intent, Sports and Athletic Areas" +"Y29.4","Contact with blunt object, undetermined intent, Street and Highway" +"Y29.5","Contact with blunt object, undetermined intent, Trade and Service Area" +"Y29.6","Contact with blunt object, undetermined intent, Industrial and Construction Area" +"Y29.7","Contact with blunt object, undetermined intent, Farm" +"Y29.8","Contact with blunt object, undetermined intent, Other Specified Area" +"Y29.9","Contact with blunt object, undetermined intent, Unspecified Place" +"Y30","FALLING, JUMPING OR PUSHED FROM A HIGH PLACE, UNDETERMINED INTENT" +"Y30.0","Falling, jumping or pushed from a high place, undetermined intent, Home" +"Y30.1","Falling, jumping or pushed from a high place, undetermined intent, Residential Institution" +"Y30.2","Falling, jumping or pushed from a high place, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y30.3","Falling, jumping or pushed from a high place, undetermined intent, Sports and Athletic Areas" +"Y30.4","Falling, jumping or pushed from a high place, undetermined intent, Street and Highway" +"Y30.5","Falling, jumping or pushed from a high place, undetermined intent, Trade and Service Area" +"Y30.6","Falling, jumping or pushed from a high place, undetermined intent, Industrial and Construction Area" +"Y30.7","Falling, jumping or pushed from a high place, undetermined intent, Farm" +"Y30.8","Falling, jumping or pushed from a high place, undetermined intent, Other Specified Area" +"Y30.9","Falling, jumping or pushed from a high place, undetermined intent, Unspecified Place" +"Y31","Falling, lying or running before or into moving object, undetermined intent" +"Y31.0","Falling, lying or running before or into moving object, undetermined intent, Home" +"Y31.1","Falling, lying or running before or into moving object, undetermined intent, Residential Institution" +"Y31.2","Falling, lying or running before or into moving object, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y31.3","Falling, lying or running before or into moving object, undetermined intent, Sports and Athletic Areas" +"Y31.4","Falling, lying or running before or into moving object, undetermined intent, Street and Highway" +"Y31.5","Falling, lying or running before or into moving object, undetermined intent, Trade and Service Area" +"Y31.6","Falling, lying or running before or into moving object, undetermined intent, Industrial and Construction Area" +"Y31.7","Falling, lying or running before or into moving object, undetermined intent, Farm" +"Y31.8","Falling, lying or running before or into moving object, undetermined intent, Other Specified Area" +"Y31.9","Falling, lying or running before or into moving object, undetermined intent, Unspecified Place" +"Y32","Crashing of motor vehicle, undetermined intent" +"Y32.0","Crashing of motor vehicle, undetermined intent, Home" +"Y32.1","Crashing of motor vehicle, undetermined intent, Residential Institution" +"Y32.2","Crashing of motor vehicle, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y32.3","Crashing of motor vehicle, undetermined intent, Sports and Athletic Areas" +"Y32.4","Crashing of motor vehicle, undetermined intent, Street and Highway" +"Y32.5","Crashing of motor vehicle, undetermined intent, Trade and Service Area" +"Y32.6","Crashing of motor vehicle, undetermined intent, Industrial and Construction Area" +"Y32.7","Crashing of motor vehicle, undetermined intent, Farm" +"Y32.8","Crashing of motor vehicle, undetermined intent, Other Specified Area" +"Y32.9","Crashing of motor vehicle, undetermined intent, Unspecified Place" +"Y33","Other specified events, undetermined intent" +"Y33.0","Other specified events, undetermined intent, Home" +"Y33.1","Other specified events, undetermined intent, Residential Institution" +"Y33.2","Other specified events, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y33.3","Other specified events, undetermined intent, Sports and Athletic Areas" +"Y33.4","Other specified events, undetermined intent, Street and Highway" +"Y33.5","Other specified events, undetermined intent, Trade and Service Area" +"Y33.6","Other specified events, undetermined intent, Industrial and Construction Area" +"Y33.7","Other specified events, undetermined intent, Farm" +"Y33.8","Other specified events, undetermined intent, Other Specified Area" +"Y33.9","Other specified events, undetermined intent, Unspecified Place" +"Y34","Unspecified event, undetermined intent" +"Y34.0","Unspecified event, undetermined intent, Home" +"Y34.1","Unspecified event, undetermined intent, Residential Institution" +"Y34.2","Unspecified event, undetermined intent, School, Other Institution and Public Admimistration Area" +"Y34.3","Unspecified event, undetermined intent, Sports and Athletic Areas" +"Y34.4","Unspecified event, undetermined intent, Street and Highway" +"Y34.5","Unspecified event, undetermined intent, Trade and Service Area" +"Y34.6","Unspecified event, undetermined intent, Industrial and Construction Area" +"Y34.7","Unspecified event, undetermined intent, Farm" +"Y34.8","Unspecified event, undetermined intent, Other Specified Area" +"Y34.9","Unspecified event, undetermined intent, Unspecified Place" +"Y35","LEGAL INTERVENTION" +"Y35.0","Legal intervention involving firearm discharge" +"Y35.1","Legal intervention involving explosives" +"Y35.2","Legal intervention involving gas" +"Y35.3","legal intervention involving blunt objects" +"Y35.4","Legal intervention involving sharp objects" +"Y35.5","Legal execution" +"Y35.6","Legal intervention involving other specified means" +"Y35.7","Legal intervention, means unspecified" +"Y36","OPERATIONS OF WAR" +"Y36.0","War operations involving explosion of marine weapons" +"Y36.1","War operations involving destruction of aircraft" +"Y36.2","War operations involving other explosions and fragments" +"Y36.3","War operations involving fires, conflagrations and hot substances" +"Y36.4","War operations involving firearm discharge and Other forms of conventional warfare" +"Y36.5","War operations involving nuclear weapons" +"Y36.6","War operations involving biological weapons" +"Y36.7","War operations involving chemical weapons and other forms of unconventional warfare" +"Y36.8","War operations occurring after cessation of hostilities" +"Y36.9","War operations, unspecified" +"Y40","SYSTEMIC ANTIBIOTICS" +"Y40.0","penicillins" +"Y40.1","Cefalosporins and other beta-lactam antibiotics" +"Y40.2","Chloramphenicol group" +"Y40.3","Macrolides" +"Y40.4","Tetracyclines" +"Y40.5","Aminoglycosides" +"Y40.6","Rifamycins" +"Y40.7","Antifungal antibiotics, systemically used" +"Y40.8","Other systemic antibiotics" +"Y40.9","Systemic antibiotic, unspecified" +"Y41","OTHER SYSTEMIC ANTI-INFECTIVES AND ANTIPARASITICS" +"Y41.0","Sulfonamides" +"Y41.1","Antimycobacterial drugs" +"Y41.2","Antimalarials and drugs acting on other blood protozoa" +"Y41.3","Other antiprotozoal drugs" +"Y41.4","Anthelminthics" +"Y41.5","Antiviral drugs" +"Y41.8","Other specified systemic anti-infectives and antiparasitics" +"Y41.9","Systemic anti-infective and antiparasitic, unspecified" +"Y42","Hormones and their synthetic substitutes and antagonists, not elsewhere classified" +"Y42.0","Glucocorticoids and synthetic analogues" +"Y42.1","Thyroid hormones and substitutes" +"Y42.2","Antithyroid drugs" +"Y42.3","Insulin and oral hypoglycaemic [antidiabetic] drugs" +"Y42.4","Oral contraceptives" +"Y42.5","Other estrogens and progestogens" +"Y42.6","Antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified" +"Y42.7","Androgens and anabolic congeners" +"Y42.8","Other and unspecified hormones and their synthetic substitutes" +"Y42.9","Other and unspecified hormone antagonists" +"Y43","PRIMARILY SYSTEMIC AGENTS" +"Y43.0","Antiallergic and antiemetic drugs" +"Y43.1","Antineoplastic antimetabolites" +"Y43.2","Antineoplastic natural products" +"Y43.3","Other antineoplastic drugs" +"Y43.4","Immunosuppressive agents" +"Y43.5","Acidifying and alkalizing agents" +"Y43.6","Enzymes, not elsewhere classified" +"Y43.8","Other primarily systemic agents, not elsewhere classified" +"Y43.9","Primarily systemic agent, unspecified" +"Y44","AGENTS PRIMARILY AFFECTING BLOOD CONSTITUENTS" +"Y44.0","Iron preparations and other anti-hypochromic-anaemia preparations" +"Y44.1","Vitamin B12, folic acid and other anti-megaloblastic-anaemia preparations" +"Y44.2","Anticoagulants" +"Y44.3","Anticoagulant antagonists, vitamin K and other coagulants" +"Y44.4","Antithrombotic drugs [platelet-aggregation inhibitors]" +"Y44.5","Thrombolytic drugs" +"Y44.6","Natural blood and blood products" +"Y44.7","Plasma substitutes" +"Y44.9","Other and Unspecified agents affecting blood constituents" +"Y45","ANALGESICS, ANTIPYRETICS AND ANTI-INFLAMMATORY DRUGS" +"Y45.0","Opioids and related analgesics" +"Y45.1","Salicylates" +"Y45.2","Propionic acid derivatives" +"Y45.3","Other nonsteroidal anti-inflammatory drugs [NSAID]" +"Y45.4","Antirheumatics" +"Y45.5","4-Aminophenol derivatives" +"Y45.8","Other analgesics and antipyretics" +"Y45.9","Analgesic, antipyretic and anti-inflammatory drug, unspecified" +"Y46","ANTIEPILEPTICS AND ANTIPARKINSONISM DRUGS" +"Y46.0","Succinimides" +"Y46.1","Oxazolidinediones" +"Y46.2","Hydantoin derivatives" +"Y46.3","Deoxybarbiturates" +"Y46.4","Iminostilbenes" +"Y46.5","Valproic acid" +"Y46.6","Other and unspecified antiepileptics" +"Y46.7","Antiparkinsonism drugs" +"Y46.8","Antispasticity drugs" +"Y47","Sedatives, hypnotics and antianxiety drugs" +"Y47.0","Barbiturates, not elsewhere classified" +"Y47.1","Benzodiazepines" +"Y47.2","Cloral derivatives" +"Y47.3","Paraldehyde" +"Y47.4","Bromine compounds" +"Y47.5","Mixed sedatives and hypnotics, not elsewhere classified" +"Y47.8","Other sedatives, hypnotics and antianxiety drugs" +"Y47.9","Sedative, hypnotic and antianxiety drug, unspecified" +"Y48","ANAESTHETICS AND THERAPEUTIC GASES" +"Y48.0","Inhaled anaesthetics" +"Y48.1","Parenteral anaesthetics" +"Y48.2","Other and unspecified general anaesthetics" +"Y48.3","Local anaesthetics" +"Y48.4","Anaesthetic, unspecified" +"Y48.5","Therapeutic gases" +"Y49","PSYCHOTROPIC DRUGS, NOT ELSEWHERE CLASSIFIED" +"Y49.0","Tricyclic and tetracyclic antidepressants" +"Y49.1","Monoamine-oxidase-inhibitor antidepressants" +"Y49.2","Other and unspecified antidepressants" +"Y49.3","Phenothiazine antipsychotics and neuroleptics" +"Y49.4","Butyrophenone and thioxanthene neuroleptics" +"Y49.5","Other antipsychotics and neuroleptics" +"Y49.6","Psychodysleptics [hallucinogens]" +"Y49.7","Psychostimulants with abuse potential" +"Y49.8","Other psychotropic drugs, not elsewhere classified" +"Y49.9","Psychotropic drug, unspecified" +"Y50","CENTRAL NERVOUS SYSTEM STIMULANTS, NOT ELSEWHERE CLASSIFIED" +"Y50.0","Analeptics" +"Y50.1","Opioid receptor antagonists" +"Y50.2","Methylxanthines, not elsewhere classified" +"Y50.8","Other central nervous system stimulants" +"Y50.9","Central nervous system stimulant, unspecified" +"Y51","Drugs primarily affecting the autonomic nervous system" +"Y51.0","Anticholinesterase agents" +"Y51.1","Other parasympathomimetics [cholinergics]" +"Y51.2","Ganglionic blocking drugs, not elsewhere classified" +"Y51.3","Other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, not elsewhere classified" +"Y51.4","Predominantly alpha-adrenoreceptor agonists, not elsewhere classified" +"Y51.5","Predominantly beta-adrenoreceptor agonists, not elsewhere classified" +"Y51.6","Alpha-adrenoreceptor antagonists, not elsewhere classified" +"Y51.7","Beta-adrenoreceptor antagonists, not elsewhere classified" +"Y51.8","Centrally acting and adrenergic-neuron-blocking agents, not elsewhere classified" +"Y51.9","Other and Unspecified drugs primarily affecting the autonomic nervous system" +"Y52","AGENTS PRIMARILY AFFECTING THE CARDIOVASCULAR SYSTEM" +"Y52.0","Cardiac-stimulant glycosides and drugs of similar action" +"Y52.1","Calcium-channel blockers" +"Y52.2","Other antidysrhythmic drugs, not elsewhere classified" +"Y52.3","Coronary vasodilators, not elsewhere classified" +"Y52.4","Angiotensin-converting-enzyme inhibitors" +"Y52.5","Other antihypertensive drugs, not elsewhere classified" +"Y52.6","Antihyperlipidaemic and antiarteriosclerotic drugs" +"Y52.7","Peripheral vasodilators" +"Y52.8","Antivaricose drugs, including sclerosing agents" +"Y52.9","Other and Unspecified agents primarily affecting the cardiovascular system" +"Y53","AGENTS PRIMARILY AFFECTING THE GASTROINTESTINAL SYSTEM" +"Y53.0","Histamine H2-receptor antagonists" +"Y53.1","Other antacids and anti-gastric-secretion drugs" +"Y53.2","Stimulant laxatives" +"Y53.3","Saline and osmotic laxatives" +"Y53.4","Other laxatives" +"Y53.5","Digestants" +"Y53.6","Antidiarrhoeal drugs" +"Y53.7","Emetics" +"Y53.8","Other agents primarily affecting the gastrointestinal system" +"Y53.9","Agent primarily affecting the gastrointestinal system, unspecified" +"Y54","Agents primarily affecting water-balance and mineral and uric acid metabolism" +"Y54.0","Mineralocorticoids" +"Y54.1","Mineralocorticoid antagonists [aldosterone antagonists]" +"Y54.2","Carbonic-anhydrase inhibitors" +"Y54.3","Benzothiadiazine derivatives" +"Y54.4","Loop [high-ceiling] diuretics" +"Y54.5","Other diuretics" +"Y54.6","Electrolytic, caloric and water-balance agents" +"Y54.7","Agents affecting calcification" +"Y54.8","Agents affecting uric acid metabolism" +"Y54.9","Mineral salts, not elsewhere classified" +"Y55","AGENTS PRIMARILY ACTING ON SMOOTH AND SKELETAL MUSCLES AND THE RESPIRATORY SYSTEM" +"Y55.0","Oxytocic drugs" +"Y55.1","Skeletal muscle relaxants [neuromuscular blocking agents]" +"Y55.2","Other and unspecified agents primarily acting on muscles" +"Y55.3","antitussives" +"Y55.4","Expectorants" +"Y55.5","Anti-common-cold drugs" +"Y55.6","Antiasthmatics, not elsewhere classified" +"Y55.7","Other and unspecified agents primarily acting on the respiratory system" +"Y56","Topical agents primarily affecting skin and mucous membrane and ophthalmological, otorhinolaryngological and dental drugs" +"Y56.0","Local antifungal, anti-infective and anti-inflammatory drugs, not elsewhere classified" +"Y56.1","Antipruritics" +"Y56.2","Local astringents and local detergents" +"Y56.3","Emollients, demulcents and protectants" +"Y56.4","Keratolytics, keratoplastics and other hair treatment drugs and preparations" +"Y56.5","Ophthalmological drugs and preparations" +"Y56.6","Otorhinolaryngological drugs and preparations" +"Y56.7","Dental drugs, topically applied" +"Y56.8","Other topical agents" +"Y56.9","Topical agent, unspecified" +"Y57","Other and unspecified drugs and medicaments" +"Y57.0","Appetite depressants [anorectics]" +"Y57.1","Lipotropic drugs" +"Y57.2","Antidotes and chelating agents, not elsewhere classified" +"Y57.3","Alcohol deterrents" +"Y57.4","Pharmaceutical excipients" +"Y57.5","X-ray contrast media" +"Y57.6","Other diagnostic agents" +"Y57.7","Vitamins, not elsewhere classified" +"Y57.8","Other drugs and medicaments" +"Y57.9","Drug or medicament, unspecified" +"Y58","BACTERIAL VACCINES" +"Y58.0","BCG vaccine" +"Y58.1","Typhoid and paratyphoid vaccine" +"Y58.2","Cholera vaccine" +"Y58.3","Plague vaccine" +"Y58.4","Tetanus vaccine" +"Y58.5","Diphtheria vaccine" +"Y58.6","Pertussis vaccine, including combinations with a pertussis component" +"Y58.8","Mixed bacterial vaccines, except combinations with a pertussis component" +"Y58.9","Other and unspecified bacterial vaccines" +"Y59","Other and unspecified vaccines and biological substances" +"Y59.0","Viral vaccines" +"Y59.1","Rickettsial vaccines" +"Y59.2","Protozoal vaccines" +"Y59.3","Immunoglobulin" +"Y59.8","Other specified vaccines and biological substances" +"Y59.9","Vaccine or biological substance, unspecified" +"Y60","Unintentional cut, puncture, perforation or haemorrhage during surgical and medical care" +"Y60.0","During surgical operation" +"Y60.1","During infusion or transfusion" +"Y60.2","During kidney dialysis or other perfusion" +"Y60.3","During injection or immunization" +"Y60.4","During endoscopic examination" +"Y60.5","During heart catheterization" +"Y60.6","During aspiration, puncture and other catheterization" +"Y60.7","During administration of enema" +"Y60.8","During other surgical and medical care" +"Y60.9","During unspecified surgical and medical care" +"Y61","Foreign object accidentally left in body during surgical and medical care" +"Y61.0","During surgical operation" +"Y61.1","During infusion or transfusion" +"Y61.2","During kidney dialysis or other perfusion" +"Y61.3","During injection or immunization" +"Y61.4","During endoscopic examination" +"Y61.5","During heart catheterization" +"Y61.6","During aspiration, puncture and other catheterization" +"Y61.7","During removal of catheter or packing" +"Y61.8","During other surgical and medical care" +"Y61.9","During unspecified surgical and medical care" +"Y62","FAILURE OF STERILE PRECAUTIONS DURING SURGICAL AND MEDICAL CARE" +"Y62.0","During surgical operation" +"Y62.1","During infusion or transfusion" +"Y62.2","During kidney dialysis or other perfusion" +"Y62.3","During injection or immunization" +"Y62.4","During endoscopic examination" +"Y62.5","During heart catheterization" +"Y62.6","During aspiration, puncture and other catheterization" +"Y62.8","During other surgical and medical care" +"Y62.9","During unspecified surgical and medical care" +"Y63","FAILURE IN DOSAGE DURING SURGICAL AND MEDICAL CARE" +"Y63.0","Excessive amount of blood or other fluid given during transfusion or infusion" +"Y63.1","Incorrect dilution of fluid used during infusion" +"Y63.2","Overdose of radiation given during therapy" +"Y63.3","Inadvertent exposure of patient to radiation during medical care" +"Y63.4","Failure in dosage in electroshock or insulin-shock therapy" +"Y63.5","Inappropriate temperature in local application and packing" +"Y63.6","Nonadministration of necessary drug, medicament or biological substance" +"Y63.8","Failure in dosage during other surgical and medical care" +"Y63.9","Failure in dosage during unspecified surgical and medical care" +"Y64","CONTAMINATED MEDICAL OR BIOLOGICAL SUBSTANCES" +"Y64.0","Contaminated medical or biological substance, transfused or infused" +"Y64.1","Contaminated medical or biological substance, injected or used for immunization" +"Y64.8","Contaminated medical or biological substance administered by other means" +"Y64.9","Contaminated medical or biological substance administered by unspecified means" +"Y65","Other misadventures during surgical and medical care" +"Y65.0","Mismatched blood used in transfusion" +"Y65.1","Wrong fluid used in infusion" +"Y65.2","Failure in suture or ligature during surgical operation" +"Y65.3","Endotracheal tube wrongly placed during anaesthetic procedure" +"Y65.4","Failure to introduce or to remove other tube or instrument" +"Y65.5","Performance of inappropriate operation" +"Y65.8","Other specified misadventures during surgical and medical care" +"Y66","NONADMINISTRATION OF SURGICAL AND MEDICAL CARE" +"Y69","Unspecified misadventure during surgical and medical care" +"Y70","Anaesthesiology devices associated with adverse incidents" +"Y70.0","Anaesthesiology devices associated with adverse incidents: Diagnostic and monitoring devices" +"Y70.1","Anaesthesiology devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices" +"Y70.2","Anaesthesiology devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices" +"Y70.3","Anaesthesiology devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)" +"Y70.8","Anaesthesiology devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified" +"Y71","Cardiovascular devices associated with adverse incidents" +"Y71.0","Cardiovascular devices associated with adverse incidents: Diagnostic and monitoring devices" +"Y71.1","Cardiovascular devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices" +"Y71.2","Cardiovascular devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices" +"Y71.3","Cardiovascular devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)" +"Y71.8","Cardiovascular devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified" +"Y72","Otorhinolaryngological devices associated with adverse incidents" +"Y72.0","Otorhinolaryngological devices associated with adverse incidents: Diagnostic and monitoring devices" +"Y72.1","Otorhinolaryngological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices" +"Y72.2","Otorhinolaryngological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices" +"Y72.3","Otorhinolaryngological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)" +"Y72.8","Otorhinolaryngological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified" +"Y73","Gastroenterology and urology devices associated with adverse incidents" +"Y73.0","Gastroenterology and urology devices associated with adverse incidents: Diagnostic and monitoring devices" +"Y73.1","Gastroenterology and urology devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices" +"Y73.2","Gastroenterology and urology devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices" +"Y73.3","Gastroenterology and urology devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)" +"Y73.8","Gastroenterology and urology devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified" +"Y74","General hospital and personal-use devices associated with adverse incidents" +"Y74.0","General hospital and personal-use devices associated with adverse incidents: Diagnostic and monitoring devices" +"Y74.1","General hospital and personal-use devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices" +"Y74.2","General hospital and personal-use devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices" +"Y74.3","General hospital and personal-use devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)" +"Y74.8","General hospital and personal-use devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified" +"Y75","Neurological devices associated with adverse incidents" +"Y75.0","Neurological devices associated with adverse incidents: Diagnostic and monitoring devices" +"Y75.1","Neurological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices" +"Y75.2","Neurological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices" +"Y75.3","Neurological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)" +"Y75.8","Neurological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified" +"Y76","Obstetric and gynaecological devices associated with adverse incidents" +"Y76.0","Obstetric and gynaecological devices associated with adverse incidents: Diagnostic and monitoring devices" +"Y76.1","Obstetric and gynaecological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices" +"Y76.2","Obstetric and gynaecological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices" +"Y76.3","Obstetric and gynaecological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)" +"Y76.8","Obstetric and gynaecological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified" +"Y77","Ophthalmic devices associated with adverse incidents" +"Y77.0","Ophthalmic devices associated with adverse incidents: Diagnostic and monitoring devices" +"Y77.1","Ophthalmic devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices" +"Y77.2","Ophthalmic devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices" +"Y77.3","Ophthalmic devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)" +"Y77.8","Ophthalmic devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified" +"Y78","Radiological devices associated with adverse incidents" +"Y78.0","Radiological devices associated with adverse incidents: Diagnostic and monitoring devices" +"Y78.1","Radiological devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices" +"Y78.2","Radiological devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices" +"Y78.3","Radiological devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)" +"Y78.8","Radiological devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified" +"Y79","Orthopaedic devices associated with adverse incidents" +"Y79.0","Orthopaedic devices associated with adverse incidents: Diagnostic and monitoring devices" +"Y79.1","Orthopaedic devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices" +"Y79.2","Orthopaedic devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices" +"Y79.3","Orthopaedic devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)" +"Y79.8","Orthopaedic devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified" +"Y80","Physical medicine devices associated with adverse incidents" +"Y80.0","Physical medicine devices associated with adverse incidents: Diagnostic and monitoring devices" +"Y80.1","Physical medicine devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices" +"Y80.2","Physical medicine devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices" +"Y80.3","Physical medicine devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)" +"Y80.8","Physical medicine devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified" +"Y81","General- and plastic-surgery devices associated with adverse incidents" +"Y81.0","General- and plastic-surgery devices associated with adverse incidents: Diagnostic and monitoring devices" +"Y81.1","General- and plastic-surgery devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices" +"Y81.2","General- and plastic-surgery devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices" +"Y81.3","General- and plastic-surgery devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)" +"Y81.8","General- and plastic-surgery devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified" +"Y82","Other and unspecified medical devices associated with adverse incidents" +"Y82.0","Other and unspecified medical devices associated with adverse incidents: Diagnostic and monitoring devices" +"Y82.1","Other and unspecified medical devices associated with adverse incidents: Therapeutic (nonsurgical) and rehabilitative devices" +"Y82.2","Other and unspecified medical devices associated with adverse incidents: Prosthetic and other implants, materials and accessory devices" +"Y82.3","Other and unspecified medical devices associated with adverse incidents: Surgical instruments, materials and devices (including sutures)" +"Y82.8","Other and unspecified medical devices associated with adverse incidents: Miscellaneous devices, not elsewhere classified" +"Y83","Surgical operation and other surgical procedures as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure" +"Y83.0","Surgical operation with transplant of whole organ" +"Y83.1","Surgical operation with implant of artificial internal device" +"Y83.2","Surgical operation with anastomosis, bypass or graft" +"Y83.3","Surgical operation with formation of external stoma" +"Y83.4","Other reconstructive surgery" +"Y83.5","Amputation of limb(s)" +"Y83.6","Removal of other organ (partial) (total)" +"Y83.8","Other surgical procedures" +"Y83.9","Surgical procedure, unspecified" +"Y84","Other medical procedures as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure" +"Y84.0","Cardiac catheterization" +"Y84.1","Kidney dialysis" +"Y84.2","Radiological procedure and radiotherapy" +"Y84.3","Shock therapy" +"Y84.4","Aspiration of fluid" +"Y84.5","Insertion of gastric or duodenal sound" +"Y84.6","Urinary catheterization" +"Y84.7","Blood-sampling" +"Y84.8","Other medical procedures" +"Y84.9","Medical procedure, unspecified" +"Y85","SEQUELAE OF TRANSPORT ACCIDENTS" +"Y85.0","Sequelae of motor-vehicle accident" +"Y85.9","Sequelae of other and unspecified transport accidents" +"Y86","SEQUELAE OF OTHER ACCIDENTS" +"Y87","Sequelae of intentional self-harm, assault and events of undetermined intent" +"Y87.0","Sequelae of intentional self-harm" +"Y87.1","Sequelae of assault" +"Y87.2","Sequelae of events of undetermined intent" +"Y88","Sequelae with surgical and medical care as external cause" +"Y88.0","Sequelae of adverse effects caused by drugs, medicaments and biological substances in therapeutic use" +"Y88.1","Sequelae of misadventures to patients during surgical and medical procedures" +"Y88.2","Sequelae of adverse incidents associated with medical devices in diagnostic and therapeutic use" +"Y88.3","Sequelae of surgical and medical procedures as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure" +"Y89","SEQUELAE OF OTHER EXTERNAL CAUSES" +"Y89.0","Sequelae of legal intervention" +"Y89.1","Sequelae of war operations" +"Y89.9","Sequelae of unspecified external cause" +"Y90","EVIDENCE OF ALCOHOL INVOLVEMENT DETERMINED BY BLOOD ALCOHOL LEVEL" +"Y90.0","Blood alcohol level of less than 20 mg/100 ml" +"Y90.1","Blood alcohol level of 20-39 mg/100 ml" +"Y90.2","Blood alcohol level of 40-59 mg/100 ml" +"Y90.3","blood alcohol level of 60-79 mg/100 ml" +"Y90.4","Blood alcohol level of 80-99 mg/100 ml" +"Y90.5","Blood alcohol level of 100-119 mg/100 ml" +"Y90.6","Blood alcohol level of 120-199 mg/100 ml" +"Y90.7","Blood alcohol level of 200-239 mg/100 ml" +"Y90.8","Blood alcohol level of 240 mg/100 ml or more" +"Y90.9","Presence of alcohol in blood, level not specified" +"Y91","Evidence of alcohol involvement determined by level of intoxication" +"Y91.0","Mild alcohol intoxication" +"Y91.1","Moderate alcohol intoxication" +"Y91.2","Severe alcohol intoxication" +"Y91.3","Very severe alcohol intoxication" +"Y91.9","Alcohol involvement, not otherwise specified" +"Y95","NOSOCOMIAL CONDITION" +"Y96","WORK-RELATED CONDITION" +"Y97","ENVIRONMENTAL-POLLUTION-RELATED CONDITION" +"Y98","LIFESTYLE-RELATED CONDITION" +"Z00","General examination and investigation of persons without complaint and reported diagnosis" +"Z00.0","General medical examination" +"Z00.1","Routine child health examination" +"Z00.2","Examination for period of rapid growth in childhood" +"Z00.3","Examination for adolescent development state" +"Z00.4","General psychiatric examination, nec" +"Z00.5","Examination of potential donor of organ and tissue" +"Z00.6","Exam normal comparison and control in clin research program" +"Z00.8","Other general examinations" +"Z01","Other special examinations and investigations of persons without complaint or reported diagnosis" +"Z01.0","Examination of eyes and vision" +"Z01.1","Examination of ears and hearing" +"Z01.2","Dental examination" +"Z01.3","Examination of blood pressure" +"Z01.4","Gynaecological examination (general)(routine)" +"Z01.5","Diagnostic skin and sensitization tests" +"Z01.6","Radiological examination, nec" +"Z01.7","Laboratory examination" +"Z01.8","Other specified special examinations" +"Z01.9","Special examination, unspecified" +"Z02","EXAMINATION AND ENCOUNTER FOR ADMINISTRATIVE PURPOSES" +"Z02.0","Examination for admission to educational institution" +"Z02.1","Pre-employment examination" +"Z02.2","Examination for admission to residential institutions" +"Z02.3","Examination for recruitment to armed forces" +"Z02.4","Examination for driving licence" +"Z02.5","Examination for participation in sport" +"Z02.6","Examination for insurance purposes" +"Z02.7","Issue of medical certificate" +"Z02.8","Other examinations for administrative purposes" +"Z02.9","Examination for administrative purposes, unspecified" +"Z03","Medical observation and evaluation for suspected diseases and conditions" +"Z03.0","Observation for suspected tuberculosis" +"Z03.1","Observation for suspected malignant neoplasm" +"Z03.2","Observation for suspected mental and behavioural disorders" +"Z03.3","Observation for suspected nervous system disorder" +"Z03.4","Observation for suspected myocardial infarction" +"Z03.5","Observation for other suspected cardiovascular diseases" +"Z03.6","Observation for suspected toxic effect from ingested substances" +"Z03.8","Observation for other suspected diseases and conditions" +"Z03.9","Observation for suspected disease or condition, unspecified" +"Z04","EXAMINATION AND OBSERVATION FOR OTHER REASONS" +"Z04.0","Blood-alcohol and blood-drug test" +"Z04.1","Examination and observation following transport accident" +"Z04.2","Examination and observation following work accident" +"Z04.3","Examination and observation following other accident" +"Z04.4","Exam and observation following alleged rape and seduction" +"Z04.5","Examination and observation following other inflicted injury" +"Z04.6","General psychiatric examination, requested by authority" +"Z04.8","Examination and observation for other specified reasons" +"Z04.9","Examination and observation for unspecified reason" +"Z08","Follow-up examination after treatment for malignant neoplasms" +"Z08.0","Follow-up examination after surgery for malignant neoplasm" +"Z08.1","Follow-up examination after radiotherapy for malignant neoplasm" +"Z08.2","Follow-up examination after chemotherapy for malignant neoplasm" +"Z08.7","Follow-up examination after combined treatment for malig neoplasm" +"Z08.8","Follow-up examination after other treatment for malignant neoplasm" +"Z08.9","Follow-up examination after unspecified treatment for malignant neoplasm" +"Z09","Follow-up examination after treatment for conditions other than malignant neoplasms" +"Z09.0","Follow-up examination after surgery for other conditions" +"Z09.1","Follow-up examination after radiotherapy for oth conditions" +"Z09.2","Follow-up examination after chemotherapy for oth conditions" +"Z09.3","Follow-up examination after psychotherapy" +"Z09.4","Follow-up examination after treatment of fracture" +"Z09.7","Follow-up exam after combined treatment for other conditions" +"Z09.8","Follow-up exam after other treatment for other conditions" +"Z09.9","Follow-up exam after unspecified treatment for other conditions" +"Z10","Routine general health check-up of defined subpopulation" +"Z10.0","Occupational health examination" +"Z10.1","Routine gen health check-up of inhabitants of institutions" +"Z10.2","Routine general health check-up of armed forces" +"Z10.3","Routine general health check-up of sports teams" +"Z10.8","Routine general health check-up of other defined subpopulations" +"Z11","SPECIAL SCREENING EXAMINATION FOR INFECTIOUS AND PARASITIC DISEASES" +"Z11.0","Special screening examination for intestinal infectious diseases" +"Z11.1","Special screening examination for respiratory tuberculosis" +"Z11.2","Special screening examination for other bacterial diseases" +"Z11.3","Special screening examination infection with predominantly sexual mode transmis" +"Z11.4","Special screening examination for human immunodeficiency virus [hiv]" +"Z11.5","Special screening examination for other viral diseases" +"Z11.6","Special screening examination for oth protozoal dis and helminthiases" +"Z11.8","Special screening examination for other infectious and parasitic diseases" +"Z11.9","Special screening examination for infectious and parasitic disease unspecified" +"Z12","SPECIAL SCREENING EXAMINATION FOR NEOPLASMS" +"Z12.0","Special screening examination for neoplasm of stomach" +"Z12.1","Special screening examination for neoplasm of intestinal tract" +"Z12.2","Special screening examination for neoplasm of respiratory organs" +"Z12.3","Special screening examination for neoplasm of breast" +"Z12.4","Special screening examination for neoplasm of cervix" +"Z12.5","Special screening examination for neoplasm of prostate" +"Z12.6","Special screening examination for neoplasm of bladder" +"Z12.8","Special screening examination for neoplasms of other sites" +"Z12.9","Special screening examination for neoplasm, unspecified" +"Z13","SPECIAL SCREENING EXAMINATION FOR OTHER DISEASES AND DISORDERS" +"Z13.0","Special screening examination disease blood and blood forming organs and certain disoders involving the immune mechanism" +"Z13.1","Special screening examination for diabetes mellitus" +"Z13.2","Special screening examination for nutritional disorders" +"Z13.3","Special screening examination for mental and behavioural disorders" +"Z13.4","Special screening examination certain development disorders in childhood" +"Z13.5","Special screening examination for eye and ear disorders" +"Z13.6","Special screening examination for cardiovascular disorders" +"Z13.7","Special screening examination for congenital malformations, deformations and chromosomal abnormalities" +"Z13.8","Special screening examination for other specified diseases and disorders" +"Z13.9","Special screening examination, unspecified" +"Z20","Contact with and exposure to communicable diseases" +"Z20.0","Contact with and exposure to intestinal infectious diseases" +"Z20.1","Contact with and exposure to tuberculosis" +"Z20.2","Contact with and exposure infection with a predominantly sex mode transmission" +"Z20.3","Contact with and exposure to rabies" +"Z20.4","Contact with and exposure to rubella" +"Z20.5","Contact with and exposure to viral hepatitis" +"Z20.6","Contact with and exposure to human immunodefic virus [HIV]" +"Z20.7","Contact with and exposure pediculosis acariasis and other infestations" +"Z20.8","Contact with and exposure to other communicable diseases" +"Z20.9","Contact with and exposure to unspecified communicable disease" +"Z21","Asymptomatic human immunodefic virus [hiv] infect status" +"Z22","CARRIER OF INFECTIOUS DISEASE" +"Z22.0","Carrier of typhoid" +"Z22.1","Carrier of other intestinal infectious diseases" +"Z22.2","Carrier of diphtheria" +"Z22.3","Carrier of other specified bacterial diseases" +"Z22.4","Carrier of infections with a predom sexual mode of transmission" +"Z22.5","Carrier of viral hepatitis" +"Z22.6","Carrier of human T-lymphotropic virus type-1 [HTLV-1] infection" +"Z22.8","Carrier of other infectious diseases" +"Z22.9","Carrier of infectious disease, unspecified" +"Z23","NEED FOR IMMUNIZATION AGAINST SINGLE BACTERIAL DISEASES" +"Z23.0","Need for immunization against cholera alone" +"Z23.1","Need for immuniz against typhoid-paratyphoid alone [TAB]" +"Z23.2","Need for immunization against tuberculosis [BCG]" +"Z23.3","Need for immunization against plague" +"Z23.4","Need for immunization against tularaemia" +"Z23.5","Need for immunization against tetanus alone" +"Z23.6","Need for immunization against diphtheria alone" +"Z23.7","Need for immunization against pertussis alone" +"Z23.8","Need for immunization against other single bacterial diseases" +"Z24","NEED FOR IMMUNIZATION AGAINST CERTAIN SINGLE VIRAL DISEASES" +"Z24.0","Need for immunization against poliomyelitis" +"Z24.1","Need for immunization against arthropod-borne viral encephalitis" +"Z24.2","Need for immunization against rabies" +"Z24.3","Need for immunization against yellow fever" +"Z24.4","Need for immunization against measles alone" +"Z24.5","Need for immunization against rubella alone" +"Z24.6","Need for immunization against viral hepatitis" +"Z24.61","Need for immunization against viral hepatitis (excluding Hepatitits B)" +"Z25","NEED FOR IMMUNIZATION AGAINST OTHER SINGLE VIRAL DISEASES" +"Z25.0","Need for immunization against mumps alone" +"Z25.1","Need for immunization against influenza" +"Z25.8","Need for immunization against oth specified single viral diseases" +"Z26","Need for immunization against other single infectious diseases" +"Z26.0","Need for immunization against leishmaniasis" +"Z26.8","Need for immunization against other specified single infectious diseases" +"Z26.9","Need for immunization against unspecified infectious disease" +"Z27","Need for immunization against combinations of infectious diseases" +"Z27.0","Need for immunization against cholera with typhoid-paratyphoid [cholera + TAB]" +"Z27.1","Need for immunization against diphtheria-tetanus-pertussis combined [DTP]" +"Z27.11","Need immunization againts diphtheria-tetanus-pertussis" +"Z27.12","NEED IMMUNIZATION AGAINTS DIPTHERIA-TETANUS-PERTUSIS COMBINE HIB" +"Z27.13","NEED IMMUNIZATION AGAINTS DPaT COMBINE HIB AND POLIO" +"Z27.14","NEED IMMUNIZATION AGAINTS IPD" +"Z27.2","Need for immunization against diphtheria-tetanus-pertussis with typhoid-paratyph [DTP + TAB]" +"Z27.3","Need for immunization against diphtheria-tetanus-pertussis with poliomyelitis [DTP + polio]" +"Z27.4","Need for immunization against measles-mumps-rubella [MMR]" +"Z27.8","Need for immunization against other combinations of infectious diseases" +"Z27.9","Need for immunization against unspec combs of infectious diseases" +"Z28","IMMUNIZATION NOT CARRIED OUT" +"Z28.0","Immunization not carried out because of contraindication" +"Z28.1","Immunization not carried out because of patient's decision for reason of belief or group pressure" +"Z28.2","Immunization not carried out because patient's decision for other unspecified reasons" +"Z28.8","Immunization not carried out for other reasons" +"Z28.9","Immunization not carried out for unspecified reason" +"Z29","NEED FOR OTHER PROPHYLACTIC MEASURES" +"Z29.0","Isolation" +"Z29.1","Prophylactic immunotherapy" +"Z29.2","Other prophylactic chemotherapy" +"Z29.8","Other specified prophylactic measures" +"Z29.9","Prophylactic measure, unspecified" +"Z30","CONTRACEPTIVE MANAGEMENT" +"Z30.0","General counselling and advice on contraception" +"Z30.1","Insertion of (intrauterine) contraceptive device" +"Z30.2","Sterilization" +"Z30.3","Menstrual extraction" +"Z30.4","Surveillance of contraceptive drugs" +"Z30.5","Surveillance of (intrauterine) contraceptive device" +"Z30.8","Other contraceptive management" +"Z30.9","Contraceptive management, unspecified" +"Z31","PROCREATIVE MANAGEMENT" +"Z31.0","Tuboplasty or vasoplasty after previous sterilization" +"Z31.1","Artificial insemination" +"Z31.2","In vitro fertilization" +"Z31.3","Other assisted fertilization methods" +"Z31.4","Procreative investigation and testing" +"Z31.5","Genetic counselling" +"Z31.6","General counselling and advice on procreation" +"Z31.8","Other procreative management" +"Z31.9","Procreative management, unspecified" +"Z32","PREGNANCY EXAMINATION AND TEST" +"Z32.0","Pregnancy, not (yet) confirmed" +"Z32.1","Pregnancy confirmed" +"Z33","PREGNANT STATE, INCIDENTAL" +"Z34","SUPERVISION OF NORMAL PREGNANCY" +"Z34.0","Supervision of normal first pregnancy" +"Z34.8","Supervision of other normal pregnancy" +"Z34.9","Supervision of normal pregnancy, unspecified" +"Z35","SUPERVISION OF HIGH-RISK PREGNANCY" +"Z35.0","Supervision of pregnancy with history of infertility" +"Z35.1","Supervision of pregnancy with history of abortive outcome" +"Z35.2","Supervision of pregnancy with other poor reproductive or obstetric history" +"Z35.3","Supervision of pregnancy with history insufficient antenatal care" +"Z35.4","Supervision of pregnancy with grand multiparity" +"Z35.5","Supervision of elderly primigravida" +"Z35.6","Supervision of very young primigravida" +"Z35.7","Supervision of high-risk pregnancy due to social problems" +"Z35.8","Supervision of other high-risk pregnancies" +"Z35.9","Supervision of high-risk pregnancy, unspecified" +"Z36","ANTENATAL SCREENING" +"Z36.0","Antenatal screening for chromosomal anomalies" +"Z36.1","Antenatal screening for raised alphafetoprotein level" +"Z36.2","Other antenatal screening based on amniocentesis" +"Z36.3","Antenatal screening malformation using ultrasound and other physical methods" +"Z36.4","Antenatal screening fetal growth retardation using ultrasound oth physical methods" +"Z36.5","Antenatal screening for isoimmunization" +"Z36.8","Other antenatal screening" +"Z36.9","Antenatal screening, unspecified" +"Z37","OUTCOME OF DELIVERY" +"Z37.0","Single live birth" +"Z37.1","Single stillbirth" +"Z37.2","Twins, both liveborn" +"Z37.3","Twins, one liveborn and one stillborn" +"Z37.4","Twins, both stillborn" +"Z37.5","Other multiple births, all liveborn" +"Z37.6","Other multiple births, some liveborn" +"Z37.7","Other multiple births, all stillborn" +"Z37.9","Outcome of delivery, unspecified" +"Z38","LIVEBORN INFANTS ACCORDING TO PLACE OF BIRTH" +"Z38.0","Singleton, born in hospital" +"Z38.1","Singleton, born outside hospital" +"Z38.2","Singleton, unspecified as to place of birth" +"Z38.3","Twin, born in hospital" +"Z38.4","Twin, born outside hospital" +"Z38.5","Twin, unspecified as to place of birth" +"Z38.6","Other multiple, born in hospital" +"Z38.7","Other multiple, born outside hospital" +"Z38.8","Other multiple, unspecified as to place of birth" +"Z39","POSTPARTUM CARE AND EXAMINATION" +"Z39.0","Care and examination immediately after delivery" +"Z39.1","Care and examination of lactating mother" +"Z39.2","Routine postpartum follow-up" +"Z40","PROPHYLACTIC SURGERY" +"Z40.0","Prophyl surgery for risk-factors related to mal neoplasms" +"Z40.8","Other prophylactic surgery" +"Z40.9","Prophylactic surgery, unspecified" +"Z41","Procedures for purposes other than remedying health state" +"Z41.0","Hair transplant" +"Z41.1","Other plastic surgery for unacceptable cosmetic appearance" +"Z41.2","Routine and ritual circumcision" +"Z41.3","Ear piercing" +"Z41.8","Other procedures for purposes other than remedying health state" +"Z41.9","Procedures for purposes other than remedying health state, unspecified" +"Z42","Follow-up care involving plastic surgery" +"Z42.0","Follow-up care involving plastic surgery of head and neck" +"Z42.1","Follow-up care involving plastic surgery of breast" +"Z42.2","Follow-up care involving plastic surgery of ther parts of trunk" +"Z42.3","Follow-up care involving plastic surgery of upper extremity" +"Z42.4","Follow-up care involving plastic surgery of lower extremity" +"Z42.8","Follow-up care involving plastic surgery of other body part" +"Z42.9","Follow-up care involving plastic surgery, unspecified" +"Z43","ATTENTION TO ARTIFICIAL OPENINGS" +"Z43.0","Attention to tracheostomy" +"Z43.1","Attention to gastrostomy" +"Z43.2","Attention to ileostomy" +"Z43.3","Attention to colostomy" +"Z43.4","Attention to other artificial openings of digestive tract" +"Z43.5","Attention to cystostomy" +"Z43.6","Attention to other artificial openings of urinary tract" +"Z43.7","Attention to artificial vagina" +"Z43.8","Attention to other artificial openings" +"Z43.9","Attention to unspecified artificial opening" +"Z44","FITTING AND ADJUSTMENT OF EXTERNAL PROSTHETIC DEVICE" +"Z44.0","Fitting and adjustment of artificial arm (complete)(partial)" +"Z44.1","Fitting and adjustment of artificial leg (complete)(partial)" +"Z44.2","Fitting and adjustment of artificial eye" +"Z44.3","Fitting and adjustment of external breast prosthesis" +"Z44.8","Fitting and adjustment of other external prosthetic devices" +"Z44.9","Fitting and adjustment of unspecified external prosthetic device" +"Z45","Adjustment and management of implanted device" +"Z45.0","Adjustment and management of cardiac pacemaker" +"Z45.1","Adjustment and management of infusion pump" +"Z45.2","Adjustment and management of vascular access device" +"Z45.3","Adjustment and management of implanted hearing device" +"Z45.8","Adjustment and management of other implanted devices" +"Z45.9","Adjustment and management of Unspecified implanted device" +"Z46","Fitting and adjustment of other devices" +"Z46.0","Fitting and adjustment of spectacles and contact lenses" +"Z46.1","Fitting and adjustment of hearing aid" +"Z46.2","Fitting and adjustment of other devicess related to nervous system and special senses" +"Z46.3","Fitting and adjustment of dental prosthetic device" +"Z46.4","Fitting and adjustment of orthodontic device" +"Z46.5","Fitting and adjustment of ileostomy and oth intestinal appliances" +"Z46.6","Fitting and adjustment of urinary device" +"Z46.7","Fitting and adjustment of orthopaedic device" +"Z46.8","Fitting and adjustment of other specified devices" +"Z46.9","Fitting and adjustment of unspecified device" +"Z47","Other orthopaedic follow-up care" +"Z47.0","Follow-up care involving removal of fracture plate and other internal fixation device" +"Z47.8","Other specified orthopaedic follow-up care" +"Z47.9","Orthopaedic follow-up care, unspecified" +"Z48","OTHER SURGICAL FOLLOW-UP CARE" +"Z48.0","Attention to surgical dressings and sutures" +"Z48.8","Other specified surgical follow-up care" +"Z48.9","Surgical follow-up care, unspecified" +"Z49","CARE INVOLVING DIALYSIS" +"Z49.0","Preparatory care for dialysis" +"Z49.1","Extracorporeal dialysis" +"Z49.2","Other dialysis" +"Z50","Care involving use of rehabilitation procedures" +"Z50.0","Cardiac rehabilitation" +"Z50.1","Other physical therapy" +"Z50.2","Alcohol rehabilitation" +"Z50.3","Drug rehabilitation" +"Z50.4","Psychotherapy, nec" +"Z50.5","Speech therapy" +"Z50.6","Orthoptic training" +"Z50.7","Occupational therapy and vocational rehabilitation nec" +"Z50.8","Care involving use of other rehabilitation procedures" +"Z50.9","Care involving use of rehabilitation procedure, unspecified" +"Z51","OTHER MEDICAL CARE" +"Z51.0","Radiotherapy session" +"Z51.1","Chemotherapy session for neoplasm" +"Z51.2","Other chemotherapy" +"Z51.3","Blood transfusion without reported diagnosis" +"Z51.4","Preparatory care for subsequent treatment nec" +"Z51.5","Palliative care" +"Z51.6","Desensitization to allergens" +"Z51.8","Other specified medical care" +"Z51.9","Medical care, unspecified" +"Z52","DONORS OF ORGANS AND TISSUES" +"Z52.0","Blood donor" +"Z52.1","Skin donor" +"Z52.2","Bone donor" +"Z52.3","Bone marrow donor" +"Z52.4","Kidney donor" +"Z52.5","Cornea donor" +"Z52.6","Liver donor" +"Z52.7","Heart donor" +"Z52.8","Donor of other organs and tissues" +"Z52.9","Donor of unspecified organ or tissue" +"Z53","Persons encountering health services for specific procedures, not carried out" +"Z53.0","Procedure not carried out because of contraindication" +"Z53.1","Procedure not carried out bacause patient's decision reasons belief and group pressure" +"Z53.2","Procedure not carried out because patient's decision for other unspecified reasons" +"Z53.8","Procedure not carried out for other reasons" +"Z53.9","Procedure not carried out, unspecified reason" +"Z54","CONVALESCENCE" +"Z54.0","Convalescence following surgery" +"Z54.1","Convalescence following radiotherapy" +"Z54.2","Convalescence following chemotherapy" +"Z54.3","Convalescence following psychotherapy" +"Z54.4","Convalescence following treatment of fracture" +"Z54.7","Convalescence following combined treatment" +"Z54.8","Convalescence following other treatment" +"Z54.9","Convalescence following unspecified treatment" +"Z55","PROBLEMS RELATED TO EDUCATION AND LITERACY" +"Z55.0","Illiteracy and low-level literacy" +"Z55.1","Schooling unavailable and unattainable" +"Z55.2","Failed examinations" +"Z55.3","Underachievement in school" +"Z55.4","Education maladjustment and discord with teachers and classmates" +"Z55.8","Other problems related to education and literacy" +"Z55.9","Problem related to education and literacy, unspecified" +"Z56","Problems related to employment and unemployment" +"Z56.0","Unemployment, unspecified" +"Z56.1","Change of job" +"Z56.2","Threat of job loss" +"Z56.3","Stressful work schedule" +"Z56.4","Discord with boss and workmates" +"Z56.5","Uncongenial work" +"Z56.6","Other physical and mental strain related to work" +"Z56.7","Other and unspecified problems related to employment" +"Z57","OCCUPATIONAL EXPOSURE TO RISK-FACTORS" +"Z57.0","Occupational exposure to noise" +"Z57.1","Occupational exposure to radiation" +"Z57.2","Occupational exposure to dust" +"Z57.3","Occupational exposure to other air contaminants" +"Z57.4","Occupational exposure to toxic agents in agriculture" +"Z57.5","Occupational exposure to toxic agents in other industries" +"Z57.6","Occupational exposure to extreme temperature" +"Z57.7","Occupational exposure to vibration" +"Z57.8","Occupational exposure to other risk-factors" +"Z57.9","Occupational exposure to unspecified risk-factor" +"Z58","PROBLEMS RELATED TO PHYSICAL ENVIRONMENT" +"Z58.0","Exposure to noise" +"Z58.1","Exposure to air pollution" +"Z58.2","Exposure to water pollution" +"Z58.3","Exposure to soil pollution" +"Z58.4","Exposure to radiation" +"Z58.5","Exposure to other pollution" +"Z58.6","Inadequate drinking-water supply" +"Z58.7","Exposure to tobacco smoke" +"Z58.8","Other problems related to physical environment" +"Z58.9","Problem related to physical environment, unspecified" +"Z59","PROBLEMS RELATED TO HOUSING AND ECONOMIC CIRCUMSTANCES" +"Z59.0","Homelessness" +"Z59.1","Inadequate housing" +"Z59.2","Discord with neighbours, lodgers and landlord" +"Z59.3","Problems related to living in residential institution" +"Z59.4","Lack of adequate food" +"Z59.5","Extreme poverty" +"Z59.6","Low income" +"Z59.7","Insufficient social insurance and welfare support" +"Z59.8","Other problems related to housing and economic circumstances" +"Z59.9","Problem related to housing and economic circumstances, unspecified" +"Z60","PROBLEMS RELATED TO SOCIAL ENVIRONMENT" +"Z60.0","Problems of adjustment to life-cycle transitions" +"Z60.1","Atypical parenting situation" +"Z60.2","Living alone" +"Z60.3","Acculturation difficulty" +"Z60.4","Social exclusion and rejection" +"Z60.5","Target of perceived adverse discrimination and persecution" +"Z60.8","Other problems related to social environment" +"Z60.9","Problem related to social environment, unspecified" +"Z61","Problems related to negative life events in childhood" +"Z61.0","Loss of love relationship in childhood" +"Z61.1","Removal from home in childhood" +"Z61.2","Altered pattern of family relationships in childhood" +"Z61.3","Events resulting in loss of self-esteem in childhood" +"Z61.4","Problems related to alleged sexual abuse of child by person within primary support group" +"Z61.5","Problems related to alleged sexual abuse of child by person out primary support group" +"Z61.6","Problems related to alleged physical abuse of child" +"Z61.7","Personal frightening experience in childhood" +"Z61.8","Other negative life events in childhood" +"Z61.9","Negative life event in childhood, unspecified" +"Z62","OTHER PROBLEMS RELATED TO UPBRINGING" +"Z62.0","Inadequate parental supervision and control" +"Z62.1","Parental overprotection" +"Z62.2","Institutional upbringing" +"Z62.3","Hostility towards and scapegoating of child" +"Z62.4","Emotional neglect of child" +"Z62.5","Other problems related to neglect in upbringing" +"Z62.6","Inappropriate parental pressure and other abnormal qualities of upbringing" +"Z62.8","Other specified problems related to upbringing" +"Z62.9","Problem related to upbringing, unspecified" +"Z63","Other problems related to primary support group, including family circumstances" +"Z63.0","Problems in relationship with spouse or partner" +"Z63.1","Problems in relationship with parents and in-laws" +"Z63.2","Inadequate family support" +"Z63.3","Absence of family member" +"Z63.4","Disappearance and death of family member" +"Z63.5","Disruption of family by separation and divorce" +"Z63.6","Dependent relative needing care at home" +"Z63.7","Other stressful life events affecting family and household" +"Z63.8","Other specified problems related to primary support group" +"Z63.9","Problem related to primary support group, unspecified" +"Z64","PROBLEMS RELATED TO CERTAIN PSYCHOSOCIAL CIRCUMSTANCES" +"Z64.0","Problems related to unwanted pregnancy" +"Z64.1","Problems related to multiparity" +"Z64.2","Seeking and accepting physical, nutritional and chemical intervention known to be hazardous harmful" +"Z64.3","Seeking and accepting behavioural and psychological intervention known hazard and harmful" +"Z64.4","Discord with counsellors" +"Z65","PROBLEMS RELATED TO OTHER PSYCHOSOCIAL CIRCUMSTANCES" +"Z65.0","Conviction in civil and criminal proceedings without imprisonment" +"Z65.1","Imprisonment and other incarceration" +"Z65.2","Problems related to release from prison" +"Z65.3","Problems related to other legal circumstances" +"Z65.4","Victim of crime and terrorism" +"Z65.5","Exposure to disaster, war and other hostilities" +"Z65.8","Other specif problems related to psychosocial circumstances" +"Z65.9","Problem related to Unspecified psychosocial circumstances" +"Z70","Counselling related to sexual attitude, behaviour and orientation" +"Z70.0","Counselling related to sexual attitude" +"Z70.1","Counselling related to patient's sexual behavior and orientation" +"Z70.2","Counselling related to patient's sexual behavior and orientation of third party" +"Z70.3","Counselling related to combined concerns regarding sexual attitude, behaviour and orientation" +"Z70.8","Other sex counselling" +"Z70.9","Sex counselling, unspecified" +"Z71","PERSONS ENCOUNTERING HEALTH SERVICES FOR OTHER COUNSELLING AND MEDICAL ADVICE, NOT ELSEWHERE CLASSIFIED" +"Z71.0","Person consulting on behalf of another person" +"Z71.1","Person with feared complaint in whom no diagnosis is made" +"Z71.2","Person consulting for explanation of investigation findings" +"Z71.3","Dietary counselling and surveillance" +"Z71.4","Alcohol abuse counselling and surveillance" +"Z71.5","Drug abuse counselling and surveillance" +"Z71.6","Tobacco abuse counselling" +"Z71.7","Human immunodeficiency virus [HIV] counselling" +"Z71.8","Other specified counselling" +"Z71.9","Counselling, unspecified" +"Z72","PROBLEMS RELATED TO LIFESTYLE" +"Z72.0","Tobacco use" +"Z72.1","Alcohol use" +"Z72.2","Drug use" +"Z72.3","Lack of physical exercise" +"Z72.4","Inappropriate diet and eating habits" +"Z72.5","High-risk sexual behaviour" +"Z72.6","Gambling and betting" +"Z72.8","Other problems related to lifestyle" +"Z72.9","Problem related to lifestyle, unspecified" +"Z73","Problems related to life-management difficulty" +"Z73.0","Burn-out" +"Z73.1","Accentuation of personality traits" +"Z73.2","Lack of relaxation and leisure act" +"Z73.3","Stress, nec" +"Z73.4","Inadequate social skills, nec" +"Z73.5","Social role conflict, nec" +"Z73.6","Limitation of activities due to disability" +"Z73.8","Other problems related to life-management difficulty" +"Z73.9","Problem related to life-management difficulty, unspecified" +"Z74","PROBLEMS RELATED TO CARE-PROVIDER DEPENDENCY" +"Z74.0","Reduced mobility" +"Z74.1","Need for assistance with personal care" +"Z74.2","Need for assistance at home and no other household member able render care" +"Z74.3","Need for continuous supervision" +"Z74.8","Other problems related to care-provider dependency" +"Z74.9","Problem related to care-provider dependency, unspecified" +"Z75","PROBLEMS RELATED TO MEDICAL FACILITIES AND OTHER HEALTH CARE" +"Z75.0","Medical services not available in home" +"Z75.1","Person awaiting admission to adequate facility elsewhere" +"Z75.2","Other waiting period for investigation and treatment" +"Z75.3","Unavailability and inaccessibility of health-care facilities" +"Z75.4","Unavailability and inaccessibility of other helping agencies" +"Z75.5","Holiday relief care" +"Z75.8","Other problems related to medical facilities and other health care" +"Z75.9","Unspecified problem related to medical facilities and other health care" +"Z76","PERSONS ENCOUNTERING HEALTH SERVICES IN OTHER CIRCUMSTANCES" +"Z76.0","Issue of repeat prescription" +"Z76.1","Health supervision and care of foundling" +"Z76.2","Health supervision and care of other healthy infant and child" +"Z76.3","Healthy person accompanying sick person" +"Z76.4","Other boarder in health-care facility" +"Z76.5","Malingerer [conscious simulation]" +"Z76.8","Persons encountering health services in other specified circumstances" +"Z76.9","Person encountering health services in unspecified circumstances" +"Z80","FAMILY HISTORY OF MALIGNANT NEOPLASM" +"Z80.0","Family history of malignant neoplasm of digestive organs" +"Z80.1","Family history of malignant neoplasm of trachea, bronchus and lung" +"Z80.2","Family history of malignant neoplasm of other respiratory and intrathoracic orgs" +"Z80.3","Family history of malignant neoplasm of breast" +"Z80.4","Family history of malignant neoplasm of genital organs" +"Z80.5","Family history of malignant neoplasm of urinary tract" +"Z80.6","Family history of leukaemia" +"Z80.7","Famly history of other malignant neoplasms of lymphoid, heematopoietic and and related tissues" +"Z80.8","Family history of malignant neoplasm of other organs or systems" +"Z80.9","Family history of malignant neoplasm, unspecified" +"Z81","FAMILY HISTORY OF MENTAL AND BEHAVIOURAL DISORDERS" +"Z81.0","Family history of mental retardation" +"Z81.1","Family history of alcohol abuse" +"Z81.2","Family history of tobacco abuse" +"Z81.3","Family history of other psychoactive substance abuse" +"Z81.4","Family history of other substance abuse" +"Z81.8","Family history of other mental and behavioural disorders" +"Z82","FAMILY HISTORY OF CERTAIN DISABILITIES AND CHRONIC DISEASES LEADING TO DISABLEMENT" +"Z82.0","Family history of epilepsy and other dis of the nervous sys" +"Z82.1","Family history of blindness and visual loss" +"Z82.2","Family history of deafness and hearing loss" +"Z82.3","Family history of stroke" +"Z82.4","Family history ischaemic heart disease and other disease of the circulatory system" +"Z82.5","Family history of asthma and other chronic lower respiratory disease" +"Z82.6","Family history of arthritis and other disease musculoskeletal system and connective tissue" +"Z82.7","Family history of congenital malformations, deformation and chromosomal abnorms" +"Z82.8","Family history of other disabilities and chronic disease leading disablement nec" +"Z83","FAMILY HISTORY OF OTHER SPECIFIC DISORDERS" +"Z83.0","Family history of human immunodeficiency virus [HIV] disease" +"Z83.1","Family history of other infectious and parasitic diseases" +"Z83.2","Family history of disease of the blood and blood forming organs and certain disorder involving immune mechanism" +"Z83.3","Family history of diabetes mellitus" +"Z83.4","Fam hist of other endocrine, nutritional and metabolic diseases" +"Z83.5","Family history of eye and ear disorders" +"Z83.6","Family history of diseases of the respiratory system" +"Z83.7","Family history of diseases of the digestive system" +"Z84","FAMILY HISTORY OF OTHER CONDITIONS" +"Z84.0","Family history of diseases of the skin and subcutaneous tissue" +"Z84.1","Family history of disorders of kidney and ureter" +"Z84.2","Family history of other diseases of the genitourinary system" +"Z84.3","Family history of consanguinity" +"Z84.8","Family history of other specified conditions" +"Z85","PERSONAL HISTORY OF MALIGNANT NEOPLASM" +"Z85.0","Personal history of malignant neoplasm of digestive organs" +"Z85.1","Personal history of malignant neoplasm of trachea, bronchus and lung" +"Z85.2","Personal history malignant neoplasm of other respiratory and intrathoracic organs" +"Z85.3","Personal history of malignant neoplasm of breast" +"Z85.4","Personal history of malignant neoplasm of genital organs" +"Z85.5","Personal history of malignant neoplasm of urinary tract" +"Z85.6","Personal history of leukaemia" +"Z85.7","Personal history of other malignant neoplasms of lymphoid haematopoietic and related tissue" +"Z85.8","Personal history of malignant neoplasms of other organs and system" +"Z85.9","Personal history of malignant neoplasm, unspecified" +"Z86","PERSONAL HISTORY OF CERTAIN OTHER DISEASES" +"Z86.0","Personal history of other neoplasms" +"Z86.1","Personal history of infectious and parasitic diseases" +"Z86.2","Personal history of disease of the blood and blood-forming organs and certain disorders involving the immune mechanism" +"Z86.3","Personal history of endocrine, nutritional and metabolic diseases" +"Z86.4","Personal history of psychoactive substance abuse" +"Z86.5","Personal history of other mental and behavioural disorders" +"Z86.6","Personal history of disease of the nervous system and sense organs" +"Z86.7","Personal history of diseases of the circulatory system" +"Z87","PERSONAL HISTORY OF OTHER DISEASES AND CONDITIONS" +"Z87.0","Personal history of diseases of the respiratory system" +"Z87.1","Personal history of diseases of the digestive system" +"Z87.2","Personal history of disease of the skin and subcutaneous tissue" +"Z87.3","Personal history of disease of the musculoskeletal system and connective tissue" +"Z87.4","Personal history of diseases of the genitourinary system" +"Z87.5","Personal history complications of pregnancy, childbirth and the puerperium" +"Z87.6","Personal history of certain conditions arising in perinatal period" +"Z87.7","Personal history of congenital malformations, deformations and chromosomal abnomalities" +"Z87.8","Personal history of other specified conditions" +"Z88","Personal history of allergy to drugs, medicaments and biological substances" +"Z88.0","Personal history of allergy to penicillin" +"Z88.1","Personal history of allergy to other antibiotic agents" +"Z88.2","Personal history of allergy to sulfonamides" +"Z88.3","Personal history of allergy to other anti-infective agents" +"Z88.4","Personal history of allergy to anaesthetic agent" +"Z88.5","Personal history of allergy to narcotic agent" +"Z88.6","Personal history of allergy to analgesic agent" +"Z88.7","Personal history of allergy to serum and vaccine" +"Z88.8","Personal history of allergy to other drugs, medicaments and biological substances" +"Z88.9","Personal history of allergy to unspecified drugs, medicaments and biological substances" +"Z89","ACQUIRED ABSENCE OF LIMB" +"Z89.0","Acquired absence of finger(s) [including thumb], unilateral" +"Z89.1","Acquired absence of hand and wrist" +"Z89.2","Acquired absence of upper limb above wrist" +"Z89.3","Acquired absence of both upper limbs [any level]" +"Z89.4","Acquired absence of foot and ankle" +"Z89.5","Acquired absence of leg at or below knee" +"Z89.6","Acquired absence of leg above knee" +"Z89.7","Acquired absence of both lower limbs [any level, except toes alone]" +"Z89.8","Acquired absence of upper and lower limbs [any level]" +"Z89.9","Acquired absence of limb, unspecified" +"Z90","Acquired absence of organs, not elsewhere classified" +"Z90.0","Acquired absence of part of head and neck" +"Z90.1","Acquired absence of breast(s)" +"Z90.2","Acquired absence of lung [part of]" +"Z90.3","Acquired absence of part of stomach" +"Z90.4","Acquired absence of other parts of digestive tract" +"Z90.5","Acquired absence of kidney" +"Z90.6","Acquired absence of other organs of urinary tract" +"Z90.7","Acquired absence of genital organ(s)" +"Z90.8","Acquired absence of other organs" +"Z91","PERSONAL HISTORY OF RISK-FACTORS, NOT ELSEWHERE CLASSIFIED" +"Z91.0","Personal hist of allergy oth than to drugs and biol subs" +"Z91.1","Personal hist noncompliance with med treatment and regimen" +"Z91.2","Personal history of poor personal hygiene" +"Z91.3","Personal history of unhealthy sleep-wake schedule" +"Z91.4","Personal history of psychological trauma nec" +"Z91.5","Personal history of self-harm" +"Z91.6","Personal history of other physical trauma" +"Z91.8","Personal history of other specified risk-factors nec" +"Z92","PERSONAL HISTORY OF MEDICAL TREATMENT" +"Z92.0","Personal history of contraception" +"Z92.1","Personal history long -term (current) use of anticoagulants" +"Z92.2","Personal history of long-term use of other medicaments" +"Z92.3","Personal history of irradiation" +"Z92.4","Personal history of major surgery, nec" +"Z92.5","Personal history of rehabilitation measures" +"Z92.6","Personal history of chemotheraphy for neoplastic disease" +"Z92.8","Personal history of other medical treatment" +"Z92.9","Personal history of medical treatment, unspecified" +"Z93","ARTIFICIAL OPENING STATUS" +"Z93.0","Tracheostomy status" +"Z93.1","Gastrostomy status" +"Z93.2","Ileostomy status" +"Z93.3","Colostomy status" +"Z93.4","Other artificial openings of gastrointestinal tract status" +"Z93.5","Cystostomy status" +"Z93.6","Other artificial openings of urinary tract status" +"Z93.8","Other artificial opening status" +"Z93.9","Artificial opening status, unspecified" +"Z94","TRANSPLANTED ORGAN AND TISSUE STATUS" +"Z94.0","Kidney transplant status" +"Z94.1","Heart transplant status" +"Z94.2","Lung transplant status" +"Z94.3","Heart and lungs transplant status" +"Z94.4","Liver transplant status" +"Z94.5","Skin transplant status" +"Z94.6","Bone transplant status" +"Z94.7","Corneal transplant status" +"Z94.8","Other transplanted organ and tissue status" +"Z94.9","Transplanted organ and tissue status, unspecified" +"Z95","PRESENCE OF CARDIAC AND VASCULAR IMPLANTS AND GRAFTS" +"Z95.0","Presence of cardiac pacemaker" +"Z95.1","Presence of aortocoronary bypass graft" +"Z95.2","Presence of prosthetic heart valve" +"Z95.3","Presence of xenogenic heart valve" +"Z95.4","Presence of other heart-valve replacement" +"Z95.5","Presence of coronary angioplasty implant and graft" +"Z95.8","Presence of other cardiac and vascular implants and grafts" +"Z95.9","Presence of cardiac and vascular implant and graft unspec act" +"Z96","PRESENCE OF OTHER FUNCTIONAL IMPLANTS" +"Z96.0","Presence of urogenital implants" +"Z96.1","Presence of intraocular lens" +"Z96.2","Presence of otological and audiological implants" +"Z96.3","Presence of artificial larynx" +"Z96.4","Presence of endocrine implants" +"Z96.5","Presence of tooth-root and mandibular implants" +"Z96.6","Presence of orthopaedic joint implants" +"Z96.7","Presence of other bone and tendon implants" +"Z96.8","Presence of other specified functional implants" +"Z96.9","Presence of functional implant, unspecified" +"Z97","PRESENCE OF OTHER DEVICES" +"Z97.0","Presence of artificial eye" +"Z97.1","Presence of artificial limb (complete)(partial)" +"Z97.2","Presence of dental prosthetic device (complete)(partial)" +"Z97.3","Presence of spectacles and contact lenses" +"Z97.4","Presence of external hearing-aid" +"Z97.5","Presence of (intrauterine) contraceptive device" +"Z97.8","Presence of other specified devices" +"Z98","OTHER POSTSURGICAL STATES" +"Z98.0","Intestinal bypass and anastomosis status" +"Z98.1","Arthrodesis status" +"Z98.2","Presence of cerebrospinal fluid drainage device" +"Z98.8","Other specified postsurgical states" +"Z99","Dependence on enabling machines and devices, not elsewhere classified" +"Z99.0","Dependence on aspirator" +"Z99.1","Dependence on respirator" +"Z99.2","Dependence on renal dialysis" +"Z99.3","Dependence on wheelchair" +"Z99.8","Dependence on other enabling machines and devices" +"Z99.9","Dependence on unspecified enabling machine and device" diff --git a/routes/api.php b/routes/api.php index e58f7614..cf3dbc81 100644 --- a/routes/api.php +++ b/routes/api.php @@ -15,4 +15,3 @@ use Illuminate\Support\Facades\Route; | is assigned the "api" middleware group. Enjoy building your API! | */ -